Changeset 1927
- Timestamp:
- 03/18/15 16:02:08 (10 years ago)
- Location:
- trunk/autoquest-plugin-uml-test/src/test
- Files:
-
- 14 deleted
- 1 edited
- 7 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-uml-test/src/test/java/de/ugoe/cs/autoquest/plugin/uml/UMLUtilsTest.java
r1926 r1927 16 16 17 17 import java.io.File; 18 import java.io.FileInputStream; 18 19 import java.util.Collection; 20 import java.util.HashSet; 19 21 import java.util.Iterator; 20 22 import java.util.LinkedList; 21 23 import java.util.List; 24 import java.util.Properties; 22 25 import java.util.Random; 26 import java.util.Set; 23 27 import java.util.logging.Level; 24 28 25 import static org.junit.Assert.*;29 //import static org.junit.Assert.*; 26 30 27 31 import org.apache.commons.lang.SerializationUtils; … … 54 58 55 59 private final static String OUTPUT_DIR = "target/tmp/test-outputs/"; 60 61 // for RLUS 62 private final static TestData deda_1 = new TestData("deda_rlus_properties.prop", 63 "deda_usagejournal.log", 64 "deda_rlus_usageprofile.dat", 65 "deda_model.uml", 66 "deda_rlus_model_testsuite.uml", 67 "deda_rlus_model_scheduling.uml"); 68 69 // for IXS 70 private final static TestData deda_2 = new TestData("deda_ixs_properties.prop", 71 "deda_usagejournal.log", 72 "deda_ixs_usageprofile.dat", 73 "deda_model.uml", 74 "deda_ixs_model_testsuite.uml", 75 "deda_ixs_model_scheduling.uml"); 76 77 private final static TestData ita_1 = new TestData("ita_properties.prop", "ita_usagejournal.log", 78 "ita_usageprofile.dat", "ita_model.uml", 79 "ita_model_testsuite.uml", 80 "ita_model_scheduling.uml"); 81 82 private static class TestData { 83 public final String propertiesFile; 84 public final String usageJournalFile; 85 public final String usageProfileFile; 86 public final String dslModelFile; 87 public final String testSuiteFile; 88 public final String schedulingFile; 89 90 public TestData(String propertiesFile, 91 String usageJournalFile, 92 String usageProfileFile, 93 String dslModelFile, 94 String testSuiteFile, 95 String schedulingFile) 96 { 97 this.propertiesFile = propertiesFile; 98 this.usageJournalFile = usageJournalFile; 99 this.usageProfileFile = usageProfileFile; 100 this.dslModelFile = dslModelFile; 101 this.testSuiteFile = testSuiteFile; 102 this.schedulingFile = schedulingFile; 103 104 } 105 106 @Override 107 public String toString() { 108 StringBuilder strBld = new StringBuilder(); 109 strBld.append("Properties " + propertiesFile + "\n"); 110 strBld.append("Usage Journal " + usageJournalFile + "\n"); 111 strBld.append("Usage Profile " + usageProfileFile + "\n"); 112 strBld.append("DSL Model " + dslModelFile + "\n"); 113 strBld.append("Test Suite " + testSuiteFile + "\n"); 114 strBld.append("Scheduling " + schedulingFile + "\n"); 115 return strBld.toString(); 116 } 117 } 56 118 57 119 @BeforeClass 58 120 public static void setUpBeforeClass() throws Exception { 59 new TextConsole(Level. INFO);121 new TextConsole(Level.FINE); 60 122 } 61 123 … … 66 128 67 129 @Test(expected = java.lang.RuntimeException.class) 68 public void testCreateUMLTransitionSequence_1() throws Exception { 69 // parse log file 70 HTTPLogParser parser = 71 new HTTPLogParser(new File(ClassLoader.getSystemResource("ita_v2_servicenamemap.txt") 72 .getFile())); 73 parser.parseFile(new File(ClassLoader.getSystemResource("ita_usagejournal_v2_2.log") 74 .getFile())); 75 Collection<List<Event>> httpSequences = parser.getSequences(); 76 130 public void testCreateUMLTransitionSequence_ITA_1() throws Exception { 131 TestData testdata = ita_1; 132 133 Properties properties = loadProperties(testdata); 134 Collection<List<Event>> sequences = loadAndPreprocessUsageJournal(testdata, properties); 77 135 Model model = 78 ModelUtils.loadModel(ClassLoader.getSystemResourceAsStream( "ita_model_v2.uml"));136 ModelUtils.loadModel(ClassLoader.getSystemResourceAsStream(testdata.dslModelFile)); 79 137 80 138 StateMachine stateMachine = … … 86 144 87 145 // remove everything but transport from sequences 88 for (List<Event> httpSequence : httpSequences) { 89 for (Iterator<Event> eventIter = httpSequence.iterator(); eventIter.hasNext();) { 90 Event event = eventIter.next(); 91 if (!(event.getType() instanceof SOAPEventType)) { 92 eventIter.remove(); 93 } 94 else { 95 SOAPEventType eventType = (SOAPEventType) event.getType(); 96 if (!"TransportService".equals(eventType.getServiceName())) { 97 eventIter.remove(); 98 } 99 } 100 } 101 umlSequences.add(UMLUtils.createUMLTransitionSequence(httpSequence, stateMachine)); 102 } 103 } 104 105 @Test 106 public void testConvertStateMachineToUsageProfile_1() throws Exception { 107 HTTPLogParser parser = 108 new HTTPLogParser(new File(ClassLoader.getSystemResource("ita_v2_servicenamemap.txt") 109 .getFile())); 110 parser.parseFile(new File(ClassLoader.getSystemResource("ita_usagejournal_v2_2.log") 111 .getFile())); 112 Collection<List<Event>> httpSequences = parser.getSequences(); 113 114 Model model = 115 ModelUtils.loadModel(ClassLoader.getSystemResourceAsStream("ita_model_v2.uml")); 116 117 // remove everything but transport from sequences 118 for (List<Event> httpSequence : httpSequences) { 119 for (Iterator<Event> eventIter = httpSequence.iterator(); eventIter.hasNext();) { 120 Event event = eventIter.next(); 121 if (!(event.getType() instanceof SOAPEventType)) { 122 eventIter.remove(); 123 } 124 else { 125 SOAPEventType eventType = (SOAPEventType) event.getType(); 126 if (!"TransportService".equals(eventType.getServiceName())) { 127 eventIter.remove(); 128 } 129 } 130 } 131 } 132 133 StateMachine stateMachine = 134 (StateMachine) model.getPackagedElement("StateMachineTransportService", true, 135 UMLPackage.Literals.STATE_MACHINE, true); 136 137 UMLUtils.convertStateMachineToUsageProfile(httpSequences, stateMachine); 138 139 ModelUtils.writeModelToFile(model, OUTPUT_DIR + "ita_v2_result.uml"); 140 } 141 142 @Test 143 public void testCreateInteractionFromEventSequence_1() throws Exception { 144 // parse log file 145 HTTPLogParser parser = 146 new HTTPLogParser(new File(ClassLoader 147 .getSystemResource("testCreateInteractionFromEventSequence_1_properties.txt") 148 .getFile())); 149 parser 150 .parseFile(new File(ClassLoader 151 .getSystemResource("testCreateInteractionFromEventSequence_1_usagedata.log") 152 .getFile())); 153 Collection<List<Event>> httpSequences = parser.getSequences(); 154 155 Model model = 156 ModelUtils.loadModel(ClassLoader 157 .getSystemResourceAsStream("testCreateInteractionFromEventSequence_1_model.uml")); 158 159 for (List<Event> httpSequence : httpSequences) { 160 for (Iterator<Event> eventIter = httpSequence.iterator(); eventIter.hasNext();) { 161 Event event = eventIter.next(); 162 if (!(event.getType() instanceof SOAPEventType)) { 163 eventIter.remove(); 164 } 165 } 166 167 UMLUtils.createInteractionFromEventSequence(httpSequence, model, "testSequence", null); 168 } 169 170 ModelUtils.writeModelToFile(model, OUTPUT_DIR + 171 "testCreateInteractionFromEventSequence_1_result.uml"); 172 } 173 174 @Test 175 public void testCreateInteractionFromEventSequence_2() throws Exception { 176 // parse log file 177 HTTPLogParser parser = 178 new HTTPLogParser(new File(ClassLoader 179 .getSystemResource("testCreateInteractionFromEventSequence_2_properties.txt") 180 .getFile())); 181 parser 182 .parseFile(new File(ClassLoader 183 .getSystemResource("testCreateInteractionFromEventSequence_2_usagedata.log") 184 .getFile())); 185 Collection<List<Event>> httpSequences = parser.getSequences(); 186 187 Model model = 188 ModelUtils.loadModel(ClassLoader 189 .getSystemResourceAsStream("testCreateInteractionFromEventSequence_2_model.uml")); 190 191 for (List<Event> httpSequence : httpSequences) { 192 for (Iterator<Event> eventIter = httpSequence.iterator(); eventIter.hasNext();) { 193 Event event = eventIter.next(); 194 if (!(event.getType() instanceof SOAPEventType)) { 195 eventIter.remove(); 196 } 197 } 198 199 UMLUtils.createInteractionFromEventSequence(httpSequence, model, "testSequence", null); 200 } 201 202 ModelUtils.writeModelToFile(model, OUTPUT_DIR + 203 "testCreateInteractionFromEventSequence_1_result.uml"); 204 } 205 206 @Test 207 public void testCalculateUsageScore_1() throws Exception { 208 // parse log file 209 HTTPLogParser parser = 210 new HTTPLogParser(new File(ClassLoader 211 .getSystemResource("testCalculateUsageScore_1_properties.txt").getFile())); 212 parser.parseFile(new File(ClassLoader 213 .getSystemResource("testCalculateUsageScore_1_usagedata.log").getFile())); 214 Collection<List<Event>> httpSequences = parser.getSequences(); 215 216 Model model = 217 ModelUtils.loadModel(ClassLoader 218 .getSystemResourceAsStream("testCalculateUsageScore_1_model.uml")); 219 220 Collection<List<Event>> simpleSOAPSequences = new LinkedList<>(); 221 for (List<Event> httpSequence : httpSequences) { 222 simpleSOAPSequences.add(SOAPUtils.convertToSimpleSOAPEvent(httpSequence, true)); 223 } 224 225 FirstOrderMarkovModel usageProfile = new FirstOrderMarkovModel(new Random(1)); 226 usageProfile.train(simpleSOAPSequences); 227 228 Collection<List<Event>> genSeqs = 229 (new RandomWalkGenerator(10, 1, 100, true, 500)).generateTestSuite(usageProfile); 230 231 int i = 1; 232 int[] lengths = new int[genSeqs.size()]; 233 for (List<Event> seq : genSeqs) { 234 UMLUtils.createInteractionFromEventSequence(seq, model, "seq_" + i, null); 235 lengths[i - 1] = seq.size(); 236 i++; 237 } 238 for (int j = 0; j < genSeqs.size(); j++) { 239 Interaction interaction = 240 (Interaction) model.getPackagedElement("seq_" + j, true, 241 UMLPackage.Literals.INTERACTION, true); 242 double usageScore = UMLUtils.calculateUsageScore(interaction, usageProfile); 243 System.out.format("usage score %02d: %.2f \t %d\n", j + 1, usageScore, lengths[j]); 244 } 245 } 246 247 @Test 248 public void testCreateScheduling_1() throws Exception { 249 Model model = 250 ModelUtils.loadModel(ClassLoader 251 .getSystemResourceAsStream("testCreateScheduling_1_testsuite.uml")); 252 253 IStochasticProcess usageProfile = 254 (IStochasticProcess) SerializationUtils.deserialize(ClassLoader 255 .getSystemResourceAsStream("testCreateScheduling_1_usageprofile.dat")); 256 257 UMLUtils.createScheduling(model, usageProfile, null); 258 259 ModelUtils.writeModelToFile(model, OUTPUT_DIR + "testCreateScheduling_1_result.uml"); 260 } 261 262 @Test 263 public void testValidateModelWithLog_1() throws Exception { 264 HTTPLogParser parser = 265 new HTTPLogParser(new File(ClassLoader 266 .getSystemResource("testCreateInteractionFromEventSequence_1_properties.txt") 267 .getFile())); 268 parser 269 .parseFile(new File(ClassLoader 270 .getSystemResource("testCreateInteractionFromEventSequence_1_usagedata.log") 271 .getFile())); 272 Collection<List<Event>> httpSequences = parser.getSequences(); 273 274 for (List<Event> httpSequence : httpSequences) { 275 SOAPUtils.removeNonSOAPEvents(httpSequence); 276 } 277 278 Model model = 279 ModelUtils.loadModel(ClassLoader 280 .getSystemResourceAsStream("testCreateInteractionFromEventSequence_1_model.uml")); 281 282 int violations = UMLUtils.validateModelWithLog(httpSequences, model, null); 283 if (violations == 0) { 284 System.out.println("No problems found."); 285 } 286 else { 287 System.out.println(violations + " violations found."); 288 } 289 } 290 291 @Test 292 public void testValidateModelWithLog_2() throws Exception { 293 HTTPLogParser parser = 294 new HTTPLogParser(new File(ClassLoader 295 .getSystemResource("testCreateInteractionFromEventSequence_2_properties.txt") 296 .getFile())); 297 parser 298 .parseFile(new File(ClassLoader 299 .getSystemResource("testCreateInteractionFromEventSequence_2_usagedata.log") 300 .getFile())); 301 Collection<List<Event>> httpSequences = parser.getSequences(); 302 303 for (List<Event> httpSequence : httpSequences) { 304 SOAPUtils.removeNonSOAPEvents(httpSequence); 305 } 306 307 Model model = 308 ModelUtils.loadModel(ClassLoader 309 .getSystemResourceAsStream("testCreateInteractionFromEventSequence_2_model.uml")); 310 311 int violations = UMLUtils.validateModelWithLog(httpSequences, model, null); 312 if (violations == 0) { 313 System.out.println("No problems found."); 314 } 315 else { 316 System.out.println(violations + " violations found."); 317 } 318 } 319 320 @Test 321 public void testValidateModelWithLog_HL7_RLUS_v3() throws Exception { 322 HTTPLogParser parser = 323 new HTTPLogParser(new File(ClassLoader.getSystemResource("hl7_servicenamemap.txt") 324 .getFile())); 325 parser 326 .parseFile(new File(ClassLoader 327 .getSystemResource("testCreateInteractionFromEventSequence_1_usagedata.log") 328 .getFile())); 329 Collection<List<Event>> httpSequences = parser.getSequences(); 330 331 for (List<Event> httpSequence : httpSequences) { 332 SOAPUtils.removeNonSOAPEvents(httpSequence); 333 } 334 335 Model model = 336 ModelUtils.loadModel(ClassLoader.getSystemResourceAsStream("hl7model_v3.uml")); 337 338 int violations = UMLUtils.validateModelWithLog(httpSequences, model, "RLUSTestSuite_1"); 339 if (violations == 0) { 340 System.out.println("No problems found."); 341 } 342 else { 343 System.out.println(violations + " violations found."); 344 } 345 346 // remove everything but rlusService from sequences 347 for (List<Event> httpSequence : httpSequences) { 348 for (Iterator<Event> eventIter = httpSequence.iterator(); eventIter.hasNext();) { 349 Event event = eventIter.next(); 350 SOAPEventType eventType = (SOAPEventType) event.getType(); 351 if (!"rlusService".equals(eventType.getServiceName()) ) { 352 eventIter.remove(); 353 } 354 } 355 356 UMLUtils.createInteractionFromEventSequence(httpSequence, model, "rlustest1", 357 "RLUSTestSuite_1"); 358 UMLUtils.createInteractionFromEventSequence(SOAPUtils.convertToSimpleSOAPEvent(httpSequence, true), model, "rlustest2", 359 "RLUSTestSuite_1"); 360 } 361 362 ModelUtils.writeModelToFile(model, OUTPUT_DIR + "hl7_v3_result.uml"); 363 } 364 365 @Test 366 public void testValidateModelWithLog_HL7_IXS_v3() throws Exception { 367 HTTPLogParser parser = 368 new HTTPLogParser(new File(ClassLoader.getSystemResource("hl7_ixs_servicenamemap.txt") 369 .getFile())); 370 parser 371 .parseFile(new File(ClassLoader 372 .getSystemResource("testCreateInteractionFromEventSequence_1_usagedata.log") 373 .getFile())); 374 Collection<List<Event>> httpSequences = parser.getSequences(); 375 376 for (List<Event> httpSequence : httpSequences) { 377 SOAPUtils.removeNonSOAPEvents(httpSequence); 378 } 379 380 Model model = 381 ModelUtils.loadModel(ClassLoader.getSystemResourceAsStream("hl7model_v3.uml")); 382 383 int violations = UMLUtils.validateModelWithLog(httpSequences, model, "IXSTestSuite_1"); 384 if (violations == 0) { 385 System.out.println("No problems found."); 386 } 387 else { 388 System.out.println(violations + " violations found."); 389 } 390 391 // remove everything but rlusService from sequences 392 for (List<Event> httpSequence : httpSequences) { 393 for (Iterator<Event> eventIter = httpSequence.iterator(); eventIter.hasNext();) { 394 Event event = eventIter.next(); 395 SOAPEventType eventType = (SOAPEventType) event.getType(); 396 if (!"ixsService".equals(eventType.getServiceName())) { 397 eventIter.remove(); 398 } 399 } 400 401 UMLUtils.createInteractionFromEventSequence(httpSequence, model, "foo", 402 "IXSTestSuite_1"); 403 } 404 405 ModelUtils.writeModelToFile(model, OUTPUT_DIR + "hl7_v3_result.uml"); 406 } 407 408 @Test 409 public void testValidateModelWithLog_ITA_v2() throws Exception { 410 HTTPLogParser parser = 411 new HTTPLogParser(new File(ClassLoader.getSystemResource("ita_v2_servicenamemap.txt") 412 .getFile())); 413 parser.parseFile(new File(ClassLoader.getSystemResource("ita_usagejournal_v2_2.log") 414 .getFile())); 415 Collection<List<Event>> httpSequences = parser.getSequences(); 416 417 for (List<Event> httpSequence : httpSequences) { 418 SOAPUtils.removeNonSOAPEvents(httpSequence); 419 } 420 421 Model model = 422 ModelUtils.loadModel(ClassLoader.getSystemResourceAsStream("ita_model_v2.uml")); 423 424 int violations = UMLUtils.validateModelWithLog(httpSequences, model, null); 425 if (violations == 0) { 426 System.out.println("No problems found."); 427 } 428 else { 429 System.out.println(violations + " violations found."); 430 } 431 432 // remove everything but transport from sequences 433 for (List<Event> httpSequence : httpSequences) { 434 for (Iterator<Event> eventIter = httpSequence.iterator(); eventIter.hasNext();) { 146 for (List<Event> sequence : sequences) { 147 for (Iterator<Event> eventIter = sequence.iterator(); eventIter.hasNext();) { 435 148 Event event = eventIter.next(); 436 149 SOAPEventType eventType = (SOAPEventType) event.getType(); … … 439 152 } 440 153 } 441 442 UMLUtils.createInteractionFromEventSequence(httpSequence, model, "foo", 443 "LogisticsTestSuite"); 444 } 154 umlSequences.add(UMLUtils.createUMLTransitionSequence(sequence, stateMachine)); 155 } 156 } 157 158 @Test 159 public void testConvertStateMachineToUsageProfile__ITA_1() throws Exception { 160 TestData testdata = ita_1; 161 162 Properties properties = loadProperties(testdata); 163 Collection<List<Event>> sequences = loadAndPreprocessUsageJournal(testdata, properties); 164 165 Model model = 166 ModelUtils.loadModel(ClassLoader.getSystemResourceAsStream(testdata.dslModelFile)); 167 168 // remove everything but transport from sequences 169 for (List<Event> sequence : sequences) { 170 for (Iterator<Event> eventIter = sequence.iterator(); eventIter.hasNext();) { 171 Event event = eventIter.next(); 172 SOAPEventType eventType = (SOAPEventType) event.getType(); 173 if (!"TransportService".equals(eventType.getServiceName())) { 174 eventIter.remove(); 175 } 176 } 177 } 178 179 StateMachine stateMachine = 180 (StateMachine) model.getPackagedElement("StateMachineTransportService", true, 181 UMLPackage.Literals.STATE_MACHINE, true); 182 183 UMLUtils.convertStateMachineToUsageProfile(sequences, stateMachine); 445 184 446 185 ModelUtils.writeModelToFile(model, OUTPUT_DIR + "ita_v2_result.uml"); 447 448 } 449 186 } 187 188 @Test 189 public void testCreateInteractionFromEventSequence_DEDA_1() throws Exception { 190 createInteractionFromEventSequenceWorkflow(deda_1); 191 } 192 193 @Test 194 public void testCreateInteractionFromEventSequence_DEDA_2() throws Exception { 195 createInteractionFromEventSequenceWorkflow(deda_2); 196 } 197 198 @Test 199 public void testCreateInteractionFromEventSequence_ITA_1() throws Exception { 200 createInteractionFromEventSequenceWorkflow(ita_1); 201 } 202 203 @Test 204 public void testCalculateUsageScore_DEDA_1() throws Exception { 205 calculateUsageScoreWorkflow(deda_1); 206 } 207 208 @Test 209 public void testCalculateUsageScore_DEDA_2() throws Exception { 210 calculateUsageScoreWorkflow(deda_2); 211 } 212 213 214 @Test 215 public void testCalculateUsageScore_ITA_1() throws Exception { 216 calculateUsageScoreWorkflow(ita_1); 217 } 218 219 @Test 220 public void testCreateScheduling_DEDA_1() throws Exception { 221 createSchedulingWorkflow(deda_1); 222 } 223 224 @Test 225 public void testCreateScheduling_DEDA_2() throws Exception { 226 createSchedulingWorkflow(deda_2); 227 } 228 229 @Test 230 public void testCreateScheduling_ITA() throws Exception { 231 createSchedulingWorkflow(ita_1); 232 } 233 234 @Test 235 public void testValidateModelWithLog_DEDA_1() throws Exception { 236 validateModelWithLogWorkflow(deda_1); 237 } 238 239 240 @Test 241 public void testValidateModelWithLog_DEDA_2() throws Exception { 242 validateModelWithLogWorkflow(deda_2); 243 } 244 245 @Test 246 public void testValidateModelWithLog_ITA_1() throws Exception { 247 validateModelWithLogWorkflow(ita_1); 248 } 249 250 private void validateModelWithLogWorkflow(TestData testdata) throws Exception { 251 Properties properties = loadProperties(testdata); 252 Collection<List<Event>> sequences = loadAndPreprocessUsageJournal(testdata, properties); 253 Model model = ModelUtils.loadModel(ClassLoader.getSystemResourceAsStream(testdata.dslModelFile)); 254 255 // run validation 256 int violations = UMLUtils.validateModelWithLog(sequences, model, properties.getProperty("test.context")); 257 if (violations == 0) { 258 System.out.println("No problems found."); 259 } 260 else { 261 System.out.println(violations + " violations found."); 262 } 263 } 264 265 private void createInteractionFromEventSequenceWorkflow(TestData testdata) throws Exception { 266 Properties properties = loadProperties(testdata); 267 Collection<List<Event>> sequences = loadAndPreprocessUsageJournal(testdata, properties); 268 Model model = ModelUtils.loadModel(ClassLoader.getSystemResourceAsStream(testdata.dslModelFile)); 269 270 // create a test case for each observed sequence 271 int i=0; 272 for( List<Event> sequence : sequences ) { 273 UMLUtils.createInteractionFromEventSequence(sequence, model, properties.getProperty("testcases.prefix")+"_"+i, 274 properties.getProperty("test.context")); 275 i++; 276 } 277 } 278 279 private void calculateUsageScoreWorkflow(TestData testdata) throws Exception { 280 Properties properties = loadProperties(testdata); 281 Collection<List<Event>> sequences = loadAndPreprocessUsageJournal(testdata, properties); 282 Model model = 283 ModelUtils.loadModel(ClassLoader 284 .getSystemResourceAsStream(testdata.dslModelFile)); 285 IStochasticProcess usageProfile = createUsageProfile(sequences); 286 Collection<List<Event>> generatedSequences = createRandomSequences(usageProfile, properties); 287 288 int i = 1; 289 int[] lengths = new int[generatedSequences.size()]; 290 for (List<Event> sequence : generatedSequences) { 291 UMLUtils.createInteractionFromEventSequence(sequence, model, properties.getProperty("testcases.prefix")+"_"+i, 292 properties.getProperty("test.context")); 293 lengths[i - 1] = sequence.size(); 294 i++; 295 } 296 for (int j = 0; j < generatedSequences.size(); j++) { 297 Interaction interaction = 298 (Interaction) model.getPackagedElement(properties.getProperty("testcases.prefix") + j, true, 299 UMLPackage.Literals.INTERACTION, true); 300 double usageScore = UMLUtils.calculateUsageScore(interaction, usageProfile); 301 System.out.format("usage score %02d: %.2f \t %d\n", j + 1, usageScore, lengths[j]); 302 } 303 } 304 305 private void createSchedulingWorkflow(TestData testdata) throws Exception { 306 Properties properties = loadProperties(testdata); 307 Collection<List<Event>> sequences = loadAndPreprocessUsageJournal(testdata, properties); 308 Model model = ModelUtils.loadModel(ClassLoader.getSystemResourceAsStream(testdata.dslModelFile)); 309 IStochasticProcess usageProfile = createUsageProfile(sequences); 310 Collection<List<Event>> generatedSequences = createRandomSequences(usageProfile, properties); 311 int i = 1; 312 for (List<Event> sequence : generatedSequences) { 313 UMLUtils.createInteractionFromEventSequence(sequence, model, properties.getProperty("testcases.prefix")+"_"+i, 314 properties.getProperty("test.context")); 315 i++; 316 } 317 318 UMLUtils.createScheduling(model, usageProfile, null); 319 320 //ModelUtils.writeModelToFile(model, OUTPUT_DIR + "testCreateScheduling_1_result.uml"); 321 } 322 323 private Properties loadProperties(TestData testdata) throws Exception { 324 Properties properties = new Properties(); 325 properties.load(new FileInputStream(ClassLoader.getSystemResource(testdata.propertiesFile).getFile())); 326 return properties; 327 } 328 329 private Collection<List<Event>> loadAndPreprocessUsageJournal(TestData testdata, Properties properties) throws Exception { 330 // load usage journal 331 HTTPLogParser parser = 332 new HTTPLogParser(new File(ClassLoader.getSystemResource(testdata.propertiesFile) 333 .getFile())); 334 parser 335 .parseFile(new File(ClassLoader 336 .getSystemResource(testdata.usageJournalFile) 337 .getFile())); 338 Collection<List<Event>> sequences = parser.getSequences(); 339 340 // remove non SOAP events 341 for (List<Event> sequence : sequences) { 342 SOAPUtils.removeNonSOAPEvents(sequence); 343 } 344 345 // remove calls to ingored services 346 Set<String> ignoredServices = new HashSet<>(); 347 String ignoredServicesString = properties.getProperty("test.ignored.services"); 348 if( ignoredServicesString!=null ) { 349 for( String service : ignoredServicesString.split(",") ) { 350 ignoredServices.add(service.trim()); 351 } 352 } 353 354 for (List<Event> sequence : sequences) { 355 for (Iterator<Event> eventIter = sequence.iterator(); eventIter.hasNext();) { 356 Event event = eventIter.next(); 357 SOAPEventType eventType = (SOAPEventType) event.getType(); 358 if (ignoredServices.contains(eventType.getServiceName())) { 359 eventIter.remove(); 360 } 361 } 362 } 363 return sequences; 364 } 365 366 private IStochasticProcess createUsageProfile(Collection<List<Event>> sequences) throws Exception { 367 Collection<List<Event>> simpleSOAPSequences = new LinkedList<>(); 368 for (List<Event> sequence : sequences) { 369 simpleSOAPSequences.add(SOAPUtils.convertToSimpleSOAPEvent(sequence, true)); 370 } 371 372 FirstOrderMarkovModel usageProfile = new FirstOrderMarkovModel(new Random(1)); 373 usageProfile.train(simpleSOAPSequences); 374 return usageProfile; 375 } 376 377 private Collection<List<Event>> createRandomSequences(IStochasticProcess usageProfile, Properties properties) throws Exception { 378 int numberOfTestCases = Integer.parseInt(properties.getProperty("testcases.number")); 379 int testCaseMinLength = Integer.parseInt(properties.getProperty("testcases.minlenth", "1")); 380 int testCaseMaxLength = Integer.parseInt(properties.getProperty("testcases.maxlenth", "100")); 381 int maxIter = numberOfTestCases * 100; 382 RandomWalkGenerator testGenerator = new RandomWalkGenerator(numberOfTestCases, testCaseMinLength, testCaseMaxLength, true, maxIter); 383 return testGenerator.generateTestSuite(usageProfile); 384 } 385 450 386 private void deleteFiles(File file) { 451 387 if (file.exists()) { -
trunk/autoquest-plugin-uml-test/src/test/resources/deda_ixs_properties.prop
r1914 r1927 1 serviceName.path./ midas/rlus/query/xdw= rlusService2 serviceName.path./ midas/rlus/update/xdw= rlusService3 serviceName.path./ midas/rlus/update/cda2report = rlusService4 serviceName.path./ midas/ixsmq/update/pocdpatient= ixsService5 serviceName.path./ midas/ixsmq/query/pocdpatient = ixsService1 serviceName.path./hspilot/rlus/query/cda2report = rlusService 2 serviceName.path./hspilot/rlus/update/cda2report = rlusService 3 serviceName.path./hspilot/ixsmq/query/pocdhealthcarefacility = ixsService 4 serviceName.path./hspilot/ixsmq/query/pocdassignedentity = ixsService 5 serviceName.path./hspilot/ixsmq/query/pocdpatient = ixsService 6 6 clientName.receiver.port.6000 = ixsEnvironment 7 8 test.ignored.services = rlusService 9 test.context = IXSTestSuite_1 10 testcases.prefix = ubt 11 testcases.number = 10 12 testcases.minlenght = 1 13 testcases.maxlength = 100 -
trunk/autoquest-plugin-uml-test/src/test/resources/deda_model.uml
r1926 r1927 69 69 </packagedElement> 70 70 <packagedElement xmi:type="uml:DataType" xmi:id="_GZLQULwTEeS8kt2gTxQkQg" name="UpdateSemanticSignifierRequest"> 71 <ownedAttribute xmi:type="uml:Property" xmi:id="_VO7joLwTEeS8kt2gTxQkQg" name="semantic-signifierName"> 72 <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/> 73 </ownedAttribute> 71 <ownedAttribute xmi:type="uml:Property" xmi:id="_VO7joLwTEeS8kt2gTxQkQg" name="semantic-signifierName"/> 74 72 <ownedAttribute xmi:type="uml:Property" xmi:id="_Z4koQLwTEeS8kt2gTxQkQg" name="RLUSsemantic-signifier" type="_hVXYsLwNEeS8kt2gTxQkQg"/> 75 73 </packagedElement> … … 103 101 </packagedElement> 104 102 <packagedElement xmi:type="uml:PrimitiveType" xmi:id="_K7AJwLzkEeSu8bCjKN8_hw" name="semantic-signifierName"/> 105 <packagedElement xmi:type="uml:DataType" xmi:id="_14bXIMcQEeSYR7D_AlByKg" name=" XDW.WorkflowDocument">103 <packagedElement xmi:type="uml:DataType" xmi:id="_14bXIMcQEeSYR7D_AlByKg" name="documentType"> 106 104 <ownedAttribute xmi:type="uml:Property" xmi:id="_c20sIMcWEeSYR7D_AlByKg" name="version" visibility="public"> 107 105 <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/> … … 207 205 </packagedElement> 208 206 <packagedElement xmi:type="uml:DataType" xmi:id="_Kv7tUMcYEeSYR7D_AlByKg" name="rlpnotes:PutRequest"> 209 <ownedAttribute xmi:type="uml:Property" xmi:id="_ZAJOIMcZEeSYR7D_AlByKg" name=" XDW.WorkflowDocument" visibility="public" type="_14bXIMcQEeSYR7D_AlByKg">207 <ownedAttribute xmi:type="uml:Property" xmi:id="_ZAJOIMcZEeSYR7D_AlByKg" name="document" visibility="public" type="_14bXIMcQEeSYR7D_AlByKg"> 210 208 <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_aBYosMcZEeSYR7D_AlByKg" value="1"/> 211 209 <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_aBZPwMcZEeSYR7D_AlByKg" value="1"/> … … 261 259 <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_3lBnkMcrEeSYR7D_AlByKg" value="1"/> 262 260 <defaultValue xmi:type="uml:LiteralString" xmi:id="_3lBnkccrEeSYR7D_AlByKg"> 263 <value xsi:nil="true"/>264 </defaultValue>265 </ownedAttribute>266 <ownedAttribute xmi:type="uml:Property" xmi:id="_mp4foMcsEeSYR7D_AlByKg" name="SearchByExample" visibility="public">267 <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>268 <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_nxDjEMcsEeSYR7D_AlByKg"/>269 <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_nxEKIMcsEeSYR7D_AlByKg" value="1"/>270 <defaultValue xmi:type="uml:LiteralString" xmi:id="_nxExMMcsEeSYR7D_AlByKg">271 261 <value xsi:nil="true"/> 272 262 </defaultValue> … … 471 461 </ownedAttribute> 472 462 </packagedElement> 473 <packagedElement xmi:type="uml:DataType" xmi:id="_pLWzUMcrEeSYR7D_AlByKg" name=" SearchByCriteria">463 <packagedElement xmi:type="uml:DataType" xmi:id="_pLWzUMcrEeSYR7D_AlByKg" name="searchByCriteria"> 474 464 <ownedAttribute xmi:type="uml:Property" xmi:id="_R3LFsMcsEeSYR7D_AlByKg" name="FilterCriteria" visibility="public" type="_F1wiQMcsEeSYR7D_AlByKg"> 475 465 <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_S40I4McsEeSYR7D_AlByKg"/> … … 617 607 <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_5pptkMcyEeSYR7D_AlByKg" name="Numeric"/> 618 608 </packagedElement> 619 <packagedElement xmi:type="uml:DataType" xmi:id="_XENlYMvZEeSyCug81TQDwA" name="FindSemanticSignifierRequest"/>620 609 </packagedElement> 621 610 <packagedElement xmi:type="uml:Package" xmi:id="__Qta4L2pEeSe48NTDZ3Xhg" name="IXS"> … … 1271 1260 </defaultValue> 1272 1261 </ownedAttribute> 1262 </packagedElement> 1263 </packagedElement> 1264 </packagedElement> 1265 <packagedElement xmi:type="uml:Package" xmi:id="_BQqV4L2pEeSe48NTDZ3Xhg" name="Instances"> 1266 <packagedElement xmi:type="uml:Package" xmi:id="_HdUFYL2pEeSe48NTDZ3Xhg" name="RLUS"> 1267 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_CDZzwLzgEeSu8bCjKN8_hw" name="ListSemanticSignifiersRequest_spec" classifier="_w0vXYKCbEeSR_swKuhjZ_A"> 1268 <slot xmi:type="uml:Slot" xmi:id="_sEXpQLziEeSu8bCjKN8_hw" definingFeature="_km5yILziEeSu8bCjKN8_hw"> 1269 <value xmi:type="uml:LiteralString" xmi:id="_ygYqcLziEeSu8bCjKN8_hw"/> 1270 </slot> 1271 </packagedElement> 1272 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_JdHMQLzgEeSu8bCjKN8_hw" name="ListSemanticSignifiersResponse_spec" classifier="_XK8dQKCcEeSR_swKuhjZ_A"> 1273 <slot xmi:type="uml:Slot" xmi:id="_1BPdoLziEeSu8bCjKN8_hw" definingFeature="_pptFUKChEeSR_swKuhjZ_A"> 1274 <value xmi:type="uml:LiteralString" xmi:id="_U1wYILzjEeSu8bCjKN8_hw" name="LiteralString_XDW" value="xdw"/> 1275 </slot> 1276 <slot xmi:type="uml:Slot" xmi:id="_1v9IULzjEeSu8bCjKN8_hw" definingFeature="_pptFUKChEeSR_swKuhjZ_A"> 1277 <value xmi:type="uml:LiteralString" xmi:id="_70uHILzjEeSu8bCjKN8_hw" name="LiteralString_CDA2REPORT" value="cda2report"/> 1278 </slot> 1279 <slot xmi:type="uml:Slot" xmi:id="_HDWVgMfWEeSYR7D_AlByKg" definingFeature="_pptFUKChEeSR_swKuhjZ_A"> 1280 <value xmi:type="uml:LiteralString" xmi:id="_OD5AEMfWEeSYR7D_AlByKg" name="" value="rlpnotes"/> 1281 </slot> 1282 </packagedElement> 1283 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_EgFSQMf8EeSYR7D_AlByKg" name="put" classifier="_Kv7tUMcYEeSYR7D_AlByKg"> 1284 <slot xmi:type="uml:Slot" xmi:id="_Nv-wUMf8EeSYR7D_AlByKg" definingFeature="_ZAJOIMcZEeSYR7D_AlByKg"> 1285 <value xmi:type="uml:InstanceValue" xmi:id="__m28sMf_EeSYR7D_AlByKg" instance="_dkTksMf8EeSYR7D_AlByKg"/> 1286 </slot> 1287 <slot xmi:type="uml:Slot" xmi:id="_UfjmsMf8EeSYR7D_AlByKg" definingFeature="_dkzFEMcZEeSYR7D_AlByKg"/> 1288 <slot xmi:type="uml:Slot" xmi:id="_WiBNsMf8EeSYR7D_AlByKg" definingFeature="_izMckMcZEeSYR7D_AlByKg"> 1289 <value xmi:type="uml:LiteralString" xmi:id="_adEuAMf8EeSYR7D_AlByKg" value="INSERT"/> 1290 </slot> 1291 </packagedElement> 1292 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_dkTksMf8EeSYR7D_AlByKg" name="ExampleDocument" classifier="_14bXIMcQEeSYR7D_AlByKg"> 1293 <slot xmi:type="uml:Slot" xmi:id="_kgD14Mf8EeSYR7D_AlByKg" definingFeature="_c20sIMcWEeSYR7D_AlByKg"> 1294 <value xmi:type="uml:LiteralString" xmi:id="_5qz8YMf8EeSYR7D_AlByKg" value="1.0"/> 1295 </slot> 1296 <slot xmi:type="uml:Slot" xmi:id="_nLm2IMf8EeSYR7D_AlByKg" definingFeature="_hKPpIMcWEeSYR7D_AlByKg"> 1297 <value xmi:type="uml:InstanceValue" xmi:id="_39Q1cMf8EeSYR7D_AlByKg" name="" instance="_wNcqEMf8EeSYR7D_AlByKg"/> 1298 </slot> 1299 <slot xmi:type="uml:Slot" xmi:id="_pOmooMf8EeSYR7D_AlByKg" definingFeature="_nOzMkMcWEeSYR7D_AlByKg"> 1300 <value xmi:type="uml:LiteralNull" xmi:id="_r2ZKQMf8EeSYR7D_AlByKg"/> 1301 </slot> 1302 </packagedElement> 1303 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_wNcqEMf8EeSYR7D_AlByKg" name="ExampleMetadata"> 1304 <slot xmi:type="uml:Slot" xmi:id="_-kQXkMf8EeSYR7D_AlByKg" definingFeature="_nJkjwMcVEeSYR7D_AlByKg"> 1305 <value xmi:type="uml:InstanceValue" xmi:id="_ZEHFEMf-EeSYR7D_AlByKg" instance="_O-LW4Mf-EeSYR7D_AlByKg"/> 1306 </slot> 1307 <slot xmi:type="uml:Slot" xmi:id="_DdNqkMf9EeSYR7D_AlByKg" definingFeature="_nJkjwMcVEeSYR7D_AlByKg"> 1308 <value xmi:type="uml:InstanceValue" xmi:id="_bDbRcMf-EeSYR7D_AlByKg" instance="_SOwW0Mf-EeSYR7D_AlByKg"/> 1309 </slot> 1310 </packagedElement> 1311 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_O-LW4Mf-EeSYR7D_AlByKg" name="DocumentIDParamenter" classifier="_74HWwMcSEeSYR7D_AlByKg"> 1312 <slot xmi:type="uml:Slot" xmi:id="_faHk4Mf-EeSYR7D_AlByKg" definingFeature="_BW_aQMcTEeSYR7D_AlByKg"> 1313 <value xmi:type="uml:LiteralString" xmi:id="_qQT14Mf_EeSYR7D_AlByKg" value="id"/> 1314 </slot> 1315 <slot xmi:type="uml:Slot" xmi:id="_iGXvwMf-EeSYR7D_AlByKg" definingFeature="_E-KVQMcTEeSYR7D_AlByKg"> 1316 <value xmi:type="uml:LiteralString" xmi:id="_rv1u8Mf_EeSYR7D_AlByKg" value="doc1"/> 1317 </slot> 1318 </packagedElement> 1319 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_SOwW0Mf-EeSYR7D_AlByKg" name="PatientIDParameter" classifier="_74HWwMcSEeSYR7D_AlByKg"> 1320 <slot xmi:type="uml:Slot" xmi:id="_jdgh0Mf-EeSYR7D_AlByKg" definingFeature="_BW_aQMcTEeSYR7D_AlByKg"> 1321 <value xmi:type="uml:LiteralString" xmi:id="_uwfcgMf_EeSYR7D_AlByKg" value="subjectid"/> 1322 </slot> 1323 <slot xmi:type="uml:Slot" xmi:id="_kZFZQMf-EeSYR7D_AlByKg" definingFeature="_E-KVQMcTEeSYR7D_AlByKg"> 1324 <value xmi:type="uml:LiteralString" xmi:id="_z1dyQMf_EeSYR7D_AlByKg" value="testpatient1"/> 1325 </slot> 1326 </packagedElement> 1327 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_B1McgMgAEeSYR7D_AlByKg" name="OK_putResponse" classifier="_RAXOQLwPEeS8kt2gTxQkQg _VWhWMLwPEeS8kt2gTxQkQg"> 1328 <slot xmi:type="uml:Slot" xmi:id="_bQ4XQMgBEeSYR7D_AlByKg" definingFeature="_CcKvkLwQEeS8kt2gTxQkQg"> 1329 <value xmi:type="uml:LiteralBoolean" xmi:id="_fWuyUMgBEeSYR7D_AlByKg" value="true"/> 1330 </slot> 1331 </packagedElement> 1332 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_F3E9kMgAEeSYR7D_AlByKg" name="FAIL_putResponse" classifier="_RAXOQLwPEeS8kt2gTxQkQg _VWhWMLwPEeS8kt2gTxQkQg"> 1333 <slot xmi:type="uml:Slot" xmi:id="_gk2LQMgBEeSYR7D_AlByKg" definingFeature="_CcKvkLwQEeS8kt2gTxQkQg"> 1334 <value xmi:type="uml:LiteralBoolean" xmi:id="_iOC9sMgBEeSYR7D_AlByKg"/> 1335 </slot> 1336 </packagedElement> 1337 </packagedElement> 1338 <packagedElement xmi:type="uml:Package" xmi:id="_Nul0IMD0EeSlO4e8QG-B1g" name="IXS"> 1339 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_c2b9AMD0EeSlO4e8QG-B1g" name="createSemanticSignifier_spec" classifier="_ct5U0L2uEeSe48NTDZ3Xhg"> 1340 <slot xmi:type="uml:Slot" xmi:id="_MA21EMD2EeSlO4e8QG-B1g" definingFeature="_k5zmUL2uEeSe48NTDZ3Xhg"> 1341 <value xmi:type="uml:InstanceValue" xmi:id="_Uc_68MD2EeSlO4e8QG-B1g" type="_P4fsgL2qEeSe48NTDZ3Xhg" instance="_r0olMMD1EeSlO4e8QG-B1g"/> 1342 </slot> 1343 </packagedElement> 1344 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_iPH48MD0EeSlO4e8QG-B1g" name="createSemanticSignifierResponse_spec" classifier="_ZQ7h4L2yEeSe48NTDZ3Xhg"> 1345 <slot xmi:type="uml:Slot" xmi:id="_I92FIMD4EeSlO4e8QG-B1g" definingFeature="_iV_B4L2yEeSe48NTDZ3Xhg"> 1346 <value xmi:type="uml:InstanceValue" xmi:id="_RDXawMD4EeSlO4e8QG-B1g" type="_ssC68L2rEeSe48NTDZ3Xhg" instance="_eIFqwMD3EeSlO4e8QG-B1g"/> 1347 </slot> 1348 </packagedElement> 1349 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_r0olMMD1EeSlO4e8QG-B1g" name="POCDPatientSignifier" classifier="_P4fsgL2qEeSe48NTDZ3Xhg"> 1350 <slot xmi:type="uml:Slot" xmi:id="_zIOuoMD1EeSlO4e8QG-B1g" definingFeature="_ugB2gL2qEeSe48NTDZ3Xhg"> 1351 <value xmi:type="uml:LiteralString" xmi:id="_gx1s8MfWEeSYR7D_AlByKg" value="POCDPatient"/> 1352 </slot> 1353 <slot xmi:type="uml:Slot" xmi:id="_3rhToMD1EeSlO4e8QG-B1g" definingFeature="_3LvpcL2qEeSe48NTDZ3Xhg"> 1354 <value xmi:type="uml:LiteralString" xmi:id="_eoQ74MfXEeSYR7D_AlByKg" name="" value="pocdpatient"/> 1355 </slot> 1356 <slot xmi:type="uml:Slot" xmi:id="_6b6XoMD1EeSlO4e8QG-B1g" definingFeature="_6qqnYL2qEeSe48NTDZ3Xhg"> 1357 <value xmi:type="uml:LiteralString" xmi:id="__wNNIMfXEeSYR7D_AlByKg" value="pocdpatient"/> 1358 </slot> 1359 <slot xmi:type="uml:Slot" xmi:id="_8texoMD1EeSlO4e8QG-B1g" definingFeature="_983X8L2qEeSe48NTDZ3Xhg"> 1360 <value xmi:type="uml:LiteralString" xmi:id="_BPZvAMfYEeSYR7D_AlByKg" value="1.0"/> 1361 </slot> 1362 <slot xmi:type="uml:Slot" xmi:id="_AeygEMD2EeSlO4e8QG-B1g" definingFeature="_BL-_UL2rEeSe48NTDZ3Xhg"> 1363 <value xmi:type="uml:LiteralString" xmi:id="_FpX_8MfYEeSYR7D_AlByKg" value="HW_POCD_MT000040.xsd"/> 1364 </slot> 1365 <slot xmi:type="uml:Slot" xmi:id="_C0yHEMD2EeSlO4e8QG-B1g" definingFeature="_EAkm0L2rEeSe48NTDZ3Xhg"> 1366 <value xmi:type="uml:LiteralNull" xmi:id="_BNsFgMfdEeSYR7D_AlByKg"/> 1367 </slot> 1368 <slot xmi:type="uml:Slot" xmi:id="_FfJbkMD2EeSlO4e8QG-B1g" definingFeature="_IkDZEL2rEeSe48NTDZ3Xhg"> 1369 <value xmi:type="uml:LiteralNull" xmi:id="_CSvpEMfdEeSYR7D_AlByKg"/> 1370 </slot> 1371 </packagedElement> 1372 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_eIFqwMD3EeSlO4e8QG-B1g" name="OKStatus" classifier="_ssC68L2rEeSe48NTDZ3Xhg"> 1373 <slot xmi:type="uml:Slot" xmi:id="_h9JQwMD3EeSlO4e8QG-B1g" definingFeature="_0TChgL2rEeSe48NTDZ3Xhg"> 1374 <value xmi:type="uml:LiteralBoolean" xmi:id="_4YkU8MD3EeSlO4e8QG-B1g" name=""/> 1375 </slot> 1376 <slot xmi:type="uml:Slot" xmi:id="_mPf2wMD3EeSlO4e8QG-B1g" definingFeature="_5eItYL2rEeSe48NTDZ3Xhg"> 1377 <value xmi:type="uml:LiteralNull" xmi:id="_CLckQMD4EeSlO4e8QG-B1g"/> 1378 </slot> 1379 <slot xmi:type="uml:Slot" xmi:id="_D2ZDIMD4EeSlO4e8QG-B1g" definingFeature="__Rt1kL2rEeSe48NTDZ3Xhg"> 1380 <value xmi:type="uml:LiteralNull" xmi:id="_FutPoMD4EeSlO4e8QG-B1g"/> 1381 </slot> 1382 </packagedElement> 1383 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_mtY8AMfvEeSYR7D_AlByKg" name="createIdentityFromEntity_spec" classifier="_rYkCEMZ4EeSYR7D_AlByKg"> 1384 <slot xmi:type="uml:Slot" xmi:id="_zvgHcMfvEeSYR7D_AlByKg" definingFeature="_UBjp8MZ5EeSYR7D_AlByKg"> 1385 <value xmi:type="uml:LiteralString" xmi:id="_5u1MoMfvEeSYR7D_AlByKg" name="" value="midas"/> 1386 </slot> 1387 <slot xmi:type="uml:Slot" xmi:id="_6qh_4MfvEeSYR7D_AlByKg" definingFeature="_YuO0cMZ5EeSYR7D_AlByKg"> 1388 <value xmi:type="uml:LiteralString" xmi:id="_Aoz8MMfwEeSYR7D_AlByKg" value="pocdpatient"/> 1389 </slot> 1390 <slot xmi:type="uml:Slot" xmi:id="_Ks_W4MfwEeSYR7D_AlByKg" definingFeature="_dPdj8MZ5EeSYR7D_AlByKg"> 1391 <value xmi:type="uml:InstanceValue" xmi:id="_hpz38MfwEeSYR7D_AlByKg" instance="_QBfWYMfwEeSYR7D_AlByKg"/> 1392 </slot> 1393 </packagedElement> 1394 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_QBfWYMfwEeSYR7D_AlByKg" name="ExampleTraits" classifier="_1CvGgMZmEeSYR7D_AlByKg"> 1395 <slot xmi:type="uml:Slot" xmi:id="_X4MM4MfwEeSYR7D_AlByKg" definingFeature="_PZtaQMZnEeSYR7D_AlByKg"> 1396 <value xmi:type="uml:InstanceValue" xmi:id="_B0fk0MfzEeSYR7D_AlByKg" instance="_scGV0MfwEeSYR7D_AlByKg"/> 1397 </slot> 1398 <slot xmi:type="uml:Slot" xmi:id="_NsT1cMf1EeSYR7D_AlByKg" definingFeature="_wgHoMMZsEeSYR7D_AlByKg"> 1399 <value xmi:type="uml:InstanceValue" xmi:id="_TsSa4Mf1EeSYR7D_AlByKg" instance="_PDR6UMfzEeSYR7D_AlByKg"/> 1400 </slot> 1401 </packagedElement> 1402 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_scGV0MfwEeSYR7D_AlByKg" name="ExampleID" classifier="_UWjRgLwQEeS8kt2gTxQkQg"> 1403 <slot xmi:type="uml:Slot" xmi:id="_x-VPUMfwEeSYR7D_AlByKg" definingFeature="_cmDpkLwQEeS8kt2gTxQkQg"> 1404 <value xmi:type="uml:LiteralString" xmi:id="_vHnO8MfyEeSYR7D_AlByKg" value="2.16.840.1.113883.2.9.4.3.2"/> 1405 </slot> 1406 <slot xmi:type="uml:Slot" xmi:id="_1cG9wMfwEeSYR7D_AlByKg" definingFeature="_gMtAILwQEeS8kt2gTxQkQg"> 1407 <value xmi:type="uml:LiteralString" xmi:id="_xcMgsMfyEeSYR7D_AlByKg" value="testpatient1"/> 1408 </slot> 1409 </packagedElement> 1410 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_PDR6UMfzEeSYR7D_AlByKg" name="ExamplePatient" classifier="_XPGpMMZnEeSYR7D_AlByKg"> 1411 <slot xmi:type="uml:Slot" xmi:id="_WdS00MfzEeSYR7D_AlByKg" definingFeature="_mIZYsMZnEeSYR7D_AlByKg"/> 1412 <slot xmi:type="uml:Slot" xmi:id="_bCGcwMfzEeSYR7D_AlByKg" definingFeature="_faYPQMZsEeSYR7D_AlByKg"/> 1413 <slot xmi:type="uml:Slot" xmi:id="_YeRYoMf0EeSYR7D_AlByKg" definingFeature="_hZHMsMf0EeSYR7D_AlByKg"/> 1414 </packagedElement> 1415 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_ucn7wMfzEeSYR7D_AlByKg" name="ExampleName" classifier="_YorEMMZnEeSYR7D_AlByKg"> 1416 <slot xmi:type="uml:Slot" xmi:id="_yL8tMMfzEeSYR7D_AlByKg" definingFeature="_cz2rMMZnEeSYR7D_AlByKg"> 1417 <value xmi:type="uml:LiteralString" xmi:id="_3rthgMfzEeSYR7D_AlByKg" value="Pat"/> 1418 </slot> 1419 <slot xmi:type="uml:Slot" xmi:id="_4b0IwMfzEeSYR7D_AlByKg" definingFeature="_glBPsMZnEeSYR7D_AlByKg"> 1420 <value xmi:type="uml:LiteralString" xmi:id="_7c-zsMfzEeSYR7D_AlByKg" value="Test"/> 1421 </slot> 1422 </packagedElement> 1423 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_9QQvMMfzEeSYR7D_AlByKg" name="ExampleGender" classifier="_Y6W30MZsEeSYR7D_AlByKg"> 1424 <slot xmi:type="uml:Slot" xmi:id="_KKSVoMf0EeSYR7D_AlByKg" definingFeature="_aUc3QMZsEeSYR7D_AlByKg"> 1425 <value xmi:type="uml:LiteralString" xmi:id="_VcZjEMf0EeSYR7D_AlByKg" value="2.16.840.1.113883.5.1"/> 1426 </slot> 1427 <slot xmi:type="uml:Slot" xmi:id="_MszVsMf0EeSYR7D_AlByKg" definingFeature="_bywoUMZsEeSYR7D_AlByKg"> 1428 <value xmi:type="uml:LiteralString" xmi:id="_S7oPcMf0EeSYR7D_AlByKg" value="M"/> 1429 </slot> 1430 </packagedElement> 1431 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_10PNEMf0EeSYR7D_AlByKg" name="ExampleBirthTime" classifier="_A2L3sMZtEeSYR7D_AlByKg"> 1432 <slot xmi:type="uml:Slot" xmi:id="_6E5xAMf0EeSYR7D_AlByKg" definingFeature="_D0_yMMZtEeSYR7D_AlByKg"> 1433 <value xmi:type="uml:LiteralString" xmi:id="_AQABUMf1EeSYR7D_AlByKg" value="19560602"/> 1434 </slot> 1435 </packagedElement> 1436 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_caPCcMf1EeSYR7D_AlByKg" name="OK_createIdentityFromEntityResponse_spec" classifier="_nUTF8MZ5EeSYR7D_AlByKg"> 1437 <slot xmi:type="uml:Slot" xmi:id="_-5ed0Mf1EeSYR7D_AlByKg" definingFeature="_-RyVYMZ5EeSYR7D_AlByKg"> 1438 <value xmi:type="uml:InstanceValue" xmi:id="_JJSgwMf2EeSYR7D_AlByKg" instance="_eIFqwMD3EeSlO4e8QG-B1g"/> 1439 </slot> 1440 </packagedElement> 1441 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_jVpVYMf1EeSYR7D_AlByKg" name="FAIL_createIdentityFromEntityResponse_spec" classifier="_nUTF8MZ5EeSYR7D_AlByKg"> 1442 <slot xmi:type="uml:Slot" xmi:id="_J74bUMf2EeSYR7D_AlByKg" definingFeature="_iV_B4L2yEeSe48NTDZ3Xhg"> 1443 <value xmi:type="uml:InstanceValue" xmi:id="_RiZgwMf2EeSYR7D_AlByKg" instance="_pIW64Mf1EeSYR7D_AlByKg"/> 1444 </slot> 1445 </packagedElement> 1446 <packagedElement xmi:type="uml:InstanceSpecification" xmi:id="_pIW64Mf1EeSYR7D_AlByKg" name="FAILStatus" classifier="_ssC68L2rEeSe48NTDZ3Xhg"> 1447 <slot xmi:type="uml:Slot" xmi:id="_rhQE4Mf1EeSYR7D_AlByKg" definingFeature="_0TChgL2rEeSe48NTDZ3Xhg"> 1448 <value xmi:type="uml:LiteralBoolean" xmi:id="_1pjKkMf1EeSYR7D_AlByKg"/> 1449 </slot> 1273 1450 </packagedElement> 1274 1451 </packagedElement> … … 1290 1467 </ownedOperation> 1291 1468 <ownedOperation xmi:type="uml:Operation" xmi:id="_sFD4wLwREeS8kt2gTxQkQg" name="findSemanticSignifier"> 1292 <ownedParameter xmi:type="uml:Parameter" xmi:id="_MKDfQLwSEeS8kt2gTxQkQg" name="request" type="_XENlYMvZEeSyCug81TQDwA"/>1469 <ownedParameter xmi:type="uml:Parameter" xmi:id="_MKDfQLwSEeS8kt2gTxQkQg" name="request"/> 1293 1470 <ownedParameter xmi:type="uml:Parameter" xmi:id="_TUbbQLwSEeS8kt2gTxQkQg" name="response" type="_5OOj4LwQEeS8kt2gTxQkQg" direction="return"/> 1294 1471 </ownedOperation> … … 1324 1501 <packagedElement xmi:type="uml:Component" xmi:id="_CrcpgKC4EeSR_swKuhjZ_A" clientDependency="_DQbpILEPEeSPMcTTAQ1qKQ" name="RLUSMetaDataPortType"/> 1325 1502 <packagedElement xmi:type="uml:Component" xmi:id="_9yN0QKC4EeSR_swKuhjZ_A" name="RLUSMetaDataTestContext"/> 1326 <packagedElement xmi:type="uml:Component" xmi:id="_X3xRwKDCEeSR_swKuhjZ_A" name="RLUSTestSuite_1" >1503 <packagedElement xmi:type="uml:Component" xmi:id="_X3xRwKDCEeSR_swKuhjZ_A" name="RLUSTestSuite_1" classifierBehavior="_iCR6QLzXEeSu8bCjKN8_hw"> 1327 1504 <ownedAttribute xmi:type="uml:Property" xmi:id="_Heb2YKDDEeSR_swKuhjZ_A" name="rlusService" visibility="public" type="_Aow1gKC3EeSR_swKuhjZ_A"> 1328 1505 <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_LoBh8KDDEeSR_swKuhjZ_A" value="1"/> … … 1349 1526 </end> 1350 1527 </ownedConnector> 1528 <ownedBehavior xmi:type="uml:Interaction" xmi:id="_iCR6QLzXEeSu8bCjKN8_hw" name="testcase_1_impl" specification="_R78v4LzXEeSu8bCjKN8_hw"> 1529 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_baiRoMDyEeSlO4e8QG-B1g" name="MessageSend" covered="_UYMTYLzYEeSu8bCjKN8_hw" message="_bahqkMDyEeSlO4e8QG-B1g"/> 1530 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_TowXYMDyEeSlO4e8QG-B1g" name="BehaviorExecSpec" covered="_UYMTYLzYEeSu8bCjKN8_hw" finish="_dKRw8cDyEeSlO4e8QG-B1g" start="_baiRoMDyEeSlO4e8QG-B1g"/> 1531 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_UNxwAMDyEeSlO4e8QG-B1g" name="BehaviorExecSpec0" covered="_XqBQgLzYEeSu8bCjKN8_hw" finish="_dKRw8MDyEeSlO4e8QG-B1g" start="_bai4sMDyEeSlO4e8QG-B1g"/> 1532 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_bai4sMDyEeSlO4e8QG-B1g" name="MessageRecv" covered="_XqBQgLzYEeSu8bCjKN8_hw" message="_bahqkMDyEeSlO4e8QG-B1g"/> 1533 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_dKRw8MDyEeSlO4e8QG-B1g" name="Message0Send" covered="_XqBQgLzYEeSu8bCjKN8_hw" message="_dKRJ4MDyEeSlO4e8QG-B1g"/> 1534 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_dKRw8cDyEeSlO4e8QG-B1g" name="Message0Recv" covered="_UYMTYLzYEeSu8bCjKN8_hw" message="_dKRJ4MDyEeSlO4e8QG-B1g"/> 1535 <lifeline xmi:type="uml:Lifeline" xmi:id="_UYMTYLzYEeSu8bCjKN8_hw" name="TestComponent" represents="_1c1AMKDEEeSR_swKuhjZ_A" coveredBy="_TowXYMDyEeSlO4e8QG-B1g _baiRoMDyEeSlO4e8QG-B1g _dKRw8cDyEeSlO4e8QG-B1g"/> 1536 <lifeline xmi:type="uml:Lifeline" xmi:id="_XqBQgLzYEeSu8bCjKN8_hw" name="SUT" represents="_Heb2YKDDEeSR_swKuhjZ_A" coveredBy="_UNxwAMDyEeSlO4e8QG-B1g _bai4sMDyEeSlO4e8QG-B1g _dKRw8MDyEeSlO4e8QG-B1g"/> 1537 <message xmi:type="uml:Message" xmi:id="_bahqkMDyEeSlO4e8QG-B1g" name="1:Message" connector="_PuBcEKDFEeSR_swKuhjZ_A" receiveEvent="_bai4sMDyEeSlO4e8QG-B1g" sendEvent="_baiRoMDyEeSlO4e8QG-B1g" signature="_0e4SkKC2EeSR_swKuhjZ_A"> 1538 <argument xmi:type="uml:InstanceValue" xmi:id="_3mVWkMZkEeSYR7D_AlByKg" name="request" type="_w0vXYKCbEeSR_swKuhjZ_A" instance="_CDZzwLzgEeSu8bCjKN8_hw"/> 1539 <argument xmi:type="uml:LiteralNull" xmi:id="_5LrjwMZkEeSYR7D_AlByKg" name="response"/> 1540 </message> 1541 <message xmi:type="uml:Message" xmi:id="_dKRJ4MDyEeSlO4e8QG-B1g" name="2:Message" connector="_PuBcEKDFEeSR_swKuhjZ_A" messageSort="reply" receiveEvent="_dKRw8cDyEeSlO4e8QG-B1g" sendEvent="_dKRw8MDyEeSlO4e8QG-B1g" signature="_0e4SkKC2EeSR_swKuhjZ_A"> 1542 <argument xmi:type="uml:InstanceValue" xmi:id="_8EKz0MZkEeSYR7D_AlByKg" name="response" type="_XK8dQKCcEeSR_swKuhjZ_A" instance="_JdHMQLzgEeSu8bCjKN8_hw"/> 1543 <argument xmi:type="uml:LiteralNull" xmi:id="_9NqLcMZkEeSYR7D_AlByKg" name="request"/> 1544 </message> 1545 </ownedBehavior> 1546 <ownedOperation xmi:type="uml:Operation" xmi:id="_R78v4LzXEeSu8bCjKN8_hw" name="testcase_1" method="_iCR6QLzXEeSu8bCjKN8_hw"/> 1351 1547 </packagedElement> 1352 1548 <packagedElement xmi:type="uml:Component" xmi:id="_JyRr0KDEEeSR_swKuhjZ_A" name="RLUSEnvironment"> … … 1391 1587 <packagedElement xmi:type="uml:Component" xmi:id="_XvSrQLEVEeSPMcTTAQ1qKQ" clientDependency="_cK23oLEVEeSPMcTTAQ1qKQ" name="RLUSRLPNotesMQPortType"/> 1392 1588 <packagedElement xmi:type="uml:InterfaceRealization" xmi:id="_cK23oLEVEeSPMcTTAQ1qKQ" name="Realization1" client="_XvSrQLEVEeSPMcTTAQ1qKQ" supplier="_G8nYQLEVEeSPMcTTAQ1qKQ" contract="_G8nYQLEVEeSPMcTTAQ1qKQ"/> 1393 <packagedElement xmi:type="uml:Component" xmi:id="_Db-BkMdGEeSYR7D_AlByKg" name="RLUSTestSuite_2" >1589 <packagedElement xmi:type="uml:Component" xmi:id="_Db-BkMdGEeSYR7D_AlByKg" name="RLUSTestSuite_2" classifierBehavior="_Kj0uoMgCEeSYR7D_AlByKg"> 1394 1590 <ownedAttribute xmi:type="uml:Property" xmi:id="_Y1zcwMfREeSYR7D_AlByKg" name="rlusService" visibility="public" type="_Aow1gKC3EeSR_swKuhjZ_A"> 1395 1591 <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_aAcq8MfREeSYR7D_AlByKg" value="1"/> … … 1410 1606 </end> 1411 1607 </ownedConnector> 1608 <ownedBehavior xmi:type="uml:Interaction" xmi:id="_Kj0uoMgCEeSYR7D_AlByKg" name="rlus_mq_testcase_1" specification="_si1AMMgBEeSYR7D_AlByKg"> 1609 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_nBxV8cgCEeSYR7D_AlByKg" name="MessageSend" message="_nBxV8MgCEeSYR7D_AlByKg"/> 1610 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_nBx9AMgCEeSYR7D_AlByKg" name="MessageRecv" message="_nBxV8MgCEeSYR7D_AlByKg"/> 1611 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_pS5EAMgCEeSYR7D_AlByKg" name="MessageSend0" message="_pS4c8MgCEeSYR7D_AlByKg"/> 1612 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_pS5rEMgCEeSYR7D_AlByKg" name="MessageRecv0" message="_pS4c8MgCEeSYR7D_AlByKg"/> 1613 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_tg6joMgCEeSYR7D_AlByKg" name="MessageSend1" message="_tg58kMgCEeSYR7D_AlByKg"/> 1614 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_tg6jocgCEeSYR7D_AlByKg" name="MessageRecv1" message="_tg58kMgCEeSYR7D_AlByKg"/> 1615 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_wIgQ8MgCEeSYR7D_AlByKg" name="MessageSend2" message="_wIfp4MgCEeSYR7D_AlByKg"/> 1616 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_wIgQ8cgCEeSYR7D_AlByKg" name="MessageRecv2" message="_wIfp4MgCEeSYR7D_AlByKg"/> 1617 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_kAn5IMgCEeSYR7D_AlByKg" name="BehaviorExecSpec0" finish="_pS5EAMgCEeSYR7D_AlByKg" start="_nBx9AMgCEeSYR7D_AlByKg"/> 1618 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_jJ66oMgCEeSYR7D_AlByKg" name="BehaviorExecSpec" finish="_pS5rEMgCEeSYR7D_AlByKg" start="_nBxV8cgCEeSYR7D_AlByKg"/> 1619 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_rLm5IMgCEeSYR7D_AlByKg" name="BehaviorExecSpec2" finish="_wIgQ8MgCEeSYR7D_AlByKg" start="_tg6jocgCEeSYR7D_AlByKg"/> 1620 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_qtnVkMgCEeSYR7D_AlByKg" name="BehaviorExecSpec1" finish="_wIgQ8cgCEeSYR7D_AlByKg" start="_tg6joMgCEeSYR7D_AlByKg"/> 1621 <lifeline xmi:type="uml:Lifeline" xmi:id="_Yt95IMgCEeSYR7D_AlByKg" name="environment" represents="_1c1AMKDEEeSR_swKuhjZ_A"/> 1622 <lifeline xmi:type="uml:Lifeline" xmi:id="_ZeySEMgCEeSYR7D_AlByKg" name="rlusService" represents="_Heb2YKDDEeSR_swKuhjZ_A"/> 1623 <message xmi:type="uml:Message" xmi:id="_nBxV8MgCEeSYR7D_AlByKg" name="1:put" receiveEvent="_nBx9AMgCEeSYR7D_AlByKg" sendEvent="_nBxV8cgCEeSYR7D_AlByKg" signature="_5tRh8Mc1EeSYR7D_AlByKg"> 1624 <argument xmi:type="uml:InstanceValue" xmi:id="_E4FeYMgDEeSYR7D_AlByKg" name="request" type="_Kv7tUMcYEeSYR7D_AlByKg" instance="_EgFSQMf8EeSYR7D_AlByKg"/> 1625 <argument xmi:type="uml:LiteralNull" xmi:id="_G7ncYMgDEeSYR7D_AlByKg" name="response"/> 1626 </message> 1627 <message xmi:type="uml:Message" xmi:id="_pS4c8MgCEeSYR7D_AlByKg" name="2:putReply" messageSort="reply" receiveEvent="_pS5rEMgCEeSYR7D_AlByKg" sendEvent="_pS5EAMgCEeSYR7D_AlByKg" signature="_5tRh8Mc1EeSYR7D_AlByKg"> 1628 <argument xmi:type="uml:InstanceValue" xmi:id="_Mj894MgDEeSYR7D_AlByKg" name="response" type="_RAXOQLwPEeS8kt2gTxQkQg" instance="_B1McgMgAEeSYR7D_AlByKg"/> 1629 <argument xmi:type="uml:LiteralNull" xmi:id="_NiCWwMgDEeSYR7D_AlByKg" name="request"/> 1630 </message> 1631 <message xmi:type="uml:Message" xmi:id="_tg58kMgCEeSYR7D_AlByKg" name="3:put2" receiveEvent="_tg6jocgCEeSYR7D_AlByKg" sendEvent="_tg6joMgCEeSYR7D_AlByKg" signature="_5tRh8Mc1EeSYR7D_AlByKg"> 1632 <argument xmi:type="uml:InstanceValue" xmi:id="_P1dx8MgDEeSYR7D_AlByKg" name="request" type="_Kv7tUMcYEeSYR7D_AlByKg" instance="_EgFSQMf8EeSYR7D_AlByKg"/> 1633 <argument xmi:type="uml:LiteralNull" xmi:id="_SKuZIMgDEeSYR7D_AlByKg" name="response"/> 1634 </message> 1635 <message xmi:type="uml:Message" xmi:id="_wIfp4MgCEeSYR7D_AlByKg" name="4:putReply2" messageSort="reply" receiveEvent="_wIgQ8cgCEeSYR7D_AlByKg" sendEvent="_wIgQ8MgCEeSYR7D_AlByKg" signature="_5tRh8Mc1EeSYR7D_AlByKg"> 1636 <argument xmi:type="uml:InstanceValue" xmi:id="_Ujve8MgDEeSYR7D_AlByKg" name="response" type="_RAXOQLwPEeS8kt2gTxQkQg" instance="_F3E9kMgAEeSYR7D_AlByKg"/> 1637 <argument xmi:type="uml:LiteralNull" xmi:id="_VmcSEMgDEeSYR7D_AlByKg" name="request"/> 1638 </message> 1639 </ownedBehavior> 1640 <ownedOperation xmi:type="uml:Operation" xmi:id="_si1AMMgBEeSYR7D_AlByKg" name="rlus_mq_testcase_1" method="_Kj0uoMgCEeSYR7D_AlByKg"/> 1412 1641 </packagedElement> 1413 1642 </packagedElement> … … 1464 1693 </end> 1465 1694 </ownedConnector> 1695 <ownedBehavior xmi:type="uml:Interaction" xmi:id="_jTKlUMDzEeSlO4e8QG-B1g" name="testcase_1_impl" specification="_lPfV0MD4EeSlO4e8QG-B1g"> 1696 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_gHDKcMD6EeSjvrY9JxSQ3g" name="MessageRecv0" covered="_DEXGEMD0EeSlO4e8QG-B1g" message="_gHB8UMD6EeSjvrY9JxSQ3g"/> 1697 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_T4x2wMD6EeSjvrY9JxSQ3g" name="MessageSend" covered="_DEXGEMD0EeSlO4e8QG-B1g" message="_T4wooMD6EeSjvrY9JxSQ3g"/> 1698 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_RCkeocD6EeSjvrY9JxSQ3g" name="BehaviorExecSpec" covered="_DEXGEMD0EeSlO4e8QG-B1g" finish="_gHDKcMD6EeSjvrY9JxSQ3g" start="_T4x2wMD6EeSjvrY9JxSQ3g"/> 1699 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_RiBawMD6EeSjvrY9JxSQ3g" name="BehaviorExecSpec0" covered="_0vKiIMDzEeSlO4e8QG-B1g" finish="_gHCjYMD6EeSjvrY9JxSQ3g" start="_T4yd0MD6EeSjvrY9JxSQ3g"/> 1700 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_T4yd0MD6EeSjvrY9JxSQ3g" name="MessageRecv" covered="_0vKiIMDzEeSlO4e8QG-B1g" message="_T4wooMD6EeSjvrY9JxSQ3g"/> 1701 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_gHCjYMD6EeSjvrY9JxSQ3g" name="MessageSend0" covered="_0vKiIMDzEeSlO4e8QG-B1g" message="_gHB8UMD6EeSjvrY9JxSQ3g"/> 1702 <lifeline xmi:type="uml:Lifeline" xmi:id="_0vKiIMDzEeSlO4e8QG-B1g" name="SUT" visibility="public" represents="_5o09kMDkEeSlO4e8QG-B1g" coveredBy="_RiBawMD6EeSjvrY9JxSQ3g _T4yd0MD6EeSjvrY9JxSQ3g _gHCjYMD6EeSjvrY9JxSQ3g"/> 1703 <lifeline xmi:type="uml:Lifeline" xmi:id="_DEXGEMD0EeSlO4e8QG-B1g" name="ixsEnvironment" represents="_ZZWI4MDlEeSlO4e8QG-B1g" coveredBy="_RCkeocD6EeSjvrY9JxSQ3g _T4x2wMD6EeSjvrY9JxSQ3g _gHDKcMD6EeSjvrY9JxSQ3g"/> 1704 <message xmi:type="uml:Message" xmi:id="_T4wooMD6EeSjvrY9JxSQ3g" name="1:Message" connector="_mYgG8MDlEeSlO4e8QG-B1g" receiveEvent="_T4yd0MD6EeSjvrY9JxSQ3g" sendEvent="_T4x2wMD6EeSjvrY9JxSQ3g" signature="_Fn150MDQEeSlO4e8QG-B1g"> 1705 <argument xmi:type="uml:InstanceValue" xmi:id="_8qhyAMD6EeSjvrY9JxSQ3g" name="request" type="_ct5U0L2uEeSe48NTDZ3Xhg" instance="_c2b9AMD0EeSlO4e8QG-B1g"/> 1706 <argument xmi:type="uml:LiteralNull" xmi:id="_ce_V0MZkEeSYR7D_AlByKg" name="response"/> 1707 </message> 1708 <message xmi:type="uml:Message" xmi:id="_gHB8UMD6EeSjvrY9JxSQ3g" name="2:Message" connector="_mYgG8MDlEeSlO4e8QG-B1g" messageSort="reply" receiveEvent="_gHDKcMD6EeSjvrY9JxSQ3g" sendEvent="_gHCjYMD6EeSjvrY9JxSQ3g" signature="_Fn150MDQEeSlO4e8QG-B1g"> 1709 <argument xmi:type="uml:InstanceValue" xmi:id="_B_7wcMD7EeSjvrY9JxSQ3g" name="response" type="_ZQ7h4L2yEeSe48NTDZ3Xhg" instance="_iPH48MD0EeSlO4e8QG-B1g"/> 1710 <argument xmi:type="uml:LiteralNull" xmi:id="_e3alwMZkEeSYR7D_AlByKg" name="request"/> 1711 </message> 1712 </ownedBehavior> 1713 <ownedOperation xmi:type="uml:Operation" xmi:id="_lPfV0MD4EeSlO4e8QG-B1g" name="testcase_1" method="_jTKlUMDzEeSlO4e8QG-B1g"/> 1466 1714 </packagedElement> 1467 1715 <packagedElement xmi:type="uml:Component" xmi:id="_rCusUMDjEeSlO4e8QG-B1g" name="IXSTestEnvironment"> … … 1517 1765 <packagedElement xmi:type="uml:Component" xmi:id="_0AKlcMdGEeSYR7D_AlByKg" clientDependency="_6cGHEMdGEeSYR7D_AlByKg" name="IXSPOCDPatientPortType"/> 1518 1766 <packagedElement xmi:type="uml:InterfaceRealization" xmi:id="_6cGHEMdGEeSYR7D_AlByKg" name="Realization1" client="_0AKlcMdGEeSYR7D_AlByKg" supplier="_ErLvEMc4EeSYR7D_AlByKg" contract="_ErLvEMc4EeSYR7D_AlByKg"/> 1519 <packagedElement xmi:type="uml:Component" xmi:id="_Nc3pUMdHEeSYR7D_AlByKg" name="IXSTestSuite_2" >1767 <packagedElement xmi:type="uml:Component" xmi:id="_Nc3pUMdHEeSYR7D_AlByKg" name="IXSTestSuite_2" classifierBehavior="_e_vPoMf2EeSYR7D_AlByKg"> 1520 1768 <ownedAttribute xmi:type="uml:Property" xmi:id="_Dw-GIMfTEeSYR7D_AlByKg" name="ixsService" visibility="public" type="_DjK-QMDOEeSlO4e8QG-B1g"> 1521 1769 <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_E2j1MMfTEeSYR7D_AlByKg" value="1"/> … … 1536 1784 </end> 1537 1785 </ownedConnector> 1786 <ownedBehavior xmi:type="uml:Interaction" xmi:id="_e_vPoMf2EeSYR7D_AlByKg" name="ixs_mq_testcase_1" specification="_7DNhcMf2EeSYR7D_AlByKg"> 1787 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_LEivsMf6EeSYR7D_AlByKg" name="BehaviorExecSpec0" finish="_TS-wwMf6EeSYR7D_AlByKg" start="_O1vwccf6EeSYR7D_AlByKg"/> 1788 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_KV2dsMf6EeSYR7D_AlByKg" name="BehaviorExecSpec" finish="_TS_X0Mf6EeSYR7D_AlByKg" start="_O1vwcMf6EeSYR7D_AlByKg"/> 1789 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_vTPWgcf6EeSYR7D_AlByKg" name="BehaviorExecSpec1" finish="_3dkTocf6EeSYR7D_AlByKg" start="_ydwxwMf6EeSYR7D_AlByKg"/> 1790 <fragment xmi:type="uml:BehaviorExecutionSpecification" xmi:id="_v3tVgcf6EeSYR7D_AlByKg" name="BehaviorExecSpec2" finish="_3dkToMf6EeSYR7D_AlByKg" start="_ydxY0Mf6EeSYR7D_AlByKg"/> 1791 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_O1vwcMf6EeSYR7D_AlByKg" name="MessageSend" message="_O1vJYMf6EeSYR7D_AlByKg"/> 1792 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_O1vwccf6EeSYR7D_AlByKg" name="MessageRecv" message="_O1vJYMf6EeSYR7D_AlByKg"/> 1793 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_TS-wwMf6EeSYR7D_AlByKg" name="MessageSend0" message="_TS-JsMf6EeSYR7D_AlByKg"/> 1794 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_TS_X0Mf6EeSYR7D_AlByKg" name="MessageRecv0" message="_TS-JsMf6EeSYR7D_AlByKg"/> 1795 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_ydwxwMf6EeSYR7D_AlByKg" name="MessageSend1" message="_ydwKsMf6EeSYR7D_AlByKg"/> 1796 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_ydxY0Mf6EeSYR7D_AlByKg" name="MessageRecv1" message="_ydwKsMf6EeSYR7D_AlByKg"/> 1797 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_3dkToMf6EeSYR7D_AlByKg" name="MessageSend2" message="_3djskMf6EeSYR7D_AlByKg"/> 1798 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_3dkTocf6EeSYR7D_AlByKg" name="MessageRecv2" message="_3djskMf6EeSYR7D_AlByKg"/> 1799 <lifeline xmi:type="uml:Lifeline" xmi:id="_cF8ikMf3EeSYR7D_AlByKg" name="environment" represents="_ZZWI4MDlEeSlO4e8QG-B1g"/> 1800 <lifeline xmi:type="uml:Lifeline" xmi:id="_eWvggMf3EeSYR7D_AlByKg" name="ixsService" represents="_5o09kMDkEeSlO4e8QG-B1g"/> 1801 <message xmi:type="uml:Message" xmi:id="_O1vJYMf6EeSYR7D_AlByKg" name="1:createIdentityFromEntity" receiveEvent="_O1vwccf6EeSYR7D_AlByKg" sendEvent="_O1vwcMf6EeSYR7D_AlByKg" signature="_Op1wkMc4EeSYR7D_AlByKg"> 1802 <argument xmi:type="uml:InstanceValue" xmi:id="_hmFqAMf6EeSYR7D_AlByKg" name="request" type="_rYkCEMZ4EeSYR7D_AlByKg" instance="_mtY8AMfvEeSYR7D_AlByKg"/> 1803 <argument xmi:type="uml:LiteralNull" xmi:id="_jLwnUMf6EeSYR7D_AlByKg" name="response"/> 1804 </message> 1805 <message xmi:type="uml:Message" xmi:id="_TS-JsMf6EeSYR7D_AlByKg" name="2:createEntityFromEntity_reply" messageSort="reply" receiveEvent="_TS_X0Mf6EeSYR7D_AlByKg" sendEvent="_TS-wwMf6EeSYR7D_AlByKg" signature="_Op1wkMc4EeSYR7D_AlByKg"> 1806 <argument xmi:type="uml:InstanceValue" xmi:id="_lwTnsMf6EeSYR7D_AlByKg" name="response" type="_nUTF8MZ5EeSYR7D_AlByKg" instance="_caPCcMf1EeSYR7D_AlByKg"/> 1807 <argument xmi:type="uml:LiteralNull" xmi:id="_m3w_AMf6EeSYR7D_AlByKg" name="request"/> 1808 </message> 1809 <message xmi:type="uml:Message" xmi:id="_ydwKsMf6EeSYR7D_AlByKg" name="3:createIdentityFromEntity2" receiveEvent="_ydxY0Mf6EeSYR7D_AlByKg" sendEvent="_ydwxwMf6EeSYR7D_AlByKg" signature="_Op1wkMc4EeSYR7D_AlByKg"> 1810 <argument xmi:type="uml:InstanceValue" xmi:id="_CE10UMf7EeSYR7D_AlByKg" name="request" type="_rYkCEMZ4EeSYR7D_AlByKg" instance="_mtY8AMfvEeSYR7D_AlByKg"/> 1811 <argument xmi:type="uml:LiteralNull" xmi:id="_DRWDsMf7EeSYR7D_AlByKg" name="response"/> 1812 </message> 1813 <message xmi:type="uml:Message" xmi:id="_3djskMf6EeSYR7D_AlByKg" name="createIdentityFromEntity2_reply" messageSort="reply" receiveEvent="_3dkTocf6EeSYR7D_AlByKg" sendEvent="_3dkToMf6EeSYR7D_AlByKg" signature="_Op1wkMc4EeSYR7D_AlByKg"> 1814 <argument xmi:type="uml:InstanceValue" xmi:id="_GHzTcMf7EeSYR7D_AlByKg" name="response" type="_nUTF8MZ5EeSYR7D_AlByKg" instance="_jVpVYMf1EeSYR7D_AlByKg"/> 1815 <argument xmi:type="uml:LiteralNull" xmi:id="_IKeV0Mf7EeSYR7D_AlByKg" name="request"/> 1816 </message> 1817 </ownedBehavior> 1818 <ownedOperation xmi:type="uml:Operation" xmi:id="_7DNhcMf2EeSYR7D_AlByKg" name="ixs_mq_testcase_1" method="_e_vPoMf2EeSYR7D_AlByKg"/> 1538 1819 </packagedElement> 1539 1820 </packagedElement> … … 1562 1843 <utp:SUT xmi:id="_kqUhwKDDEeSR_swKuhjZ_A" base_Property="_Heb2YKDDEeSR_swKuhjZ_A"/> 1563 1844 <utp:TestComponent xmi:id="_pKr5IKDEEeSR_swKuhjZ_A" base_StructuredClassifier="_JyRr0KDEEeSR_swKuhjZ_A"/> 1845 <utp:TestCase xmi:id="_aaC9kLzXEeSu8bCjKN8_hw" base_Operation="_R78v4LzXEeSu8bCjKN8_hw"/> 1564 1846 <utp:TestContext xmi:id="_m_364MDjEeSlO4e8QG-B1g" base_BehavioredClassifier="_awaUYMDjEeSlO4e8QG-B1g" base_StructuredClassifier="_awaUYMDjEeSlO4e8QG-B1g"/> 1565 1847 <utp:TestComponent xmi:id="_vLsFwMDjEeSlO4e8QG-B1g" base_StructuredClassifier="_rCusUMDjEeSlO4e8QG-B1g"/> 1566 1848 <utp:SUT xmi:id="_K06PEMDlEeSlO4e8QG-B1g" base_Property="_5o09kMDkEeSlO4e8QG-B1g"/> 1849 <utp:TestCase xmi:id="_qo_KEMD4EeSlO4e8QG-B1g" base_Operation="_lPfV0MD4EeSlO4e8QG-B1g"/> 1567 1850 <utp:TestContext xmi:id="_JnER4MdGEeSYR7D_AlByKg" base_BehavioredClassifier="_Db-BkMdGEeSYR7D_AlByKg" base_StructuredClassifier="_Db-BkMdGEeSYR7D_AlByKg"/> 1568 1851 <utp:TestContext xmi:id="_XlOZYMdHEeSYR7D_AlByKg" base_BehavioredClassifier="_Nc3pUMdHEeSYR7D_AlByKg" base_StructuredClassifier="_Nc3pUMdHEeSYR7D_AlByKg"/> 1569 1852 <utp:SUT xmi:id="_KMWqoMfSEeSYR7D_AlByKg" base_Property="_Y1zcwMfREeSYR7D_AlByKg"/> 1570 1853 <utp:SUT xmi:id="_LQUMkMfTEeSYR7D_AlByKg" base_Property="_Dw-GIMfTEeSYR7D_AlByKg"/> 1854 <utp:TestCase xmi:id="_PTNP4Mf3EeSYR7D_AlByKg" base_Operation="_7DNhcMf2EeSYR7D_AlByKg"/> 1855 <utp:TestCase xmi:id="_H-H3sMgCEeSYR7D_AlByKg" base_Operation="_si1AMMgBEeSYR7D_AlByKg"/> 1571 1856 </xmi:XMI> -
trunk/autoquest-plugin-uml-test/src/test/resources/deda_rlus_properties.prop
r1914 r1927 1 serviceName.path./ midas/rlus/query/xdw= rlusService2 serviceName.path./ midas/rlus/update/xdw= rlusService3 serviceName.path./ midas/rlus/update/cda2report = rlusService4 serviceName.path./ midas/ixsmq/update/pocdpatient= ixsService5 serviceName.path./ midas/ixsmq/query/pocdpatient = ixsService1 serviceName.path./hspilot/rlus/query/cda2report = rlusService 2 serviceName.path./hspilot/rlus/update/cda2report = rlusService 3 serviceName.path./hspilot/ixsmq/query/pocdhealthcarefacility = ixsService 4 serviceName.path./hspilot/ixsmq/query/pocdassignedentity = ixsService 5 serviceName.path./hspilot/ixsmq/query/pocdpatient = ixsService 6 6 clientName.receiver.port.6000 = rlusEnvironment 7 8 test.ignored.services = ixsService 9 test.context = RLUSTestSuite_1 10 testcases.prefix = ubt 11 testcases.number = 10 12 testcases.minlenght = 1 13 testcases.maxlength = 100 -
trunk/autoquest-plugin-uml-test/src/test/resources/deda_usagejournal.log
r1856 r1927 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <session xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange" > 3 <httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33407</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="4505"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="4505"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 4 <soap:Header/> 5 <soap:Body> 6 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 7 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 8 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="b80baa99-9eef-435e-a174-4f511f6d6412"/> 9 <xdw:effectiveTime value="20140613171742+0200"/> 10 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 11 <xdw:patient> 12 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 13 </xdw:patient> 14 <xdw:author> 15 <xdw:assignedAuthor> 16 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 17 <hl7v3:assignedPerson/> 18 </xdw:assignedAuthor> 19 </xdw:author> 20 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 21 <xdw:workflowDocumentSequenceNumber>1</xdw:workflowDocumentSequenceNumber> 22 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 23 <xdw:workflowStatusHistory> 24 <xdw:documentEvent> 25 <xdw:eventTime>2014-06-13T17:17:42.43+02:00</xdw:eventTime> 26 <xdw:eventType>complete</xdw:eventType> 27 <xdw:taskEventIdentifier>d06c50f1-ef71-48f3-8c11-6ba96b669882#1</xdw:taskEventIdentifier> 28 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29 <xdw:previousStatus>OPEN</xdw:previousStatus> 30 <xdw:actualStatus>OPEN</xdw:actualStatus> 31 </xdw:documentEvent> 32 </xdw:workflowStatusHistory> 33 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 34 <xdw:TaskList> 35 <xdw:XDWTask> 36 <xdw:taskData> 37 <ws-ht:taskDetails> 38 <ws-ht:id>d06c50f1-ef71-48f3-8c11-6ba96b669882</ws-ht:id> 39 <ws-ht:taskType>Requested</ws-ht:taskType> 40 <ws-ht:name>xdw.creation</ws-ht:name> 41 <ws-ht:status>COMPLETED</ws-ht:status> 42 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 43 <ws-ht:createdTime>2014-06-13T17:17:42.43+02:00</ws-ht:createdTime> 44 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 45 <ws-ht:lastModifiedTime>2014-06-13T17:17:42.43+02:00</ws-ht:lastModifiedTime> 46 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 47 </ws-ht:taskDetails> 48 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 49 <ws-ht:input/> 50 <ws-ht:output/> 51 </xdw:taskData> 52 <xdw:taskEventHistory> 53 <xdw:taskEvent> 54 <xdw:id>1</xdw:id> 55 <xdw:eventTime>2014-06-13T17:17:42.43+02:00</xdw:eventTime> 56 <xdw:identifier>d06c50f1-ef71-48f3-8c11-6ba96b669882#1</xdw:identifier> 57 <xdw:eventType>complete</xdw:eventType> 58 <xdw:status>COMPLETED</xdw:status> 59 <xdw:eventData xsi:nil="true"/> 60 </xdw:taskEvent> 61 </xdw:taskEventHistory> 62 </xdw:XDWTask> 63 </xdw:TaskList> 64 </xdw:XDW.WorkflowDocument> 65 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 66 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 67 <rlustypes:SecurityContext> 68 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 69 </rlustypes:SecurityContext> 70 <rlustypes:CBRContext> 71 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 72 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 73 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 74 </rlustypes:CBRContext> 75 </rlustypes:RLUSPutRequestSrcStruct> 76 <writeCommandEnum>INSERT</writeCommandEnum> 77 </PutRequest> 78 </soap:Body> 79 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="430"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="430"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 3 <httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41170</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/hspilot/ixsmq/query/pocdassignedentity"><headers><header key="Host" value="10.0.0.9:6000"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/><header key="Pragma" value="no-cache"/><header key="Cache-Control" value="no-cache"/><header key="Max-Forwards" value="10"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:findIdentitiesByTraits""/><header key="X-Forwarded-For" value="151.22.5.34"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="-1"><data><?xml version="1.0" encoding="utf-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:findIdentitiesByTraits xmlns:ns2="http://www.omg.org/spec/IXS/201212" xmlns="urn:hl7-org:v3"><ns2:semanticSignifierName>pocdassignedentity</ns2:semanticSignifierName><ns2:entityId>LBRNTN65R16D086U</ns2:entityId><ns2:sourceId>HealthSoaf</ns2:sourceId><ns2:ixsId></ns2:ixsId><ns2:traits><id root="flake"></id></ns2:traits><ns2:searchQualifiers><ns2:maxResultSetSize>0</ns2:maxResultSetSize><ns2:raiseErrorIfLimitReached>false</ns2:raiseErrorIfLimitReached><ns2:searchConfidenceLevel>0.0</ns2:searchConfidenceLevel></ns2:searchQualifiers></ns2:findIdentitiesByTraits></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="1883"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="1883"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 80 4 <soapenv:Header/> 81 5 <soapenv:Body> 82 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 83 <rlustypes:success>false</rlustypes:success> 84 <rlustypes:message>Duplicate key: 43norno34-4no3na00-workflow-doc-2014.xdw</rlustypes:message> 85 </rlustypes:RLUSStatusCode> 86 </soapenv:Body> 87 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41793</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="PUT" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/hdata/midasrlus/7809c024-8058-4c89-9a71-effd2d53f171"><headers><header key="Authorization" value="Basic YWRtaW46YWRtaW4="/><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="application/x-www-form-urlencoded; charset=UTF-8"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers></request><response status="201"><headers><header key="Content-Type" value="text/plain; charset=UTF-8"/><header key="Content-Length" value="14"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="DBG" value="Record created"/></headers><content encoding="UTF-8" type="text/plain;charset=UTF-8" length="14"><data>Record created</data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41793</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/hdata/midasrlus/7809c024-8058-4c89-9a71-effd2d53f171"><headers><header key="Authorization" value="Basic YWRtaW46YWRtaW4="/><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="application/x-www-form-urlencoded"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="application/x-www-form-urlencoded" length="-1"><data>extensionID=xdw&path=xdw&name=xdw</data></content></request><response status="201"><headers><header key="Content-Type" value="text/plain; charset=UTF-8"/><header key="Content-Length" value="15"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="DBG" value="Section Created"/></headers><content encoding="UTF-8" type="text/plain;charset=UTF-8" length="15"><data>Section Created</data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41793</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/hdata/midasrlus/7809c024-8058-4c89-9a71-effd2d53f171"><headers><header key="Authorization" value="Basic YWRtaW46YWRtaW4="/><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="application/x-www-form-urlencoded"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="application/x-www-form-urlencoded" length="-1"><data>extensionID=cda2report&path=cda2report&name=cda2report</data></content></request><response status="201"><headers><header key="Content-Type" value="text/plain; charset=UTF-8"/><header key="Content-Length" value="15"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="DBG" value="Section Created"/></headers><content encoding="UTF-8" type="text/plain;charset=UTF-8" length="15"><data>Section Created</data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="4509"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="4509"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 88 <soap:Header/> 89 <soap:Body> 90 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 91 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 92 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="783d8081-ef57-4186-8f67-f1d203dd4020"/> 93 <xdw:effectiveTime value="20140613171951+0200"/> 94 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 95 <xdw:patient> 96 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 97 </xdw:patient> 98 <xdw:author> 99 <xdw:assignedAuthor> 100 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 101 <hl7v3:assignedPerson/> 102 </xdw:assignedAuthor> 103 </xdw:author> 104 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 105 <xdw:workflowDocumentSequenceNumber>1</xdw:workflowDocumentSequenceNumber> 106 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 107 <xdw:workflowStatusHistory> 108 <xdw:documentEvent> 109 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 110 <xdw:eventType>complete</xdw:eventType> 111 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 112 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 113 <xdw:previousStatus>OPEN</xdw:previousStatus> 114 <xdw:actualStatus>OPEN</xdw:actualStatus> 115 </xdw:documentEvent> 116 </xdw:workflowStatusHistory> 117 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 118 <xdw:TaskList> 119 <xdw:XDWTask> 120 <xdw:taskData> 121 <ws-ht:taskDetails> 122 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 123 <ws-ht:taskType>Requested</ws-ht:taskType> 124 <ws-ht:name>xdw.creation</ws-ht:name> 125 <ws-ht:status>COMPLETED</ws-ht:status> 126 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 127 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 128 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 129 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 130 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 131 </ws-ht:taskDetails> 132 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 133 <ws-ht:input/> 134 <ws-ht:output/> 135 </xdw:taskData> 136 <xdw:taskEventHistory> 137 <xdw:taskEvent> 138 <xdw:id>1</xdw:id> 139 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 140 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 141 <xdw:eventType>complete</xdw:eventType> 142 <xdw:status>COMPLETED</xdw:status> 143 <xdw:eventData xsi:nil="true"/> 144 </xdw:taskEvent> 145 </xdw:taskEventHistory> 146 </xdw:XDWTask> 147 </xdw:TaskList> 148 </xdw:XDW.WorkflowDocument> 149 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 150 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 151 <rlustypes:SecurityContext> 152 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 153 </rlustypes:SecurityContext> 154 <rlustypes:CBRContext> 155 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 156 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 157 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 158 </rlustypes:CBRContext> 159 </rlustypes:RLUSPutRequestSrcStruct> 160 <writeCommandEnum>INSERT</writeCommandEnum> 161 </PutRequest> 162 </soap:Body> 163 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 164 <soapenv:Header/> 165 <soapenv:Body> 166 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 167 <rlustypes:success>true</rlustypes:success> 168 <rlustypes:message/> 169 </rlustypes:RLUSStatusCode> 170 </soapenv:Body> 171 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1224"/><header key="SOAPAction" value="urn:locate"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1224"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 172 <soap:Header/> 173 <soap:Body> 174 <LocateRequest xmlns="urn:dedalus:rlus:xdw:types"> 175 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 176 <rlustypes:searchByCriteria> 177 <rlustypes:FilterCriteria> 178 <rlustypes:Expression> 179 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 180 <rlusexp:Operator type="EqualTo"/> 181 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 182 </rlustypes:Expression> 183 </rlustypes:FilterCriteria> 184 <rlustypes:SearchAttributes> 185 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 186 </rlustypes:SearchAttributes> 187 </rlustypes:searchByCriteria> 188 </rlustypes:RLUSSearchStruct> 189 <maxResultStreams>1</maxResultStreams> 190 <previousResultID>-1</previousResultID> 191 </LocateRequest> 192 </soap:Body> 193 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="1198"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="1198"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 194 <soapenv:Header/> 195 <soapenv:Body> 196 <LocateResponse xmlns="urn:dedalus:rlus:xdw:types"> 197 <RLUStypes:RLUSsemantic-signifierRecordLocationStruct xmlns:RLUStypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 198 <RLUStypes:RLUSsemantic-signifierName>xdw</RLUStypes:RLUSsemantic-signifierName> 199 <RLUStypes:semantic-signifierRecordID root="2.16.840.1.113883.2.9.3.12.4.4" extension="43norno34-4no3na00-workflow-doc-2014"/> 200 <RLUStypes:CBRContext> 201 <RLUStypes:CBRName>Dedalus</RLUStypes:CBRName> 202 <RLUStypes:NetworkName>HSSP SERVICES</RLUStypes:NetworkName> 203 <RLUStypes:NetworkAddress>hsspservices:8984</RLUStypes:NetworkAddress> 204 </RLUStypes:CBRContext> 205 </RLUStypes:RLUSsemantic-signifierRecordLocationStruct> 206 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 207 <rlustypes:success>true</rlustypes:success> 208 <rlustypes:message>One record located</rlustypes:message> 209 </rlustypes:RLUSStatusCode> 210 <finishedFlag>0</finishedFlag> 211 </LocateResponse> 212 </soapenv:Body> 213 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 214 <soap:Header/> 215 <soap:Body> 216 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 217 <rlustypes:searchByCriteria> 218 <rlustypes:FilterCriteria> 219 <rlustypes:Expression> 220 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 221 <rlusexp:Operator type="EqualTo"/> 222 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 223 </rlustypes:Expression> 224 </rlustypes:FilterCriteria> 225 <rlustypes:SearchAttributes> 226 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 227 </rlustypes:SearchAttributes> 228 </rlustypes:searchByCriteria> 229 </rlustypes:RLUSSearchStruct> 230 </soap:Body> 231 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="4129"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="4129"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 232 <soapenv:Header/> 233 <soapenv:Body> 234 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 235 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 236 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="783d8081-ef57-4186-8f67-f1d203dd4020"/> 237 <xdw:effectiveTime value="20140613171951+0200"/> 238 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 239 <xdw:patient> 240 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 241 </xdw:patient> 242 <xdw:author> 243 <xdw:assignedAuthor> 244 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 245 <hl7v3:assignedPerson/> 246 </xdw:assignedAuthor> 247 </xdw:author> 248 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 249 <xdw:workflowDocumentSequenceNumber>1</xdw:workflowDocumentSequenceNumber> 250 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 251 <xdw:workflowStatusHistory> 252 <xdw:documentEvent> 253 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 254 <xdw:eventType>complete</xdw:eventType> 255 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 256 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 257 <xdw:previousStatus>OPEN</xdw:previousStatus> 258 <xdw:actualStatus>OPEN</xdw:actualStatus> 259 </xdw:documentEvent> 260 </xdw:workflowStatusHistory> 261 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 262 <xdw:TaskList> 263 <xdw:XDWTask> 264 <xdw:taskData> 265 <ws-ht:taskDetails> 266 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 267 <ws-ht:taskType>Requested</ws-ht:taskType> 268 <ws-ht:name>xdw.creation</ws-ht:name> 269 <ws-ht:status>COMPLETED</ws-ht:status> 270 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 271 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 272 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 273 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 274 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 275 </ws-ht:taskDetails> 276 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 277 <ws-ht:input/> 278 <ws-ht:output/> 279 </xdw:taskData> 280 <xdw:taskEventHistory> 281 <xdw:taskEvent> 282 <xdw:id>1</xdw:id> 283 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 284 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 285 <xdw:eventType>complete</xdw:eventType> 286 <xdw:status>COMPLETED</xdw:status> 287 <xdw:eventData xsi:nil="true"/> 288 </xdw:taskEvent> 289 </xdw:taskEventHistory> 290 </xdw:XDWTask> 291 </xdw:TaskList> 292 </xdw:XDW.WorkflowDocument> 293 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 294 <rlustypes:success>true</rlustypes:success> 295 <rlustypes:message>One record fetched</rlustypes:message> 296 </rlustypes:RLUSStatusCode> 297 </GetResponse> 298 </soapenv:Body> 299 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 300 <soap:Header/> 301 <soap:Body> 302 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 303 <rlustypes:searchByCriteria> 304 <rlustypes:FilterCriteria> 305 <rlustypes:Expression> 306 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 307 <rlusexp:Operator type="EqualTo"/> 308 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 309 </rlustypes:Expression> 310 </rlustypes:FilterCriteria> 311 <rlustypes:SearchAttributes> 312 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 313 </rlustypes:SearchAttributes> 314 </rlustypes:searchByCriteria> 315 </rlustypes:RLUSSearchStruct> 316 </soap:Body> 317 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="4129"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="4129"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 318 <soapenv:Header/> 319 <soapenv:Body> 320 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 321 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 322 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="783d8081-ef57-4186-8f67-f1d203dd4020"/> 323 <xdw:effectiveTime value="20140613171951+0200"/> 324 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 325 <xdw:patient> 326 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 327 </xdw:patient> 328 <xdw:author> 329 <xdw:assignedAuthor> 330 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 331 <hl7v3:assignedPerson/> 332 </xdw:assignedAuthor> 333 </xdw:author> 334 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 335 <xdw:workflowDocumentSequenceNumber>1</xdw:workflowDocumentSequenceNumber> 336 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 337 <xdw:workflowStatusHistory> 338 <xdw:documentEvent> 339 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 340 <xdw:eventType>complete</xdw:eventType> 341 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 342 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 343 <xdw:previousStatus>OPEN</xdw:previousStatus> 344 <xdw:actualStatus>OPEN</xdw:actualStatus> 345 </xdw:documentEvent> 346 </xdw:workflowStatusHistory> 347 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 348 <xdw:TaskList> 349 <xdw:XDWTask> 350 <xdw:taskData> 351 <ws-ht:taskDetails> 352 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 353 <ws-ht:taskType>Requested</ws-ht:taskType> 354 <ws-ht:name>xdw.creation</ws-ht:name> 355 <ws-ht:status>COMPLETED</ws-ht:status> 356 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 357 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 358 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 359 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 360 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 361 </ws-ht:taskDetails> 362 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 363 <ws-ht:input/> 364 <ws-ht:output/> 365 </xdw:taskData> 366 <xdw:taskEventHistory> 367 <xdw:taskEvent> 368 <xdw:id>1</xdw:id> 369 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 370 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 371 <xdw:eventType>complete</xdw:eventType> 372 <xdw:status>COMPLETED</xdw:status> 373 <xdw:eventData xsi:nil="true"/> 374 </xdw:taskEvent> 375 </xdw:taskEventHistory> 376 </xdw:XDWTask> 377 </xdw:TaskList> 378 </xdw:XDW.WorkflowDocument> 379 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 380 <rlustypes:success>true</rlustypes:success> 381 <rlustypes:message>One record fetched</rlustypes:message> 382 </rlustypes:RLUSStatusCode> 383 </GetResponse> 384 </soapenv:Body> 385 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="6399"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="6399"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 386 <soap:Header/> 387 <soap:Body> 388 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 389 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 390 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="37eb1d9e-0916-43d8-b80c-e65c95145685"/> 391 <xdw:effectiveTime value="20140613171954+0200"/> 392 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 393 <xdw:patient> 394 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 395 </xdw:patient> 396 <xdw:author> 397 <xdw:assignedAuthor> 398 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 399 <hl7v3:assignedPerson/> 400 </xdw:assignedAuthor> 401 </xdw:author> 402 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 403 <xdw:workflowDocumentSequenceNumber>2</xdw:workflowDocumentSequenceNumber> 404 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 405 <xdw:workflowStatusHistory> 406 <xdw:documentEvent> 407 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 408 <xdw:eventType>complete</xdw:eventType> 409 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 410 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 411 <xdw:previousStatus>OPEN</xdw:previousStatus> 412 <xdw:actualStatus>OPEN</xdw:actualStatus> 413 </xdw:documentEvent> 414 <xdw:documentEvent> 415 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 416 <xdw:eventType>create</xdw:eventType> 417 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 418 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 419 <xdw:previousStatus>OPEN</xdw:previousStatus> 420 <xdw:actualStatus>OPEN</xdw:actualStatus> 421 </xdw:documentEvent> 422 </xdw:workflowStatusHistory> 423 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 424 <xdw:TaskList> 425 <xdw:XDWTask> 426 <xdw:taskData> 427 <ws-ht:taskDetails> 428 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 429 <ws-ht:taskType>Requested</ws-ht:taskType> 430 <ws-ht:name>xdw.creation</ws-ht:name> 431 <ws-ht:status>COMPLETED</ws-ht:status> 432 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 433 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 434 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 435 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 436 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 437 </ws-ht:taskDetails> 438 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 439 <ws-ht:input/> 440 <ws-ht:output/> 441 </xdw:taskData> 442 <xdw:taskEventHistory> 443 <xdw:taskEvent> 444 <xdw:id>1</xdw:id> 445 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 446 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 447 <xdw:eventType>complete</xdw:eventType> 448 <xdw:status>COMPLETED</xdw:status> 449 <xdw:eventData xsi:nil="true"/> 450 </xdw:taskEvent> 451 </xdw:taskEventHistory> 452 </xdw:XDWTask> 453 <xdw:XDWTask> 454 <xdw:taskData> 455 <ws-ht:taskDetails> 456 <ws-ht:id>task_0</ws-ht:id> 457 <ws-ht:taskType>ttype</ws-ht:taskType> 458 <ws-ht:name>tname_0</ws-ht:name> 459 <ws-ht:status>READY</ws-ht:status> 460 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 461 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 462 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 463 <ws-ht:lastModifiedTime>2014-06-13T17:19:54.67+02:00</ws-ht:lastModifiedTime> 464 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 465 </ws-ht:taskDetails> 466 <ws-ht:description>Undocumented task</ws-ht:description> 467 <ws-ht:input/> 468 <ws-ht:output/> 469 </xdw:taskData> 470 <xdw:taskEventHistory> 471 <xdw:taskEvent> 472 <xdw:id>1</xdw:id> 473 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 474 <xdw:identifier>task_0#1</xdw:identifier> 475 <xdw:eventType>create</xdw:eventType> 476 <xdw:status>READY</xdw:status> 477 <xdw:eventData xsi:nil="true"/> 478 </xdw:taskEvent> 479 </xdw:taskEventHistory> 480 </xdw:XDWTask> 481 </xdw:TaskList> 482 </xdw:XDW.WorkflowDocument> 483 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 484 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 485 <rlustypes:SecurityContext> 486 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 487 </rlustypes:SecurityContext> 488 <rlustypes:CBRContext> 489 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 490 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 491 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 492 </rlustypes:CBRContext> 493 </rlustypes:RLUSPutRequestSrcStruct> 494 <writeCommandEnum>UPDATE</writeCommandEnum> 495 </PutRequest> 496 </soap:Body> 497 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 498 <soapenv:Header/> 499 <soapenv:Body> 500 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 501 <rlustypes:success>true</rlustypes:success> 502 <rlustypes:message/> 503 </rlustypes:RLUSStatusCode> 504 </soapenv:Body> 505 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 506 <soap:Header/> 507 <soap:Body> 508 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 509 <rlustypes:searchByCriteria> 510 <rlustypes:FilterCriteria> 511 <rlustypes:Expression> 512 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 513 <rlusexp:Operator type="EqualTo"/> 514 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 515 </rlustypes:Expression> 516 </rlustypes:FilterCriteria> 517 <rlustypes:SearchAttributes> 518 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 519 </rlustypes:SearchAttributes> 520 </rlustypes:searchByCriteria> 521 </rlustypes:RLUSSearchStruct> 522 </soap:Body> 523 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="5961"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5961"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 524 <soapenv:Header/> 525 <soapenv:Body> 526 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 527 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 528 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="37eb1d9e-0916-43d8-b80c-e65c95145685"/> 529 <xdw:effectiveTime value="20140613171954+0200"/> 530 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 531 <xdw:patient> 532 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 533 </xdw:patient> 534 <xdw:author> 535 <xdw:assignedAuthor> 536 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 537 <hl7v3:assignedPerson/> 538 </xdw:assignedAuthor> 539 </xdw:author> 540 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 541 <xdw:workflowDocumentSequenceNumber>2</xdw:workflowDocumentSequenceNumber> 542 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 543 <xdw:workflowStatusHistory> 544 <xdw:documentEvent> 545 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 546 <xdw:eventType>complete</xdw:eventType> 547 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 548 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 549 <xdw:previousStatus>OPEN</xdw:previousStatus> 550 <xdw:actualStatus>OPEN</xdw:actualStatus> 551 </xdw:documentEvent> 552 <xdw:documentEvent> 553 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 554 <xdw:eventType>create</xdw:eventType> 555 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 556 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 557 <xdw:previousStatus>OPEN</xdw:previousStatus> 558 <xdw:actualStatus>OPEN</xdw:actualStatus> 559 </xdw:documentEvent> 560 </xdw:workflowStatusHistory> 561 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 562 <xdw:TaskList> 563 <xdw:XDWTask> 564 <xdw:taskData> 565 <ws-ht:taskDetails> 566 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 567 <ws-ht:taskType>Requested</ws-ht:taskType> 568 <ws-ht:name>xdw.creation</ws-ht:name> 569 <ws-ht:status>COMPLETED</ws-ht:status> 570 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 571 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 572 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 573 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 574 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 575 </ws-ht:taskDetails> 576 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 577 <ws-ht:input/> 578 <ws-ht:output/> 579 </xdw:taskData> 580 <xdw:taskEventHistory> 581 <xdw:taskEvent> 582 <xdw:id>1</xdw:id> 583 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 584 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 585 <xdw:eventType>complete</xdw:eventType> 586 <xdw:status>COMPLETED</xdw:status> 587 <xdw:eventData xsi:nil="true"/> 588 </xdw:taskEvent> 589 </xdw:taskEventHistory> 590 </xdw:XDWTask> 591 <xdw:XDWTask> 592 <xdw:taskData> 593 <ws-ht:taskDetails> 594 <ws-ht:id>task_0</ws-ht:id> 595 <ws-ht:taskType>ttype</ws-ht:taskType> 596 <ws-ht:name>tname_0</ws-ht:name> 597 <ws-ht:status>READY</ws-ht:status> 598 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 599 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 600 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 601 <ws-ht:lastModifiedTime>2014-06-13T17:19:54.67+02:00</ws-ht:lastModifiedTime> 602 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 603 </ws-ht:taskDetails> 604 <ws-ht:description>Undocumented task</ws-ht:description> 605 <ws-ht:input/> 606 <ws-ht:output/> 607 </xdw:taskData> 608 <xdw:taskEventHistory> 609 <xdw:taskEvent> 610 <xdw:id>1</xdw:id> 611 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 612 <xdw:identifier>task_0#1</xdw:identifier> 613 <xdw:eventType>create</xdw:eventType> 614 <xdw:status>READY</xdw:status> 615 <xdw:eventData xsi:nil="true"/> 616 </xdw:taskEvent> 617 </xdw:taskEventHistory> 618 </xdw:XDWTask> 619 </xdw:TaskList> 620 </xdw:XDW.WorkflowDocument> 621 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 622 <rlustypes:success>true</rlustypes:success> 623 <rlustypes:message>One record fetched</rlustypes:message> 624 </rlustypes:RLUSStatusCode> 625 </GetResponse> 626 </soapenv:Body> 627 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41793</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/cda2report"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 628 <soap:Header></soap:Header> 629 <soap:Body> 630 <PutRequest xmlns="urn:dedalus:rlus:cda2report:types"> 631 <ClinicalDocument xmlns="urn:hl7-org:v3"> 632 <realmCode code="IT"></realmCode> 633 <typeId root="2.16.840.1.113883.1.3" extension="POCD_HD000040"></typeId> 634 <templateId root="2.16.840.1.113883.2.9.10.2.10" extension="ITPRF_REF_GEN-001"></templateId> 635 <id root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-000"></id> 636 <code codeSystem="2.16.840.1.113883.6.1" code="47045-0" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study Report"></code> 637 <effectiveTime value="20140620144233+0100"></effectiveTime> 638 <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></confidentialityCode> 639 <languageCode code="it-IT"></languageCode> 640 <setId root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-000"></setId> 641 <versionNumber value="1"></versionNumber> 642 <recordTarget> 643 <patientRole> 644 <id extension="7809c024-8058-4c89-9a71-effd2d53f171" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 645 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="PZNGZL62H58D524R" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 646 <hl7v3:patient xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212"> 647 <hl7v3:name> 648 <hl7v3:given>Graziella</hl7v3:given> 649 <hl7v3:family>Paziente</hl7v3:family> 650 </hl7v3:name> 651 <hl7v3:administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 652 <hl7v3:birthTime value="19620618093000+0100"></hl7v3:birthTime> 653 </hl7v3:patient> 654 </patientRole> 655 </recordTarget> 656 <author> 657 <time value="20140620144233+0100"></time> 658 <assignedAuthor> 659 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 660 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 661 </assignedAuthor> 662 </author> 663 <custodian> 664 <assignedCustodian> 665 <representedCustodianOrganization> 666 <id extension="2.16.840.1.113883.2.9.3.12.4" root="2.16.840.1.113883.2.9.3.12"></id> 667 </representedCustodianOrganization> 668 </assignedCustodian> 669 </custodian> 670 <legalAuthenticator> 671 <time value="20140620144233+0100"></time> 672 <signatureCode code="S"></signatureCode> 673 <assignedEntity> 674 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 675 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 676 </assignedEntity> 677 </legalAuthenticator> 678 <component> 679 <structuredBody> 680 <component> 681 <section> 682 <code code="18782-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study observation"></code> 683 <title>Anamnesi</title> 684 <text>Familiaritᅢᅠ: Negativa. Esordio: 49. La paziente fa risalire l'esordio dell'attuale sintomatologia a circa 2 anni e mezzo fa, quando all'etᅢᅠ di 49 anni, notava l'insorgenza di lentezza, impaccio motorio e lieve tremore a riposo alla mano sinistra. 685 Due mesi dopo notava l'insorgenza di una tendenza a trascinare la gamba sinistra durante la marcia e, successivamente, di rigiditᅢᅠ e lentezza a carico prevalentemente dell'emisoma sinistro, micrografia e riduzione del tono della voce. 686 Da circa un anno occasionale disfagia. Negli ultimi 5 mesi infine sarebbero comparsi anche difficoltᅢᅠ ad articolare la parola, abbassamento del tono dell¬タルumore e apatia.</text> 687 <entry> 688 <act moodCode="EVN" classCode="ACT"> 689 <code nullFlavor="NA"></code> 690 <entryRelationship typeCode="COMP"> 691 <observation moodCode="EVN" classCode="OBS"> 692 <code code="1234" codeSystem="2.16.840.1.113883.2.9.3.12.6" codeSystemName="_DIZ_Dedalus" displayName="Anamnesi"></code> 693 </observation> 694 </entryRelationship> 695 </act> 696 </entry> 697 </section> 698 </component> 699 </structuredBody> 700 </component> 701 </ClinicalDocument> 702 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 703 <rlustypes:RLUSsemantic-signifierName>cda2report</rlustypes:RLUSsemantic-signifierName> 704 <rlustypes:SecurityContext> 705 <rlustypes:SourceIdentity identityName="admin"></rlustypes:SourceIdentity> 706 </rlustypes:SecurityContext> 707 <rlustypes:CBRContext> 708 <rlustypes:CBRName>Testing App</rlustypes:CBRName> 709 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 710 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 711 </rlustypes:CBRContext> 712 </rlustypes:RLUSPutRequestSrcStruct> 713 <writeCommandEnum>INSERT</writeCommandEnum> 714 </PutRequest> 715 </soap:Body> 716 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 717 <soapenv:Header/> 718 <soapenv:Body> 719 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 720 <rlustypes:success>true</rlustypes:success> 721 <rlustypes:message/> 722 </rlustypes:RLUSStatusCode> 723 </soapenv:Body> 724 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 725 <soap:Header/> 726 <soap:Body> 727 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 728 <rlustypes:searchByCriteria> 729 <rlustypes:FilterCriteria> 730 <rlustypes:Expression> 731 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 732 <rlusexp:Operator type="EqualTo"/> 733 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 734 </rlustypes:Expression> 735 </rlustypes:FilterCriteria> 736 <rlustypes:SearchAttributes> 737 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 738 </rlustypes:SearchAttributes> 739 </rlustypes:searchByCriteria> 740 </rlustypes:RLUSSearchStruct> 741 </soap:Body> 742 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="5961"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5961"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 743 <soapenv:Header/> 744 <soapenv:Body> 745 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 746 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 747 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="37eb1d9e-0916-43d8-b80c-e65c95145685"/> 748 <xdw:effectiveTime value="20140613171954+0200"/> 749 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 750 <xdw:patient> 751 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 752 </xdw:patient> 753 <xdw:author> 754 <xdw:assignedAuthor> 755 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 756 <hl7v3:assignedPerson/> 757 </xdw:assignedAuthor> 758 </xdw:author> 759 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 760 <xdw:workflowDocumentSequenceNumber>2</xdw:workflowDocumentSequenceNumber> 761 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 762 <xdw:workflowStatusHistory> 763 <xdw:documentEvent> 764 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 765 <xdw:eventType>complete</xdw:eventType> 766 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 767 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 768 <xdw:previousStatus>OPEN</xdw:previousStatus> 769 <xdw:actualStatus>OPEN</xdw:actualStatus> 770 </xdw:documentEvent> 771 <xdw:documentEvent> 772 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 773 <xdw:eventType>create</xdw:eventType> 774 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 775 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 776 <xdw:previousStatus>OPEN</xdw:previousStatus> 777 <xdw:actualStatus>OPEN</xdw:actualStatus> 778 </xdw:documentEvent> 779 </xdw:workflowStatusHistory> 780 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 781 <xdw:TaskList> 782 <xdw:XDWTask> 783 <xdw:taskData> 784 <ws-ht:taskDetails> 785 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 786 <ws-ht:taskType>Requested</ws-ht:taskType> 787 <ws-ht:name>xdw.creation</ws-ht:name> 788 <ws-ht:status>COMPLETED</ws-ht:status> 789 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 790 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 791 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 792 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 793 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 794 </ws-ht:taskDetails> 795 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 796 <ws-ht:input/> 797 <ws-ht:output/> 798 </xdw:taskData> 799 <xdw:taskEventHistory> 800 <xdw:taskEvent> 801 <xdw:id>1</xdw:id> 802 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 803 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 804 <xdw:eventType>complete</xdw:eventType> 805 <xdw:status>COMPLETED</xdw:status> 806 <xdw:eventData xsi:nil="true"/> 807 </xdw:taskEvent> 808 </xdw:taskEventHistory> 809 </xdw:XDWTask> 810 <xdw:XDWTask> 811 <xdw:taskData> 812 <ws-ht:taskDetails> 813 <ws-ht:id>task_0</ws-ht:id> 814 <ws-ht:taskType>ttype</ws-ht:taskType> 815 <ws-ht:name>tname_0</ws-ht:name> 816 <ws-ht:status>READY</ws-ht:status> 817 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 818 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 819 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 820 <ws-ht:lastModifiedTime>2014-06-13T17:19:54.67+02:00</ws-ht:lastModifiedTime> 821 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 822 </ws-ht:taskDetails> 823 <ws-ht:description>Undocumented task</ws-ht:description> 824 <ws-ht:input/> 825 <ws-ht:output/> 826 </xdw:taskData> 827 <xdw:taskEventHistory> 828 <xdw:taskEvent> 829 <xdw:id>1</xdw:id> 830 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 831 <xdw:identifier>task_0#1</xdw:identifier> 832 <xdw:eventType>create</xdw:eventType> 833 <xdw:status>READY</xdw:status> 834 <xdw:eventData xsi:nil="true"/> 835 </xdw:taskEvent> 836 </xdw:taskEventHistory> 837 </xdw:XDWTask> 838 </xdw:TaskList> 839 </xdw:XDW.WorkflowDocument> 840 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 841 <rlustypes:success>true</rlustypes:success> 842 <rlustypes:message>One record fetched</rlustypes:message> 843 </rlustypes:RLUSStatusCode> 844 </GetResponse> 845 </soapenv:Body> 846 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 847 <soap:Header/> 848 <soap:Body> 849 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 850 <rlustypes:searchByCriteria> 851 <rlustypes:FilterCriteria> 852 <rlustypes:Expression> 853 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 854 <rlusexp:Operator type="EqualTo"/> 855 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 856 </rlustypes:Expression> 857 </rlustypes:FilterCriteria> 858 <rlustypes:SearchAttributes> 859 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 860 </rlustypes:SearchAttributes> 861 </rlustypes:searchByCriteria> 862 </rlustypes:RLUSSearchStruct> 863 </soap:Body> 864 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="5961"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5961"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 865 <soapenv:Header/> 866 <soapenv:Body> 867 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 868 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 869 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="37eb1d9e-0916-43d8-b80c-e65c95145685"/> 870 <xdw:effectiveTime value="20140613171954+0200"/> 871 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 872 <xdw:patient> 873 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 874 </xdw:patient> 875 <xdw:author> 876 <xdw:assignedAuthor> 877 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 878 <hl7v3:assignedPerson/> 879 </xdw:assignedAuthor> 880 </xdw:author> 881 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 882 <xdw:workflowDocumentSequenceNumber>2</xdw:workflowDocumentSequenceNumber> 883 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 884 <xdw:workflowStatusHistory> 885 <xdw:documentEvent> 886 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 887 <xdw:eventType>complete</xdw:eventType> 888 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 889 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 890 <xdw:previousStatus>OPEN</xdw:previousStatus> 891 <xdw:actualStatus>OPEN</xdw:actualStatus> 892 </xdw:documentEvent> 893 <xdw:documentEvent> 894 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 895 <xdw:eventType>create</xdw:eventType> 896 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 897 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 898 <xdw:previousStatus>OPEN</xdw:previousStatus> 899 <xdw:actualStatus>OPEN</xdw:actualStatus> 900 </xdw:documentEvent> 901 </xdw:workflowStatusHistory> 902 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 903 <xdw:TaskList> 904 <xdw:XDWTask> 905 <xdw:taskData> 906 <ws-ht:taskDetails> 907 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 908 <ws-ht:taskType>Requested</ws-ht:taskType> 909 <ws-ht:name>xdw.creation</ws-ht:name> 910 <ws-ht:status>COMPLETED</ws-ht:status> 911 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 912 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 913 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 914 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 915 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 916 </ws-ht:taskDetails> 917 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 918 <ws-ht:input/> 919 <ws-ht:output/> 920 </xdw:taskData> 921 <xdw:taskEventHistory> 922 <xdw:taskEvent> 923 <xdw:id>1</xdw:id> 924 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 925 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 926 <xdw:eventType>complete</xdw:eventType> 927 <xdw:status>COMPLETED</xdw:status> 928 <xdw:eventData xsi:nil="true"/> 929 </xdw:taskEvent> 930 </xdw:taskEventHistory> 931 </xdw:XDWTask> 932 <xdw:XDWTask> 933 <xdw:taskData> 934 <ws-ht:taskDetails> 935 <ws-ht:id>task_0</ws-ht:id> 936 <ws-ht:taskType>ttype</ws-ht:taskType> 937 <ws-ht:name>tname_0</ws-ht:name> 938 <ws-ht:status>READY</ws-ht:status> 939 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 940 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 941 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 942 <ws-ht:lastModifiedTime>2014-06-13T17:19:54.67+02:00</ws-ht:lastModifiedTime> 943 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 944 </ws-ht:taskDetails> 945 <ws-ht:description>Undocumented task</ws-ht:description> 946 <ws-ht:input/> 947 <ws-ht:output/> 948 </xdw:taskData> 949 <xdw:taskEventHistory> 950 <xdw:taskEvent> 951 <xdw:id>1</xdw:id> 952 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 953 <xdw:identifier>task_0#1</xdw:identifier> 954 <xdw:eventType>create</xdw:eventType> 955 <xdw:status>READY</xdw:status> 956 <xdw:eventData xsi:nil="true"/> 957 </xdw:taskEvent> 958 </xdw:taskEventHistory> 959 </xdw:XDWTask> 960 </xdw:TaskList> 961 </xdw:XDW.WorkflowDocument> 962 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 963 <rlustypes:success>true</rlustypes:success> 964 <rlustypes:message>One record fetched</rlustypes:message> 965 </rlustypes:RLUSStatusCode> 966 </GetResponse> 967 </soapenv:Body> 968 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="7168"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="7168"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 969 <soap:Header/> 970 <soap:Body> 971 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 972 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 973 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="c25a3955-ebc9-4ad8-a4a4-6d75ca199928"/> 974 <xdw:effectiveTime value="20140613171959+0200"/> 975 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 976 <xdw:patient> 977 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 978 </xdw:patient> 979 <xdw:author> 980 <xdw:assignedAuthor> 981 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 982 <hl7v3:assignedPerson/> 983 </xdw:assignedAuthor> 984 </xdw:author> 985 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 986 <xdw:workflowDocumentSequenceNumber>3</xdw:workflowDocumentSequenceNumber> 987 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 988 <xdw:workflowStatusHistory> 989 <xdw:documentEvent> 990 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 991 <xdw:eventType>complete</xdw:eventType> 992 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 993 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 994 <xdw:previousStatus>OPEN</xdw:previousStatus> 995 <xdw:actualStatus>OPEN</xdw:actualStatus> 996 </xdw:documentEvent> 997 <xdw:documentEvent> 998 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 999 <xdw:eventType>create</xdw:eventType> 1000 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 1001 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1002 <xdw:previousStatus>OPEN</xdw:previousStatus> 1003 <xdw:actualStatus>OPEN</xdw:actualStatus> 1004 </xdw:documentEvent> 1005 </xdw:workflowStatusHistory> 1006 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 1007 <xdw:TaskList> 1008 <xdw:XDWTask> 1009 <xdw:taskData> 1010 <ws-ht:taskDetails> 1011 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 1012 <ws-ht:taskType>Requested</ws-ht:taskType> 1013 <ws-ht:name>xdw.creation</ws-ht:name> 1014 <ws-ht:status>COMPLETED</ws-ht:status> 1015 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1016 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 1017 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1018 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 1019 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1020 </ws-ht:taskDetails> 1021 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 1022 <ws-ht:input/> 1023 <ws-ht:output/> 1024 </xdw:taskData> 1025 <xdw:taskEventHistory> 1026 <xdw:taskEvent> 1027 <xdw:id>1</xdw:id> 1028 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1029 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 1030 <xdw:eventType>complete</xdw:eventType> 1031 <xdw:status>COMPLETED</xdw:status> 1032 <xdw:eventData xsi:nil="true"/> 1033 </xdw:taskEvent> 1034 </xdw:taskEventHistory> 1035 </xdw:XDWTask> 1036 <xdw:XDWTask> 1037 <xdw:taskData> 1038 <ws-ht:taskDetails> 1039 <ws-ht:id>task_0</ws-ht:id> 1040 <ws-ht:taskType>ttype</ws-ht:taskType> 1041 <ws-ht:name>tname_0</ws-ht:name> 1042 <ws-ht:status>READY</ws-ht:status> 1043 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1044 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 1045 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1046 <ws-ht:lastModifiedTime>2014-06-13T17:19:54.67+02:00</ws-ht:lastModifiedTime> 1047 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1048 </ws-ht:taskDetails> 1049 <ws-ht:description>Undocumented task</ws-ht:description> 1050 <ws-ht:input/> 1051 <ws-ht:output> 1052 <ws-ht:part name="documentReference"> 1053 <ws-ht:attachment> 1054 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 1055 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 1056 <ws-ht:accessType>RLUS</ws-ht:accessType> 1057 <ws-ht:contentType>application/xml</ws-ht:contentType> 1058 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 1059 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 1060 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 1061 </ws-ht:attachment> 1062 </ws-ht:part> 1063 </ws-ht:output> 1064 </xdw:taskData> 1065 <xdw:taskEventHistory> 1066 <xdw:taskEvent> 1067 <xdw:id>1</xdw:id> 1068 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1069 <xdw:identifier>task_0#1</xdw:identifier> 1070 <xdw:eventType>create</xdw:eventType> 1071 <xdw:status>READY</xdw:status> 1072 <xdw:eventData xsi:nil="true"/> 1073 </xdw:taskEvent> 1074 </xdw:taskEventHistory> 1075 </xdw:XDWTask> 1076 </xdw:TaskList> 1077 </xdw:XDW.WorkflowDocument> 1078 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 1079 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 1080 <rlustypes:SecurityContext> 1081 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 1082 </rlustypes:SecurityContext> 1083 <rlustypes:CBRContext> 1084 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 1085 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 1086 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 1087 </rlustypes:CBRContext> 1088 </rlustypes:RLUSPutRequestSrcStruct> 1089 <writeCommandEnum>UPDATE</writeCommandEnum> 1090 </PutRequest> 1091 </soap:Body> 1092 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 1093 <soapenv:Header/> 1094 <soapenv:Body> 1095 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 1096 <rlustypes:success>true</rlustypes:success> 1097 <rlustypes:message/> 1098 </rlustypes:RLUSStatusCode> 1099 </soapenv:Body> 1100 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 1101 <soap:Header/> 1102 <soap:Body> 1103 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 1104 <rlustypes:searchByCriteria> 1105 <rlustypes:FilterCriteria> 1106 <rlustypes:Expression> 1107 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 1108 <rlusexp:Operator type="EqualTo"/> 1109 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 1110 </rlustypes:Expression> 1111 </rlustypes:FilterCriteria> 1112 <rlustypes:SearchAttributes> 1113 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 1114 </rlustypes:SearchAttributes> 1115 </rlustypes:searchByCriteria> 1116 </rlustypes:RLUSSearchStruct> 1117 </soap:Body> 1118 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="6730"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6730"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 1119 <soapenv:Header/> 1120 <soapenv:Body> 1121 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 1122 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 1123 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="c25a3955-ebc9-4ad8-a4a4-6d75ca199928"/> 1124 <xdw:effectiveTime value="20140613171959+0200"/> 1125 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 1126 <xdw:patient> 1127 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 1128 </xdw:patient> 1129 <xdw:author> 1130 <xdw:assignedAuthor> 1131 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 1132 <hl7v3:assignedPerson/> 1133 </xdw:assignedAuthor> 1134 </xdw:author> 1135 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 1136 <xdw:workflowDocumentSequenceNumber>3</xdw:workflowDocumentSequenceNumber> 1137 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 1138 <xdw:workflowStatusHistory> 1139 <xdw:documentEvent> 1140 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1141 <xdw:eventType>complete</xdw:eventType> 1142 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 1143 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1144 <xdw:previousStatus>OPEN</xdw:previousStatus> 1145 <xdw:actualStatus>OPEN</xdw:actualStatus> 1146 </xdw:documentEvent> 1147 <xdw:documentEvent> 1148 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1149 <xdw:eventType>create</xdw:eventType> 1150 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 1151 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1152 <xdw:previousStatus>OPEN</xdw:previousStatus> 1153 <xdw:actualStatus>OPEN</xdw:actualStatus> 1154 </xdw:documentEvent> 1155 </xdw:workflowStatusHistory> 1156 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 1157 <xdw:TaskList> 1158 <xdw:XDWTask> 1159 <xdw:taskData> 1160 <ws-ht:taskDetails> 1161 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 1162 <ws-ht:taskType>Requested</ws-ht:taskType> 1163 <ws-ht:name>xdw.creation</ws-ht:name> 1164 <ws-ht:status>COMPLETED</ws-ht:status> 1165 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1166 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 1167 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1168 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 1169 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1170 </ws-ht:taskDetails> 1171 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 1172 <ws-ht:input/> 1173 <ws-ht:output/> 1174 </xdw:taskData> 1175 <xdw:taskEventHistory> 1176 <xdw:taskEvent> 1177 <xdw:id>1</xdw:id> 1178 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1179 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 1180 <xdw:eventType>complete</xdw:eventType> 1181 <xdw:status>COMPLETED</xdw:status> 1182 <xdw:eventData xsi:nil="true"/> 1183 </xdw:taskEvent> 1184 </xdw:taskEventHistory> 1185 </xdw:XDWTask> 1186 <xdw:XDWTask> 1187 <xdw:taskData> 1188 <ws-ht:taskDetails> 1189 <ws-ht:id>task_0</ws-ht:id> 1190 <ws-ht:taskType>ttype</ws-ht:taskType> 1191 <ws-ht:name>tname_0</ws-ht:name> 1192 <ws-ht:status>READY</ws-ht:status> 1193 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1194 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 1195 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1196 <ws-ht:lastModifiedTime>2014-06-13T17:19:54.67+02:00</ws-ht:lastModifiedTime> 1197 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1198 </ws-ht:taskDetails> 1199 <ws-ht:description>Undocumented task</ws-ht:description> 1200 <ws-ht:input/> 1201 <ws-ht:output> 1202 <ws-ht:part name="documentReference"> 1203 <ws-ht:attachment> 1204 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 1205 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 1206 <ws-ht:accessType>RLUS</ws-ht:accessType> 1207 <ws-ht:contentType>application/xml</ws-ht:contentType> 1208 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 1209 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 1210 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 1211 </ws-ht:attachment> 1212 </ws-ht:part> 1213 </ws-ht:output> 1214 </xdw:taskData> 1215 <xdw:taskEventHistory> 1216 <xdw:taskEvent> 1217 <xdw:id>1</xdw:id> 1218 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1219 <xdw:identifier>task_0#1</xdw:identifier> 1220 <xdw:eventType>create</xdw:eventType> 1221 <xdw:status>READY</xdw:status> 1222 <xdw:eventData xsi:nil="true"/> 1223 </xdw:taskEvent> 1224 </xdw:taskEventHistory> 1225 </xdw:XDWTask> 1226 </xdw:TaskList> 1227 </xdw:XDW.WorkflowDocument> 1228 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 1229 <rlustypes:success>true</rlustypes:success> 1230 <rlustypes:message>One record fetched</rlustypes:message> 1231 </rlustypes:RLUSStatusCode> 1232 </GetResponse> 1233 </soapenv:Body> 1234 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 1235 <soap:Header/> 1236 <soap:Body> 1237 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 1238 <rlustypes:searchByCriteria> 1239 <rlustypes:FilterCriteria> 1240 <rlustypes:Expression> 1241 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 1242 <rlusexp:Operator type="EqualTo"/> 1243 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 1244 </rlustypes:Expression> 1245 </rlustypes:FilterCriteria> 1246 <rlustypes:SearchAttributes> 1247 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 1248 </rlustypes:SearchAttributes> 1249 </rlustypes:searchByCriteria> 1250 </rlustypes:RLUSSearchStruct> 1251 </soap:Body> 1252 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="6730"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6730"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 1253 <soapenv:Header/> 1254 <soapenv:Body> 1255 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 1256 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 1257 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="c25a3955-ebc9-4ad8-a4a4-6d75ca199928"/> 1258 <xdw:effectiveTime value="20140613171959+0200"/> 1259 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 1260 <xdw:patient> 1261 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 1262 </xdw:patient> 1263 <xdw:author> 1264 <xdw:assignedAuthor> 1265 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 1266 <hl7v3:assignedPerson/> 1267 </xdw:assignedAuthor> 1268 </xdw:author> 1269 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 1270 <xdw:workflowDocumentSequenceNumber>3</xdw:workflowDocumentSequenceNumber> 1271 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 1272 <xdw:workflowStatusHistory> 1273 <xdw:documentEvent> 1274 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1275 <xdw:eventType>complete</xdw:eventType> 1276 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 1277 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1278 <xdw:previousStatus>OPEN</xdw:previousStatus> 1279 <xdw:actualStatus>OPEN</xdw:actualStatus> 1280 </xdw:documentEvent> 1281 <xdw:documentEvent> 1282 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1283 <xdw:eventType>create</xdw:eventType> 1284 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 1285 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1286 <xdw:previousStatus>OPEN</xdw:previousStatus> 1287 <xdw:actualStatus>OPEN</xdw:actualStatus> 1288 </xdw:documentEvent> 1289 </xdw:workflowStatusHistory> 1290 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 1291 <xdw:TaskList> 1292 <xdw:XDWTask> 1293 <xdw:taskData> 1294 <ws-ht:taskDetails> 1295 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 1296 <ws-ht:taskType>Requested</ws-ht:taskType> 1297 <ws-ht:name>xdw.creation</ws-ht:name> 1298 <ws-ht:status>COMPLETED</ws-ht:status> 1299 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1300 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 1301 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1302 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 1303 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1304 </ws-ht:taskDetails> 1305 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 1306 <ws-ht:input/> 1307 <ws-ht:output/> 1308 </xdw:taskData> 1309 <xdw:taskEventHistory> 1310 <xdw:taskEvent> 1311 <xdw:id>1</xdw:id> 1312 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1313 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 1314 <xdw:eventType>complete</xdw:eventType> 1315 <xdw:status>COMPLETED</xdw:status> 1316 <xdw:eventData xsi:nil="true"/> 1317 </xdw:taskEvent> 1318 </xdw:taskEventHistory> 1319 </xdw:XDWTask> 1320 <xdw:XDWTask> 1321 <xdw:taskData> 1322 <ws-ht:taskDetails> 1323 <ws-ht:id>task_0</ws-ht:id> 1324 <ws-ht:taskType>ttype</ws-ht:taskType> 1325 <ws-ht:name>tname_0</ws-ht:name> 1326 <ws-ht:status>READY</ws-ht:status> 1327 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1328 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 1329 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1330 <ws-ht:lastModifiedTime>2014-06-13T17:19:54.67+02:00</ws-ht:lastModifiedTime> 1331 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1332 </ws-ht:taskDetails> 1333 <ws-ht:description>Undocumented task</ws-ht:description> 1334 <ws-ht:input/> 1335 <ws-ht:output> 1336 <ws-ht:part name="documentReference"> 1337 <ws-ht:attachment> 1338 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 1339 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 1340 <ws-ht:accessType>RLUS</ws-ht:accessType> 1341 <ws-ht:contentType>application/xml</ws-ht:contentType> 1342 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 1343 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 1344 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 1345 </ws-ht:attachment> 1346 </ws-ht:part> 1347 </ws-ht:output> 1348 </xdw:taskData> 1349 <xdw:taskEventHistory> 1350 <xdw:taskEvent> 1351 <xdw:id>1</xdw:id> 1352 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1353 <xdw:identifier>task_0#1</xdw:identifier> 1354 <xdw:eventType>create</xdw:eventType> 1355 <xdw:status>READY</xdw:status> 1356 <xdw:eventData xsi:nil="true"/> 1357 </xdw:taskEvent> 1358 </xdw:taskEventHistory> 1359 </xdw:XDWTask> 1360 </xdw:TaskList> 1361 </xdw:XDW.WorkflowDocument> 1362 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 1363 <rlustypes:success>true</rlustypes:success> 1364 <rlustypes:message>One record fetched</rlustypes:message> 1365 </rlustypes:RLUSStatusCode> 1366 </GetResponse> 1367 </soapenv:Body> 1368 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="7559"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="7559"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 1369 <soap:Header/> 1370 <soap:Body> 1371 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 1372 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 1373 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="e4f0dddc-4964-4882-8f44-c75acad46884"/> 1374 <xdw:effectiveTime value="20140613172001+0200"/> 1375 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 1376 <xdw:patient> 1377 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 1378 </xdw:patient> 1379 <xdw:author> 1380 <xdw:assignedAuthor> 1381 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 1382 <hl7v3:assignedPerson/> 1383 </xdw:assignedAuthor> 1384 </xdw:author> 1385 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 1386 <xdw:workflowDocumentSequenceNumber>4</xdw:workflowDocumentSequenceNumber> 1387 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 1388 <xdw:workflowStatusHistory> 1389 <xdw:documentEvent> 1390 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1391 <xdw:eventType>complete</xdw:eventType> 1392 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 1393 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1394 <xdw:previousStatus>OPEN</xdw:previousStatus> 1395 <xdw:actualStatus>OPEN</xdw:actualStatus> 1396 </xdw:documentEvent> 1397 <xdw:documentEvent> 1398 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1399 <xdw:eventType>create</xdw:eventType> 1400 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 1401 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1402 <xdw:previousStatus>OPEN</xdw:previousStatus> 1403 <xdw:actualStatus>OPEN</xdw:actualStatus> 1404 </xdw:documentEvent> 1405 </xdw:workflowStatusHistory> 1406 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 1407 <xdw:TaskList> 1408 <xdw:XDWTask> 1409 <xdw:taskData> 1410 <ws-ht:taskDetails> 1411 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 1412 <ws-ht:taskType>Requested</ws-ht:taskType> 1413 <ws-ht:name>xdw.creation</ws-ht:name> 1414 <ws-ht:status>COMPLETED</ws-ht:status> 1415 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1416 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 1417 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1418 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 1419 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1420 </ws-ht:taskDetails> 1421 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 1422 <ws-ht:input/> 1423 <ws-ht:output/> 1424 </xdw:taskData> 1425 <xdw:taskEventHistory> 1426 <xdw:taskEvent> 1427 <xdw:id>1</xdw:id> 1428 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1429 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 1430 <xdw:eventType>complete</xdw:eventType> 1431 <xdw:status>COMPLETED</xdw:status> 1432 <xdw:eventData xsi:nil="true"/> 1433 </xdw:taskEvent> 1434 </xdw:taskEventHistory> 1435 </xdw:XDWTask> 1436 <xdw:XDWTask> 1437 <xdw:taskData> 1438 <ws-ht:taskDetails> 1439 <ws-ht:id>task_0</ws-ht:id> 1440 <ws-ht:taskType>ttype</ws-ht:taskType> 1441 <ws-ht:name>tname_0</ws-ht:name> 1442 <ws-ht:status>COMPLETED</ws-ht:status> 1443 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1444 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 1445 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1446 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 1447 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1448 </ws-ht:taskDetails> 1449 <ws-ht:description>Undocumented task</ws-ht:description> 1450 <ws-ht:input/> 1451 <ws-ht:output> 1452 <ws-ht:part name="documentReference"> 1453 <ws-ht:attachment> 1454 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 1455 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 1456 <ws-ht:accessType>RLUS</ws-ht:accessType> 1457 <ws-ht:contentType>application/xml</ws-ht:contentType> 1458 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 1459 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 1460 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 1461 </ws-ht:attachment> 1462 </ws-ht:part> 1463 </ws-ht:output> 1464 </xdw:taskData> 1465 <xdw:taskEventHistory> 1466 <xdw:taskEvent> 1467 <xdw:id>1</xdw:id> 1468 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1469 <xdw:identifier>task_0#1</xdw:identifier> 1470 <xdw:eventType>create</xdw:eventType> 1471 <xdw:status>READY</xdw:status> 1472 <xdw:eventData xsi:nil="true"/> 1473 </xdw:taskEvent> 1474 <xdw:taskEvent> 1475 <xdw:id>2</xdw:id> 1476 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 1477 <xdw:identifier>task_0#2</xdw:identifier> 1478 <xdw:eventType>complete</xdw:eventType> 1479 <xdw:status>COMPLETED</xdw:status> 1480 <xdw:eventData xsi:nil="true"/> 1481 </xdw:taskEvent> 1482 </xdw:taskEventHistory> 1483 </xdw:XDWTask> 1484 </xdw:TaskList> 1485 </xdw:XDW.WorkflowDocument> 1486 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 1487 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 1488 <rlustypes:SecurityContext> 1489 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 1490 </rlustypes:SecurityContext> 1491 <rlustypes:CBRContext> 1492 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 1493 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 1494 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 1495 </rlustypes:CBRContext> 1496 </rlustypes:RLUSPutRequestSrcStruct> 1497 <writeCommandEnum>UPDATE</writeCommandEnum> 1498 </PutRequest> 1499 </soap:Body> 1500 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 1501 <soapenv:Header/> 1502 <soapenv:Body> 1503 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 1504 <rlustypes:success>true</rlustypes:success> 1505 <rlustypes:message/> 1506 </rlustypes:RLUSStatusCode> 1507 </soapenv:Body> 1508 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 1509 <soap:Header/> 1510 <soap:Body> 1511 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 1512 <rlustypes:searchByCriteria> 1513 <rlustypes:FilterCriteria> 1514 <rlustypes:Expression> 1515 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 1516 <rlusexp:Operator type="EqualTo"/> 1517 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 1518 </rlustypes:Expression> 1519 </rlustypes:FilterCriteria> 1520 <rlustypes:SearchAttributes> 1521 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 1522 </rlustypes:SearchAttributes> 1523 </rlustypes:searchByCriteria> 1524 </rlustypes:RLUSSearchStruct> 1525 </soap:Body> 1526 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="7121"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="7121"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 1527 <soapenv:Header/> 1528 <soapenv:Body> 1529 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 1530 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 1531 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="e4f0dddc-4964-4882-8f44-c75acad46884"/> 1532 <xdw:effectiveTime value="20140613172001+0200"/> 1533 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 1534 <xdw:patient> 1535 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 1536 </xdw:patient> 1537 <xdw:author> 1538 <xdw:assignedAuthor> 1539 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 1540 <hl7v3:assignedPerson/> 1541 </xdw:assignedAuthor> 1542 </xdw:author> 1543 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 1544 <xdw:workflowDocumentSequenceNumber>4</xdw:workflowDocumentSequenceNumber> 1545 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 1546 <xdw:workflowStatusHistory> 1547 <xdw:documentEvent> 1548 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1549 <xdw:eventType>complete</xdw:eventType> 1550 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 1551 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1552 <xdw:previousStatus>OPEN</xdw:previousStatus> 1553 <xdw:actualStatus>OPEN</xdw:actualStatus> 1554 </xdw:documentEvent> 1555 <xdw:documentEvent> 1556 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1557 <xdw:eventType>create</xdw:eventType> 1558 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 1559 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1560 <xdw:previousStatus>OPEN</xdw:previousStatus> 1561 <xdw:actualStatus>OPEN</xdw:actualStatus> 1562 </xdw:documentEvent> 1563 </xdw:workflowStatusHistory> 1564 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 1565 <xdw:TaskList> 1566 <xdw:XDWTask> 1567 <xdw:taskData> 1568 <ws-ht:taskDetails> 1569 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 1570 <ws-ht:taskType>Requested</ws-ht:taskType> 1571 <ws-ht:name>xdw.creation</ws-ht:name> 1572 <ws-ht:status>COMPLETED</ws-ht:status> 1573 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1574 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 1575 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1576 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 1577 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1578 </ws-ht:taskDetails> 1579 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 1580 <ws-ht:input/> 1581 <ws-ht:output/> 1582 </xdw:taskData> 1583 <xdw:taskEventHistory> 1584 <xdw:taskEvent> 1585 <xdw:id>1</xdw:id> 1586 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1587 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 1588 <xdw:eventType>complete</xdw:eventType> 1589 <xdw:status>COMPLETED</xdw:status> 1590 <xdw:eventData xsi:nil="true"/> 1591 </xdw:taskEvent> 1592 </xdw:taskEventHistory> 1593 </xdw:XDWTask> 1594 <xdw:XDWTask> 1595 <xdw:taskData> 1596 <ws-ht:taskDetails> 1597 <ws-ht:id>task_0</ws-ht:id> 1598 <ws-ht:taskType>ttype</ws-ht:taskType> 1599 <ws-ht:name>tname_0</ws-ht:name> 1600 <ws-ht:status>COMPLETED</ws-ht:status> 1601 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1602 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 1603 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1604 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 1605 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1606 </ws-ht:taskDetails> 1607 <ws-ht:description>Undocumented task</ws-ht:description> 1608 <ws-ht:input/> 1609 <ws-ht:output> 1610 <ws-ht:part name="documentReference"> 1611 <ws-ht:attachment> 1612 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 1613 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 1614 <ws-ht:accessType>RLUS</ws-ht:accessType> 1615 <ws-ht:contentType>application/xml</ws-ht:contentType> 1616 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 1617 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 1618 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 1619 </ws-ht:attachment> 1620 </ws-ht:part> 1621 </ws-ht:output> 1622 </xdw:taskData> 1623 <xdw:taskEventHistory> 1624 <xdw:taskEvent> 1625 <xdw:id>1</xdw:id> 1626 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1627 <xdw:identifier>task_0#1</xdw:identifier> 1628 <xdw:eventType>create</xdw:eventType> 1629 <xdw:status>READY</xdw:status> 1630 <xdw:eventData xsi:nil="true"/> 1631 </xdw:taskEvent> 1632 <xdw:taskEvent> 1633 <xdw:id>2</xdw:id> 1634 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 1635 <xdw:identifier>task_0#2</xdw:identifier> 1636 <xdw:eventType>complete</xdw:eventType> 1637 <xdw:status>COMPLETED</xdw:status> 1638 <xdw:eventData xsi:nil="true"/> 1639 </xdw:taskEvent> 1640 </xdw:taskEventHistory> 1641 </xdw:XDWTask> 1642 </xdw:TaskList> 1643 </xdw:XDW.WorkflowDocument> 1644 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 1645 <rlustypes:success>true</rlustypes:success> 1646 <rlustypes:message>One record fetched</rlustypes:message> 1647 </rlustypes:RLUSStatusCode> 1648 </GetResponse> 1649 </soapenv:Body> 1650 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 1651 <soap:Header/> 1652 <soap:Body> 1653 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 1654 <rlustypes:searchByCriteria> 1655 <rlustypes:FilterCriteria> 1656 <rlustypes:Expression> 1657 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 1658 <rlusexp:Operator type="EqualTo"/> 1659 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 1660 </rlustypes:Expression> 1661 </rlustypes:FilterCriteria> 1662 <rlustypes:SearchAttributes> 1663 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 1664 </rlustypes:SearchAttributes> 1665 </rlustypes:searchByCriteria> 1666 </rlustypes:RLUSSearchStruct> 1667 </soap:Body> 1668 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="7121"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="7121"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 1669 <soapenv:Header/> 1670 <soapenv:Body> 1671 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 1672 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 1673 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="e4f0dddc-4964-4882-8f44-c75acad46884"/> 1674 <xdw:effectiveTime value="20140613172001+0200"/> 1675 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 1676 <xdw:patient> 1677 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 1678 </xdw:patient> 1679 <xdw:author> 1680 <xdw:assignedAuthor> 1681 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 1682 <hl7v3:assignedPerson/> 1683 </xdw:assignedAuthor> 1684 </xdw:author> 1685 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 1686 <xdw:workflowDocumentSequenceNumber>4</xdw:workflowDocumentSequenceNumber> 1687 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 1688 <xdw:workflowStatusHistory> 1689 <xdw:documentEvent> 1690 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1691 <xdw:eventType>complete</xdw:eventType> 1692 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 1693 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1694 <xdw:previousStatus>OPEN</xdw:previousStatus> 1695 <xdw:actualStatus>OPEN</xdw:actualStatus> 1696 </xdw:documentEvent> 1697 <xdw:documentEvent> 1698 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1699 <xdw:eventType>create</xdw:eventType> 1700 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 1701 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1702 <xdw:previousStatus>OPEN</xdw:previousStatus> 1703 <xdw:actualStatus>OPEN</xdw:actualStatus> 1704 </xdw:documentEvent> 1705 </xdw:workflowStatusHistory> 1706 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 1707 <xdw:TaskList> 1708 <xdw:XDWTask> 1709 <xdw:taskData> 1710 <ws-ht:taskDetails> 1711 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 1712 <ws-ht:taskType>Requested</ws-ht:taskType> 1713 <ws-ht:name>xdw.creation</ws-ht:name> 1714 <ws-ht:status>COMPLETED</ws-ht:status> 1715 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1716 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 1717 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1718 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 1719 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1720 </ws-ht:taskDetails> 1721 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 1722 <ws-ht:input/> 1723 <ws-ht:output/> 1724 </xdw:taskData> 1725 <xdw:taskEventHistory> 1726 <xdw:taskEvent> 1727 <xdw:id>1</xdw:id> 1728 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1729 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 1730 <xdw:eventType>complete</xdw:eventType> 1731 <xdw:status>COMPLETED</xdw:status> 1732 <xdw:eventData xsi:nil="true"/> 1733 </xdw:taskEvent> 1734 </xdw:taskEventHistory> 1735 </xdw:XDWTask> 1736 <xdw:XDWTask> 1737 <xdw:taskData> 1738 <ws-ht:taskDetails> 1739 <ws-ht:id>task_0</ws-ht:id> 1740 <ws-ht:taskType>ttype</ws-ht:taskType> 1741 <ws-ht:name>tname_0</ws-ht:name> 1742 <ws-ht:status>COMPLETED</ws-ht:status> 1743 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1744 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 1745 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1746 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 1747 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1748 </ws-ht:taskDetails> 1749 <ws-ht:description>Undocumented task</ws-ht:description> 1750 <ws-ht:input/> 1751 <ws-ht:output> 1752 <ws-ht:part name="documentReference"> 1753 <ws-ht:attachment> 1754 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 1755 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 1756 <ws-ht:accessType>RLUS</ws-ht:accessType> 1757 <ws-ht:contentType>application/xml</ws-ht:contentType> 1758 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 1759 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 1760 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 1761 </ws-ht:attachment> 1762 </ws-ht:part> 1763 </ws-ht:output> 1764 </xdw:taskData> 1765 <xdw:taskEventHistory> 1766 <xdw:taskEvent> 1767 <xdw:id>1</xdw:id> 1768 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1769 <xdw:identifier>task_0#1</xdw:identifier> 1770 <xdw:eventType>create</xdw:eventType> 1771 <xdw:status>READY</xdw:status> 1772 <xdw:eventData xsi:nil="true"/> 1773 </xdw:taskEvent> 1774 <xdw:taskEvent> 1775 <xdw:id>2</xdw:id> 1776 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 1777 <xdw:identifier>task_0#2</xdw:identifier> 1778 <xdw:eventType>complete</xdw:eventType> 1779 <xdw:status>COMPLETED</xdw:status> 1780 <xdw:eventData xsi:nil="true"/> 1781 </xdw:taskEvent> 1782 </xdw:taskEventHistory> 1783 </xdw:XDWTask> 1784 </xdw:TaskList> 1785 </xdw:XDW.WorkflowDocument> 1786 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 1787 <rlustypes:success>true</rlustypes:success> 1788 <rlustypes:message>One record fetched</rlustypes:message> 1789 </rlustypes:RLUSStatusCode> 1790 </GetResponse> 1791 </soapenv:Body> 1792 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 1793 <soap:Header/> 1794 <soap:Body> 1795 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 1796 <rlustypes:searchByCriteria> 1797 <rlustypes:FilterCriteria> 1798 <rlustypes:Expression> 1799 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 1800 <rlusexp:Operator type="EqualTo"/> 1801 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 1802 </rlustypes:Expression> 1803 </rlustypes:FilterCriteria> 1804 <rlustypes:SearchAttributes> 1805 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 1806 </rlustypes:SearchAttributes> 1807 </rlustypes:searchByCriteria> 1808 </rlustypes:RLUSSearchStruct> 1809 </soap:Body> 1810 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="7121"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="7121"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 1811 <soapenv:Header/> 1812 <soapenv:Body> 1813 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 1814 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 1815 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="e4f0dddc-4964-4882-8f44-c75acad46884"/> 1816 <xdw:effectiveTime value="20140613172001+0200"/> 1817 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 1818 <xdw:patient> 1819 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 1820 </xdw:patient> 1821 <xdw:author> 1822 <xdw:assignedAuthor> 1823 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 1824 <hl7v3:assignedPerson/> 1825 </xdw:assignedAuthor> 1826 </xdw:author> 1827 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 1828 <xdw:workflowDocumentSequenceNumber>4</xdw:workflowDocumentSequenceNumber> 1829 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 1830 <xdw:workflowStatusHistory> 1831 <xdw:documentEvent> 1832 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1833 <xdw:eventType>complete</xdw:eventType> 1834 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 1835 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1836 <xdw:previousStatus>OPEN</xdw:previousStatus> 1837 <xdw:actualStatus>OPEN</xdw:actualStatus> 1838 </xdw:documentEvent> 1839 <xdw:documentEvent> 1840 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1841 <xdw:eventType>create</xdw:eventType> 1842 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 1843 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1844 <xdw:previousStatus>OPEN</xdw:previousStatus> 1845 <xdw:actualStatus>OPEN</xdw:actualStatus> 1846 </xdw:documentEvent> 1847 </xdw:workflowStatusHistory> 1848 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 1849 <xdw:TaskList> 1850 <xdw:XDWTask> 1851 <xdw:taskData> 1852 <ws-ht:taskDetails> 1853 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 1854 <ws-ht:taskType>Requested</ws-ht:taskType> 1855 <ws-ht:name>xdw.creation</ws-ht:name> 1856 <ws-ht:status>COMPLETED</ws-ht:status> 1857 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1858 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 1859 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1860 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 1861 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1862 </ws-ht:taskDetails> 1863 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 1864 <ws-ht:input/> 1865 <ws-ht:output/> 1866 </xdw:taskData> 1867 <xdw:taskEventHistory> 1868 <xdw:taskEvent> 1869 <xdw:id>1</xdw:id> 1870 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1871 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 1872 <xdw:eventType>complete</xdw:eventType> 1873 <xdw:status>COMPLETED</xdw:status> 1874 <xdw:eventData xsi:nil="true"/> 1875 </xdw:taskEvent> 1876 </xdw:taskEventHistory> 1877 </xdw:XDWTask> 1878 <xdw:XDWTask> 1879 <xdw:taskData> 1880 <ws-ht:taskDetails> 1881 <ws-ht:id>task_0</ws-ht:id> 1882 <ws-ht:taskType>ttype</ws-ht:taskType> 1883 <ws-ht:name>tname_0</ws-ht:name> 1884 <ws-ht:status>COMPLETED</ws-ht:status> 1885 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1886 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 1887 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1888 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 1889 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1890 </ws-ht:taskDetails> 1891 <ws-ht:description>Undocumented task</ws-ht:description> 1892 <ws-ht:input/> 1893 <ws-ht:output> 1894 <ws-ht:part name="documentReference"> 1895 <ws-ht:attachment> 1896 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 1897 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 1898 <ws-ht:accessType>RLUS</ws-ht:accessType> 1899 <ws-ht:contentType>application/xml</ws-ht:contentType> 1900 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 1901 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 1902 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 1903 </ws-ht:attachment> 1904 </ws-ht:part> 1905 </ws-ht:output> 1906 </xdw:taskData> 1907 <xdw:taskEventHistory> 1908 <xdw:taskEvent> 1909 <xdw:id>1</xdw:id> 1910 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1911 <xdw:identifier>task_0#1</xdw:identifier> 1912 <xdw:eventType>create</xdw:eventType> 1913 <xdw:status>READY</xdw:status> 1914 <xdw:eventData xsi:nil="true"/> 1915 </xdw:taskEvent> 1916 <xdw:taskEvent> 1917 <xdw:id>2</xdw:id> 1918 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 1919 <xdw:identifier>task_0#2</xdw:identifier> 1920 <xdw:eventType>complete</xdw:eventType> 1921 <xdw:status>COMPLETED</xdw:status> 1922 <xdw:eventData xsi:nil="true"/> 1923 </xdw:taskEvent> 1924 </xdw:taskEventHistory> 1925 </xdw:XDWTask> 1926 </xdw:TaskList> 1927 </xdw:XDW.WorkflowDocument> 1928 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 1929 <rlustypes:success>true</rlustypes:success> 1930 <rlustypes:message>One record fetched</rlustypes:message> 1931 </rlustypes:RLUSStatusCode> 1932 </GetResponse> 1933 </soapenv:Body> 1934 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="9395"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="9395"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 1935 <soap:Header/> 1936 <soap:Body> 1937 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 1938 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 1939 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="b946f167-0036-48ed-985a-df55f382dc50"/> 1940 <xdw:effectiveTime value="20140613172002+0200"/> 1941 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 1942 <xdw:patient> 1943 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 1944 </xdw:patient> 1945 <xdw:author> 1946 <xdw:assignedAuthor> 1947 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 1948 <hl7v3:assignedPerson/> 1949 </xdw:assignedAuthor> 1950 </xdw:author> 1951 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 1952 <xdw:workflowDocumentSequenceNumber>5</xdw:workflowDocumentSequenceNumber> 1953 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 1954 <xdw:workflowStatusHistory> 1955 <xdw:documentEvent> 1956 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 1957 <xdw:eventType>complete</xdw:eventType> 1958 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 1959 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1960 <xdw:previousStatus>OPEN</xdw:previousStatus> 1961 <xdw:actualStatus>OPEN</xdw:actualStatus> 1962 </xdw:documentEvent> 1963 <xdw:documentEvent> 1964 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 1965 <xdw:eventType>create</xdw:eventType> 1966 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 1967 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1968 <xdw:previousStatus>OPEN</xdw:previousStatus> 1969 <xdw:actualStatus>OPEN</xdw:actualStatus> 1970 </xdw:documentEvent> 1971 <xdw:documentEvent> 1972 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 1973 <xdw:eventType>create</xdw:eventType> 1974 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 1975 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 1976 <xdw:previousStatus>OPEN</xdw:previousStatus> 1977 <xdw:actualStatus>OPEN</xdw:actualStatus> 1978 </xdw:documentEvent> 1979 </xdw:workflowStatusHistory> 1980 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 1981 <xdw:TaskList> 1982 <xdw:XDWTask> 1983 <xdw:taskData> 1984 <ws-ht:taskDetails> 1985 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 1986 <ws-ht:taskType>Requested</ws-ht:taskType> 1987 <ws-ht:name>xdw.creation</ws-ht:name> 1988 <ws-ht:status>COMPLETED</ws-ht:status> 1989 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 1990 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 1991 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 1992 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 1993 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 1994 </ws-ht:taskDetails> 1995 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 1996 <ws-ht:input/> 1997 <ws-ht:output/> 1998 </xdw:taskData> 1999 <xdw:taskEventHistory> 2000 <xdw:taskEvent> 2001 <xdw:id>1</xdw:id> 2002 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 2003 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 2004 <xdw:eventType>complete</xdw:eventType> 2005 <xdw:status>COMPLETED</xdw:status> 2006 <xdw:eventData xsi:nil="true"/> 2007 </xdw:taskEvent> 2008 </xdw:taskEventHistory> 2009 </xdw:XDWTask> 2010 <xdw:XDWTask> 2011 <xdw:taskData> 2012 <ws-ht:taskDetails> 2013 <ws-ht:id>task_0</ws-ht:id> 2014 <ws-ht:taskType>ttype</ws-ht:taskType> 2015 <ws-ht:name>tname_0</ws-ht:name> 2016 <ws-ht:status>COMPLETED</ws-ht:status> 2017 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2018 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 2019 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2020 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 2021 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2022 </ws-ht:taskDetails> 2023 <ws-ht:description>Undocumented task</ws-ht:description> 2024 <ws-ht:input/> 2025 <ws-ht:output> 2026 <ws-ht:part name="documentReference"> 2027 <ws-ht:attachment> 2028 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 2029 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 2030 <ws-ht:accessType>RLUS</ws-ht:accessType> 2031 <ws-ht:contentType>application/xml</ws-ht:contentType> 2032 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 2033 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 2034 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 2035 </ws-ht:attachment> 2036 </ws-ht:part> 2037 </ws-ht:output> 2038 </xdw:taskData> 2039 <xdw:taskEventHistory> 2040 <xdw:taskEvent> 2041 <xdw:id>1</xdw:id> 2042 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 2043 <xdw:identifier>task_0#1</xdw:identifier> 2044 <xdw:eventType>create</xdw:eventType> 2045 <xdw:status>READY</xdw:status> 2046 <xdw:eventData xsi:nil="true"/> 2047 </xdw:taskEvent> 2048 <xdw:taskEvent> 2049 <xdw:id>2</xdw:id> 2050 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 2051 <xdw:identifier>task_0#2</xdw:identifier> 2052 <xdw:eventType>complete</xdw:eventType> 2053 <xdw:status>COMPLETED</xdw:status> 2054 <xdw:eventData xsi:nil="true"/> 2055 </xdw:taskEvent> 2056 </xdw:taskEventHistory> 2057 </xdw:XDWTask> 2058 <xdw:XDWTask> 2059 <xdw:taskData> 2060 <ws-ht:taskDetails> 2061 <ws-ht:id>task_1</ws-ht:id> 2062 <ws-ht:taskType>ttype</ws-ht:taskType> 2063 <ws-ht:name>tname_1</ws-ht:name> 2064 <ws-ht:status>READY</ws-ht:status> 2065 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2066 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 2067 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2068 <ws-ht:lastModifiedTime>2014-06-13T17:20:02.893+02:00</ws-ht:lastModifiedTime> 2069 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2070 </ws-ht:taskDetails> 2071 <ws-ht:description>Undocumented task</ws-ht:description> 2072 <ws-ht:input/> 2073 <ws-ht:output/> 2074 </xdw:taskData> 2075 <xdw:taskEventHistory> 2076 <xdw:taskEvent> 2077 <xdw:id>1</xdw:id> 2078 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 2079 <xdw:identifier>task_1#1</xdw:identifier> 2080 <xdw:eventType>create</xdw:eventType> 2081 <xdw:status>READY</xdw:status> 2082 <xdw:eventData xsi:nil="true"/> 2083 </xdw:taskEvent> 2084 </xdw:taskEventHistory> 2085 </xdw:XDWTask> 2086 </xdw:TaskList> 2087 </xdw:XDW.WorkflowDocument> 2088 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 2089 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 2090 <rlustypes:SecurityContext> 2091 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 2092 </rlustypes:SecurityContext> 2093 <rlustypes:CBRContext> 2094 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 2095 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 2096 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 2097 </rlustypes:CBRContext> 2098 </rlustypes:RLUSPutRequestSrcStruct> 2099 <writeCommandEnum>UPDATE</writeCommandEnum> 2100 </PutRequest> 2101 </soap:Body> 2102 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 2103 <soapenv:Header/> 2104 <soapenv:Body> 2105 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 2106 <rlustypes:success>true</rlustypes:success> 2107 <rlustypes:message/> 2108 </rlustypes:RLUSStatusCode> 2109 </soapenv:Body> 2110 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 2111 <soap:Header/> 2112 <soap:Body> 2113 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 2114 <rlustypes:searchByCriteria> 2115 <rlustypes:FilterCriteria> 2116 <rlustypes:Expression> 2117 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 2118 <rlusexp:Operator type="EqualTo"/> 2119 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 2120 </rlustypes:Expression> 2121 </rlustypes:FilterCriteria> 2122 <rlustypes:SearchAttributes> 2123 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 2124 </rlustypes:SearchAttributes> 2125 </rlustypes:searchByCriteria> 2126 </rlustypes:RLUSSearchStruct> 2127 </soap:Body> 2128 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="8957"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="8957"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 2129 <soapenv:Header/> 2130 <soapenv:Body> 2131 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 2132 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 2133 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="b946f167-0036-48ed-985a-df55f382dc50"/> 2134 <xdw:effectiveTime value="20140613172002+0200"/> 2135 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 2136 <xdw:patient> 2137 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 2138 </xdw:patient> 2139 <xdw:author> 2140 <xdw:assignedAuthor> 2141 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 2142 <hl7v3:assignedPerson/> 2143 </xdw:assignedAuthor> 2144 </xdw:author> 2145 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 2146 <xdw:workflowDocumentSequenceNumber>5</xdw:workflowDocumentSequenceNumber> 2147 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 2148 <xdw:workflowStatusHistory> 2149 <xdw:documentEvent> 2150 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 2151 <xdw:eventType>complete</xdw:eventType> 2152 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 2153 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2154 <xdw:previousStatus>OPEN</xdw:previousStatus> 2155 <xdw:actualStatus>OPEN</xdw:actualStatus> 2156 </xdw:documentEvent> 2157 <xdw:documentEvent> 2158 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 2159 <xdw:eventType>create</xdw:eventType> 2160 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 2161 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2162 <xdw:previousStatus>OPEN</xdw:previousStatus> 2163 <xdw:actualStatus>OPEN</xdw:actualStatus> 2164 </xdw:documentEvent> 2165 <xdw:documentEvent> 2166 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 2167 <xdw:eventType>create</xdw:eventType> 2168 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 2169 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2170 <xdw:previousStatus>OPEN</xdw:previousStatus> 2171 <xdw:actualStatus>OPEN</xdw:actualStatus> 2172 </xdw:documentEvent> 2173 </xdw:workflowStatusHistory> 2174 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 2175 <xdw:TaskList> 2176 <xdw:XDWTask> 2177 <xdw:taskData> 2178 <ws-ht:taskDetails> 2179 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 2180 <ws-ht:taskType>Requested</ws-ht:taskType> 2181 <ws-ht:name>xdw.creation</ws-ht:name> 2182 <ws-ht:status>COMPLETED</ws-ht:status> 2183 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2184 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 2185 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2186 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 2187 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2188 </ws-ht:taskDetails> 2189 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 2190 <ws-ht:input/> 2191 <ws-ht:output/> 2192 </xdw:taskData> 2193 <xdw:taskEventHistory> 2194 <xdw:taskEvent> 2195 <xdw:id>1</xdw:id> 2196 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 2197 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 2198 <xdw:eventType>complete</xdw:eventType> 2199 <xdw:status>COMPLETED</xdw:status> 2200 <xdw:eventData xsi:nil="true"/> 2201 </xdw:taskEvent> 2202 </xdw:taskEventHistory> 2203 </xdw:XDWTask> 2204 <xdw:XDWTask> 2205 <xdw:taskData> 2206 <ws-ht:taskDetails> 2207 <ws-ht:id>task_0</ws-ht:id> 2208 <ws-ht:taskType>ttype</ws-ht:taskType> 2209 <ws-ht:name>tname_0</ws-ht:name> 2210 <ws-ht:status>COMPLETED</ws-ht:status> 2211 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2212 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 2213 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2214 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 2215 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2216 </ws-ht:taskDetails> 2217 <ws-ht:description>Undocumented task</ws-ht:description> 2218 <ws-ht:input/> 2219 <ws-ht:output> 2220 <ws-ht:part name="documentReference"> 2221 <ws-ht:attachment> 2222 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 2223 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 2224 <ws-ht:accessType>RLUS</ws-ht:accessType> 2225 <ws-ht:contentType>application/xml</ws-ht:contentType> 2226 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 2227 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 2228 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 2229 </ws-ht:attachment> 2230 </ws-ht:part> 2231 </ws-ht:output> 2232 </xdw:taskData> 2233 <xdw:taskEventHistory> 2234 <xdw:taskEvent> 2235 <xdw:id>1</xdw:id> 2236 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 2237 <xdw:identifier>task_0#1</xdw:identifier> 2238 <xdw:eventType>create</xdw:eventType> 2239 <xdw:status>READY</xdw:status> 2240 <xdw:eventData xsi:nil="true"/> 2241 </xdw:taskEvent> 2242 <xdw:taskEvent> 2243 <xdw:id>2</xdw:id> 2244 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 2245 <xdw:identifier>task_0#2</xdw:identifier> 2246 <xdw:eventType>complete</xdw:eventType> 2247 <xdw:status>COMPLETED</xdw:status> 2248 <xdw:eventData xsi:nil="true"/> 2249 </xdw:taskEvent> 2250 </xdw:taskEventHistory> 2251 </xdw:XDWTask> 2252 <xdw:XDWTask> 2253 <xdw:taskData> 2254 <ws-ht:taskDetails> 2255 <ws-ht:id>task_1</ws-ht:id> 2256 <ws-ht:taskType>ttype</ws-ht:taskType> 2257 <ws-ht:name>tname_1</ws-ht:name> 2258 <ws-ht:status>READY</ws-ht:status> 2259 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2260 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 2261 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2262 <ws-ht:lastModifiedTime>2014-06-13T17:20:02.893+02:00</ws-ht:lastModifiedTime> 2263 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2264 </ws-ht:taskDetails> 2265 <ws-ht:description>Undocumented task</ws-ht:description> 2266 <ws-ht:input/> 2267 <ws-ht:output/> 2268 </xdw:taskData> 2269 <xdw:taskEventHistory> 2270 <xdw:taskEvent> 2271 <xdw:id>1</xdw:id> 2272 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 2273 <xdw:identifier>task_1#1</xdw:identifier> 2274 <xdw:eventType>create</xdw:eventType> 2275 <xdw:status>READY</xdw:status> 2276 <xdw:eventData xsi:nil="true"/> 2277 </xdw:taskEvent> 2278 </xdw:taskEventHistory> 2279 </xdw:XDWTask> 2280 </xdw:TaskList> 2281 </xdw:XDW.WorkflowDocument> 2282 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 2283 <rlustypes:success>true</rlustypes:success> 2284 <rlustypes:message>One record fetched</rlustypes:message> 2285 </rlustypes:RLUSStatusCode> 2286 </GetResponse> 2287 </soapenv:Body> 2288 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41793</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/cda2report"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 2289 <soap:Header></soap:Header> 2290 <soap:Body> 2291 <PutRequest xmlns="urn:dedalus:rlus:cda2report:types"> 2292 <ClinicalDocument xmlns="urn:hl7-org:v3"> 2293 <realmCode code="IT"></realmCode> 2294 <typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"></typeId> 2295 <templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"></templateId> 2296 <id extension="divjrus7-f34b-431e-835a-a897c0e5-001" root="2.16.840.1.113883.2.9.3.12.4.4"></id> 2297 <code code="47045-0" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study Report"></code> 2298 <effectiveTime value="20140606045508+0200"></effectiveTime> 2299 <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></confidentialityCode> 2300 <languageCode code="it-IT"></languageCode> 2301 <setId extension="divjrus7-f34b-431e-835a-a897c0e5-001" root="2.16.840.1.113883.2.9.3.12.4.4"></setId> 2302 <versionNumber value="1"></versionNumber> 2303 <recordTarget> 2304 <patientRole> 2305 <id extension="7809c024-8058-4c89-9a71-effd2d53f171" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 2306 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="PZNGZL62H58D524R" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 2307 <hl7v3:patient xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212"> 2308 <hl7v3:name> 2309 <hl7v3:given>Graziella</hl7v3:given> 2310 <hl7v3:family>Paziente</hl7v3:family> 2311 </hl7v3:name> 2312 <hl7v3:administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 2313 <hl7v3:birthTime value="19620618093000+0100"></hl7v3:birthTime> 2314 </hl7v3:patient> 2315 </patientRole> 2316 </recordTarget> 2317 <author> 2318 <time value="20140606045508+0200"></time> 2319 <assignedAuthor> 2320 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 2321 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 2322 </assignedAuthor> 2323 </author> 2324 <custodian> 2325 <assignedCustodian> 2326 <representedCustodianOrganization> 2327 <id extension="2.16.840.1.113883.2.9.3.12.4" root="2.16.840.1.113883.2.9.3.12"></id> 2328 </representedCustodianOrganization> 2329 </assignedCustodian> 2330 </custodian> 2331 <legalAuthenticator> 2332 <time value="20140606045508+0200"></time> 2333 <signatureCode code="S"></signatureCode> 2334 <assignedEntity> 2335 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 2336 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 2337 </assignedEntity> 2338 </legalAuthenticator> 2339 <component> 2340 <structuredBody> 2341 <component> 2342 <section> 2343 <code code="18782-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study observation"></code> 2344 <title>Esame Obiettivo Neurologico</title> 2345 <text> 2346 <paragraph>Tutti i dettagli acquisiti durante l'esame obiettivo sulla paziente</paragraph> 2347 </text> 2348 <entry> 2349 <act classCode="ACT" moodCode="EVN"> 2350 <code nullFlavor="NA"></code> 2351 <entryRelationship typeCode="COMP"> 2352 <observation classCode="OBS" moodCode="EVN"> 2353 <code code="eon" codeSystem="2.16.840.1.113883.2.9.3.12.6" codeSystemName="_DIZ_Dedalus" displayName="EON"></code> 2354 </observation> 2355 </entryRelationship> 2356 </act> 2357 </entry> 2358 </section> 2359 </component> 2360 </structuredBody> 2361 </component> 2362 </ClinicalDocument> 2363 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 2364 <rlustypes:RLUSsemantic-signifierName>cda2report</rlustypes:RLUSsemantic-signifierName> 2365 <rlustypes:SecurityContext> 2366 <rlustypes:SourceIdentity identityName="admin"></rlustypes:SourceIdentity> 2367 </rlustypes:SecurityContext> 2368 <rlustypes:CBRContext> 2369 <rlustypes:CBRName>Testing App</rlustypes:CBRName> 2370 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 2371 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 2372 </rlustypes:CBRContext> 2373 </rlustypes:RLUSPutRequestSrcStruct> 2374 <writeCommandEnum>INSERT</writeCommandEnum> 2375 </PutRequest> 2376 </soap:Body> 2377 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 2378 <soapenv:Header/> 2379 <soapenv:Body> 2380 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 2381 <rlustypes:success>true</rlustypes:success> 2382 <rlustypes:message/> 2383 </rlustypes:RLUSStatusCode> 2384 </soapenv:Body> 2385 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 2386 <soap:Header/> 2387 <soap:Body> 2388 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 2389 <rlustypes:searchByCriteria> 2390 <rlustypes:FilterCriteria> 2391 <rlustypes:Expression> 2392 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 2393 <rlusexp:Operator type="EqualTo"/> 2394 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 2395 </rlustypes:Expression> 2396 </rlustypes:FilterCriteria> 2397 <rlustypes:SearchAttributes> 2398 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 2399 </rlustypes:SearchAttributes> 2400 </rlustypes:searchByCriteria> 2401 </rlustypes:RLUSSearchStruct> 2402 </soap:Body> 2403 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="8957"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="8957"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 2404 <soapenv:Header/> 2405 <soapenv:Body> 2406 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 2407 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 2408 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="b946f167-0036-48ed-985a-df55f382dc50"/> 2409 <xdw:effectiveTime value="20140613172002+0200"/> 2410 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 2411 <xdw:patient> 2412 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 2413 </xdw:patient> 2414 <xdw:author> 2415 <xdw:assignedAuthor> 2416 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 2417 <hl7v3:assignedPerson/> 2418 </xdw:assignedAuthor> 2419 </xdw:author> 2420 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 2421 <xdw:workflowDocumentSequenceNumber>5</xdw:workflowDocumentSequenceNumber> 2422 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 2423 <xdw:workflowStatusHistory> 2424 <xdw:documentEvent> 2425 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 2426 <xdw:eventType>complete</xdw:eventType> 2427 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 2428 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2429 <xdw:previousStatus>OPEN</xdw:previousStatus> 2430 <xdw:actualStatus>OPEN</xdw:actualStatus> 2431 </xdw:documentEvent> 2432 <xdw:documentEvent> 2433 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 2434 <xdw:eventType>create</xdw:eventType> 2435 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 2436 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2437 <xdw:previousStatus>OPEN</xdw:previousStatus> 2438 <xdw:actualStatus>OPEN</xdw:actualStatus> 2439 </xdw:documentEvent> 2440 <xdw:documentEvent> 2441 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 2442 <xdw:eventType>create</xdw:eventType> 2443 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 2444 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2445 <xdw:previousStatus>OPEN</xdw:previousStatus> 2446 <xdw:actualStatus>OPEN</xdw:actualStatus> 2447 </xdw:documentEvent> 2448 </xdw:workflowStatusHistory> 2449 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 2450 <xdw:TaskList> 2451 <xdw:XDWTask> 2452 <xdw:taskData> 2453 <ws-ht:taskDetails> 2454 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 2455 <ws-ht:taskType>Requested</ws-ht:taskType> 2456 <ws-ht:name>xdw.creation</ws-ht:name> 2457 <ws-ht:status>COMPLETED</ws-ht:status> 2458 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2459 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 2460 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2461 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 2462 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2463 </ws-ht:taskDetails> 2464 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 2465 <ws-ht:input/> 2466 <ws-ht:output/> 2467 </xdw:taskData> 2468 <xdw:taskEventHistory> 2469 <xdw:taskEvent> 2470 <xdw:id>1</xdw:id> 2471 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 2472 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 2473 <xdw:eventType>complete</xdw:eventType> 2474 <xdw:status>COMPLETED</xdw:status> 2475 <xdw:eventData xsi:nil="true"/> 2476 </xdw:taskEvent> 2477 </xdw:taskEventHistory> 2478 </xdw:XDWTask> 2479 <xdw:XDWTask> 2480 <xdw:taskData> 2481 <ws-ht:taskDetails> 2482 <ws-ht:id>task_0</ws-ht:id> 2483 <ws-ht:taskType>ttype</ws-ht:taskType> 2484 <ws-ht:name>tname_0</ws-ht:name> 2485 <ws-ht:status>COMPLETED</ws-ht:status> 2486 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2487 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 2488 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2489 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 2490 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2491 </ws-ht:taskDetails> 2492 <ws-ht:description>Undocumented task</ws-ht:description> 2493 <ws-ht:input/> 2494 <ws-ht:output> 2495 <ws-ht:part name="documentReference"> 2496 <ws-ht:attachment> 2497 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 2498 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 2499 <ws-ht:accessType>RLUS</ws-ht:accessType> 2500 <ws-ht:contentType>application/xml</ws-ht:contentType> 2501 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 2502 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 2503 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 2504 </ws-ht:attachment> 2505 </ws-ht:part> 2506 </ws-ht:output> 2507 </xdw:taskData> 2508 <xdw:taskEventHistory> 2509 <xdw:taskEvent> 2510 <xdw:id>1</xdw:id> 2511 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 2512 <xdw:identifier>task_0#1</xdw:identifier> 2513 <xdw:eventType>create</xdw:eventType> 2514 <xdw:status>READY</xdw:status> 2515 <xdw:eventData xsi:nil="true"/> 2516 </xdw:taskEvent> 2517 <xdw:taskEvent> 2518 <xdw:id>2</xdw:id> 2519 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 2520 <xdw:identifier>task_0#2</xdw:identifier> 2521 <xdw:eventType>complete</xdw:eventType> 2522 <xdw:status>COMPLETED</xdw:status> 2523 <xdw:eventData xsi:nil="true"/> 2524 </xdw:taskEvent> 2525 </xdw:taskEventHistory> 2526 </xdw:XDWTask> 2527 <xdw:XDWTask> 2528 <xdw:taskData> 2529 <ws-ht:taskDetails> 2530 <ws-ht:id>task_1</ws-ht:id> 2531 <ws-ht:taskType>ttype</ws-ht:taskType> 2532 <ws-ht:name>tname_1</ws-ht:name> 2533 <ws-ht:status>READY</ws-ht:status> 2534 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2535 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 2536 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2537 <ws-ht:lastModifiedTime>2014-06-13T17:20:02.893+02:00</ws-ht:lastModifiedTime> 2538 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2539 </ws-ht:taskDetails> 2540 <ws-ht:description>Undocumented task</ws-ht:description> 2541 <ws-ht:input/> 2542 <ws-ht:output/> 2543 </xdw:taskData> 2544 <xdw:taskEventHistory> 2545 <xdw:taskEvent> 2546 <xdw:id>1</xdw:id> 2547 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 2548 <xdw:identifier>task_1#1</xdw:identifier> 2549 <xdw:eventType>create</xdw:eventType> 2550 <xdw:status>READY</xdw:status> 2551 <xdw:eventData xsi:nil="true"/> 2552 </xdw:taskEvent> 2553 </xdw:taskEventHistory> 2554 </xdw:XDWTask> 2555 </xdw:TaskList> 2556 </xdw:XDW.WorkflowDocument> 2557 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 2558 <rlustypes:success>true</rlustypes:success> 2559 <rlustypes:message>One record fetched</rlustypes:message> 2560 </rlustypes:RLUSStatusCode> 2561 </GetResponse> 2562 </soapenv:Body> 2563 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 2564 <soap:Header/> 2565 <soap:Body> 2566 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 2567 <rlustypes:searchByCriteria> 2568 <rlustypes:FilterCriteria> 2569 <rlustypes:Expression> 2570 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 2571 <rlusexp:Operator type="EqualTo"/> 2572 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 2573 </rlustypes:Expression> 2574 </rlustypes:FilterCriteria> 2575 <rlustypes:SearchAttributes> 2576 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 2577 </rlustypes:SearchAttributes> 2578 </rlustypes:searchByCriteria> 2579 </rlustypes:RLUSSearchStruct> 2580 </soap:Body> 2581 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="8957"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="8957"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 2582 <soapenv:Header/> 2583 <soapenv:Body> 2584 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 2585 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 2586 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="b946f167-0036-48ed-985a-df55f382dc50"/> 2587 <xdw:effectiveTime value="20140613172002+0200"/> 2588 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 2589 <xdw:patient> 2590 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 2591 </xdw:patient> 2592 <xdw:author> 2593 <xdw:assignedAuthor> 2594 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 2595 <hl7v3:assignedPerson/> 2596 </xdw:assignedAuthor> 2597 </xdw:author> 2598 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 2599 <xdw:workflowDocumentSequenceNumber>5</xdw:workflowDocumentSequenceNumber> 2600 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 2601 <xdw:workflowStatusHistory> 2602 <xdw:documentEvent> 2603 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 2604 <xdw:eventType>complete</xdw:eventType> 2605 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 2606 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2607 <xdw:previousStatus>OPEN</xdw:previousStatus> 2608 <xdw:actualStatus>OPEN</xdw:actualStatus> 2609 </xdw:documentEvent> 2610 <xdw:documentEvent> 2611 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 2612 <xdw:eventType>create</xdw:eventType> 2613 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 2614 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2615 <xdw:previousStatus>OPEN</xdw:previousStatus> 2616 <xdw:actualStatus>OPEN</xdw:actualStatus> 2617 </xdw:documentEvent> 2618 <xdw:documentEvent> 2619 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 2620 <xdw:eventType>create</xdw:eventType> 2621 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 2622 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2623 <xdw:previousStatus>OPEN</xdw:previousStatus> 2624 <xdw:actualStatus>OPEN</xdw:actualStatus> 2625 </xdw:documentEvent> 2626 </xdw:workflowStatusHistory> 2627 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 2628 <xdw:TaskList> 2629 <xdw:XDWTask> 2630 <xdw:taskData> 2631 <ws-ht:taskDetails> 2632 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 2633 <ws-ht:taskType>Requested</ws-ht:taskType> 2634 <ws-ht:name>xdw.creation</ws-ht:name> 2635 <ws-ht:status>COMPLETED</ws-ht:status> 2636 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2637 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 2638 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2639 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 2640 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2641 </ws-ht:taskDetails> 2642 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 2643 <ws-ht:input/> 2644 <ws-ht:output/> 2645 </xdw:taskData> 2646 <xdw:taskEventHistory> 2647 <xdw:taskEvent> 2648 <xdw:id>1</xdw:id> 2649 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 2650 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 2651 <xdw:eventType>complete</xdw:eventType> 2652 <xdw:status>COMPLETED</xdw:status> 2653 <xdw:eventData xsi:nil="true"/> 2654 </xdw:taskEvent> 2655 </xdw:taskEventHistory> 2656 </xdw:XDWTask> 2657 <xdw:XDWTask> 2658 <xdw:taskData> 2659 <ws-ht:taskDetails> 2660 <ws-ht:id>task_0</ws-ht:id> 2661 <ws-ht:taskType>ttype</ws-ht:taskType> 2662 <ws-ht:name>tname_0</ws-ht:name> 2663 <ws-ht:status>COMPLETED</ws-ht:status> 2664 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2665 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 2666 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2667 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 2668 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2669 </ws-ht:taskDetails> 2670 <ws-ht:description>Undocumented task</ws-ht:description> 2671 <ws-ht:input/> 2672 <ws-ht:output> 2673 <ws-ht:part name="documentReference"> 2674 <ws-ht:attachment> 2675 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 2676 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 2677 <ws-ht:accessType>RLUS</ws-ht:accessType> 2678 <ws-ht:contentType>application/xml</ws-ht:contentType> 2679 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 2680 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 2681 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 2682 </ws-ht:attachment> 2683 </ws-ht:part> 2684 </ws-ht:output> 2685 </xdw:taskData> 2686 <xdw:taskEventHistory> 2687 <xdw:taskEvent> 2688 <xdw:id>1</xdw:id> 2689 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 2690 <xdw:identifier>task_0#1</xdw:identifier> 2691 <xdw:eventType>create</xdw:eventType> 2692 <xdw:status>READY</xdw:status> 2693 <xdw:eventData xsi:nil="true"/> 2694 </xdw:taskEvent> 2695 <xdw:taskEvent> 2696 <xdw:id>2</xdw:id> 2697 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 2698 <xdw:identifier>task_0#2</xdw:identifier> 2699 <xdw:eventType>complete</xdw:eventType> 2700 <xdw:status>COMPLETED</xdw:status> 2701 <xdw:eventData xsi:nil="true"/> 2702 </xdw:taskEvent> 2703 </xdw:taskEventHistory> 2704 </xdw:XDWTask> 2705 <xdw:XDWTask> 2706 <xdw:taskData> 2707 <ws-ht:taskDetails> 2708 <ws-ht:id>task_1</ws-ht:id> 2709 <ws-ht:taskType>ttype</ws-ht:taskType> 2710 <ws-ht:name>tname_1</ws-ht:name> 2711 <ws-ht:status>READY</ws-ht:status> 2712 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2713 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 2714 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2715 <ws-ht:lastModifiedTime>2014-06-13T17:20:02.893+02:00</ws-ht:lastModifiedTime> 2716 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2717 </ws-ht:taskDetails> 2718 <ws-ht:description>Undocumented task</ws-ht:description> 2719 <ws-ht:input/> 2720 <ws-ht:output/> 2721 </xdw:taskData> 2722 <xdw:taskEventHistory> 2723 <xdw:taskEvent> 2724 <xdw:id>1</xdw:id> 2725 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 2726 <xdw:identifier>task_1#1</xdw:identifier> 2727 <xdw:eventType>create</xdw:eventType> 2728 <xdw:status>READY</xdw:status> 2729 <xdw:eventData xsi:nil="true"/> 2730 </xdw:taskEvent> 2731 </xdw:taskEventHistory> 2732 </xdw:XDWTask> 2733 </xdw:TaskList> 2734 </xdw:XDW.WorkflowDocument> 2735 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 2736 <rlustypes:success>true</rlustypes:success> 2737 <rlustypes:message>One record fetched</rlustypes:message> 2738 </rlustypes:RLUSStatusCode> 2739 </GetResponse> 2740 </soapenv:Body> 2741 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="10164"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="10164"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 2742 <soap:Header/> 2743 <soap:Body> 2744 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 2745 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 2746 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="c2f73667-5208-48ad-b553-6b0fae62c44c"/> 2747 <xdw:effectiveTime value="20140613172006+0200"/> 2748 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 2749 <xdw:patient> 2750 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 2751 </xdw:patient> 2752 <xdw:author> 2753 <xdw:assignedAuthor> 2754 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 2755 <hl7v3:assignedPerson/> 2756 </xdw:assignedAuthor> 2757 </xdw:author> 2758 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 2759 <xdw:workflowDocumentSequenceNumber>6</xdw:workflowDocumentSequenceNumber> 2760 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 2761 <xdw:workflowStatusHistory> 2762 <xdw:documentEvent> 2763 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 2764 <xdw:eventType>complete</xdw:eventType> 2765 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 2766 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2767 <xdw:previousStatus>OPEN</xdw:previousStatus> 2768 <xdw:actualStatus>OPEN</xdw:actualStatus> 2769 </xdw:documentEvent> 2770 <xdw:documentEvent> 2771 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 2772 <xdw:eventType>create</xdw:eventType> 2773 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 2774 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2775 <xdw:previousStatus>OPEN</xdw:previousStatus> 2776 <xdw:actualStatus>OPEN</xdw:actualStatus> 2777 </xdw:documentEvent> 2778 <xdw:documentEvent> 2779 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 2780 <xdw:eventType>create</xdw:eventType> 2781 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 2782 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2783 <xdw:previousStatus>OPEN</xdw:previousStatus> 2784 <xdw:actualStatus>OPEN</xdw:actualStatus> 2785 </xdw:documentEvent> 2786 </xdw:workflowStatusHistory> 2787 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 2788 <xdw:TaskList> 2789 <xdw:XDWTask> 2790 <xdw:taskData> 2791 <ws-ht:taskDetails> 2792 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 2793 <ws-ht:taskType>Requested</ws-ht:taskType> 2794 <ws-ht:name>xdw.creation</ws-ht:name> 2795 <ws-ht:status>COMPLETED</ws-ht:status> 2796 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2797 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 2798 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2799 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 2800 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2801 </ws-ht:taskDetails> 2802 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 2803 <ws-ht:input/> 2804 <ws-ht:output/> 2805 </xdw:taskData> 2806 <xdw:taskEventHistory> 2807 <xdw:taskEvent> 2808 <xdw:id>1</xdw:id> 2809 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 2810 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 2811 <xdw:eventType>complete</xdw:eventType> 2812 <xdw:status>COMPLETED</xdw:status> 2813 <xdw:eventData xsi:nil="true"/> 2814 </xdw:taskEvent> 2815 </xdw:taskEventHistory> 2816 </xdw:XDWTask> 2817 <xdw:XDWTask> 2818 <xdw:taskData> 2819 <ws-ht:taskDetails> 2820 <ws-ht:id>task_0</ws-ht:id> 2821 <ws-ht:taskType>ttype</ws-ht:taskType> 2822 <ws-ht:name>tname_0</ws-ht:name> 2823 <ws-ht:status>COMPLETED</ws-ht:status> 2824 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2825 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 2826 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2827 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 2828 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2829 </ws-ht:taskDetails> 2830 <ws-ht:description>Undocumented task</ws-ht:description> 2831 <ws-ht:input/> 2832 <ws-ht:output> 2833 <ws-ht:part name="documentReference"> 2834 <ws-ht:attachment> 2835 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 2836 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 2837 <ws-ht:accessType>RLUS</ws-ht:accessType> 2838 <ws-ht:contentType>application/xml</ws-ht:contentType> 2839 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 2840 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 2841 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 2842 </ws-ht:attachment> 2843 </ws-ht:part> 2844 </ws-ht:output> 2845 </xdw:taskData> 2846 <xdw:taskEventHistory> 2847 <xdw:taskEvent> 2848 <xdw:id>1</xdw:id> 2849 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 2850 <xdw:identifier>task_0#1</xdw:identifier> 2851 <xdw:eventType>create</xdw:eventType> 2852 <xdw:status>READY</xdw:status> 2853 <xdw:eventData xsi:nil="true"/> 2854 </xdw:taskEvent> 2855 <xdw:taskEvent> 2856 <xdw:id>2</xdw:id> 2857 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 2858 <xdw:identifier>task_0#2</xdw:identifier> 2859 <xdw:eventType>complete</xdw:eventType> 2860 <xdw:status>COMPLETED</xdw:status> 2861 <xdw:eventData xsi:nil="true"/> 2862 </xdw:taskEvent> 2863 </xdw:taskEventHistory> 2864 </xdw:XDWTask> 2865 <xdw:XDWTask> 2866 <xdw:taskData> 2867 <ws-ht:taskDetails> 2868 <ws-ht:id>task_1</ws-ht:id> 2869 <ws-ht:taskType>ttype</ws-ht:taskType> 2870 <ws-ht:name>tname_1</ws-ht:name> 2871 <ws-ht:status>READY</ws-ht:status> 2872 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 2873 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 2874 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 2875 <ws-ht:lastModifiedTime>2014-06-13T17:20:02.893+02:00</ws-ht:lastModifiedTime> 2876 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 2877 </ws-ht:taskDetails> 2878 <ws-ht:description>Undocumented task</ws-ht:description> 2879 <ws-ht:input/> 2880 <ws-ht:output> 2881 <ws-ht:part name="documentReference"> 2882 <ws-ht:attachment> 2883 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 2884 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 2885 <ws-ht:accessType>RLUS</ws-ht:accessType> 2886 <ws-ht:contentType>application/xml</ws-ht:contentType> 2887 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 2888 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 2889 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 2890 </ws-ht:attachment> 2891 </ws-ht:part> 2892 </ws-ht:output> 2893 </xdw:taskData> 2894 <xdw:taskEventHistory> 2895 <xdw:taskEvent> 2896 <xdw:id>1</xdw:id> 2897 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 2898 <xdw:identifier>task_1#1</xdw:identifier> 2899 <xdw:eventType>create</xdw:eventType> 2900 <xdw:status>READY</xdw:status> 2901 <xdw:eventData xsi:nil="true"/> 2902 </xdw:taskEvent> 2903 </xdw:taskEventHistory> 2904 </xdw:XDWTask> 2905 </xdw:TaskList> 2906 </xdw:XDW.WorkflowDocument> 2907 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 2908 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 2909 <rlustypes:SecurityContext> 2910 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 2911 </rlustypes:SecurityContext> 2912 <rlustypes:CBRContext> 2913 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 2914 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 2915 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 2916 </rlustypes:CBRContext> 2917 </rlustypes:RLUSPutRequestSrcStruct> 2918 <writeCommandEnum>UPDATE</writeCommandEnum> 2919 </PutRequest> 2920 </soap:Body> 2921 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 2922 <soapenv:Header/> 2923 <soapenv:Body> 2924 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 2925 <rlustypes:success>true</rlustypes:success> 2926 <rlustypes:message/> 2927 </rlustypes:RLUSStatusCode> 2928 </soapenv:Body> 2929 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 2930 <soap:Header/> 2931 <soap:Body> 2932 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 2933 <rlustypes:searchByCriteria> 2934 <rlustypes:FilterCriteria> 2935 <rlustypes:Expression> 2936 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 2937 <rlusexp:Operator type="EqualTo"/> 2938 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 2939 </rlustypes:Expression> 2940 </rlustypes:FilterCriteria> 2941 <rlustypes:SearchAttributes> 2942 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 2943 </rlustypes:SearchAttributes> 2944 </rlustypes:searchByCriteria> 2945 </rlustypes:RLUSSearchStruct> 2946 </soap:Body> 2947 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="9726"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="9726"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 2948 <soapenv:Header/> 2949 <soapenv:Body> 2950 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 2951 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 2952 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="c2f73667-5208-48ad-b553-6b0fae62c44c"/> 2953 <xdw:effectiveTime value="20140613172006+0200"/> 2954 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 2955 <xdw:patient> 2956 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 2957 </xdw:patient> 2958 <xdw:author> 2959 <xdw:assignedAuthor> 2960 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 2961 <hl7v3:assignedPerson/> 2962 </xdw:assignedAuthor> 2963 </xdw:author> 2964 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 2965 <xdw:workflowDocumentSequenceNumber>6</xdw:workflowDocumentSequenceNumber> 2966 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 2967 <xdw:workflowStatusHistory> 2968 <xdw:documentEvent> 2969 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 2970 <xdw:eventType>complete</xdw:eventType> 2971 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 2972 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2973 <xdw:previousStatus>OPEN</xdw:previousStatus> 2974 <xdw:actualStatus>OPEN</xdw:actualStatus> 2975 </xdw:documentEvent> 2976 <xdw:documentEvent> 2977 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 2978 <xdw:eventType>create</xdw:eventType> 2979 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 2980 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2981 <xdw:previousStatus>OPEN</xdw:previousStatus> 2982 <xdw:actualStatus>OPEN</xdw:actualStatus> 2983 </xdw:documentEvent> 2984 <xdw:documentEvent> 2985 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 2986 <xdw:eventType>create</xdw:eventType> 2987 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 2988 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 2989 <xdw:previousStatus>OPEN</xdw:previousStatus> 2990 <xdw:actualStatus>OPEN</xdw:actualStatus> 2991 </xdw:documentEvent> 2992 </xdw:workflowStatusHistory> 2993 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 2994 <xdw:TaskList> 2995 <xdw:XDWTask> 2996 <xdw:taskData> 2997 <ws-ht:taskDetails> 2998 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 2999 <ws-ht:taskType>Requested</ws-ht:taskType> 3000 <ws-ht:name>xdw.creation</ws-ht:name> 3001 <ws-ht:status>COMPLETED</ws-ht:status> 3002 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3003 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 3004 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3005 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 3006 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3007 </ws-ht:taskDetails> 3008 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 3009 <ws-ht:input/> 3010 <ws-ht:output/> 3011 </xdw:taskData> 3012 <xdw:taskEventHistory> 3013 <xdw:taskEvent> 3014 <xdw:id>1</xdw:id> 3015 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3016 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 3017 <xdw:eventType>complete</xdw:eventType> 3018 <xdw:status>COMPLETED</xdw:status> 3019 <xdw:eventData xsi:nil="true"/> 3020 </xdw:taskEvent> 3021 </xdw:taskEventHistory> 3022 </xdw:XDWTask> 3023 <xdw:XDWTask> 3024 <xdw:taskData> 3025 <ws-ht:taskDetails> 3026 <ws-ht:id>task_0</ws-ht:id> 3027 <ws-ht:taskType>ttype</ws-ht:taskType> 3028 <ws-ht:name>tname_0</ws-ht:name> 3029 <ws-ht:status>COMPLETED</ws-ht:status> 3030 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3031 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 3032 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3033 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 3034 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3035 </ws-ht:taskDetails> 3036 <ws-ht:description>Undocumented task</ws-ht:description> 3037 <ws-ht:input/> 3038 <ws-ht:output> 3039 <ws-ht:part name="documentReference"> 3040 <ws-ht:attachment> 3041 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 3042 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 3043 <ws-ht:accessType>RLUS</ws-ht:accessType> 3044 <ws-ht:contentType>application/xml</ws-ht:contentType> 3045 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 3046 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 3047 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 3048 </ws-ht:attachment> 3049 </ws-ht:part> 3050 </ws-ht:output> 3051 </xdw:taskData> 3052 <xdw:taskEventHistory> 3053 <xdw:taskEvent> 3054 <xdw:id>1</xdw:id> 3055 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 3056 <xdw:identifier>task_0#1</xdw:identifier> 3057 <xdw:eventType>create</xdw:eventType> 3058 <xdw:status>READY</xdw:status> 3059 <xdw:eventData xsi:nil="true"/> 3060 </xdw:taskEvent> 3061 <xdw:taskEvent> 3062 <xdw:id>2</xdw:id> 3063 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 3064 <xdw:identifier>task_0#2</xdw:identifier> 3065 <xdw:eventType>complete</xdw:eventType> 3066 <xdw:status>COMPLETED</xdw:status> 3067 <xdw:eventData xsi:nil="true"/> 3068 </xdw:taskEvent> 3069 </xdw:taskEventHistory> 3070 </xdw:XDWTask> 3071 <xdw:XDWTask> 3072 <xdw:taskData> 3073 <ws-ht:taskDetails> 3074 <ws-ht:id>task_1</ws-ht:id> 3075 <ws-ht:taskType>ttype</ws-ht:taskType> 3076 <ws-ht:name>tname_1</ws-ht:name> 3077 <ws-ht:status>READY</ws-ht:status> 3078 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3079 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 3080 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3081 <ws-ht:lastModifiedTime>2014-06-13T17:20:02.893+02:00</ws-ht:lastModifiedTime> 3082 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3083 </ws-ht:taskDetails> 3084 <ws-ht:description>Undocumented task</ws-ht:description> 3085 <ws-ht:input/> 3086 <ws-ht:output> 3087 <ws-ht:part name="documentReference"> 3088 <ws-ht:attachment> 3089 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 3090 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 3091 <ws-ht:accessType>RLUS</ws-ht:accessType> 3092 <ws-ht:contentType>application/xml</ws-ht:contentType> 3093 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 3094 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 3095 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 3096 </ws-ht:attachment> 3097 </ws-ht:part> 3098 </ws-ht:output> 3099 </xdw:taskData> 3100 <xdw:taskEventHistory> 3101 <xdw:taskEvent> 3102 <xdw:id>1</xdw:id> 3103 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 3104 <xdw:identifier>task_1#1</xdw:identifier> 3105 <xdw:eventType>create</xdw:eventType> 3106 <xdw:status>READY</xdw:status> 3107 <xdw:eventData xsi:nil="true"/> 3108 </xdw:taskEvent> 3109 </xdw:taskEventHistory> 3110 </xdw:XDWTask> 3111 </xdw:TaskList> 3112 </xdw:XDW.WorkflowDocument> 3113 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 3114 <rlustypes:success>true</rlustypes:success> 3115 <rlustypes:message>One record fetched</rlustypes:message> 3116 </rlustypes:RLUSStatusCode> 3117 </GetResponse> 3118 </soapenv:Body> 3119 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 3120 <soap:Header/> 3121 <soap:Body> 3122 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 3123 <rlustypes:searchByCriteria> 3124 <rlustypes:FilterCriteria> 3125 <rlustypes:Expression> 3126 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 3127 <rlusexp:Operator type="EqualTo"/> 3128 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 3129 </rlustypes:Expression> 3130 </rlustypes:FilterCriteria> 3131 <rlustypes:SearchAttributes> 3132 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 3133 </rlustypes:SearchAttributes> 3134 </rlustypes:searchByCriteria> 3135 </rlustypes:RLUSSearchStruct> 3136 </soap:Body> 3137 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="9726"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="9726"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 3138 <soapenv:Header/> 3139 <soapenv:Body> 3140 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 3141 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 3142 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="c2f73667-5208-48ad-b553-6b0fae62c44c"/> 3143 <xdw:effectiveTime value="20140613172006+0200"/> 3144 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 3145 <xdw:patient> 3146 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 3147 </xdw:patient> 3148 <xdw:author> 3149 <xdw:assignedAuthor> 3150 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 3151 <hl7v3:assignedPerson/> 3152 </xdw:assignedAuthor> 3153 </xdw:author> 3154 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 3155 <xdw:workflowDocumentSequenceNumber>6</xdw:workflowDocumentSequenceNumber> 3156 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 3157 <xdw:workflowStatusHistory> 3158 <xdw:documentEvent> 3159 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3160 <xdw:eventType>complete</xdw:eventType> 3161 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 3162 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3163 <xdw:previousStatus>OPEN</xdw:previousStatus> 3164 <xdw:actualStatus>OPEN</xdw:actualStatus> 3165 </xdw:documentEvent> 3166 <xdw:documentEvent> 3167 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 3168 <xdw:eventType>create</xdw:eventType> 3169 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 3170 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3171 <xdw:previousStatus>OPEN</xdw:previousStatus> 3172 <xdw:actualStatus>OPEN</xdw:actualStatus> 3173 </xdw:documentEvent> 3174 <xdw:documentEvent> 3175 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 3176 <xdw:eventType>create</xdw:eventType> 3177 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 3178 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3179 <xdw:previousStatus>OPEN</xdw:previousStatus> 3180 <xdw:actualStatus>OPEN</xdw:actualStatus> 3181 </xdw:documentEvent> 3182 </xdw:workflowStatusHistory> 3183 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 3184 <xdw:TaskList> 3185 <xdw:XDWTask> 3186 <xdw:taskData> 3187 <ws-ht:taskDetails> 3188 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 3189 <ws-ht:taskType>Requested</ws-ht:taskType> 3190 <ws-ht:name>xdw.creation</ws-ht:name> 3191 <ws-ht:status>COMPLETED</ws-ht:status> 3192 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3193 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 3194 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3195 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 3196 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3197 </ws-ht:taskDetails> 3198 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 3199 <ws-ht:input/> 3200 <ws-ht:output/> 3201 </xdw:taskData> 3202 <xdw:taskEventHistory> 3203 <xdw:taskEvent> 3204 <xdw:id>1</xdw:id> 3205 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3206 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 3207 <xdw:eventType>complete</xdw:eventType> 3208 <xdw:status>COMPLETED</xdw:status> 3209 <xdw:eventData xsi:nil="true"/> 3210 </xdw:taskEvent> 3211 </xdw:taskEventHistory> 3212 </xdw:XDWTask> 3213 <xdw:XDWTask> 3214 <xdw:taskData> 3215 <ws-ht:taskDetails> 3216 <ws-ht:id>task_0</ws-ht:id> 3217 <ws-ht:taskType>ttype</ws-ht:taskType> 3218 <ws-ht:name>tname_0</ws-ht:name> 3219 <ws-ht:status>COMPLETED</ws-ht:status> 3220 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3221 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 3222 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3223 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 3224 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3225 </ws-ht:taskDetails> 3226 <ws-ht:description>Undocumented task</ws-ht:description> 3227 <ws-ht:input/> 3228 <ws-ht:output> 3229 <ws-ht:part name="documentReference"> 3230 <ws-ht:attachment> 3231 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 3232 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 3233 <ws-ht:accessType>RLUS</ws-ht:accessType> 3234 <ws-ht:contentType>application/xml</ws-ht:contentType> 3235 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 3236 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 3237 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 3238 </ws-ht:attachment> 3239 </ws-ht:part> 3240 </ws-ht:output> 3241 </xdw:taskData> 3242 <xdw:taskEventHistory> 3243 <xdw:taskEvent> 3244 <xdw:id>1</xdw:id> 3245 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 3246 <xdw:identifier>task_0#1</xdw:identifier> 3247 <xdw:eventType>create</xdw:eventType> 3248 <xdw:status>READY</xdw:status> 3249 <xdw:eventData xsi:nil="true"/> 3250 </xdw:taskEvent> 3251 <xdw:taskEvent> 3252 <xdw:id>2</xdw:id> 3253 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 3254 <xdw:identifier>task_0#2</xdw:identifier> 3255 <xdw:eventType>complete</xdw:eventType> 3256 <xdw:status>COMPLETED</xdw:status> 3257 <xdw:eventData xsi:nil="true"/> 3258 </xdw:taskEvent> 3259 </xdw:taskEventHistory> 3260 </xdw:XDWTask> 3261 <xdw:XDWTask> 3262 <xdw:taskData> 3263 <ws-ht:taskDetails> 3264 <ws-ht:id>task_1</ws-ht:id> 3265 <ws-ht:taskType>ttype</ws-ht:taskType> 3266 <ws-ht:name>tname_1</ws-ht:name> 3267 <ws-ht:status>READY</ws-ht:status> 3268 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3269 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 3270 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3271 <ws-ht:lastModifiedTime>2014-06-13T17:20:02.893+02:00</ws-ht:lastModifiedTime> 3272 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3273 </ws-ht:taskDetails> 3274 <ws-ht:description>Undocumented task</ws-ht:description> 3275 <ws-ht:input/> 3276 <ws-ht:output> 3277 <ws-ht:part name="documentReference"> 3278 <ws-ht:attachment> 3279 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 3280 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 3281 <ws-ht:accessType>RLUS</ws-ht:accessType> 3282 <ws-ht:contentType>application/xml</ws-ht:contentType> 3283 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 3284 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 3285 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 3286 </ws-ht:attachment> 3287 </ws-ht:part> 3288 </ws-ht:output> 3289 </xdw:taskData> 3290 <xdw:taskEventHistory> 3291 <xdw:taskEvent> 3292 <xdw:id>1</xdw:id> 3293 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 3294 <xdw:identifier>task_1#1</xdw:identifier> 3295 <xdw:eventType>create</xdw:eventType> 3296 <xdw:status>READY</xdw:status> 3297 <xdw:eventData xsi:nil="true"/> 3298 </xdw:taskEvent> 3299 </xdw:taskEventHistory> 3300 </xdw:XDWTask> 3301 </xdw:TaskList> 3302 </xdw:XDW.WorkflowDocument> 3303 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 3304 <rlustypes:success>true</rlustypes:success> 3305 <rlustypes:message>One record fetched</rlustypes:message> 3306 </rlustypes:RLUSStatusCode> 3307 </GetResponse> 3308 </soapenv:Body> 3309 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="10554"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="10554"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 3310 <soap:Header/> 3311 <soap:Body> 3312 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 3313 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 3314 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="18291c23-a1b0-4d5c-ad49-99b436d4945b"/> 3315 <xdw:effectiveTime value="20140613172008+0200"/> 3316 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 3317 <xdw:patient> 3318 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 3319 </xdw:patient> 3320 <xdw:author> 3321 <xdw:assignedAuthor> 3322 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 3323 <hl7v3:assignedPerson/> 3324 </xdw:assignedAuthor> 3325 </xdw:author> 3326 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 3327 <xdw:workflowDocumentSequenceNumber>7</xdw:workflowDocumentSequenceNumber> 3328 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 3329 <xdw:workflowStatusHistory> 3330 <xdw:documentEvent> 3331 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3332 <xdw:eventType>complete</xdw:eventType> 3333 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 3334 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3335 <xdw:previousStatus>OPEN</xdw:previousStatus> 3336 <xdw:actualStatus>OPEN</xdw:actualStatus> 3337 </xdw:documentEvent> 3338 <xdw:documentEvent> 3339 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 3340 <xdw:eventType>create</xdw:eventType> 3341 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 3342 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3343 <xdw:previousStatus>OPEN</xdw:previousStatus> 3344 <xdw:actualStatus>OPEN</xdw:actualStatus> 3345 </xdw:documentEvent> 3346 <xdw:documentEvent> 3347 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 3348 <xdw:eventType>create</xdw:eventType> 3349 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 3350 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3351 <xdw:previousStatus>OPEN</xdw:previousStatus> 3352 <xdw:actualStatus>OPEN</xdw:actualStatus> 3353 </xdw:documentEvent> 3354 </xdw:workflowStatusHistory> 3355 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 3356 <xdw:TaskList> 3357 <xdw:XDWTask> 3358 <xdw:taskData> 3359 <ws-ht:taskDetails> 3360 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 3361 <ws-ht:taskType>Requested</ws-ht:taskType> 3362 <ws-ht:name>xdw.creation</ws-ht:name> 3363 <ws-ht:status>COMPLETED</ws-ht:status> 3364 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3365 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 3366 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3367 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 3368 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3369 </ws-ht:taskDetails> 3370 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 3371 <ws-ht:input/> 3372 <ws-ht:output/> 3373 </xdw:taskData> 3374 <xdw:taskEventHistory> 3375 <xdw:taskEvent> 3376 <xdw:id>1</xdw:id> 3377 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3378 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 3379 <xdw:eventType>complete</xdw:eventType> 3380 <xdw:status>COMPLETED</xdw:status> 3381 <xdw:eventData xsi:nil="true"/> 3382 </xdw:taskEvent> 3383 </xdw:taskEventHistory> 3384 </xdw:XDWTask> 3385 <xdw:XDWTask> 3386 <xdw:taskData> 3387 <ws-ht:taskDetails> 3388 <ws-ht:id>task_0</ws-ht:id> 3389 <ws-ht:taskType>ttype</ws-ht:taskType> 3390 <ws-ht:name>tname_0</ws-ht:name> 3391 <ws-ht:status>COMPLETED</ws-ht:status> 3392 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3393 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 3394 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3395 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 3396 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3397 </ws-ht:taskDetails> 3398 <ws-ht:description>Undocumented task</ws-ht:description> 3399 <ws-ht:input/> 3400 <ws-ht:output> 3401 <ws-ht:part name="documentReference"> 3402 <ws-ht:attachment> 3403 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 3404 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 3405 <ws-ht:accessType>RLUS</ws-ht:accessType> 3406 <ws-ht:contentType>application/xml</ws-ht:contentType> 3407 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 3408 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 3409 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 3410 </ws-ht:attachment> 3411 </ws-ht:part> 3412 </ws-ht:output> 3413 </xdw:taskData> 3414 <xdw:taskEventHistory> 3415 <xdw:taskEvent> 3416 <xdw:id>1</xdw:id> 3417 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 3418 <xdw:identifier>task_0#1</xdw:identifier> 3419 <xdw:eventType>create</xdw:eventType> 3420 <xdw:status>READY</xdw:status> 3421 <xdw:eventData xsi:nil="true"/> 3422 </xdw:taskEvent> 3423 <xdw:taskEvent> 3424 <xdw:id>2</xdw:id> 3425 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 3426 <xdw:identifier>task_0#2</xdw:identifier> 3427 <xdw:eventType>complete</xdw:eventType> 3428 <xdw:status>COMPLETED</xdw:status> 3429 <xdw:eventData xsi:nil="true"/> 3430 </xdw:taskEvent> 3431 </xdw:taskEventHistory> 3432 </xdw:XDWTask> 3433 <xdw:XDWTask> 3434 <xdw:taskData> 3435 <ws-ht:taskDetails> 3436 <ws-ht:id>task_1</ws-ht:id> 3437 <ws-ht:taskType>ttype</ws-ht:taskType> 3438 <ws-ht:name>tname_1</ws-ht:name> 3439 <ws-ht:status>COMPLETED</ws-ht:status> 3440 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3441 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 3442 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3443 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 3444 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3445 </ws-ht:taskDetails> 3446 <ws-ht:description>Undocumented task</ws-ht:description> 3447 <ws-ht:input/> 3448 <ws-ht:output> 3449 <ws-ht:part name="documentReference"> 3450 <ws-ht:attachment> 3451 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 3452 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 3453 <ws-ht:accessType>RLUS</ws-ht:accessType> 3454 <ws-ht:contentType>application/xml</ws-ht:contentType> 3455 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 3456 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 3457 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 3458 </ws-ht:attachment> 3459 </ws-ht:part> 3460 </ws-ht:output> 3461 </xdw:taskData> 3462 <xdw:taskEventHistory> 3463 <xdw:taskEvent> 3464 <xdw:id>1</xdw:id> 3465 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 3466 <xdw:identifier>task_1#1</xdw:identifier> 3467 <xdw:eventType>create</xdw:eventType> 3468 <xdw:status>READY</xdw:status> 3469 <xdw:eventData xsi:nil="true"/> 3470 </xdw:taskEvent> 3471 <xdw:taskEvent> 3472 <xdw:id>2</xdw:id> 3473 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 3474 <xdw:identifier>task_1#2</xdw:identifier> 3475 <xdw:eventType>complete</xdw:eventType> 3476 <xdw:status>COMPLETED</xdw:status> 3477 <xdw:eventData xsi:nil="true"/> 3478 </xdw:taskEvent> 3479 </xdw:taskEventHistory> 3480 </xdw:XDWTask> 3481 </xdw:TaskList> 3482 </xdw:XDW.WorkflowDocument> 3483 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 3484 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 3485 <rlustypes:SecurityContext> 3486 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 3487 </rlustypes:SecurityContext> 3488 <rlustypes:CBRContext> 3489 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 3490 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 3491 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 3492 </rlustypes:CBRContext> 3493 </rlustypes:RLUSPutRequestSrcStruct> 3494 <writeCommandEnum>UPDATE</writeCommandEnum> 3495 </PutRequest> 3496 </soap:Body> 3497 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 3498 <soapenv:Header/> 3499 <soapenv:Body> 3500 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 3501 <rlustypes:success>true</rlustypes:success> 3502 <rlustypes:message/> 3503 </rlustypes:RLUSStatusCode> 3504 </soapenv:Body> 3505 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 3506 <soap:Header/> 3507 <soap:Body> 3508 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 3509 <rlustypes:searchByCriteria> 3510 <rlustypes:FilterCriteria> 3511 <rlustypes:Expression> 3512 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 3513 <rlusexp:Operator type="EqualTo"/> 3514 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 3515 </rlustypes:Expression> 3516 </rlustypes:FilterCriteria> 3517 <rlustypes:SearchAttributes> 3518 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 3519 </rlustypes:SearchAttributes> 3520 </rlustypes:searchByCriteria> 3521 </rlustypes:RLUSSearchStruct> 3522 </soap:Body> 3523 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="10116"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="10116"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 3524 <soapenv:Header/> 3525 <soapenv:Body> 3526 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 3527 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 3528 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="18291c23-a1b0-4d5c-ad49-99b436d4945b"/> 3529 <xdw:effectiveTime value="20140613172008+0200"/> 3530 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 3531 <xdw:patient> 3532 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 3533 </xdw:patient> 3534 <xdw:author> 3535 <xdw:assignedAuthor> 3536 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 3537 <hl7v3:assignedPerson/> 3538 </xdw:assignedAuthor> 3539 </xdw:author> 3540 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 3541 <xdw:workflowDocumentSequenceNumber>7</xdw:workflowDocumentSequenceNumber> 3542 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 3543 <xdw:workflowStatusHistory> 3544 <xdw:documentEvent> 3545 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3546 <xdw:eventType>complete</xdw:eventType> 3547 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 3548 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3549 <xdw:previousStatus>OPEN</xdw:previousStatus> 3550 <xdw:actualStatus>OPEN</xdw:actualStatus> 3551 </xdw:documentEvent> 3552 <xdw:documentEvent> 3553 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 3554 <xdw:eventType>create</xdw:eventType> 3555 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 3556 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3557 <xdw:previousStatus>OPEN</xdw:previousStatus> 3558 <xdw:actualStatus>OPEN</xdw:actualStatus> 3559 </xdw:documentEvent> 3560 <xdw:documentEvent> 3561 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 3562 <xdw:eventType>create</xdw:eventType> 3563 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 3564 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3565 <xdw:previousStatus>OPEN</xdw:previousStatus> 3566 <xdw:actualStatus>OPEN</xdw:actualStatus> 3567 </xdw:documentEvent> 3568 </xdw:workflowStatusHistory> 3569 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 3570 <xdw:TaskList> 3571 <xdw:XDWTask> 3572 <xdw:taskData> 3573 <ws-ht:taskDetails> 3574 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 3575 <ws-ht:taskType>Requested</ws-ht:taskType> 3576 <ws-ht:name>xdw.creation</ws-ht:name> 3577 <ws-ht:status>COMPLETED</ws-ht:status> 3578 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3579 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 3580 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3581 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 3582 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3583 </ws-ht:taskDetails> 3584 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 3585 <ws-ht:input/> 3586 <ws-ht:output/> 3587 </xdw:taskData> 3588 <xdw:taskEventHistory> 3589 <xdw:taskEvent> 3590 <xdw:id>1</xdw:id> 3591 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3592 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 3593 <xdw:eventType>complete</xdw:eventType> 3594 <xdw:status>COMPLETED</xdw:status> 3595 <xdw:eventData xsi:nil="true"/> 3596 </xdw:taskEvent> 3597 </xdw:taskEventHistory> 3598 </xdw:XDWTask> 3599 <xdw:XDWTask> 3600 <xdw:taskData> 3601 <ws-ht:taskDetails> 3602 <ws-ht:id>task_0</ws-ht:id> 3603 <ws-ht:taskType>ttype</ws-ht:taskType> 3604 <ws-ht:name>tname_0</ws-ht:name> 3605 <ws-ht:status>COMPLETED</ws-ht:status> 3606 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3607 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 3608 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3609 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 3610 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3611 </ws-ht:taskDetails> 3612 <ws-ht:description>Undocumented task</ws-ht:description> 3613 <ws-ht:input/> 3614 <ws-ht:output> 3615 <ws-ht:part name="documentReference"> 3616 <ws-ht:attachment> 3617 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 3618 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 3619 <ws-ht:accessType>RLUS</ws-ht:accessType> 3620 <ws-ht:contentType>application/xml</ws-ht:contentType> 3621 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 3622 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 3623 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 3624 </ws-ht:attachment> 3625 </ws-ht:part> 3626 </ws-ht:output> 3627 </xdw:taskData> 3628 <xdw:taskEventHistory> 3629 <xdw:taskEvent> 3630 <xdw:id>1</xdw:id> 3631 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 3632 <xdw:identifier>task_0#1</xdw:identifier> 3633 <xdw:eventType>create</xdw:eventType> 3634 <xdw:status>READY</xdw:status> 3635 <xdw:eventData xsi:nil="true"/> 3636 </xdw:taskEvent> 3637 <xdw:taskEvent> 3638 <xdw:id>2</xdw:id> 3639 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 3640 <xdw:identifier>task_0#2</xdw:identifier> 3641 <xdw:eventType>complete</xdw:eventType> 3642 <xdw:status>COMPLETED</xdw:status> 3643 <xdw:eventData xsi:nil="true"/> 3644 </xdw:taskEvent> 3645 </xdw:taskEventHistory> 3646 </xdw:XDWTask> 3647 <xdw:XDWTask> 3648 <xdw:taskData> 3649 <ws-ht:taskDetails> 3650 <ws-ht:id>task_1</ws-ht:id> 3651 <ws-ht:taskType>ttype</ws-ht:taskType> 3652 <ws-ht:name>tname_1</ws-ht:name> 3653 <ws-ht:status>COMPLETED</ws-ht:status> 3654 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3655 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 3656 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3657 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 3658 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3659 </ws-ht:taskDetails> 3660 <ws-ht:description>Undocumented task</ws-ht:description> 3661 <ws-ht:input/> 3662 <ws-ht:output> 3663 <ws-ht:part name="documentReference"> 3664 <ws-ht:attachment> 3665 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 3666 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 3667 <ws-ht:accessType>RLUS</ws-ht:accessType> 3668 <ws-ht:contentType>application/xml</ws-ht:contentType> 3669 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 3670 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 3671 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 3672 </ws-ht:attachment> 3673 </ws-ht:part> 3674 </ws-ht:output> 3675 </xdw:taskData> 3676 <xdw:taskEventHistory> 3677 <xdw:taskEvent> 3678 <xdw:id>1</xdw:id> 3679 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 3680 <xdw:identifier>task_1#1</xdw:identifier> 3681 <xdw:eventType>create</xdw:eventType> 3682 <xdw:status>READY</xdw:status> 3683 <xdw:eventData xsi:nil="true"/> 3684 </xdw:taskEvent> 3685 <xdw:taskEvent> 3686 <xdw:id>2</xdw:id> 3687 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 3688 <xdw:identifier>task_1#2</xdw:identifier> 3689 <xdw:eventType>complete</xdw:eventType> 3690 <xdw:status>COMPLETED</xdw:status> 3691 <xdw:eventData xsi:nil="true"/> 3692 </xdw:taskEvent> 3693 </xdw:taskEventHistory> 3694 </xdw:XDWTask> 3695 </xdw:TaskList> 3696 </xdw:XDW.WorkflowDocument> 3697 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 3698 <rlustypes:success>true</rlustypes:success> 3699 <rlustypes:message>One record fetched</rlustypes:message> 3700 </rlustypes:RLUSStatusCode> 3701 </GetResponse> 3702 </soapenv:Body> 3703 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 3704 <soap:Header/> 3705 <soap:Body> 3706 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 3707 <rlustypes:searchByCriteria> 3708 <rlustypes:FilterCriteria> 3709 <rlustypes:Expression> 3710 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 3711 <rlusexp:Operator type="EqualTo"/> 3712 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 3713 </rlustypes:Expression> 3714 </rlustypes:FilterCriteria> 3715 <rlustypes:SearchAttributes> 3716 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 3717 </rlustypes:SearchAttributes> 3718 </rlustypes:searchByCriteria> 3719 </rlustypes:RLUSSearchStruct> 3720 </soap:Body> 3721 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="10116"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="10116"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 3722 <soapenv:Header/> 3723 <soapenv:Body> 3724 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 3725 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 3726 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="18291c23-a1b0-4d5c-ad49-99b436d4945b"/> 3727 <xdw:effectiveTime value="20140613172008+0200"/> 3728 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 3729 <xdw:patient> 3730 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 3731 </xdw:patient> 3732 <xdw:author> 3733 <xdw:assignedAuthor> 3734 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 3735 <hl7v3:assignedPerson/> 3736 </xdw:assignedAuthor> 3737 </xdw:author> 3738 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 3739 <xdw:workflowDocumentSequenceNumber>7</xdw:workflowDocumentSequenceNumber> 3740 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 3741 <xdw:workflowStatusHistory> 3742 <xdw:documentEvent> 3743 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3744 <xdw:eventType>complete</xdw:eventType> 3745 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 3746 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3747 <xdw:previousStatus>OPEN</xdw:previousStatus> 3748 <xdw:actualStatus>OPEN</xdw:actualStatus> 3749 </xdw:documentEvent> 3750 <xdw:documentEvent> 3751 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 3752 <xdw:eventType>create</xdw:eventType> 3753 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 3754 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3755 <xdw:previousStatus>OPEN</xdw:previousStatus> 3756 <xdw:actualStatus>OPEN</xdw:actualStatus> 3757 </xdw:documentEvent> 3758 <xdw:documentEvent> 3759 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 3760 <xdw:eventType>create</xdw:eventType> 3761 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 3762 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3763 <xdw:previousStatus>OPEN</xdw:previousStatus> 3764 <xdw:actualStatus>OPEN</xdw:actualStatus> 3765 </xdw:documentEvent> 3766 </xdw:workflowStatusHistory> 3767 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 3768 <xdw:TaskList> 3769 <xdw:XDWTask> 3770 <xdw:taskData> 3771 <ws-ht:taskDetails> 3772 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 3773 <ws-ht:taskType>Requested</ws-ht:taskType> 3774 <ws-ht:name>xdw.creation</ws-ht:name> 3775 <ws-ht:status>COMPLETED</ws-ht:status> 3776 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3777 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 3778 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3779 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 3780 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3781 </ws-ht:taskDetails> 3782 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 3783 <ws-ht:input/> 3784 <ws-ht:output/> 3785 </xdw:taskData> 3786 <xdw:taskEventHistory> 3787 <xdw:taskEvent> 3788 <xdw:id>1</xdw:id> 3789 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3790 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 3791 <xdw:eventType>complete</xdw:eventType> 3792 <xdw:status>COMPLETED</xdw:status> 3793 <xdw:eventData xsi:nil="true"/> 3794 </xdw:taskEvent> 3795 </xdw:taskEventHistory> 3796 </xdw:XDWTask> 3797 <xdw:XDWTask> 3798 <xdw:taskData> 3799 <ws-ht:taskDetails> 3800 <ws-ht:id>task_0</ws-ht:id> 3801 <ws-ht:taskType>ttype</ws-ht:taskType> 3802 <ws-ht:name>tname_0</ws-ht:name> 3803 <ws-ht:status>COMPLETED</ws-ht:status> 3804 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3805 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 3806 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3807 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 3808 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3809 </ws-ht:taskDetails> 3810 <ws-ht:description>Undocumented task</ws-ht:description> 3811 <ws-ht:input/> 3812 <ws-ht:output> 3813 <ws-ht:part name="documentReference"> 3814 <ws-ht:attachment> 3815 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 3816 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 3817 <ws-ht:accessType>RLUS</ws-ht:accessType> 3818 <ws-ht:contentType>application/xml</ws-ht:contentType> 3819 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 3820 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 3821 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 3822 </ws-ht:attachment> 3823 </ws-ht:part> 3824 </ws-ht:output> 3825 </xdw:taskData> 3826 <xdw:taskEventHistory> 3827 <xdw:taskEvent> 3828 <xdw:id>1</xdw:id> 3829 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 3830 <xdw:identifier>task_0#1</xdw:identifier> 3831 <xdw:eventType>create</xdw:eventType> 3832 <xdw:status>READY</xdw:status> 3833 <xdw:eventData xsi:nil="true"/> 3834 </xdw:taskEvent> 3835 <xdw:taskEvent> 3836 <xdw:id>2</xdw:id> 3837 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 3838 <xdw:identifier>task_0#2</xdw:identifier> 3839 <xdw:eventType>complete</xdw:eventType> 3840 <xdw:status>COMPLETED</xdw:status> 3841 <xdw:eventData xsi:nil="true"/> 3842 </xdw:taskEvent> 3843 </xdw:taskEventHistory> 3844 </xdw:XDWTask> 3845 <xdw:XDWTask> 3846 <xdw:taskData> 3847 <ws-ht:taskDetails> 3848 <ws-ht:id>task_1</ws-ht:id> 3849 <ws-ht:taskType>ttype</ws-ht:taskType> 3850 <ws-ht:name>tname_1</ws-ht:name> 3851 <ws-ht:status>COMPLETED</ws-ht:status> 3852 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3853 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 3854 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3855 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 3856 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3857 </ws-ht:taskDetails> 3858 <ws-ht:description>Undocumented task</ws-ht:description> 3859 <ws-ht:input/> 3860 <ws-ht:output> 3861 <ws-ht:part name="documentReference"> 3862 <ws-ht:attachment> 3863 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 3864 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 3865 <ws-ht:accessType>RLUS</ws-ht:accessType> 3866 <ws-ht:contentType>application/xml</ws-ht:contentType> 3867 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 3868 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 3869 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 3870 </ws-ht:attachment> 3871 </ws-ht:part> 3872 </ws-ht:output> 3873 </xdw:taskData> 3874 <xdw:taskEventHistory> 3875 <xdw:taskEvent> 3876 <xdw:id>1</xdw:id> 3877 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 3878 <xdw:identifier>task_1#1</xdw:identifier> 3879 <xdw:eventType>create</xdw:eventType> 3880 <xdw:status>READY</xdw:status> 3881 <xdw:eventData xsi:nil="true"/> 3882 </xdw:taskEvent> 3883 <xdw:taskEvent> 3884 <xdw:id>2</xdw:id> 3885 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 3886 <xdw:identifier>task_1#2</xdw:identifier> 3887 <xdw:eventType>complete</xdw:eventType> 3888 <xdw:status>COMPLETED</xdw:status> 3889 <xdw:eventData xsi:nil="true"/> 3890 </xdw:taskEvent> 3891 </xdw:taskEventHistory> 3892 </xdw:XDWTask> 3893 </xdw:TaskList> 3894 </xdw:XDW.WorkflowDocument> 3895 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 3896 <rlustypes:success>true</rlustypes:success> 3897 <rlustypes:message>One record fetched</rlustypes:message> 3898 </rlustypes:RLUSStatusCode> 3899 </GetResponse> 3900 </soapenv:Body> 3901 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 3902 <soap:Header/> 3903 <soap:Body> 3904 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 3905 <rlustypes:searchByCriteria> 3906 <rlustypes:FilterCriteria> 3907 <rlustypes:Expression> 3908 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 3909 <rlusexp:Operator type="EqualTo"/> 3910 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 3911 </rlustypes:Expression> 3912 </rlustypes:FilterCriteria> 3913 <rlustypes:SearchAttributes> 3914 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 3915 </rlustypes:SearchAttributes> 3916 </rlustypes:searchByCriteria> 3917 </rlustypes:RLUSSearchStruct> 3918 </soap:Body> 3919 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="10116"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="10116"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 3920 <soapenv:Header/> 3921 <soapenv:Body> 3922 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 3923 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 3924 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="18291c23-a1b0-4d5c-ad49-99b436d4945b"/> 3925 <xdw:effectiveTime value="20140613172008+0200"/> 3926 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 3927 <xdw:patient> 3928 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 3929 </xdw:patient> 3930 <xdw:author> 3931 <xdw:assignedAuthor> 3932 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 3933 <hl7v3:assignedPerson/> 3934 </xdw:assignedAuthor> 3935 </xdw:author> 3936 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 3937 <xdw:workflowDocumentSequenceNumber>7</xdw:workflowDocumentSequenceNumber> 3938 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 3939 <xdw:workflowStatusHistory> 3940 <xdw:documentEvent> 3941 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3942 <xdw:eventType>complete</xdw:eventType> 3943 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 3944 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3945 <xdw:previousStatus>OPEN</xdw:previousStatus> 3946 <xdw:actualStatus>OPEN</xdw:actualStatus> 3947 </xdw:documentEvent> 3948 <xdw:documentEvent> 3949 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 3950 <xdw:eventType>create</xdw:eventType> 3951 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 3952 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3953 <xdw:previousStatus>OPEN</xdw:previousStatus> 3954 <xdw:actualStatus>OPEN</xdw:actualStatus> 3955 </xdw:documentEvent> 3956 <xdw:documentEvent> 3957 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 3958 <xdw:eventType>create</xdw:eventType> 3959 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 3960 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 3961 <xdw:previousStatus>OPEN</xdw:previousStatus> 3962 <xdw:actualStatus>OPEN</xdw:actualStatus> 3963 </xdw:documentEvent> 3964 </xdw:workflowStatusHistory> 3965 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 3966 <xdw:TaskList> 3967 <xdw:XDWTask> 3968 <xdw:taskData> 3969 <ws-ht:taskDetails> 3970 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 3971 <ws-ht:taskType>Requested</ws-ht:taskType> 3972 <ws-ht:name>xdw.creation</ws-ht:name> 3973 <ws-ht:status>COMPLETED</ws-ht:status> 3974 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 3975 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 3976 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 3977 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 3978 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 3979 </ws-ht:taskDetails> 3980 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 3981 <ws-ht:input/> 3982 <ws-ht:output/> 3983 </xdw:taskData> 3984 <xdw:taskEventHistory> 3985 <xdw:taskEvent> 3986 <xdw:id>1</xdw:id> 3987 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 3988 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 3989 <xdw:eventType>complete</xdw:eventType> 3990 <xdw:status>COMPLETED</xdw:status> 3991 <xdw:eventData xsi:nil="true"/> 3992 </xdw:taskEvent> 3993 </xdw:taskEventHistory> 3994 </xdw:XDWTask> 3995 <xdw:XDWTask> 3996 <xdw:taskData> 3997 <ws-ht:taskDetails> 3998 <ws-ht:id>task_0</ws-ht:id> 3999 <ws-ht:taskType>ttype</ws-ht:taskType> 4000 <ws-ht:name>tname_0</ws-ht:name> 4001 <ws-ht:status>COMPLETED</ws-ht:status> 4002 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4003 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 4004 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4005 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 4006 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4007 </ws-ht:taskDetails> 4008 <ws-ht:description>Undocumented task</ws-ht:description> 4009 <ws-ht:input/> 4010 <ws-ht:output> 4011 <ws-ht:part name="documentReference"> 4012 <ws-ht:attachment> 4013 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 4014 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 4015 <ws-ht:accessType>RLUS</ws-ht:accessType> 4016 <ws-ht:contentType>application/xml</ws-ht:contentType> 4017 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 4018 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 4019 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 4020 </ws-ht:attachment> 4021 </ws-ht:part> 4022 </ws-ht:output> 4023 </xdw:taskData> 4024 <xdw:taskEventHistory> 4025 <xdw:taskEvent> 4026 <xdw:id>1</xdw:id> 4027 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 4028 <xdw:identifier>task_0#1</xdw:identifier> 4029 <xdw:eventType>create</xdw:eventType> 4030 <xdw:status>READY</xdw:status> 4031 <xdw:eventData xsi:nil="true"/> 4032 </xdw:taskEvent> 4033 <xdw:taskEvent> 4034 <xdw:id>2</xdw:id> 4035 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 4036 <xdw:identifier>task_0#2</xdw:identifier> 4037 <xdw:eventType>complete</xdw:eventType> 4038 <xdw:status>COMPLETED</xdw:status> 4039 <xdw:eventData xsi:nil="true"/> 4040 </xdw:taskEvent> 4041 </xdw:taskEventHistory> 4042 </xdw:XDWTask> 4043 <xdw:XDWTask> 4044 <xdw:taskData> 4045 <ws-ht:taskDetails> 4046 <ws-ht:id>task_1</ws-ht:id> 4047 <ws-ht:taskType>ttype</ws-ht:taskType> 4048 <ws-ht:name>tname_1</ws-ht:name> 4049 <ws-ht:status>COMPLETED</ws-ht:status> 4050 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4051 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 4052 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4053 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 4054 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4055 </ws-ht:taskDetails> 4056 <ws-ht:description>Undocumented task</ws-ht:description> 4057 <ws-ht:input/> 4058 <ws-ht:output> 4059 <ws-ht:part name="documentReference"> 4060 <ws-ht:attachment> 4061 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 4062 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 4063 <ws-ht:accessType>RLUS</ws-ht:accessType> 4064 <ws-ht:contentType>application/xml</ws-ht:contentType> 4065 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 4066 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 4067 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 4068 </ws-ht:attachment> 4069 </ws-ht:part> 4070 </ws-ht:output> 4071 </xdw:taskData> 4072 <xdw:taskEventHistory> 4073 <xdw:taskEvent> 4074 <xdw:id>1</xdw:id> 4075 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 4076 <xdw:identifier>task_1#1</xdw:identifier> 4077 <xdw:eventType>create</xdw:eventType> 4078 <xdw:status>READY</xdw:status> 4079 <xdw:eventData xsi:nil="true"/> 4080 </xdw:taskEvent> 4081 <xdw:taskEvent> 4082 <xdw:id>2</xdw:id> 4083 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 4084 <xdw:identifier>task_1#2</xdw:identifier> 4085 <xdw:eventType>complete</xdw:eventType> 4086 <xdw:status>COMPLETED</xdw:status> 4087 <xdw:eventData xsi:nil="true"/> 4088 </xdw:taskEvent> 4089 </xdw:taskEventHistory> 4090 </xdw:XDWTask> 4091 </xdw:TaskList> 4092 </xdw:XDW.WorkflowDocument> 4093 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 4094 <rlustypes:success>true</rlustypes:success> 4095 <rlustypes:message>One record fetched</rlustypes:message> 4096 </rlustypes:RLUSStatusCode> 4097 </GetResponse> 4098 </soapenv:Body> 4099 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="12390"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="12390"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 4100 <soap:Header/> 4101 <soap:Body> 4102 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 4103 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 4104 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="76e13bc8-7d9e-443a-b970-a297c079f3e3"/> 4105 <xdw:effectiveTime value="20140613172009+0200"/> 4106 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 4107 <xdw:patient> 4108 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 4109 </xdw:patient> 4110 <xdw:author> 4111 <xdw:assignedAuthor> 4112 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 4113 <hl7v3:assignedPerson/> 4114 </xdw:assignedAuthor> 4115 </xdw:author> 4116 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 4117 <xdw:workflowDocumentSequenceNumber>8</xdw:workflowDocumentSequenceNumber> 4118 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 4119 <xdw:workflowStatusHistory> 4120 <xdw:documentEvent> 4121 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 4122 <xdw:eventType>complete</xdw:eventType> 4123 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 4124 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4125 <xdw:previousStatus>OPEN</xdw:previousStatus> 4126 <xdw:actualStatus>OPEN</xdw:actualStatus> 4127 </xdw:documentEvent> 4128 <xdw:documentEvent> 4129 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 4130 <xdw:eventType>create</xdw:eventType> 4131 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 4132 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4133 <xdw:previousStatus>OPEN</xdw:previousStatus> 4134 <xdw:actualStatus>OPEN</xdw:actualStatus> 4135 </xdw:documentEvent> 4136 <xdw:documentEvent> 4137 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 4138 <xdw:eventType>create</xdw:eventType> 4139 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 4140 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4141 <xdw:previousStatus>OPEN</xdw:previousStatus> 4142 <xdw:actualStatus>OPEN</xdw:actualStatus> 4143 </xdw:documentEvent> 4144 <xdw:documentEvent> 4145 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 4146 <xdw:eventType>create</xdw:eventType> 4147 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 4148 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4149 <xdw:previousStatus>OPEN</xdw:previousStatus> 4150 <xdw:actualStatus>OPEN</xdw:actualStatus> 4151 </xdw:documentEvent> 4152 </xdw:workflowStatusHistory> 4153 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 4154 <xdw:TaskList> 4155 <xdw:XDWTask> 4156 <xdw:taskData> 4157 <ws-ht:taskDetails> 4158 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 4159 <ws-ht:taskType>Requested</ws-ht:taskType> 4160 <ws-ht:name>xdw.creation</ws-ht:name> 4161 <ws-ht:status>COMPLETED</ws-ht:status> 4162 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4163 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 4164 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4165 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 4166 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4167 </ws-ht:taskDetails> 4168 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 4169 <ws-ht:input/> 4170 <ws-ht:output/> 4171 </xdw:taskData> 4172 <xdw:taskEventHistory> 4173 <xdw:taskEvent> 4174 <xdw:id>1</xdw:id> 4175 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 4176 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 4177 <xdw:eventType>complete</xdw:eventType> 4178 <xdw:status>COMPLETED</xdw:status> 4179 <xdw:eventData xsi:nil="true"/> 4180 </xdw:taskEvent> 4181 </xdw:taskEventHistory> 4182 </xdw:XDWTask> 4183 <xdw:XDWTask> 4184 <xdw:taskData> 4185 <ws-ht:taskDetails> 4186 <ws-ht:id>task_0</ws-ht:id> 4187 <ws-ht:taskType>ttype</ws-ht:taskType> 4188 <ws-ht:name>tname_0</ws-ht:name> 4189 <ws-ht:status>COMPLETED</ws-ht:status> 4190 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4191 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 4192 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4193 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 4194 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4195 </ws-ht:taskDetails> 4196 <ws-ht:description>Undocumented task</ws-ht:description> 4197 <ws-ht:input/> 4198 <ws-ht:output> 4199 <ws-ht:part name="documentReference"> 4200 <ws-ht:attachment> 4201 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 4202 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 4203 <ws-ht:accessType>RLUS</ws-ht:accessType> 4204 <ws-ht:contentType>application/xml</ws-ht:contentType> 4205 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 4206 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 4207 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 4208 </ws-ht:attachment> 4209 </ws-ht:part> 4210 </ws-ht:output> 4211 </xdw:taskData> 4212 <xdw:taskEventHistory> 4213 <xdw:taskEvent> 4214 <xdw:id>1</xdw:id> 4215 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 4216 <xdw:identifier>task_0#1</xdw:identifier> 4217 <xdw:eventType>create</xdw:eventType> 4218 <xdw:status>READY</xdw:status> 4219 <xdw:eventData xsi:nil="true"/> 4220 </xdw:taskEvent> 4221 <xdw:taskEvent> 4222 <xdw:id>2</xdw:id> 4223 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 4224 <xdw:identifier>task_0#2</xdw:identifier> 4225 <xdw:eventType>complete</xdw:eventType> 4226 <xdw:status>COMPLETED</xdw:status> 4227 <xdw:eventData xsi:nil="true"/> 4228 </xdw:taskEvent> 4229 </xdw:taskEventHistory> 4230 </xdw:XDWTask> 4231 <xdw:XDWTask> 4232 <xdw:taskData> 4233 <ws-ht:taskDetails> 4234 <ws-ht:id>task_1</ws-ht:id> 4235 <ws-ht:taskType>ttype</ws-ht:taskType> 4236 <ws-ht:name>tname_1</ws-ht:name> 4237 <ws-ht:status>COMPLETED</ws-ht:status> 4238 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4239 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 4240 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4241 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 4242 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4243 </ws-ht:taskDetails> 4244 <ws-ht:description>Undocumented task</ws-ht:description> 4245 <ws-ht:input/> 4246 <ws-ht:output> 4247 <ws-ht:part name="documentReference"> 4248 <ws-ht:attachment> 4249 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 4250 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 4251 <ws-ht:accessType>RLUS</ws-ht:accessType> 4252 <ws-ht:contentType>application/xml</ws-ht:contentType> 4253 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 4254 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 4255 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 4256 </ws-ht:attachment> 4257 </ws-ht:part> 4258 </ws-ht:output> 4259 </xdw:taskData> 4260 <xdw:taskEventHistory> 4261 <xdw:taskEvent> 4262 <xdw:id>1</xdw:id> 4263 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 4264 <xdw:identifier>task_1#1</xdw:identifier> 4265 <xdw:eventType>create</xdw:eventType> 4266 <xdw:status>READY</xdw:status> 4267 <xdw:eventData xsi:nil="true"/> 4268 </xdw:taskEvent> 4269 <xdw:taskEvent> 4270 <xdw:id>2</xdw:id> 4271 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 4272 <xdw:identifier>task_1#2</xdw:identifier> 4273 <xdw:eventType>complete</xdw:eventType> 4274 <xdw:status>COMPLETED</xdw:status> 4275 <xdw:eventData xsi:nil="true"/> 4276 </xdw:taskEvent> 4277 </xdw:taskEventHistory> 4278 </xdw:XDWTask> 4279 <xdw:XDWTask> 4280 <xdw:taskData> 4281 <ws-ht:taskDetails> 4282 <ws-ht:id>task_2</ws-ht:id> 4283 <ws-ht:taskType>ttype</ws-ht:taskType> 4284 <ws-ht:name>tname_2</ws-ht:name> 4285 <ws-ht:status>READY</ws-ht:status> 4286 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4287 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 4288 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4289 <ws-ht:lastModifiedTime>2014-06-13T17:20:09.656+02:00</ws-ht:lastModifiedTime> 4290 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4291 </ws-ht:taskDetails> 4292 <ws-ht:description>Undocumented task</ws-ht:description> 4293 <ws-ht:input/> 4294 <ws-ht:output/> 4295 </xdw:taskData> 4296 <xdw:taskEventHistory> 4297 <xdw:taskEvent> 4298 <xdw:id>1</xdw:id> 4299 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 4300 <xdw:identifier>task_2#1</xdw:identifier> 4301 <xdw:eventType>create</xdw:eventType> 4302 <xdw:status>READY</xdw:status> 4303 <xdw:eventData xsi:nil="true"/> 4304 </xdw:taskEvent> 4305 </xdw:taskEventHistory> 4306 </xdw:XDWTask> 4307 </xdw:TaskList> 4308 </xdw:XDW.WorkflowDocument> 4309 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 4310 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 4311 <rlustypes:SecurityContext> 4312 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 4313 </rlustypes:SecurityContext> 4314 <rlustypes:CBRContext> 4315 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 4316 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 4317 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 4318 </rlustypes:CBRContext> 4319 </rlustypes:RLUSPutRequestSrcStruct> 4320 <writeCommandEnum>UPDATE</writeCommandEnum> 4321 </PutRequest> 4322 </soap:Body> 4323 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 4324 <soapenv:Header/> 4325 <soapenv:Body> 4326 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 4327 <rlustypes:success>true</rlustypes:success> 4328 <rlustypes:message/> 4329 </rlustypes:RLUSStatusCode> 4330 </soapenv:Body> 4331 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 4332 <soap:Header/> 4333 <soap:Body> 4334 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 4335 <rlustypes:searchByCriteria> 4336 <rlustypes:FilterCriteria> 4337 <rlustypes:Expression> 4338 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 4339 <rlusexp:Operator type="EqualTo"/> 4340 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 4341 </rlustypes:Expression> 4342 </rlustypes:FilterCriteria> 4343 <rlustypes:SearchAttributes> 4344 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 4345 </rlustypes:SearchAttributes> 4346 </rlustypes:searchByCriteria> 4347 </rlustypes:RLUSSearchStruct> 4348 </soap:Body> 4349 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="11952"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="11952"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 4350 <soapenv:Header/> 4351 <soapenv:Body> 4352 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 4353 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 4354 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="76e13bc8-7d9e-443a-b970-a297c079f3e3"/> 4355 <xdw:effectiveTime value="20140613172009+0200"/> 4356 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 4357 <xdw:patient> 4358 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 4359 </xdw:patient> 4360 <xdw:author> 4361 <xdw:assignedAuthor> 4362 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 4363 <hl7v3:assignedPerson/> 4364 </xdw:assignedAuthor> 4365 </xdw:author> 4366 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 4367 <xdw:workflowDocumentSequenceNumber>8</xdw:workflowDocumentSequenceNumber> 4368 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 4369 <xdw:workflowStatusHistory> 4370 <xdw:documentEvent> 4371 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 4372 <xdw:eventType>complete</xdw:eventType> 4373 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 4374 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4375 <xdw:previousStatus>OPEN</xdw:previousStatus> 4376 <xdw:actualStatus>OPEN</xdw:actualStatus> 4377 </xdw:documentEvent> 4378 <xdw:documentEvent> 4379 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 4380 <xdw:eventType>create</xdw:eventType> 4381 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 4382 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4383 <xdw:previousStatus>OPEN</xdw:previousStatus> 4384 <xdw:actualStatus>OPEN</xdw:actualStatus> 4385 </xdw:documentEvent> 4386 <xdw:documentEvent> 4387 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 4388 <xdw:eventType>create</xdw:eventType> 4389 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 4390 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4391 <xdw:previousStatus>OPEN</xdw:previousStatus> 4392 <xdw:actualStatus>OPEN</xdw:actualStatus> 4393 </xdw:documentEvent> 4394 <xdw:documentEvent> 4395 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 4396 <xdw:eventType>create</xdw:eventType> 4397 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 4398 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4399 <xdw:previousStatus>OPEN</xdw:previousStatus> 4400 <xdw:actualStatus>OPEN</xdw:actualStatus> 4401 </xdw:documentEvent> 4402 </xdw:workflowStatusHistory> 4403 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 4404 <xdw:TaskList> 4405 <xdw:XDWTask> 4406 <xdw:taskData> 4407 <ws-ht:taskDetails> 4408 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 4409 <ws-ht:taskType>Requested</ws-ht:taskType> 4410 <ws-ht:name>xdw.creation</ws-ht:name> 4411 <ws-ht:status>COMPLETED</ws-ht:status> 4412 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4413 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 4414 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4415 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 4416 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4417 </ws-ht:taskDetails> 4418 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 4419 <ws-ht:input/> 4420 <ws-ht:output/> 4421 </xdw:taskData> 4422 <xdw:taskEventHistory> 4423 <xdw:taskEvent> 4424 <xdw:id>1</xdw:id> 4425 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 4426 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 4427 <xdw:eventType>complete</xdw:eventType> 4428 <xdw:status>COMPLETED</xdw:status> 4429 <xdw:eventData xsi:nil="true"/> 4430 </xdw:taskEvent> 4431 </xdw:taskEventHistory> 4432 </xdw:XDWTask> 4433 <xdw:XDWTask> 4434 <xdw:taskData> 4435 <ws-ht:taskDetails> 4436 <ws-ht:id>task_0</ws-ht:id> 4437 <ws-ht:taskType>ttype</ws-ht:taskType> 4438 <ws-ht:name>tname_0</ws-ht:name> 4439 <ws-ht:status>COMPLETED</ws-ht:status> 4440 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4441 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 4442 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4443 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 4444 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4445 </ws-ht:taskDetails> 4446 <ws-ht:description>Undocumented task</ws-ht:description> 4447 <ws-ht:input/> 4448 <ws-ht:output> 4449 <ws-ht:part name="documentReference"> 4450 <ws-ht:attachment> 4451 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 4452 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 4453 <ws-ht:accessType>RLUS</ws-ht:accessType> 4454 <ws-ht:contentType>application/xml</ws-ht:contentType> 4455 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 4456 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 4457 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 4458 </ws-ht:attachment> 4459 </ws-ht:part> 4460 </ws-ht:output> 4461 </xdw:taskData> 4462 <xdw:taskEventHistory> 4463 <xdw:taskEvent> 4464 <xdw:id>1</xdw:id> 4465 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 4466 <xdw:identifier>task_0#1</xdw:identifier> 4467 <xdw:eventType>create</xdw:eventType> 4468 <xdw:status>READY</xdw:status> 4469 <xdw:eventData xsi:nil="true"/> 4470 </xdw:taskEvent> 4471 <xdw:taskEvent> 4472 <xdw:id>2</xdw:id> 4473 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 4474 <xdw:identifier>task_0#2</xdw:identifier> 4475 <xdw:eventType>complete</xdw:eventType> 4476 <xdw:status>COMPLETED</xdw:status> 4477 <xdw:eventData xsi:nil="true"/> 4478 </xdw:taskEvent> 4479 </xdw:taskEventHistory> 4480 </xdw:XDWTask> 4481 <xdw:XDWTask> 4482 <xdw:taskData> 4483 <ws-ht:taskDetails> 4484 <ws-ht:id>task_1</ws-ht:id> 4485 <ws-ht:taskType>ttype</ws-ht:taskType> 4486 <ws-ht:name>tname_1</ws-ht:name> 4487 <ws-ht:status>COMPLETED</ws-ht:status> 4488 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4489 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 4490 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4491 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 4492 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4493 </ws-ht:taskDetails> 4494 <ws-ht:description>Undocumented task</ws-ht:description> 4495 <ws-ht:input/> 4496 <ws-ht:output> 4497 <ws-ht:part name="documentReference"> 4498 <ws-ht:attachment> 4499 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 4500 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 4501 <ws-ht:accessType>RLUS</ws-ht:accessType> 4502 <ws-ht:contentType>application/xml</ws-ht:contentType> 4503 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 4504 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 4505 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 4506 </ws-ht:attachment> 4507 </ws-ht:part> 4508 </ws-ht:output> 4509 </xdw:taskData> 4510 <xdw:taskEventHistory> 4511 <xdw:taskEvent> 4512 <xdw:id>1</xdw:id> 4513 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 4514 <xdw:identifier>task_1#1</xdw:identifier> 4515 <xdw:eventType>create</xdw:eventType> 4516 <xdw:status>READY</xdw:status> 4517 <xdw:eventData xsi:nil="true"/> 4518 </xdw:taskEvent> 4519 <xdw:taskEvent> 4520 <xdw:id>2</xdw:id> 4521 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 4522 <xdw:identifier>task_1#2</xdw:identifier> 4523 <xdw:eventType>complete</xdw:eventType> 4524 <xdw:status>COMPLETED</xdw:status> 4525 <xdw:eventData xsi:nil="true"/> 4526 </xdw:taskEvent> 4527 </xdw:taskEventHistory> 4528 </xdw:XDWTask> 4529 <xdw:XDWTask> 4530 <xdw:taskData> 4531 <ws-ht:taskDetails> 4532 <ws-ht:id>task_2</ws-ht:id> 4533 <ws-ht:taskType>ttype</ws-ht:taskType> 4534 <ws-ht:name>tname_2</ws-ht:name> 4535 <ws-ht:status>READY</ws-ht:status> 4536 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4537 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 4538 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4539 <ws-ht:lastModifiedTime>2014-06-13T17:20:09.656+02:00</ws-ht:lastModifiedTime> 4540 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4541 </ws-ht:taskDetails> 4542 <ws-ht:description>Undocumented task</ws-ht:description> 4543 <ws-ht:input/> 4544 <ws-ht:output/> 4545 </xdw:taskData> 4546 <xdw:taskEventHistory> 4547 <xdw:taskEvent> 4548 <xdw:id>1</xdw:id> 4549 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 4550 <xdw:identifier>task_2#1</xdw:identifier> 4551 <xdw:eventType>create</xdw:eventType> 4552 <xdw:status>READY</xdw:status> 4553 <xdw:eventData xsi:nil="true"/> 4554 </xdw:taskEvent> 4555 </xdw:taskEventHistory> 4556 </xdw:XDWTask> 4557 </xdw:TaskList> 4558 </xdw:XDW.WorkflowDocument> 4559 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 4560 <rlustypes:success>true</rlustypes:success> 4561 <rlustypes:message>One record fetched</rlustypes:message> 4562 </rlustypes:RLUSStatusCode> 4563 </GetResponse> 4564 </soapenv:Body> 4565 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41793</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/cda2report"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 4566 <soap:Header></soap:Header> 4567 <soap:Body> 4568 <PutRequest xmlns="urn:dedalus:rlus:cda2report:types"> 4569 <ClinicalDocument xmlns="urn:hl7-org:v3"> 4570 <realmCode code="IT"></realmCode> 4571 <typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"></typeId> 4572 <templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"></templateId> 4573 <id extension="divjrus7-f34b-431e-835a-a897c0e5-002" root="2.16.840.1.113883.2.9.3.12.4.4"></id> 4574 <code code="47045-0" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study Report"></code> 4575 <effectiveTime value="20140606065508+0200"></effectiveTime> 4576 <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></confidentialityCode> 4577 <languageCode code="it-IT"></languageCode> 4578 <setId extension="divjrus7-f34b-431e-835a-a897c0e5-002" root="2.16.840.1.113883.2.9.3.12.4.4"></setId> 4579 <versionNumber value="1"></versionNumber> 4580 <recordTarget> 4581 <patientRole> 4582 <id extension="7809c024-8058-4c89-9a71-effd2d53f171" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 4583 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="PZNGZL62H58D524R" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 4584 <hl7v3:patient xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212"> 4585 <hl7v3:name> 4586 <hl7v3:given>Graziella</hl7v3:given> 4587 <hl7v3:family>Paziente</hl7v3:family> 4588 </hl7v3:name> 4589 <hl7v3:administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 4590 <hl7v3:birthTime value="19620618093000+0100"></hl7v3:birthTime> 4591 </hl7v3:patient> 4592 </patientRole> 4593 </recordTarget> 4594 <author> 4595 <time value="20140606065508+0200"></time> 4596 <assignedAuthor> 4597 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 4598 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 4599 </assignedAuthor> 4600 </author> 4601 <custodian> 4602 <assignedCustodian> 4603 <representedCustodianOrganization> 4604 <id extension="2.16.840.1.113883.2.9.3.12.4" root="2.16.840.1.113883.2.9.3.12"></id> 4605 </representedCustodianOrganization> 4606 </assignedCustodian> 4607 </custodian> 4608 <legalAuthenticator> 4609 <time value="20140606065508+0200"></time> 4610 <signatureCode code="S"></signatureCode> 4611 <assignedEntity> 4612 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 4613 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 4614 </assignedEntity> 4615 </legalAuthenticator> 4616 <component> 4617 <structuredBody> 4618 <component> 4619 <section> 4620 <code code="18782-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study observation"></code> 4621 <title>Esame Obiettivo Generale</title> 4622 <text> 4623 <paragraph>Tutti i dettagli acquisiti durante l'esame obiettivo sulla paziente</paragraph> 4624 </text> 4625 <entry> 4626 <act classCode="ACT" moodCode="EVN"> 4627 <code nullFlavor="NA"></code> 4628 <entryRelationship typeCode="COMP"> 4629 <observation classCode="OBS" moodCode="EVN"> 4630 <code code="eog" codeSystem="2.16.840.1.113883.2.9.3.12.6" codeSystemName="_DIZ_Dedalus" displayName="EOG"></code> 4631 </observation> 4632 </entryRelationship> 4633 </act> 4634 </entry> 4635 </section> 4636 </component> 4637 </structuredBody> 4638 </component> 4639 </ClinicalDocument> 4640 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 4641 <rlustypes:RLUSsemantic-signifierName>cda2report</rlustypes:RLUSsemantic-signifierName> 4642 <rlustypes:SecurityContext> 4643 <rlustypes:SourceIdentity identityName="admin"></rlustypes:SourceIdentity> 4644 </rlustypes:SecurityContext> 4645 <rlustypes:CBRContext> 4646 <rlustypes:CBRName>Testing App</rlustypes:CBRName> 4647 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 4648 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 4649 </rlustypes:CBRContext> 4650 </rlustypes:RLUSPutRequestSrcStruct> 4651 <writeCommandEnum>INSERT</writeCommandEnum> 4652 </PutRequest> 4653 </soap:Body> 4654 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 4655 <soapenv:Header/> 4656 <soapenv:Body> 4657 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 4658 <rlustypes:success>true</rlustypes:success> 4659 <rlustypes:message/> 4660 </rlustypes:RLUSStatusCode> 4661 </soapenv:Body> 4662 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 4663 <soap:Header/> 4664 <soap:Body> 4665 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 4666 <rlustypes:searchByCriteria> 4667 <rlustypes:FilterCriteria> 4668 <rlustypes:Expression> 4669 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 4670 <rlusexp:Operator type="EqualTo"/> 4671 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 4672 </rlustypes:Expression> 4673 </rlustypes:FilterCriteria> 4674 <rlustypes:SearchAttributes> 4675 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 4676 </rlustypes:SearchAttributes> 4677 </rlustypes:searchByCriteria> 4678 </rlustypes:RLUSSearchStruct> 4679 </soap:Body> 4680 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="11952"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="11952"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 4681 <soapenv:Header/> 4682 <soapenv:Body> 4683 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 4684 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 4685 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="76e13bc8-7d9e-443a-b970-a297c079f3e3"/> 4686 <xdw:effectiveTime value="20140613172009+0200"/> 4687 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 4688 <xdw:patient> 4689 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 4690 </xdw:patient> 4691 <xdw:author> 4692 <xdw:assignedAuthor> 4693 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 4694 <hl7v3:assignedPerson/> 4695 </xdw:assignedAuthor> 4696 </xdw:author> 4697 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 4698 <xdw:workflowDocumentSequenceNumber>8</xdw:workflowDocumentSequenceNumber> 4699 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 4700 <xdw:workflowStatusHistory> 4701 <xdw:documentEvent> 4702 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 4703 <xdw:eventType>complete</xdw:eventType> 4704 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 4705 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4706 <xdw:previousStatus>OPEN</xdw:previousStatus> 4707 <xdw:actualStatus>OPEN</xdw:actualStatus> 4708 </xdw:documentEvent> 4709 <xdw:documentEvent> 4710 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 4711 <xdw:eventType>create</xdw:eventType> 4712 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 4713 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4714 <xdw:previousStatus>OPEN</xdw:previousStatus> 4715 <xdw:actualStatus>OPEN</xdw:actualStatus> 4716 </xdw:documentEvent> 4717 <xdw:documentEvent> 4718 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 4719 <xdw:eventType>create</xdw:eventType> 4720 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 4721 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4722 <xdw:previousStatus>OPEN</xdw:previousStatus> 4723 <xdw:actualStatus>OPEN</xdw:actualStatus> 4724 </xdw:documentEvent> 4725 <xdw:documentEvent> 4726 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 4727 <xdw:eventType>create</xdw:eventType> 4728 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 4729 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4730 <xdw:previousStatus>OPEN</xdw:previousStatus> 4731 <xdw:actualStatus>OPEN</xdw:actualStatus> 4732 </xdw:documentEvent> 4733 </xdw:workflowStatusHistory> 4734 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 4735 <xdw:TaskList> 4736 <xdw:XDWTask> 4737 <xdw:taskData> 4738 <ws-ht:taskDetails> 4739 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 4740 <ws-ht:taskType>Requested</ws-ht:taskType> 4741 <ws-ht:name>xdw.creation</ws-ht:name> 4742 <ws-ht:status>COMPLETED</ws-ht:status> 4743 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4744 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 4745 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4746 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 4747 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4748 </ws-ht:taskDetails> 4749 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 4750 <ws-ht:input/> 4751 <ws-ht:output/> 4752 </xdw:taskData> 4753 <xdw:taskEventHistory> 4754 <xdw:taskEvent> 4755 <xdw:id>1</xdw:id> 4756 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 4757 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 4758 <xdw:eventType>complete</xdw:eventType> 4759 <xdw:status>COMPLETED</xdw:status> 4760 <xdw:eventData xsi:nil="true"/> 4761 </xdw:taskEvent> 4762 </xdw:taskEventHistory> 4763 </xdw:XDWTask> 4764 <xdw:XDWTask> 4765 <xdw:taskData> 4766 <ws-ht:taskDetails> 4767 <ws-ht:id>task_0</ws-ht:id> 4768 <ws-ht:taskType>ttype</ws-ht:taskType> 4769 <ws-ht:name>tname_0</ws-ht:name> 4770 <ws-ht:status>COMPLETED</ws-ht:status> 4771 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4772 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 4773 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4774 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 4775 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4776 </ws-ht:taskDetails> 4777 <ws-ht:description>Undocumented task</ws-ht:description> 4778 <ws-ht:input/> 4779 <ws-ht:output> 4780 <ws-ht:part name="documentReference"> 4781 <ws-ht:attachment> 4782 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 4783 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 4784 <ws-ht:accessType>RLUS</ws-ht:accessType> 4785 <ws-ht:contentType>application/xml</ws-ht:contentType> 4786 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 4787 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 4788 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 4789 </ws-ht:attachment> 4790 </ws-ht:part> 4791 </ws-ht:output> 4792 </xdw:taskData> 4793 <xdw:taskEventHistory> 4794 <xdw:taskEvent> 4795 <xdw:id>1</xdw:id> 4796 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 4797 <xdw:identifier>task_0#1</xdw:identifier> 4798 <xdw:eventType>create</xdw:eventType> 4799 <xdw:status>READY</xdw:status> 4800 <xdw:eventData xsi:nil="true"/> 4801 </xdw:taskEvent> 4802 <xdw:taskEvent> 4803 <xdw:id>2</xdw:id> 4804 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 4805 <xdw:identifier>task_0#2</xdw:identifier> 4806 <xdw:eventType>complete</xdw:eventType> 4807 <xdw:status>COMPLETED</xdw:status> 4808 <xdw:eventData xsi:nil="true"/> 4809 </xdw:taskEvent> 4810 </xdw:taskEventHistory> 4811 </xdw:XDWTask> 4812 <xdw:XDWTask> 4813 <xdw:taskData> 4814 <ws-ht:taskDetails> 4815 <ws-ht:id>task_1</ws-ht:id> 4816 <ws-ht:taskType>ttype</ws-ht:taskType> 4817 <ws-ht:name>tname_1</ws-ht:name> 4818 <ws-ht:status>COMPLETED</ws-ht:status> 4819 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4820 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 4821 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4822 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 4823 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4824 </ws-ht:taskDetails> 4825 <ws-ht:description>Undocumented task</ws-ht:description> 4826 <ws-ht:input/> 4827 <ws-ht:output> 4828 <ws-ht:part name="documentReference"> 4829 <ws-ht:attachment> 4830 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 4831 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 4832 <ws-ht:accessType>RLUS</ws-ht:accessType> 4833 <ws-ht:contentType>application/xml</ws-ht:contentType> 4834 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 4835 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 4836 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 4837 </ws-ht:attachment> 4838 </ws-ht:part> 4839 </ws-ht:output> 4840 </xdw:taskData> 4841 <xdw:taskEventHistory> 4842 <xdw:taskEvent> 4843 <xdw:id>1</xdw:id> 4844 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 4845 <xdw:identifier>task_1#1</xdw:identifier> 4846 <xdw:eventType>create</xdw:eventType> 4847 <xdw:status>READY</xdw:status> 4848 <xdw:eventData xsi:nil="true"/> 4849 </xdw:taskEvent> 4850 <xdw:taskEvent> 4851 <xdw:id>2</xdw:id> 4852 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 4853 <xdw:identifier>task_1#2</xdw:identifier> 4854 <xdw:eventType>complete</xdw:eventType> 4855 <xdw:status>COMPLETED</xdw:status> 4856 <xdw:eventData xsi:nil="true"/> 4857 </xdw:taskEvent> 4858 </xdw:taskEventHistory> 4859 </xdw:XDWTask> 4860 <xdw:XDWTask> 4861 <xdw:taskData> 4862 <ws-ht:taskDetails> 4863 <ws-ht:id>task_2</ws-ht:id> 4864 <ws-ht:taskType>ttype</ws-ht:taskType> 4865 <ws-ht:name>tname_2</ws-ht:name> 4866 <ws-ht:status>READY</ws-ht:status> 4867 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4868 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 4869 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4870 <ws-ht:lastModifiedTime>2014-06-13T17:20:09.656+02:00</ws-ht:lastModifiedTime> 4871 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4872 </ws-ht:taskDetails> 4873 <ws-ht:description>Undocumented task</ws-ht:description> 4874 <ws-ht:input/> 4875 <ws-ht:output/> 4876 </xdw:taskData> 4877 <xdw:taskEventHistory> 4878 <xdw:taskEvent> 4879 <xdw:id>1</xdw:id> 4880 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 4881 <xdw:identifier>task_2#1</xdw:identifier> 4882 <xdw:eventType>create</xdw:eventType> 4883 <xdw:status>READY</xdw:status> 4884 <xdw:eventData xsi:nil="true"/> 4885 </xdw:taskEvent> 4886 </xdw:taskEventHistory> 4887 </xdw:XDWTask> 4888 </xdw:TaskList> 4889 </xdw:XDW.WorkflowDocument> 4890 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 4891 <rlustypes:success>true</rlustypes:success> 4892 <rlustypes:message>One record fetched</rlustypes:message> 4893 </rlustypes:RLUSStatusCode> 4894 </GetResponse> 4895 </soapenv:Body> 4896 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 4897 <soap:Header/> 4898 <soap:Body> 4899 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 4900 <rlustypes:searchByCriteria> 4901 <rlustypes:FilterCriteria> 4902 <rlustypes:Expression> 4903 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 4904 <rlusexp:Operator type="EqualTo"/> 4905 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 4906 </rlustypes:Expression> 4907 </rlustypes:FilterCriteria> 4908 <rlustypes:SearchAttributes> 4909 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 4910 </rlustypes:SearchAttributes> 4911 </rlustypes:searchByCriteria> 4912 </rlustypes:RLUSSearchStruct> 4913 </soap:Body> 4914 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="11952"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="11952"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 4915 <soapenv:Header/> 4916 <soapenv:Body> 4917 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 4918 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 4919 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="76e13bc8-7d9e-443a-b970-a297c079f3e3"/> 4920 <xdw:effectiveTime value="20140613172009+0200"/> 4921 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 4922 <xdw:patient> 4923 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 4924 </xdw:patient> 4925 <xdw:author> 4926 <xdw:assignedAuthor> 4927 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 4928 <hl7v3:assignedPerson/> 4929 </xdw:assignedAuthor> 4930 </xdw:author> 4931 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 4932 <xdw:workflowDocumentSequenceNumber>8</xdw:workflowDocumentSequenceNumber> 4933 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 4934 <xdw:workflowStatusHistory> 4935 <xdw:documentEvent> 4936 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 4937 <xdw:eventType>complete</xdw:eventType> 4938 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 4939 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4940 <xdw:previousStatus>OPEN</xdw:previousStatus> 4941 <xdw:actualStatus>OPEN</xdw:actualStatus> 4942 </xdw:documentEvent> 4943 <xdw:documentEvent> 4944 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 4945 <xdw:eventType>create</xdw:eventType> 4946 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 4947 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4948 <xdw:previousStatus>OPEN</xdw:previousStatus> 4949 <xdw:actualStatus>OPEN</xdw:actualStatus> 4950 </xdw:documentEvent> 4951 <xdw:documentEvent> 4952 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 4953 <xdw:eventType>create</xdw:eventType> 4954 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 4955 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4956 <xdw:previousStatus>OPEN</xdw:previousStatus> 4957 <xdw:actualStatus>OPEN</xdw:actualStatus> 4958 </xdw:documentEvent> 4959 <xdw:documentEvent> 4960 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 4961 <xdw:eventType>create</xdw:eventType> 4962 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 4963 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 4964 <xdw:previousStatus>OPEN</xdw:previousStatus> 4965 <xdw:actualStatus>OPEN</xdw:actualStatus> 4966 </xdw:documentEvent> 4967 </xdw:workflowStatusHistory> 4968 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 4969 <xdw:TaskList> 4970 <xdw:XDWTask> 4971 <xdw:taskData> 4972 <ws-ht:taskDetails> 4973 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 4974 <ws-ht:taskType>Requested</ws-ht:taskType> 4975 <ws-ht:name>xdw.creation</ws-ht:name> 4976 <ws-ht:status>COMPLETED</ws-ht:status> 4977 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 4978 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 4979 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 4980 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 4981 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 4982 </ws-ht:taskDetails> 4983 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 4984 <ws-ht:input/> 4985 <ws-ht:output/> 4986 </xdw:taskData> 4987 <xdw:taskEventHistory> 4988 <xdw:taskEvent> 4989 <xdw:id>1</xdw:id> 4990 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 4991 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 4992 <xdw:eventType>complete</xdw:eventType> 4993 <xdw:status>COMPLETED</xdw:status> 4994 <xdw:eventData xsi:nil="true"/> 4995 </xdw:taskEvent> 4996 </xdw:taskEventHistory> 4997 </xdw:XDWTask> 4998 <xdw:XDWTask> 4999 <xdw:taskData> 5000 <ws-ht:taskDetails> 5001 <ws-ht:id>task_0</ws-ht:id> 5002 <ws-ht:taskType>ttype</ws-ht:taskType> 5003 <ws-ht:name>tname_0</ws-ht:name> 5004 <ws-ht:status>COMPLETED</ws-ht:status> 5005 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5006 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 5007 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5008 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 5009 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5010 </ws-ht:taskDetails> 5011 <ws-ht:description>Undocumented task</ws-ht:description> 5012 <ws-ht:input/> 5013 <ws-ht:output> 5014 <ws-ht:part name="documentReference"> 5015 <ws-ht:attachment> 5016 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 5017 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 5018 <ws-ht:accessType>RLUS</ws-ht:accessType> 5019 <ws-ht:contentType>application/xml</ws-ht:contentType> 5020 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5021 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 5022 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5023 </ws-ht:attachment> 5024 </ws-ht:part> 5025 </ws-ht:output> 5026 </xdw:taskData> 5027 <xdw:taskEventHistory> 5028 <xdw:taskEvent> 5029 <xdw:id>1</xdw:id> 5030 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 5031 <xdw:identifier>task_0#1</xdw:identifier> 5032 <xdw:eventType>create</xdw:eventType> 5033 <xdw:status>READY</xdw:status> 5034 <xdw:eventData xsi:nil="true"/> 5035 </xdw:taskEvent> 5036 <xdw:taskEvent> 5037 <xdw:id>2</xdw:id> 5038 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 5039 <xdw:identifier>task_0#2</xdw:identifier> 5040 <xdw:eventType>complete</xdw:eventType> 5041 <xdw:status>COMPLETED</xdw:status> 5042 <xdw:eventData xsi:nil="true"/> 5043 </xdw:taskEvent> 5044 </xdw:taskEventHistory> 5045 </xdw:XDWTask> 5046 <xdw:XDWTask> 5047 <xdw:taskData> 5048 <ws-ht:taskDetails> 5049 <ws-ht:id>task_1</ws-ht:id> 5050 <ws-ht:taskType>ttype</ws-ht:taskType> 5051 <ws-ht:name>tname_1</ws-ht:name> 5052 <ws-ht:status>COMPLETED</ws-ht:status> 5053 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5054 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 5055 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5056 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 5057 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5058 </ws-ht:taskDetails> 5059 <ws-ht:description>Undocumented task</ws-ht:description> 5060 <ws-ht:input/> 5061 <ws-ht:output> 5062 <ws-ht:part name="documentReference"> 5063 <ws-ht:attachment> 5064 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 5065 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 5066 <ws-ht:accessType>RLUS</ws-ht:accessType> 5067 <ws-ht:contentType>application/xml</ws-ht:contentType> 5068 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5069 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 5070 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5071 </ws-ht:attachment> 5072 </ws-ht:part> 5073 </ws-ht:output> 5074 </xdw:taskData> 5075 <xdw:taskEventHistory> 5076 <xdw:taskEvent> 5077 <xdw:id>1</xdw:id> 5078 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 5079 <xdw:identifier>task_1#1</xdw:identifier> 5080 <xdw:eventType>create</xdw:eventType> 5081 <xdw:status>READY</xdw:status> 5082 <xdw:eventData xsi:nil="true"/> 5083 </xdw:taskEvent> 5084 <xdw:taskEvent> 5085 <xdw:id>2</xdw:id> 5086 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 5087 <xdw:identifier>task_1#2</xdw:identifier> 5088 <xdw:eventType>complete</xdw:eventType> 5089 <xdw:status>COMPLETED</xdw:status> 5090 <xdw:eventData xsi:nil="true"/> 5091 </xdw:taskEvent> 5092 </xdw:taskEventHistory> 5093 </xdw:XDWTask> 5094 <xdw:XDWTask> 5095 <xdw:taskData> 5096 <ws-ht:taskDetails> 5097 <ws-ht:id>task_2</ws-ht:id> 5098 <ws-ht:taskType>ttype</ws-ht:taskType> 5099 <ws-ht:name>tname_2</ws-ht:name> 5100 <ws-ht:status>READY</ws-ht:status> 5101 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5102 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 5103 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5104 <ws-ht:lastModifiedTime>2014-06-13T17:20:09.656+02:00</ws-ht:lastModifiedTime> 5105 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5106 </ws-ht:taskDetails> 5107 <ws-ht:description>Undocumented task</ws-ht:description> 5108 <ws-ht:input/> 5109 <ws-ht:output/> 5110 </xdw:taskData> 5111 <xdw:taskEventHistory> 5112 <xdw:taskEvent> 5113 <xdw:id>1</xdw:id> 5114 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 5115 <xdw:identifier>task_2#1</xdw:identifier> 5116 <xdw:eventType>create</xdw:eventType> 5117 <xdw:status>READY</xdw:status> 5118 <xdw:eventData xsi:nil="true"/> 5119 </xdw:taskEvent> 5120 </xdw:taskEventHistory> 5121 </xdw:XDWTask> 5122 </xdw:TaskList> 5123 </xdw:XDW.WorkflowDocument> 5124 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 5125 <rlustypes:success>true</rlustypes:success> 5126 <rlustypes:message>One record fetched</rlustypes:message> 5127 </rlustypes:RLUSStatusCode> 5128 </GetResponse> 5129 </soapenv:Body> 5130 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="13159"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="13159"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 5131 <soap:Header/> 5132 <soap:Body> 5133 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 5134 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 5135 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="a00f7659-709c-4fee-97d0-6ec5e706598f"/> 5136 <xdw:effectiveTime value="20140613172013+0200"/> 5137 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 5138 <xdw:patient> 5139 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 5140 </xdw:patient> 5141 <xdw:author> 5142 <xdw:assignedAuthor> 5143 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 5144 <hl7v3:assignedPerson/> 5145 </xdw:assignedAuthor> 5146 </xdw:author> 5147 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 5148 <xdw:workflowDocumentSequenceNumber>9</xdw:workflowDocumentSequenceNumber> 5149 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 5150 <xdw:workflowStatusHistory> 5151 <xdw:documentEvent> 5152 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 5153 <xdw:eventType>complete</xdw:eventType> 5154 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 5155 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5156 <xdw:previousStatus>OPEN</xdw:previousStatus> 5157 <xdw:actualStatus>OPEN</xdw:actualStatus> 5158 </xdw:documentEvent> 5159 <xdw:documentEvent> 5160 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 5161 <xdw:eventType>create</xdw:eventType> 5162 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 5163 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5164 <xdw:previousStatus>OPEN</xdw:previousStatus> 5165 <xdw:actualStatus>OPEN</xdw:actualStatus> 5166 </xdw:documentEvent> 5167 <xdw:documentEvent> 5168 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 5169 <xdw:eventType>create</xdw:eventType> 5170 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 5171 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5172 <xdw:previousStatus>OPEN</xdw:previousStatus> 5173 <xdw:actualStatus>OPEN</xdw:actualStatus> 5174 </xdw:documentEvent> 5175 <xdw:documentEvent> 5176 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 5177 <xdw:eventType>create</xdw:eventType> 5178 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 5179 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5180 <xdw:previousStatus>OPEN</xdw:previousStatus> 5181 <xdw:actualStatus>OPEN</xdw:actualStatus> 5182 </xdw:documentEvent> 5183 </xdw:workflowStatusHistory> 5184 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 5185 <xdw:TaskList> 5186 <xdw:XDWTask> 5187 <xdw:taskData> 5188 <ws-ht:taskDetails> 5189 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 5190 <ws-ht:taskType>Requested</ws-ht:taskType> 5191 <ws-ht:name>xdw.creation</ws-ht:name> 5192 <ws-ht:status>COMPLETED</ws-ht:status> 5193 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5194 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 5195 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5196 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 5197 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5198 </ws-ht:taskDetails> 5199 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 5200 <ws-ht:input/> 5201 <ws-ht:output/> 5202 </xdw:taskData> 5203 <xdw:taskEventHistory> 5204 <xdw:taskEvent> 5205 <xdw:id>1</xdw:id> 5206 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 5207 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 5208 <xdw:eventType>complete</xdw:eventType> 5209 <xdw:status>COMPLETED</xdw:status> 5210 <xdw:eventData xsi:nil="true"/> 5211 </xdw:taskEvent> 5212 </xdw:taskEventHistory> 5213 </xdw:XDWTask> 5214 <xdw:XDWTask> 5215 <xdw:taskData> 5216 <ws-ht:taskDetails> 5217 <ws-ht:id>task_0</ws-ht:id> 5218 <ws-ht:taskType>ttype</ws-ht:taskType> 5219 <ws-ht:name>tname_0</ws-ht:name> 5220 <ws-ht:status>COMPLETED</ws-ht:status> 5221 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5222 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 5223 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5224 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 5225 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5226 </ws-ht:taskDetails> 5227 <ws-ht:description>Undocumented task</ws-ht:description> 5228 <ws-ht:input/> 5229 <ws-ht:output> 5230 <ws-ht:part name="documentReference"> 5231 <ws-ht:attachment> 5232 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 5233 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 5234 <ws-ht:accessType>RLUS</ws-ht:accessType> 5235 <ws-ht:contentType>application/xml</ws-ht:contentType> 5236 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5237 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 5238 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5239 </ws-ht:attachment> 5240 </ws-ht:part> 5241 </ws-ht:output> 5242 </xdw:taskData> 5243 <xdw:taskEventHistory> 5244 <xdw:taskEvent> 5245 <xdw:id>1</xdw:id> 5246 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 5247 <xdw:identifier>task_0#1</xdw:identifier> 5248 <xdw:eventType>create</xdw:eventType> 5249 <xdw:status>READY</xdw:status> 5250 <xdw:eventData xsi:nil="true"/> 5251 </xdw:taskEvent> 5252 <xdw:taskEvent> 5253 <xdw:id>2</xdw:id> 5254 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 5255 <xdw:identifier>task_0#2</xdw:identifier> 5256 <xdw:eventType>complete</xdw:eventType> 5257 <xdw:status>COMPLETED</xdw:status> 5258 <xdw:eventData xsi:nil="true"/> 5259 </xdw:taskEvent> 5260 </xdw:taskEventHistory> 5261 </xdw:XDWTask> 5262 <xdw:XDWTask> 5263 <xdw:taskData> 5264 <ws-ht:taskDetails> 5265 <ws-ht:id>task_1</ws-ht:id> 5266 <ws-ht:taskType>ttype</ws-ht:taskType> 5267 <ws-ht:name>tname_1</ws-ht:name> 5268 <ws-ht:status>COMPLETED</ws-ht:status> 5269 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5270 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 5271 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5272 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 5273 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5274 </ws-ht:taskDetails> 5275 <ws-ht:description>Undocumented task</ws-ht:description> 5276 <ws-ht:input/> 5277 <ws-ht:output> 5278 <ws-ht:part name="documentReference"> 5279 <ws-ht:attachment> 5280 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 5281 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 5282 <ws-ht:accessType>RLUS</ws-ht:accessType> 5283 <ws-ht:contentType>application/xml</ws-ht:contentType> 5284 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5285 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 5286 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5287 </ws-ht:attachment> 5288 </ws-ht:part> 5289 </ws-ht:output> 5290 </xdw:taskData> 5291 <xdw:taskEventHistory> 5292 <xdw:taskEvent> 5293 <xdw:id>1</xdw:id> 5294 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 5295 <xdw:identifier>task_1#1</xdw:identifier> 5296 <xdw:eventType>create</xdw:eventType> 5297 <xdw:status>READY</xdw:status> 5298 <xdw:eventData xsi:nil="true"/> 5299 </xdw:taskEvent> 5300 <xdw:taskEvent> 5301 <xdw:id>2</xdw:id> 5302 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 5303 <xdw:identifier>task_1#2</xdw:identifier> 5304 <xdw:eventType>complete</xdw:eventType> 5305 <xdw:status>COMPLETED</xdw:status> 5306 <xdw:eventData xsi:nil="true"/> 5307 </xdw:taskEvent> 5308 </xdw:taskEventHistory> 5309 </xdw:XDWTask> 5310 <xdw:XDWTask> 5311 <xdw:taskData> 5312 <ws-ht:taskDetails> 5313 <ws-ht:id>task_2</ws-ht:id> 5314 <ws-ht:taskType>ttype</ws-ht:taskType> 5315 <ws-ht:name>tname_2</ws-ht:name> 5316 <ws-ht:status>READY</ws-ht:status> 5317 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5318 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 5319 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5320 <ws-ht:lastModifiedTime>2014-06-13T17:20:09.656+02:00</ws-ht:lastModifiedTime> 5321 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5322 </ws-ht:taskDetails> 5323 <ws-ht:description>Undocumented task</ws-ht:description> 5324 <ws-ht:input/> 5325 <ws-ht:output> 5326 <ws-ht:part name="documentReference"> 5327 <ws-ht:attachment> 5328 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 5329 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 5330 <ws-ht:accessType>RLUS</ws-ht:accessType> 5331 <ws-ht:contentType>application/xml</ws-ht:contentType> 5332 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5333 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 5334 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5335 </ws-ht:attachment> 5336 </ws-ht:part> 5337 </ws-ht:output> 5338 </xdw:taskData> 5339 <xdw:taskEventHistory> 5340 <xdw:taskEvent> 5341 <xdw:id>1</xdw:id> 5342 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 5343 <xdw:identifier>task_2#1</xdw:identifier> 5344 <xdw:eventType>create</xdw:eventType> 5345 <xdw:status>READY</xdw:status> 5346 <xdw:eventData xsi:nil="true"/> 5347 </xdw:taskEvent> 5348 </xdw:taskEventHistory> 5349 </xdw:XDWTask> 5350 </xdw:TaskList> 5351 </xdw:XDW.WorkflowDocument> 5352 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 5353 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 5354 <rlustypes:SecurityContext> 5355 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 5356 </rlustypes:SecurityContext> 5357 <rlustypes:CBRContext> 5358 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 5359 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 5360 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 5361 </rlustypes:CBRContext> 5362 </rlustypes:RLUSPutRequestSrcStruct> 5363 <writeCommandEnum>UPDATE</writeCommandEnum> 5364 </PutRequest> 5365 </soap:Body> 5366 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 5367 <soapenv:Header/> 5368 <soapenv:Body> 5369 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 5370 <rlustypes:success>true</rlustypes:success> 5371 <rlustypes:message/> 5372 </rlustypes:RLUSStatusCode> 5373 </soapenv:Body> 5374 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 5375 <soap:Header/> 5376 <soap:Body> 5377 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 5378 <rlustypes:searchByCriteria> 5379 <rlustypes:FilterCriteria> 5380 <rlustypes:Expression> 5381 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 5382 <rlusexp:Operator type="EqualTo"/> 5383 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 5384 </rlustypes:Expression> 5385 </rlustypes:FilterCriteria> 5386 <rlustypes:SearchAttributes> 5387 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 5388 </rlustypes:SearchAttributes> 5389 </rlustypes:searchByCriteria> 5390 </rlustypes:RLUSSearchStruct> 5391 </soap:Body> 5392 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="12721"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="12721"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 5393 <soapenv:Header/> 5394 <soapenv:Body> 5395 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 5396 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 5397 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="a00f7659-709c-4fee-97d0-6ec5e706598f"/> 5398 <xdw:effectiveTime value="20140613172013+0200"/> 5399 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 5400 <xdw:patient> 5401 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 5402 </xdw:patient> 5403 <xdw:author> 5404 <xdw:assignedAuthor> 5405 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 5406 <hl7v3:assignedPerson/> 5407 </xdw:assignedAuthor> 5408 </xdw:author> 5409 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 5410 <xdw:workflowDocumentSequenceNumber>9</xdw:workflowDocumentSequenceNumber> 5411 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 5412 <xdw:workflowStatusHistory> 5413 <xdw:documentEvent> 5414 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 5415 <xdw:eventType>complete</xdw:eventType> 5416 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 5417 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5418 <xdw:previousStatus>OPEN</xdw:previousStatus> 5419 <xdw:actualStatus>OPEN</xdw:actualStatus> 5420 </xdw:documentEvent> 5421 <xdw:documentEvent> 5422 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 5423 <xdw:eventType>create</xdw:eventType> 5424 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 5425 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5426 <xdw:previousStatus>OPEN</xdw:previousStatus> 5427 <xdw:actualStatus>OPEN</xdw:actualStatus> 5428 </xdw:documentEvent> 5429 <xdw:documentEvent> 5430 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 5431 <xdw:eventType>create</xdw:eventType> 5432 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 5433 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5434 <xdw:previousStatus>OPEN</xdw:previousStatus> 5435 <xdw:actualStatus>OPEN</xdw:actualStatus> 5436 </xdw:documentEvent> 5437 <xdw:documentEvent> 5438 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 5439 <xdw:eventType>create</xdw:eventType> 5440 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 5441 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5442 <xdw:previousStatus>OPEN</xdw:previousStatus> 5443 <xdw:actualStatus>OPEN</xdw:actualStatus> 5444 </xdw:documentEvent> 5445 </xdw:workflowStatusHistory> 5446 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 5447 <xdw:TaskList> 5448 <xdw:XDWTask> 5449 <xdw:taskData> 5450 <ws-ht:taskDetails> 5451 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 5452 <ws-ht:taskType>Requested</ws-ht:taskType> 5453 <ws-ht:name>xdw.creation</ws-ht:name> 5454 <ws-ht:status>COMPLETED</ws-ht:status> 5455 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5456 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 5457 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5458 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 5459 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5460 </ws-ht:taskDetails> 5461 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 5462 <ws-ht:input/> 5463 <ws-ht:output/> 5464 </xdw:taskData> 5465 <xdw:taskEventHistory> 5466 <xdw:taskEvent> 5467 <xdw:id>1</xdw:id> 5468 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 5469 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 5470 <xdw:eventType>complete</xdw:eventType> 5471 <xdw:status>COMPLETED</xdw:status> 5472 <xdw:eventData xsi:nil="true"/> 5473 </xdw:taskEvent> 5474 </xdw:taskEventHistory> 5475 </xdw:XDWTask> 5476 <xdw:XDWTask> 5477 <xdw:taskData> 5478 <ws-ht:taskDetails> 5479 <ws-ht:id>task_0</ws-ht:id> 5480 <ws-ht:taskType>ttype</ws-ht:taskType> 5481 <ws-ht:name>tname_0</ws-ht:name> 5482 <ws-ht:status>COMPLETED</ws-ht:status> 5483 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5484 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 5485 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5486 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 5487 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5488 </ws-ht:taskDetails> 5489 <ws-ht:description>Undocumented task</ws-ht:description> 5490 <ws-ht:input/> 5491 <ws-ht:output> 5492 <ws-ht:part name="documentReference"> 5493 <ws-ht:attachment> 5494 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 5495 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 5496 <ws-ht:accessType>RLUS</ws-ht:accessType> 5497 <ws-ht:contentType>application/xml</ws-ht:contentType> 5498 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5499 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 5500 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5501 </ws-ht:attachment> 5502 </ws-ht:part> 5503 </ws-ht:output> 5504 </xdw:taskData> 5505 <xdw:taskEventHistory> 5506 <xdw:taskEvent> 5507 <xdw:id>1</xdw:id> 5508 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 5509 <xdw:identifier>task_0#1</xdw:identifier> 5510 <xdw:eventType>create</xdw:eventType> 5511 <xdw:status>READY</xdw:status> 5512 <xdw:eventData xsi:nil="true"/> 5513 </xdw:taskEvent> 5514 <xdw:taskEvent> 5515 <xdw:id>2</xdw:id> 5516 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 5517 <xdw:identifier>task_0#2</xdw:identifier> 5518 <xdw:eventType>complete</xdw:eventType> 5519 <xdw:status>COMPLETED</xdw:status> 5520 <xdw:eventData xsi:nil="true"/> 5521 </xdw:taskEvent> 5522 </xdw:taskEventHistory> 5523 </xdw:XDWTask> 5524 <xdw:XDWTask> 5525 <xdw:taskData> 5526 <ws-ht:taskDetails> 5527 <ws-ht:id>task_1</ws-ht:id> 5528 <ws-ht:taskType>ttype</ws-ht:taskType> 5529 <ws-ht:name>tname_1</ws-ht:name> 5530 <ws-ht:status>COMPLETED</ws-ht:status> 5531 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5532 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 5533 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5534 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 5535 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5536 </ws-ht:taskDetails> 5537 <ws-ht:description>Undocumented task</ws-ht:description> 5538 <ws-ht:input/> 5539 <ws-ht:output> 5540 <ws-ht:part name="documentReference"> 5541 <ws-ht:attachment> 5542 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 5543 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 5544 <ws-ht:accessType>RLUS</ws-ht:accessType> 5545 <ws-ht:contentType>application/xml</ws-ht:contentType> 5546 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5547 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 5548 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5549 </ws-ht:attachment> 5550 </ws-ht:part> 5551 </ws-ht:output> 5552 </xdw:taskData> 5553 <xdw:taskEventHistory> 5554 <xdw:taskEvent> 5555 <xdw:id>1</xdw:id> 5556 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 5557 <xdw:identifier>task_1#1</xdw:identifier> 5558 <xdw:eventType>create</xdw:eventType> 5559 <xdw:status>READY</xdw:status> 5560 <xdw:eventData xsi:nil="true"/> 5561 </xdw:taskEvent> 5562 <xdw:taskEvent> 5563 <xdw:id>2</xdw:id> 5564 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 5565 <xdw:identifier>task_1#2</xdw:identifier> 5566 <xdw:eventType>complete</xdw:eventType> 5567 <xdw:status>COMPLETED</xdw:status> 5568 <xdw:eventData xsi:nil="true"/> 5569 </xdw:taskEvent> 5570 </xdw:taskEventHistory> 5571 </xdw:XDWTask> 5572 <xdw:XDWTask> 5573 <xdw:taskData> 5574 <ws-ht:taskDetails> 5575 <ws-ht:id>task_2</ws-ht:id> 5576 <ws-ht:taskType>ttype</ws-ht:taskType> 5577 <ws-ht:name>tname_2</ws-ht:name> 5578 <ws-ht:status>READY</ws-ht:status> 5579 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5580 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 5581 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5582 <ws-ht:lastModifiedTime>2014-06-13T17:20:09.656+02:00</ws-ht:lastModifiedTime> 5583 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5584 </ws-ht:taskDetails> 5585 <ws-ht:description>Undocumented task</ws-ht:description> 5586 <ws-ht:input/> 5587 <ws-ht:output> 5588 <ws-ht:part name="documentReference"> 5589 <ws-ht:attachment> 5590 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 5591 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 5592 <ws-ht:accessType>RLUS</ws-ht:accessType> 5593 <ws-ht:contentType>application/xml</ws-ht:contentType> 5594 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5595 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 5596 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5597 </ws-ht:attachment> 5598 </ws-ht:part> 5599 </ws-ht:output> 5600 </xdw:taskData> 5601 <xdw:taskEventHistory> 5602 <xdw:taskEvent> 5603 <xdw:id>1</xdw:id> 5604 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 5605 <xdw:identifier>task_2#1</xdw:identifier> 5606 <xdw:eventType>create</xdw:eventType> 5607 <xdw:status>READY</xdw:status> 5608 <xdw:eventData xsi:nil="true"/> 5609 </xdw:taskEvent> 5610 </xdw:taskEventHistory> 5611 </xdw:XDWTask> 5612 </xdw:TaskList> 5613 </xdw:XDW.WorkflowDocument> 5614 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 5615 <rlustypes:success>true</rlustypes:success> 5616 <rlustypes:message>One record fetched</rlustypes:message> 5617 </rlustypes:RLUSStatusCode> 5618 </GetResponse> 5619 </soapenv:Body> 5620 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 5621 <soap:Header/> 5622 <soap:Body> 5623 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 5624 <rlustypes:searchByCriteria> 5625 <rlustypes:FilterCriteria> 5626 <rlustypes:Expression> 5627 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 5628 <rlusexp:Operator type="EqualTo"/> 5629 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 5630 </rlustypes:Expression> 5631 </rlustypes:FilterCriteria> 5632 <rlustypes:SearchAttributes> 5633 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 5634 </rlustypes:SearchAttributes> 5635 </rlustypes:searchByCriteria> 5636 </rlustypes:RLUSSearchStruct> 5637 </soap:Body> 5638 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="12721"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="12721"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 5639 <soapenv:Header/> 5640 <soapenv:Body> 5641 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 5642 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 5643 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="a00f7659-709c-4fee-97d0-6ec5e706598f"/> 5644 <xdw:effectiveTime value="20140613172013+0200"/> 5645 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 5646 <xdw:patient> 5647 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 5648 </xdw:patient> 5649 <xdw:author> 5650 <xdw:assignedAuthor> 5651 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 5652 <hl7v3:assignedPerson/> 5653 </xdw:assignedAuthor> 5654 </xdw:author> 5655 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 5656 <xdw:workflowDocumentSequenceNumber>9</xdw:workflowDocumentSequenceNumber> 5657 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 5658 <xdw:workflowStatusHistory> 5659 <xdw:documentEvent> 5660 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 5661 <xdw:eventType>complete</xdw:eventType> 5662 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 5663 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5664 <xdw:previousStatus>OPEN</xdw:previousStatus> 5665 <xdw:actualStatus>OPEN</xdw:actualStatus> 5666 </xdw:documentEvent> 5667 <xdw:documentEvent> 5668 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 5669 <xdw:eventType>create</xdw:eventType> 5670 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 5671 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5672 <xdw:previousStatus>OPEN</xdw:previousStatus> 5673 <xdw:actualStatus>OPEN</xdw:actualStatus> 5674 </xdw:documentEvent> 5675 <xdw:documentEvent> 5676 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 5677 <xdw:eventType>create</xdw:eventType> 5678 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 5679 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5680 <xdw:previousStatus>OPEN</xdw:previousStatus> 5681 <xdw:actualStatus>OPEN</xdw:actualStatus> 5682 </xdw:documentEvent> 5683 <xdw:documentEvent> 5684 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 5685 <xdw:eventType>create</xdw:eventType> 5686 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 5687 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5688 <xdw:previousStatus>OPEN</xdw:previousStatus> 5689 <xdw:actualStatus>OPEN</xdw:actualStatus> 5690 </xdw:documentEvent> 5691 </xdw:workflowStatusHistory> 5692 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 5693 <xdw:TaskList> 5694 <xdw:XDWTask> 5695 <xdw:taskData> 5696 <ws-ht:taskDetails> 5697 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 5698 <ws-ht:taskType>Requested</ws-ht:taskType> 5699 <ws-ht:name>xdw.creation</ws-ht:name> 5700 <ws-ht:status>COMPLETED</ws-ht:status> 5701 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5702 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 5703 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5704 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 5705 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5706 </ws-ht:taskDetails> 5707 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 5708 <ws-ht:input/> 5709 <ws-ht:output/> 5710 </xdw:taskData> 5711 <xdw:taskEventHistory> 5712 <xdw:taskEvent> 5713 <xdw:id>1</xdw:id> 5714 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 5715 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 5716 <xdw:eventType>complete</xdw:eventType> 5717 <xdw:status>COMPLETED</xdw:status> 5718 <xdw:eventData xsi:nil="true"/> 5719 </xdw:taskEvent> 5720 </xdw:taskEventHistory> 5721 </xdw:XDWTask> 5722 <xdw:XDWTask> 5723 <xdw:taskData> 5724 <ws-ht:taskDetails> 5725 <ws-ht:id>task_0</ws-ht:id> 5726 <ws-ht:taskType>ttype</ws-ht:taskType> 5727 <ws-ht:name>tname_0</ws-ht:name> 5728 <ws-ht:status>COMPLETED</ws-ht:status> 5729 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5730 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 5731 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5732 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 5733 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5734 </ws-ht:taskDetails> 5735 <ws-ht:description>Undocumented task</ws-ht:description> 5736 <ws-ht:input/> 5737 <ws-ht:output> 5738 <ws-ht:part name="documentReference"> 5739 <ws-ht:attachment> 5740 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 5741 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 5742 <ws-ht:accessType>RLUS</ws-ht:accessType> 5743 <ws-ht:contentType>application/xml</ws-ht:contentType> 5744 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5745 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 5746 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5747 </ws-ht:attachment> 5748 </ws-ht:part> 5749 </ws-ht:output> 5750 </xdw:taskData> 5751 <xdw:taskEventHistory> 5752 <xdw:taskEvent> 5753 <xdw:id>1</xdw:id> 5754 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 5755 <xdw:identifier>task_0#1</xdw:identifier> 5756 <xdw:eventType>create</xdw:eventType> 5757 <xdw:status>READY</xdw:status> 5758 <xdw:eventData xsi:nil="true"/> 5759 </xdw:taskEvent> 5760 <xdw:taskEvent> 5761 <xdw:id>2</xdw:id> 5762 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 5763 <xdw:identifier>task_0#2</xdw:identifier> 5764 <xdw:eventType>complete</xdw:eventType> 5765 <xdw:status>COMPLETED</xdw:status> 5766 <xdw:eventData xsi:nil="true"/> 5767 </xdw:taskEvent> 5768 </xdw:taskEventHistory> 5769 </xdw:XDWTask> 5770 <xdw:XDWTask> 5771 <xdw:taskData> 5772 <ws-ht:taskDetails> 5773 <ws-ht:id>task_1</ws-ht:id> 5774 <ws-ht:taskType>ttype</ws-ht:taskType> 5775 <ws-ht:name>tname_1</ws-ht:name> 5776 <ws-ht:status>COMPLETED</ws-ht:status> 5777 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5778 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 5779 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5780 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 5781 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5782 </ws-ht:taskDetails> 5783 <ws-ht:description>Undocumented task</ws-ht:description> 5784 <ws-ht:input/> 5785 <ws-ht:output> 5786 <ws-ht:part name="documentReference"> 5787 <ws-ht:attachment> 5788 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 5789 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 5790 <ws-ht:accessType>RLUS</ws-ht:accessType> 5791 <ws-ht:contentType>application/xml</ws-ht:contentType> 5792 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5793 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 5794 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5795 </ws-ht:attachment> 5796 </ws-ht:part> 5797 </ws-ht:output> 5798 </xdw:taskData> 5799 <xdw:taskEventHistory> 5800 <xdw:taskEvent> 5801 <xdw:id>1</xdw:id> 5802 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 5803 <xdw:identifier>task_1#1</xdw:identifier> 5804 <xdw:eventType>create</xdw:eventType> 5805 <xdw:status>READY</xdw:status> 5806 <xdw:eventData xsi:nil="true"/> 5807 </xdw:taskEvent> 5808 <xdw:taskEvent> 5809 <xdw:id>2</xdw:id> 5810 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 5811 <xdw:identifier>task_1#2</xdw:identifier> 5812 <xdw:eventType>complete</xdw:eventType> 5813 <xdw:status>COMPLETED</xdw:status> 5814 <xdw:eventData xsi:nil="true"/> 5815 </xdw:taskEvent> 5816 </xdw:taskEventHistory> 5817 </xdw:XDWTask> 5818 <xdw:XDWTask> 5819 <xdw:taskData> 5820 <ws-ht:taskDetails> 5821 <ws-ht:id>task_2</ws-ht:id> 5822 <ws-ht:taskType>ttype</ws-ht:taskType> 5823 <ws-ht:name>tname_2</ws-ht:name> 5824 <ws-ht:status>READY</ws-ht:status> 5825 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5826 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 5827 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5828 <ws-ht:lastModifiedTime>2014-06-13T17:20:09.656+02:00</ws-ht:lastModifiedTime> 5829 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5830 </ws-ht:taskDetails> 5831 <ws-ht:description>Undocumented task</ws-ht:description> 5832 <ws-ht:input/> 5833 <ws-ht:output> 5834 <ws-ht:part name="documentReference"> 5835 <ws-ht:attachment> 5836 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 5837 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 5838 <ws-ht:accessType>RLUS</ws-ht:accessType> 5839 <ws-ht:contentType>application/xml</ws-ht:contentType> 5840 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5841 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 5842 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5843 </ws-ht:attachment> 5844 </ws-ht:part> 5845 </ws-ht:output> 5846 </xdw:taskData> 5847 <xdw:taskEventHistory> 5848 <xdw:taskEvent> 5849 <xdw:id>1</xdw:id> 5850 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 5851 <xdw:identifier>task_2#1</xdw:identifier> 5852 <xdw:eventType>create</xdw:eventType> 5853 <xdw:status>READY</xdw:status> 5854 <xdw:eventData xsi:nil="true"/> 5855 </xdw:taskEvent> 5856 </xdw:taskEventHistory> 5857 </xdw:XDWTask> 5858 </xdw:TaskList> 5859 </xdw:XDW.WorkflowDocument> 5860 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 5861 <rlustypes:success>true</rlustypes:success> 5862 <rlustypes:message>One record fetched</rlustypes:message> 5863 </rlustypes:RLUSStatusCode> 5864 </GetResponse> 5865 </soapenv:Body> 5866 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="13550"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="13550"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 5867 <soap:Header/> 5868 <soap:Body> 5869 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 5870 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 5871 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="5b3260e5-6bde-4100-911c-bc3815ab7fce"/> 5872 <xdw:effectiveTime value="20140613172015+0200"/> 5873 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 5874 <xdw:patient> 5875 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 5876 </xdw:patient> 5877 <xdw:author> 5878 <xdw:assignedAuthor> 5879 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 5880 <hl7v3:assignedPerson/> 5881 </xdw:assignedAuthor> 5882 </xdw:author> 5883 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 5884 <xdw:workflowDocumentSequenceNumber>10</xdw:workflowDocumentSequenceNumber> 5885 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 5886 <xdw:workflowStatusHistory> 5887 <xdw:documentEvent> 5888 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 5889 <xdw:eventType>complete</xdw:eventType> 5890 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 5891 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5892 <xdw:previousStatus>OPEN</xdw:previousStatus> 5893 <xdw:actualStatus>OPEN</xdw:actualStatus> 5894 </xdw:documentEvent> 5895 <xdw:documentEvent> 5896 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 5897 <xdw:eventType>create</xdw:eventType> 5898 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 5899 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5900 <xdw:previousStatus>OPEN</xdw:previousStatus> 5901 <xdw:actualStatus>OPEN</xdw:actualStatus> 5902 </xdw:documentEvent> 5903 <xdw:documentEvent> 5904 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 5905 <xdw:eventType>create</xdw:eventType> 5906 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 5907 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5908 <xdw:previousStatus>OPEN</xdw:previousStatus> 5909 <xdw:actualStatus>OPEN</xdw:actualStatus> 5910 </xdw:documentEvent> 5911 <xdw:documentEvent> 5912 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 5913 <xdw:eventType>create</xdw:eventType> 5914 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 5915 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 5916 <xdw:previousStatus>OPEN</xdw:previousStatus> 5917 <xdw:actualStatus>OPEN</xdw:actualStatus> 5918 </xdw:documentEvent> 5919 </xdw:workflowStatusHistory> 5920 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 5921 <xdw:TaskList> 5922 <xdw:XDWTask> 5923 <xdw:taskData> 5924 <ws-ht:taskDetails> 5925 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 5926 <ws-ht:taskType>Requested</ws-ht:taskType> 5927 <ws-ht:name>xdw.creation</ws-ht:name> 5928 <ws-ht:status>COMPLETED</ws-ht:status> 5929 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5930 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 5931 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5932 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 5933 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5934 </ws-ht:taskDetails> 5935 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 5936 <ws-ht:input/> 5937 <ws-ht:output/> 5938 </xdw:taskData> 5939 <xdw:taskEventHistory> 5940 <xdw:taskEvent> 5941 <xdw:id>1</xdw:id> 5942 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 5943 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 5944 <xdw:eventType>complete</xdw:eventType> 5945 <xdw:status>COMPLETED</xdw:status> 5946 <xdw:eventData xsi:nil="true"/> 5947 </xdw:taskEvent> 5948 </xdw:taskEventHistory> 5949 </xdw:XDWTask> 5950 <xdw:XDWTask> 5951 <xdw:taskData> 5952 <ws-ht:taskDetails> 5953 <ws-ht:id>task_0</ws-ht:id> 5954 <ws-ht:taskType>ttype</ws-ht:taskType> 5955 <ws-ht:name>tname_0</ws-ht:name> 5956 <ws-ht:status>COMPLETED</ws-ht:status> 5957 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 5958 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 5959 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 5960 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 5961 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 5962 </ws-ht:taskDetails> 5963 <ws-ht:description>Undocumented task</ws-ht:description> 5964 <ws-ht:input/> 5965 <ws-ht:output> 5966 <ws-ht:part name="documentReference"> 5967 <ws-ht:attachment> 5968 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 5969 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 5970 <ws-ht:accessType>RLUS</ws-ht:accessType> 5971 <ws-ht:contentType>application/xml</ws-ht:contentType> 5972 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 5973 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 5974 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 5975 </ws-ht:attachment> 5976 </ws-ht:part> 5977 </ws-ht:output> 5978 </xdw:taskData> 5979 <xdw:taskEventHistory> 5980 <xdw:taskEvent> 5981 <xdw:id>1</xdw:id> 5982 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 5983 <xdw:identifier>task_0#1</xdw:identifier> 5984 <xdw:eventType>create</xdw:eventType> 5985 <xdw:status>READY</xdw:status> 5986 <xdw:eventData xsi:nil="true"/> 5987 </xdw:taskEvent> 5988 <xdw:taskEvent> 5989 <xdw:id>2</xdw:id> 5990 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 5991 <xdw:identifier>task_0#2</xdw:identifier> 5992 <xdw:eventType>complete</xdw:eventType> 5993 <xdw:status>COMPLETED</xdw:status> 5994 <xdw:eventData xsi:nil="true"/> 5995 </xdw:taskEvent> 5996 </xdw:taskEventHistory> 5997 </xdw:XDWTask> 5998 <xdw:XDWTask> 5999 <xdw:taskData> 6000 <ws-ht:taskDetails> 6001 <ws-ht:id>task_1</ws-ht:id> 6002 <ws-ht:taskType>ttype</ws-ht:taskType> 6003 <ws-ht:name>tname_1</ws-ht:name> 6004 <ws-ht:status>COMPLETED</ws-ht:status> 6005 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6006 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 6007 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6008 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 6009 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6010 </ws-ht:taskDetails> 6011 <ws-ht:description>Undocumented task</ws-ht:description> 6012 <ws-ht:input/> 6013 <ws-ht:output> 6014 <ws-ht:part name="documentReference"> 6015 <ws-ht:attachment> 6016 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 6017 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 6018 <ws-ht:accessType>RLUS</ws-ht:accessType> 6019 <ws-ht:contentType>application/xml</ws-ht:contentType> 6020 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6021 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 6022 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6023 </ws-ht:attachment> 6024 </ws-ht:part> 6025 </ws-ht:output> 6026 </xdw:taskData> 6027 <xdw:taskEventHistory> 6028 <xdw:taskEvent> 6029 <xdw:id>1</xdw:id> 6030 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 6031 <xdw:identifier>task_1#1</xdw:identifier> 6032 <xdw:eventType>create</xdw:eventType> 6033 <xdw:status>READY</xdw:status> 6034 <xdw:eventData xsi:nil="true"/> 6035 </xdw:taskEvent> 6036 <xdw:taskEvent> 6037 <xdw:id>2</xdw:id> 6038 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 6039 <xdw:identifier>task_1#2</xdw:identifier> 6040 <xdw:eventType>complete</xdw:eventType> 6041 <xdw:status>COMPLETED</xdw:status> 6042 <xdw:eventData xsi:nil="true"/> 6043 </xdw:taskEvent> 6044 </xdw:taskEventHistory> 6045 </xdw:XDWTask> 6046 <xdw:XDWTask> 6047 <xdw:taskData> 6048 <ws-ht:taskDetails> 6049 <ws-ht:id>task_2</ws-ht:id> 6050 <ws-ht:taskType>ttype</ws-ht:taskType> 6051 <ws-ht:name>tname_2</ws-ht:name> 6052 <ws-ht:status>COMPLETED</ws-ht:status> 6053 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6054 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 6055 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6056 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 6057 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6058 </ws-ht:taskDetails> 6059 <ws-ht:description>Undocumented task</ws-ht:description> 6060 <ws-ht:input/> 6061 <ws-ht:output> 6062 <ws-ht:part name="documentReference"> 6063 <ws-ht:attachment> 6064 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 6065 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 6066 <ws-ht:accessType>RLUS</ws-ht:accessType> 6067 <ws-ht:contentType>application/xml</ws-ht:contentType> 6068 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6069 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 6070 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6071 </ws-ht:attachment> 6072 </ws-ht:part> 6073 </ws-ht:output> 6074 </xdw:taskData> 6075 <xdw:taskEventHistory> 6076 <xdw:taskEvent> 6077 <xdw:id>1</xdw:id> 6078 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 6079 <xdw:identifier>task_2#1</xdw:identifier> 6080 <xdw:eventType>create</xdw:eventType> 6081 <xdw:status>READY</xdw:status> 6082 <xdw:eventData xsi:nil="true"/> 6083 </xdw:taskEvent> 6084 <xdw:taskEvent> 6085 <xdw:id>2</xdw:id> 6086 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 6087 <xdw:identifier>task_2#2</xdw:identifier> 6088 <xdw:eventType>complete</xdw:eventType> 6089 <xdw:status>COMPLETED</xdw:status> 6090 <xdw:eventData xsi:nil="true"/> 6091 </xdw:taskEvent> 6092 </xdw:taskEventHistory> 6093 </xdw:XDWTask> 6094 </xdw:TaskList> 6095 </xdw:XDW.WorkflowDocument> 6096 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 6097 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 6098 <rlustypes:SecurityContext> 6099 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 6100 </rlustypes:SecurityContext> 6101 <rlustypes:CBRContext> 6102 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 6103 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 6104 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 6105 </rlustypes:CBRContext> 6106 </rlustypes:RLUSPutRequestSrcStruct> 6107 <writeCommandEnum>UPDATE</writeCommandEnum> 6108 </PutRequest> 6109 </soap:Body> 6110 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 6111 <soapenv:Header/> 6112 <soapenv:Body> 6113 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 6114 <rlustypes:success>true</rlustypes:success> 6115 <rlustypes:message/> 6116 </rlustypes:RLUSStatusCode> 6117 </soapenv:Body> 6118 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 6119 <soap:Header/> 6120 <soap:Body> 6121 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 6122 <rlustypes:searchByCriteria> 6123 <rlustypes:FilterCriteria> 6124 <rlustypes:Expression> 6125 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 6126 <rlusexp:Operator type="EqualTo"/> 6127 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 6128 </rlustypes:Expression> 6129 </rlustypes:FilterCriteria> 6130 <rlustypes:SearchAttributes> 6131 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 6132 </rlustypes:SearchAttributes> 6133 </rlustypes:searchByCriteria> 6134 </rlustypes:RLUSSearchStruct> 6135 </soap:Body> 6136 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="13112"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="13112"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 6137 <soapenv:Header/> 6138 <soapenv:Body> 6139 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 6140 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 6141 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="5b3260e5-6bde-4100-911c-bc3815ab7fce"/> 6142 <xdw:effectiveTime value="20140613172015+0200"/> 6143 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 6144 <xdw:patient> 6145 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 6146 </xdw:patient> 6147 <xdw:author> 6148 <xdw:assignedAuthor> 6149 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 6150 <hl7v3:assignedPerson/> 6151 </xdw:assignedAuthor> 6152 </xdw:author> 6153 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 6154 <xdw:workflowDocumentSequenceNumber>10</xdw:workflowDocumentSequenceNumber> 6155 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 6156 <xdw:workflowStatusHistory> 6157 <xdw:documentEvent> 6158 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 6159 <xdw:eventType>complete</xdw:eventType> 6160 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 6161 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6162 <xdw:previousStatus>OPEN</xdw:previousStatus> 6163 <xdw:actualStatus>OPEN</xdw:actualStatus> 6164 </xdw:documentEvent> 6165 <xdw:documentEvent> 6166 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 6167 <xdw:eventType>create</xdw:eventType> 6168 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 6169 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6170 <xdw:previousStatus>OPEN</xdw:previousStatus> 6171 <xdw:actualStatus>OPEN</xdw:actualStatus> 6172 </xdw:documentEvent> 6173 <xdw:documentEvent> 6174 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 6175 <xdw:eventType>create</xdw:eventType> 6176 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 6177 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6178 <xdw:previousStatus>OPEN</xdw:previousStatus> 6179 <xdw:actualStatus>OPEN</xdw:actualStatus> 6180 </xdw:documentEvent> 6181 <xdw:documentEvent> 6182 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 6183 <xdw:eventType>create</xdw:eventType> 6184 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 6185 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6186 <xdw:previousStatus>OPEN</xdw:previousStatus> 6187 <xdw:actualStatus>OPEN</xdw:actualStatus> 6188 </xdw:documentEvent> 6189 </xdw:workflowStatusHistory> 6190 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 6191 <xdw:TaskList> 6192 <xdw:XDWTask> 6193 <xdw:taskData> 6194 <ws-ht:taskDetails> 6195 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 6196 <ws-ht:taskType>Requested</ws-ht:taskType> 6197 <ws-ht:name>xdw.creation</ws-ht:name> 6198 <ws-ht:status>COMPLETED</ws-ht:status> 6199 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6200 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 6201 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6202 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 6203 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6204 </ws-ht:taskDetails> 6205 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 6206 <ws-ht:input/> 6207 <ws-ht:output/> 6208 </xdw:taskData> 6209 <xdw:taskEventHistory> 6210 <xdw:taskEvent> 6211 <xdw:id>1</xdw:id> 6212 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 6213 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 6214 <xdw:eventType>complete</xdw:eventType> 6215 <xdw:status>COMPLETED</xdw:status> 6216 <xdw:eventData xsi:nil="true"/> 6217 </xdw:taskEvent> 6218 </xdw:taskEventHistory> 6219 </xdw:XDWTask> 6220 <xdw:XDWTask> 6221 <xdw:taskData> 6222 <ws-ht:taskDetails> 6223 <ws-ht:id>task_0</ws-ht:id> 6224 <ws-ht:taskType>ttype</ws-ht:taskType> 6225 <ws-ht:name>tname_0</ws-ht:name> 6226 <ws-ht:status>COMPLETED</ws-ht:status> 6227 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6228 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 6229 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6230 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 6231 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6232 </ws-ht:taskDetails> 6233 <ws-ht:description>Undocumented task</ws-ht:description> 6234 <ws-ht:input/> 6235 <ws-ht:output> 6236 <ws-ht:part name="documentReference"> 6237 <ws-ht:attachment> 6238 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 6239 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 6240 <ws-ht:accessType>RLUS</ws-ht:accessType> 6241 <ws-ht:contentType>application/xml</ws-ht:contentType> 6242 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6243 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 6244 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6245 </ws-ht:attachment> 6246 </ws-ht:part> 6247 </ws-ht:output> 6248 </xdw:taskData> 6249 <xdw:taskEventHistory> 6250 <xdw:taskEvent> 6251 <xdw:id>1</xdw:id> 6252 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 6253 <xdw:identifier>task_0#1</xdw:identifier> 6254 <xdw:eventType>create</xdw:eventType> 6255 <xdw:status>READY</xdw:status> 6256 <xdw:eventData xsi:nil="true"/> 6257 </xdw:taskEvent> 6258 <xdw:taskEvent> 6259 <xdw:id>2</xdw:id> 6260 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 6261 <xdw:identifier>task_0#2</xdw:identifier> 6262 <xdw:eventType>complete</xdw:eventType> 6263 <xdw:status>COMPLETED</xdw:status> 6264 <xdw:eventData xsi:nil="true"/> 6265 </xdw:taskEvent> 6266 </xdw:taskEventHistory> 6267 </xdw:XDWTask> 6268 <xdw:XDWTask> 6269 <xdw:taskData> 6270 <ws-ht:taskDetails> 6271 <ws-ht:id>task_1</ws-ht:id> 6272 <ws-ht:taskType>ttype</ws-ht:taskType> 6273 <ws-ht:name>tname_1</ws-ht:name> 6274 <ws-ht:status>COMPLETED</ws-ht:status> 6275 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6276 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 6277 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6278 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 6279 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6280 </ws-ht:taskDetails> 6281 <ws-ht:description>Undocumented task</ws-ht:description> 6282 <ws-ht:input/> 6283 <ws-ht:output> 6284 <ws-ht:part name="documentReference"> 6285 <ws-ht:attachment> 6286 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 6287 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 6288 <ws-ht:accessType>RLUS</ws-ht:accessType> 6289 <ws-ht:contentType>application/xml</ws-ht:contentType> 6290 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6291 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 6292 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6293 </ws-ht:attachment> 6294 </ws-ht:part> 6295 </ws-ht:output> 6296 </xdw:taskData> 6297 <xdw:taskEventHistory> 6298 <xdw:taskEvent> 6299 <xdw:id>1</xdw:id> 6300 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 6301 <xdw:identifier>task_1#1</xdw:identifier> 6302 <xdw:eventType>create</xdw:eventType> 6303 <xdw:status>READY</xdw:status> 6304 <xdw:eventData xsi:nil="true"/> 6305 </xdw:taskEvent> 6306 <xdw:taskEvent> 6307 <xdw:id>2</xdw:id> 6308 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 6309 <xdw:identifier>task_1#2</xdw:identifier> 6310 <xdw:eventType>complete</xdw:eventType> 6311 <xdw:status>COMPLETED</xdw:status> 6312 <xdw:eventData xsi:nil="true"/> 6313 </xdw:taskEvent> 6314 </xdw:taskEventHistory> 6315 </xdw:XDWTask> 6316 <xdw:XDWTask> 6317 <xdw:taskData> 6318 <ws-ht:taskDetails> 6319 <ws-ht:id>task_2</ws-ht:id> 6320 <ws-ht:taskType>ttype</ws-ht:taskType> 6321 <ws-ht:name>tname_2</ws-ht:name> 6322 <ws-ht:status>COMPLETED</ws-ht:status> 6323 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6324 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 6325 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6326 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 6327 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6328 </ws-ht:taskDetails> 6329 <ws-ht:description>Undocumented task</ws-ht:description> 6330 <ws-ht:input/> 6331 <ws-ht:output> 6332 <ws-ht:part name="documentReference"> 6333 <ws-ht:attachment> 6334 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 6335 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 6336 <ws-ht:accessType>RLUS</ws-ht:accessType> 6337 <ws-ht:contentType>application/xml</ws-ht:contentType> 6338 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6339 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 6340 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6341 </ws-ht:attachment> 6342 </ws-ht:part> 6343 </ws-ht:output> 6344 </xdw:taskData> 6345 <xdw:taskEventHistory> 6346 <xdw:taskEvent> 6347 <xdw:id>1</xdw:id> 6348 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 6349 <xdw:identifier>task_2#1</xdw:identifier> 6350 <xdw:eventType>create</xdw:eventType> 6351 <xdw:status>READY</xdw:status> 6352 <xdw:eventData xsi:nil="true"/> 6353 </xdw:taskEvent> 6354 <xdw:taskEvent> 6355 <xdw:id>2</xdw:id> 6356 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 6357 <xdw:identifier>task_2#2</xdw:identifier> 6358 <xdw:eventType>complete</xdw:eventType> 6359 <xdw:status>COMPLETED</xdw:status> 6360 <xdw:eventData xsi:nil="true"/> 6361 </xdw:taskEvent> 6362 </xdw:taskEventHistory> 6363 </xdw:XDWTask> 6364 </xdw:TaskList> 6365 </xdw:XDW.WorkflowDocument> 6366 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 6367 <rlustypes:success>true</rlustypes:success> 6368 <rlustypes:message>One record fetched</rlustypes:message> 6369 </rlustypes:RLUSStatusCode> 6370 </GetResponse> 6371 </soapenv:Body> 6372 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 6373 <soap:Header/> 6374 <soap:Body> 6375 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 6376 <rlustypes:searchByCriteria> 6377 <rlustypes:FilterCriteria> 6378 <rlustypes:Expression> 6379 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 6380 <rlusexp:Operator type="EqualTo"/> 6381 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 6382 </rlustypes:Expression> 6383 </rlustypes:FilterCriteria> 6384 <rlustypes:SearchAttributes> 6385 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 6386 </rlustypes:SearchAttributes> 6387 </rlustypes:searchByCriteria> 6388 </rlustypes:RLUSSearchStruct> 6389 </soap:Body> 6390 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="13112"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="13112"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 6391 <soapenv:Header/> 6392 <soapenv:Body> 6393 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 6394 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 6395 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="5b3260e5-6bde-4100-911c-bc3815ab7fce"/> 6396 <xdw:effectiveTime value="20140613172015+0200"/> 6397 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 6398 <xdw:patient> 6399 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 6400 </xdw:patient> 6401 <xdw:author> 6402 <xdw:assignedAuthor> 6403 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 6404 <hl7v3:assignedPerson/> 6405 </xdw:assignedAuthor> 6406 </xdw:author> 6407 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 6408 <xdw:workflowDocumentSequenceNumber>10</xdw:workflowDocumentSequenceNumber> 6409 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 6410 <xdw:workflowStatusHistory> 6411 <xdw:documentEvent> 6412 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 6413 <xdw:eventType>complete</xdw:eventType> 6414 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 6415 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6416 <xdw:previousStatus>OPEN</xdw:previousStatus> 6417 <xdw:actualStatus>OPEN</xdw:actualStatus> 6418 </xdw:documentEvent> 6419 <xdw:documentEvent> 6420 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 6421 <xdw:eventType>create</xdw:eventType> 6422 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 6423 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6424 <xdw:previousStatus>OPEN</xdw:previousStatus> 6425 <xdw:actualStatus>OPEN</xdw:actualStatus> 6426 </xdw:documentEvent> 6427 <xdw:documentEvent> 6428 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 6429 <xdw:eventType>create</xdw:eventType> 6430 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 6431 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6432 <xdw:previousStatus>OPEN</xdw:previousStatus> 6433 <xdw:actualStatus>OPEN</xdw:actualStatus> 6434 </xdw:documentEvent> 6435 <xdw:documentEvent> 6436 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 6437 <xdw:eventType>create</xdw:eventType> 6438 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 6439 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6440 <xdw:previousStatus>OPEN</xdw:previousStatus> 6441 <xdw:actualStatus>OPEN</xdw:actualStatus> 6442 </xdw:documentEvent> 6443 </xdw:workflowStatusHistory> 6444 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 6445 <xdw:TaskList> 6446 <xdw:XDWTask> 6447 <xdw:taskData> 6448 <ws-ht:taskDetails> 6449 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 6450 <ws-ht:taskType>Requested</ws-ht:taskType> 6451 <ws-ht:name>xdw.creation</ws-ht:name> 6452 <ws-ht:status>COMPLETED</ws-ht:status> 6453 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6454 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 6455 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6456 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 6457 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6458 </ws-ht:taskDetails> 6459 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 6460 <ws-ht:input/> 6461 <ws-ht:output/> 6462 </xdw:taskData> 6463 <xdw:taskEventHistory> 6464 <xdw:taskEvent> 6465 <xdw:id>1</xdw:id> 6466 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 6467 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 6468 <xdw:eventType>complete</xdw:eventType> 6469 <xdw:status>COMPLETED</xdw:status> 6470 <xdw:eventData xsi:nil="true"/> 6471 </xdw:taskEvent> 6472 </xdw:taskEventHistory> 6473 </xdw:XDWTask> 6474 <xdw:XDWTask> 6475 <xdw:taskData> 6476 <ws-ht:taskDetails> 6477 <ws-ht:id>task_0</ws-ht:id> 6478 <ws-ht:taskType>ttype</ws-ht:taskType> 6479 <ws-ht:name>tname_0</ws-ht:name> 6480 <ws-ht:status>COMPLETED</ws-ht:status> 6481 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6482 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 6483 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6484 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 6485 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6486 </ws-ht:taskDetails> 6487 <ws-ht:description>Undocumented task</ws-ht:description> 6488 <ws-ht:input/> 6489 <ws-ht:output> 6490 <ws-ht:part name="documentReference"> 6491 <ws-ht:attachment> 6492 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 6493 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 6494 <ws-ht:accessType>RLUS</ws-ht:accessType> 6495 <ws-ht:contentType>application/xml</ws-ht:contentType> 6496 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6497 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 6498 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6499 </ws-ht:attachment> 6500 </ws-ht:part> 6501 </ws-ht:output> 6502 </xdw:taskData> 6503 <xdw:taskEventHistory> 6504 <xdw:taskEvent> 6505 <xdw:id>1</xdw:id> 6506 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 6507 <xdw:identifier>task_0#1</xdw:identifier> 6508 <xdw:eventType>create</xdw:eventType> 6509 <xdw:status>READY</xdw:status> 6510 <xdw:eventData xsi:nil="true"/> 6511 </xdw:taskEvent> 6512 <xdw:taskEvent> 6513 <xdw:id>2</xdw:id> 6514 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 6515 <xdw:identifier>task_0#2</xdw:identifier> 6516 <xdw:eventType>complete</xdw:eventType> 6517 <xdw:status>COMPLETED</xdw:status> 6518 <xdw:eventData xsi:nil="true"/> 6519 </xdw:taskEvent> 6520 </xdw:taskEventHistory> 6521 </xdw:XDWTask> 6522 <xdw:XDWTask> 6523 <xdw:taskData> 6524 <ws-ht:taskDetails> 6525 <ws-ht:id>task_1</ws-ht:id> 6526 <ws-ht:taskType>ttype</ws-ht:taskType> 6527 <ws-ht:name>tname_1</ws-ht:name> 6528 <ws-ht:status>COMPLETED</ws-ht:status> 6529 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6530 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 6531 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6532 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 6533 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6534 </ws-ht:taskDetails> 6535 <ws-ht:description>Undocumented task</ws-ht:description> 6536 <ws-ht:input/> 6537 <ws-ht:output> 6538 <ws-ht:part name="documentReference"> 6539 <ws-ht:attachment> 6540 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 6541 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 6542 <ws-ht:accessType>RLUS</ws-ht:accessType> 6543 <ws-ht:contentType>application/xml</ws-ht:contentType> 6544 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6545 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 6546 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6547 </ws-ht:attachment> 6548 </ws-ht:part> 6549 </ws-ht:output> 6550 </xdw:taskData> 6551 <xdw:taskEventHistory> 6552 <xdw:taskEvent> 6553 <xdw:id>1</xdw:id> 6554 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 6555 <xdw:identifier>task_1#1</xdw:identifier> 6556 <xdw:eventType>create</xdw:eventType> 6557 <xdw:status>READY</xdw:status> 6558 <xdw:eventData xsi:nil="true"/> 6559 </xdw:taskEvent> 6560 <xdw:taskEvent> 6561 <xdw:id>2</xdw:id> 6562 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 6563 <xdw:identifier>task_1#2</xdw:identifier> 6564 <xdw:eventType>complete</xdw:eventType> 6565 <xdw:status>COMPLETED</xdw:status> 6566 <xdw:eventData xsi:nil="true"/> 6567 </xdw:taskEvent> 6568 </xdw:taskEventHistory> 6569 </xdw:XDWTask> 6570 <xdw:XDWTask> 6571 <xdw:taskData> 6572 <ws-ht:taskDetails> 6573 <ws-ht:id>task_2</ws-ht:id> 6574 <ws-ht:taskType>ttype</ws-ht:taskType> 6575 <ws-ht:name>tname_2</ws-ht:name> 6576 <ws-ht:status>COMPLETED</ws-ht:status> 6577 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6578 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 6579 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6580 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 6581 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6582 </ws-ht:taskDetails> 6583 <ws-ht:description>Undocumented task</ws-ht:description> 6584 <ws-ht:input/> 6585 <ws-ht:output> 6586 <ws-ht:part name="documentReference"> 6587 <ws-ht:attachment> 6588 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 6589 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 6590 <ws-ht:accessType>RLUS</ws-ht:accessType> 6591 <ws-ht:contentType>application/xml</ws-ht:contentType> 6592 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6593 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 6594 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6595 </ws-ht:attachment> 6596 </ws-ht:part> 6597 </ws-ht:output> 6598 </xdw:taskData> 6599 <xdw:taskEventHistory> 6600 <xdw:taskEvent> 6601 <xdw:id>1</xdw:id> 6602 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 6603 <xdw:identifier>task_2#1</xdw:identifier> 6604 <xdw:eventType>create</xdw:eventType> 6605 <xdw:status>READY</xdw:status> 6606 <xdw:eventData xsi:nil="true"/> 6607 </xdw:taskEvent> 6608 <xdw:taskEvent> 6609 <xdw:id>2</xdw:id> 6610 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 6611 <xdw:identifier>task_2#2</xdw:identifier> 6612 <xdw:eventType>complete</xdw:eventType> 6613 <xdw:status>COMPLETED</xdw:status> 6614 <xdw:eventData xsi:nil="true"/> 6615 </xdw:taskEvent> 6616 </xdw:taskEventHistory> 6617 </xdw:XDWTask> 6618 </xdw:TaskList> 6619 </xdw:XDW.WorkflowDocument> 6620 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 6621 <rlustypes:success>true</rlustypes:success> 6622 <rlustypes:message>One record fetched</rlustypes:message> 6623 </rlustypes:RLUSStatusCode> 6624 </GetResponse> 6625 </soapenv:Body> 6626 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 6627 <soap:Header/> 6628 <soap:Body> 6629 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 6630 <rlustypes:searchByCriteria> 6631 <rlustypes:FilterCriteria> 6632 <rlustypes:Expression> 6633 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 6634 <rlusexp:Operator type="EqualTo"/> 6635 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 6636 </rlustypes:Expression> 6637 </rlustypes:FilterCriteria> 6638 <rlustypes:SearchAttributes> 6639 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 6640 </rlustypes:SearchAttributes> 6641 </rlustypes:searchByCriteria> 6642 </rlustypes:RLUSSearchStruct> 6643 </soap:Body> 6644 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="13112"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="13112"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 6645 <soapenv:Header/> 6646 <soapenv:Body> 6647 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 6648 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 6649 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="5b3260e5-6bde-4100-911c-bc3815ab7fce"/> 6650 <xdw:effectiveTime value="20140613172015+0200"/> 6651 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 6652 <xdw:patient> 6653 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 6654 </xdw:patient> 6655 <xdw:author> 6656 <xdw:assignedAuthor> 6657 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 6658 <hl7v3:assignedPerson/> 6659 </xdw:assignedAuthor> 6660 </xdw:author> 6661 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 6662 <xdw:workflowDocumentSequenceNumber>10</xdw:workflowDocumentSequenceNumber> 6663 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 6664 <xdw:workflowStatusHistory> 6665 <xdw:documentEvent> 6666 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 6667 <xdw:eventType>complete</xdw:eventType> 6668 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 6669 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6670 <xdw:previousStatus>OPEN</xdw:previousStatus> 6671 <xdw:actualStatus>OPEN</xdw:actualStatus> 6672 </xdw:documentEvent> 6673 <xdw:documentEvent> 6674 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 6675 <xdw:eventType>create</xdw:eventType> 6676 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 6677 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6678 <xdw:previousStatus>OPEN</xdw:previousStatus> 6679 <xdw:actualStatus>OPEN</xdw:actualStatus> 6680 </xdw:documentEvent> 6681 <xdw:documentEvent> 6682 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 6683 <xdw:eventType>create</xdw:eventType> 6684 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 6685 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6686 <xdw:previousStatus>OPEN</xdw:previousStatus> 6687 <xdw:actualStatus>OPEN</xdw:actualStatus> 6688 </xdw:documentEvent> 6689 <xdw:documentEvent> 6690 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 6691 <xdw:eventType>create</xdw:eventType> 6692 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 6693 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6694 <xdw:previousStatus>OPEN</xdw:previousStatus> 6695 <xdw:actualStatus>OPEN</xdw:actualStatus> 6696 </xdw:documentEvent> 6697 </xdw:workflowStatusHistory> 6698 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 6699 <xdw:TaskList> 6700 <xdw:XDWTask> 6701 <xdw:taskData> 6702 <ws-ht:taskDetails> 6703 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 6704 <ws-ht:taskType>Requested</ws-ht:taskType> 6705 <ws-ht:name>xdw.creation</ws-ht:name> 6706 <ws-ht:status>COMPLETED</ws-ht:status> 6707 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6708 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 6709 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6710 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 6711 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6712 </ws-ht:taskDetails> 6713 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 6714 <ws-ht:input/> 6715 <ws-ht:output/> 6716 </xdw:taskData> 6717 <xdw:taskEventHistory> 6718 <xdw:taskEvent> 6719 <xdw:id>1</xdw:id> 6720 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 6721 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 6722 <xdw:eventType>complete</xdw:eventType> 6723 <xdw:status>COMPLETED</xdw:status> 6724 <xdw:eventData xsi:nil="true"/> 6725 </xdw:taskEvent> 6726 </xdw:taskEventHistory> 6727 </xdw:XDWTask> 6728 <xdw:XDWTask> 6729 <xdw:taskData> 6730 <ws-ht:taskDetails> 6731 <ws-ht:id>task_0</ws-ht:id> 6732 <ws-ht:taskType>ttype</ws-ht:taskType> 6733 <ws-ht:name>tname_0</ws-ht:name> 6734 <ws-ht:status>COMPLETED</ws-ht:status> 6735 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6736 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 6737 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6738 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 6739 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6740 </ws-ht:taskDetails> 6741 <ws-ht:description>Undocumented task</ws-ht:description> 6742 <ws-ht:input/> 6743 <ws-ht:output> 6744 <ws-ht:part name="documentReference"> 6745 <ws-ht:attachment> 6746 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 6747 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 6748 <ws-ht:accessType>RLUS</ws-ht:accessType> 6749 <ws-ht:contentType>application/xml</ws-ht:contentType> 6750 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6751 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 6752 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6753 </ws-ht:attachment> 6754 </ws-ht:part> 6755 </ws-ht:output> 6756 </xdw:taskData> 6757 <xdw:taskEventHistory> 6758 <xdw:taskEvent> 6759 <xdw:id>1</xdw:id> 6760 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 6761 <xdw:identifier>task_0#1</xdw:identifier> 6762 <xdw:eventType>create</xdw:eventType> 6763 <xdw:status>READY</xdw:status> 6764 <xdw:eventData xsi:nil="true"/> 6765 </xdw:taskEvent> 6766 <xdw:taskEvent> 6767 <xdw:id>2</xdw:id> 6768 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 6769 <xdw:identifier>task_0#2</xdw:identifier> 6770 <xdw:eventType>complete</xdw:eventType> 6771 <xdw:status>COMPLETED</xdw:status> 6772 <xdw:eventData xsi:nil="true"/> 6773 </xdw:taskEvent> 6774 </xdw:taskEventHistory> 6775 </xdw:XDWTask> 6776 <xdw:XDWTask> 6777 <xdw:taskData> 6778 <ws-ht:taskDetails> 6779 <ws-ht:id>task_1</ws-ht:id> 6780 <ws-ht:taskType>ttype</ws-ht:taskType> 6781 <ws-ht:name>tname_1</ws-ht:name> 6782 <ws-ht:status>COMPLETED</ws-ht:status> 6783 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6784 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 6785 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6786 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 6787 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6788 </ws-ht:taskDetails> 6789 <ws-ht:description>Undocumented task</ws-ht:description> 6790 <ws-ht:input/> 6791 <ws-ht:output> 6792 <ws-ht:part name="documentReference"> 6793 <ws-ht:attachment> 6794 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 6795 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 6796 <ws-ht:accessType>RLUS</ws-ht:accessType> 6797 <ws-ht:contentType>application/xml</ws-ht:contentType> 6798 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6799 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 6800 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6801 </ws-ht:attachment> 6802 </ws-ht:part> 6803 </ws-ht:output> 6804 </xdw:taskData> 6805 <xdw:taskEventHistory> 6806 <xdw:taskEvent> 6807 <xdw:id>1</xdw:id> 6808 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 6809 <xdw:identifier>task_1#1</xdw:identifier> 6810 <xdw:eventType>create</xdw:eventType> 6811 <xdw:status>READY</xdw:status> 6812 <xdw:eventData xsi:nil="true"/> 6813 </xdw:taskEvent> 6814 <xdw:taskEvent> 6815 <xdw:id>2</xdw:id> 6816 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 6817 <xdw:identifier>task_1#2</xdw:identifier> 6818 <xdw:eventType>complete</xdw:eventType> 6819 <xdw:status>COMPLETED</xdw:status> 6820 <xdw:eventData xsi:nil="true"/> 6821 </xdw:taskEvent> 6822 </xdw:taskEventHistory> 6823 </xdw:XDWTask> 6824 <xdw:XDWTask> 6825 <xdw:taskData> 6826 <ws-ht:taskDetails> 6827 <ws-ht:id>task_2</ws-ht:id> 6828 <ws-ht:taskType>ttype</ws-ht:taskType> 6829 <ws-ht:name>tname_2</ws-ht:name> 6830 <ws-ht:status>COMPLETED</ws-ht:status> 6831 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6832 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 6833 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6834 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 6835 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6836 </ws-ht:taskDetails> 6837 <ws-ht:description>Undocumented task</ws-ht:description> 6838 <ws-ht:input/> 6839 <ws-ht:output> 6840 <ws-ht:part name="documentReference"> 6841 <ws-ht:attachment> 6842 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 6843 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 6844 <ws-ht:accessType>RLUS</ws-ht:accessType> 6845 <ws-ht:contentType>application/xml</ws-ht:contentType> 6846 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6847 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 6848 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6849 </ws-ht:attachment> 6850 </ws-ht:part> 6851 </ws-ht:output> 6852 </xdw:taskData> 6853 <xdw:taskEventHistory> 6854 <xdw:taskEvent> 6855 <xdw:id>1</xdw:id> 6856 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 6857 <xdw:identifier>task_2#1</xdw:identifier> 6858 <xdw:eventType>create</xdw:eventType> 6859 <xdw:status>READY</xdw:status> 6860 <xdw:eventData xsi:nil="true"/> 6861 </xdw:taskEvent> 6862 <xdw:taskEvent> 6863 <xdw:id>2</xdw:id> 6864 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 6865 <xdw:identifier>task_2#2</xdw:identifier> 6866 <xdw:eventType>complete</xdw:eventType> 6867 <xdw:status>COMPLETED</xdw:status> 6868 <xdw:eventData xsi:nil="true"/> 6869 </xdw:taskEvent> 6870 </xdw:taskEventHistory> 6871 </xdw:XDWTask> 6872 </xdw:TaskList> 6873 </xdw:XDW.WorkflowDocument> 6874 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 6875 <rlustypes:success>true</rlustypes:success> 6876 <rlustypes:message>One record fetched</rlustypes:message> 6877 </rlustypes:RLUSStatusCode> 6878 </GetResponse> 6879 </soapenv:Body> 6880 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="15386"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="15386"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 6881 <soap:Header/> 6882 <soap:Body> 6883 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 6884 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 6885 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="d3369ee6-e24d-4fe9-9351-9fc4fa253cfb"/> 6886 <xdw:effectiveTime value="20140613172018+0200"/> 6887 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 6888 <xdw:patient> 6889 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 6890 </xdw:patient> 6891 <xdw:author> 6892 <xdw:assignedAuthor> 6893 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 6894 <hl7v3:assignedPerson/> 6895 </xdw:assignedAuthor> 6896 </xdw:author> 6897 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 6898 <xdw:workflowDocumentSequenceNumber>11</xdw:workflowDocumentSequenceNumber> 6899 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 6900 <xdw:workflowStatusHistory> 6901 <xdw:documentEvent> 6902 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 6903 <xdw:eventType>complete</xdw:eventType> 6904 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 6905 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6906 <xdw:previousStatus>OPEN</xdw:previousStatus> 6907 <xdw:actualStatus>OPEN</xdw:actualStatus> 6908 </xdw:documentEvent> 6909 <xdw:documentEvent> 6910 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 6911 <xdw:eventType>create</xdw:eventType> 6912 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 6913 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6914 <xdw:previousStatus>OPEN</xdw:previousStatus> 6915 <xdw:actualStatus>OPEN</xdw:actualStatus> 6916 </xdw:documentEvent> 6917 <xdw:documentEvent> 6918 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 6919 <xdw:eventType>create</xdw:eventType> 6920 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 6921 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6922 <xdw:previousStatus>OPEN</xdw:previousStatus> 6923 <xdw:actualStatus>OPEN</xdw:actualStatus> 6924 </xdw:documentEvent> 6925 <xdw:documentEvent> 6926 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 6927 <xdw:eventType>create</xdw:eventType> 6928 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 6929 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6930 <xdw:previousStatus>OPEN</xdw:previousStatus> 6931 <xdw:actualStatus>OPEN</xdw:actualStatus> 6932 </xdw:documentEvent> 6933 <xdw:documentEvent> 6934 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 6935 <xdw:eventType>create</xdw:eventType> 6936 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 6937 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 6938 <xdw:previousStatus>OPEN</xdw:previousStatus> 6939 <xdw:actualStatus>OPEN</xdw:actualStatus> 6940 </xdw:documentEvent> 6941 </xdw:workflowStatusHistory> 6942 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 6943 <xdw:TaskList> 6944 <xdw:XDWTask> 6945 <xdw:taskData> 6946 <ws-ht:taskDetails> 6947 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 6948 <ws-ht:taskType>Requested</ws-ht:taskType> 6949 <ws-ht:name>xdw.creation</ws-ht:name> 6950 <ws-ht:status>COMPLETED</ws-ht:status> 6951 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6952 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 6953 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6954 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 6955 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6956 </ws-ht:taskDetails> 6957 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 6958 <ws-ht:input/> 6959 <ws-ht:output/> 6960 </xdw:taskData> 6961 <xdw:taskEventHistory> 6962 <xdw:taskEvent> 6963 <xdw:id>1</xdw:id> 6964 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 6965 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 6966 <xdw:eventType>complete</xdw:eventType> 6967 <xdw:status>COMPLETED</xdw:status> 6968 <xdw:eventData xsi:nil="true"/> 6969 </xdw:taskEvent> 6970 </xdw:taskEventHistory> 6971 </xdw:XDWTask> 6972 <xdw:XDWTask> 6973 <xdw:taskData> 6974 <ws-ht:taskDetails> 6975 <ws-ht:id>task_0</ws-ht:id> 6976 <ws-ht:taskType>ttype</ws-ht:taskType> 6977 <ws-ht:name>tname_0</ws-ht:name> 6978 <ws-ht:status>COMPLETED</ws-ht:status> 6979 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 6980 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 6981 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 6982 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 6983 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 6984 </ws-ht:taskDetails> 6985 <ws-ht:description>Undocumented task</ws-ht:description> 6986 <ws-ht:input/> 6987 <ws-ht:output> 6988 <ws-ht:part name="documentReference"> 6989 <ws-ht:attachment> 6990 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 6991 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 6992 <ws-ht:accessType>RLUS</ws-ht:accessType> 6993 <ws-ht:contentType>application/xml</ws-ht:contentType> 6994 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 6995 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 6996 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 6997 </ws-ht:attachment> 6998 </ws-ht:part> 6999 </ws-ht:output> 7000 </xdw:taskData> 7001 <xdw:taskEventHistory> 7002 <xdw:taskEvent> 7003 <xdw:id>1</xdw:id> 7004 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 7005 <xdw:identifier>task_0#1</xdw:identifier> 7006 <xdw:eventType>create</xdw:eventType> 7007 <xdw:status>READY</xdw:status> 7008 <xdw:eventData xsi:nil="true"/> 7009 </xdw:taskEvent> 7010 <xdw:taskEvent> 7011 <xdw:id>2</xdw:id> 7012 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 7013 <xdw:identifier>task_0#2</xdw:identifier> 7014 <xdw:eventType>complete</xdw:eventType> 7015 <xdw:status>COMPLETED</xdw:status> 7016 <xdw:eventData xsi:nil="true"/> 7017 </xdw:taskEvent> 7018 </xdw:taskEventHistory> 7019 </xdw:XDWTask> 7020 <xdw:XDWTask> 7021 <xdw:taskData> 7022 <ws-ht:taskDetails> 7023 <ws-ht:id>task_1</ws-ht:id> 7024 <ws-ht:taskType>ttype</ws-ht:taskType> 7025 <ws-ht:name>tname_1</ws-ht:name> 7026 <ws-ht:status>COMPLETED</ws-ht:status> 7027 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7028 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 7029 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7030 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 7031 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7032 </ws-ht:taskDetails> 7033 <ws-ht:description>Undocumented task</ws-ht:description> 7034 <ws-ht:input/> 7035 <ws-ht:output> 7036 <ws-ht:part name="documentReference"> 7037 <ws-ht:attachment> 7038 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 7039 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 7040 <ws-ht:accessType>RLUS</ws-ht:accessType> 7041 <ws-ht:contentType>application/xml</ws-ht:contentType> 7042 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 7043 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 7044 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 7045 </ws-ht:attachment> 7046 </ws-ht:part> 7047 </ws-ht:output> 7048 </xdw:taskData> 7049 <xdw:taskEventHistory> 7050 <xdw:taskEvent> 7051 <xdw:id>1</xdw:id> 7052 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 7053 <xdw:identifier>task_1#1</xdw:identifier> 7054 <xdw:eventType>create</xdw:eventType> 7055 <xdw:status>READY</xdw:status> 7056 <xdw:eventData xsi:nil="true"/> 7057 </xdw:taskEvent> 7058 <xdw:taskEvent> 7059 <xdw:id>2</xdw:id> 7060 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 7061 <xdw:identifier>task_1#2</xdw:identifier> 7062 <xdw:eventType>complete</xdw:eventType> 7063 <xdw:status>COMPLETED</xdw:status> 7064 <xdw:eventData xsi:nil="true"/> 7065 </xdw:taskEvent> 7066 </xdw:taskEventHistory> 7067 </xdw:XDWTask> 7068 <xdw:XDWTask> 7069 <xdw:taskData> 7070 <ws-ht:taskDetails> 7071 <ws-ht:id>task_2</ws-ht:id> 7072 <ws-ht:taskType>ttype</ws-ht:taskType> 7073 <ws-ht:name>tname_2</ws-ht:name> 7074 <ws-ht:status>COMPLETED</ws-ht:status> 7075 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7076 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 7077 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7078 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 7079 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7080 </ws-ht:taskDetails> 7081 <ws-ht:description>Undocumented task</ws-ht:description> 7082 <ws-ht:input/> 7083 <ws-ht:output> 7084 <ws-ht:part name="documentReference"> 7085 <ws-ht:attachment> 7086 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 7087 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 7088 <ws-ht:accessType>RLUS</ws-ht:accessType> 7089 <ws-ht:contentType>application/xml</ws-ht:contentType> 7090 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 7091 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 7092 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 7093 </ws-ht:attachment> 7094 </ws-ht:part> 7095 </ws-ht:output> 7096 </xdw:taskData> 7097 <xdw:taskEventHistory> 7098 <xdw:taskEvent> 7099 <xdw:id>1</xdw:id> 7100 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 7101 <xdw:identifier>task_2#1</xdw:identifier> 7102 <xdw:eventType>create</xdw:eventType> 7103 <xdw:status>READY</xdw:status> 7104 <xdw:eventData xsi:nil="true"/> 7105 </xdw:taskEvent> 7106 <xdw:taskEvent> 7107 <xdw:id>2</xdw:id> 7108 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 7109 <xdw:identifier>task_2#2</xdw:identifier> 7110 <xdw:eventType>complete</xdw:eventType> 7111 <xdw:status>COMPLETED</xdw:status> 7112 <xdw:eventData xsi:nil="true"/> 7113 </xdw:taskEvent> 7114 </xdw:taskEventHistory> 7115 </xdw:XDWTask> 7116 <xdw:XDWTask> 7117 <xdw:taskData> 7118 <ws-ht:taskDetails> 7119 <ws-ht:id>task_3</ws-ht:id> 7120 <ws-ht:taskType>ttype</ws-ht:taskType> 7121 <ws-ht:name>tname_3</ws-ht:name> 7122 <ws-ht:status>READY</ws-ht:status> 7123 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7124 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 7125 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7126 <ws-ht:lastModifiedTime>2014-06-13T17:20:18.029+02:00</ws-ht:lastModifiedTime> 7127 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7128 </ws-ht:taskDetails> 7129 <ws-ht:description>Undocumented task</ws-ht:description> 7130 <ws-ht:input/> 7131 <ws-ht:output/> 7132 </xdw:taskData> 7133 <xdw:taskEventHistory> 7134 <xdw:taskEvent> 7135 <xdw:id>1</xdw:id> 7136 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 7137 <xdw:identifier>task_3#1</xdw:identifier> 7138 <xdw:eventType>create</xdw:eventType> 7139 <xdw:status>READY</xdw:status> 7140 <xdw:eventData xsi:nil="true"/> 7141 </xdw:taskEvent> 7142 </xdw:taskEventHistory> 7143 </xdw:XDWTask> 7144 </xdw:TaskList> 7145 </xdw:XDW.WorkflowDocument> 7146 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 7147 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 7148 <rlustypes:SecurityContext> 7149 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 7150 </rlustypes:SecurityContext> 7151 <rlustypes:CBRContext> 7152 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 7153 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 7154 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 7155 </rlustypes:CBRContext> 7156 </rlustypes:RLUSPutRequestSrcStruct> 7157 <writeCommandEnum>UPDATE</writeCommandEnum> 7158 </PutRequest> 7159 </soap:Body> 7160 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 7161 <soapenv:Header/> 7162 <soapenv:Body> 7163 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 7164 <rlustypes:success>true</rlustypes:success> 7165 <rlustypes:message/> 7166 </rlustypes:RLUSStatusCode> 7167 </soapenv:Body> 7168 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 7169 <soap:Header/> 7170 <soap:Body> 7171 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 7172 <rlustypes:searchByCriteria> 7173 <rlustypes:FilterCriteria> 7174 <rlustypes:Expression> 7175 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 7176 <rlusexp:Operator type="EqualTo"/> 7177 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 7178 </rlustypes:Expression> 7179 </rlustypes:FilterCriteria> 7180 <rlustypes:SearchAttributes> 7181 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 7182 </rlustypes:SearchAttributes> 7183 </rlustypes:searchByCriteria> 7184 </rlustypes:RLUSSearchStruct> 7185 </soap:Body> 7186 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="14948"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="14948"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 7187 <soapenv:Header/> 7188 <soapenv:Body> 7189 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 7190 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 7191 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="d3369ee6-e24d-4fe9-9351-9fc4fa253cfb"/> 7192 <xdw:effectiveTime value="20140613172018+0200"/> 7193 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 7194 <xdw:patient> 7195 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 7196 </xdw:patient> 7197 <xdw:author> 7198 <xdw:assignedAuthor> 7199 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 7200 <hl7v3:assignedPerson/> 7201 </xdw:assignedAuthor> 7202 </xdw:author> 7203 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 7204 <xdw:workflowDocumentSequenceNumber>11</xdw:workflowDocumentSequenceNumber> 7205 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 7206 <xdw:workflowStatusHistory> 7207 <xdw:documentEvent> 7208 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 7209 <xdw:eventType>complete</xdw:eventType> 7210 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 7211 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7212 <xdw:previousStatus>OPEN</xdw:previousStatus> 7213 <xdw:actualStatus>OPEN</xdw:actualStatus> 7214 </xdw:documentEvent> 7215 <xdw:documentEvent> 7216 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 7217 <xdw:eventType>create</xdw:eventType> 7218 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 7219 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7220 <xdw:previousStatus>OPEN</xdw:previousStatus> 7221 <xdw:actualStatus>OPEN</xdw:actualStatus> 7222 </xdw:documentEvent> 7223 <xdw:documentEvent> 7224 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 7225 <xdw:eventType>create</xdw:eventType> 7226 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 7227 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7228 <xdw:previousStatus>OPEN</xdw:previousStatus> 7229 <xdw:actualStatus>OPEN</xdw:actualStatus> 7230 </xdw:documentEvent> 7231 <xdw:documentEvent> 7232 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 7233 <xdw:eventType>create</xdw:eventType> 7234 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 7235 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7236 <xdw:previousStatus>OPEN</xdw:previousStatus> 7237 <xdw:actualStatus>OPEN</xdw:actualStatus> 7238 </xdw:documentEvent> 7239 <xdw:documentEvent> 7240 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 7241 <xdw:eventType>create</xdw:eventType> 7242 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 7243 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7244 <xdw:previousStatus>OPEN</xdw:previousStatus> 7245 <xdw:actualStatus>OPEN</xdw:actualStatus> 7246 </xdw:documentEvent> 7247 </xdw:workflowStatusHistory> 7248 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 7249 <xdw:TaskList> 7250 <xdw:XDWTask> 7251 <xdw:taskData> 7252 <ws-ht:taskDetails> 7253 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 7254 <ws-ht:taskType>Requested</ws-ht:taskType> 7255 <ws-ht:name>xdw.creation</ws-ht:name> 7256 <ws-ht:status>COMPLETED</ws-ht:status> 7257 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7258 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 7259 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7260 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 7261 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7262 </ws-ht:taskDetails> 7263 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 7264 <ws-ht:input/> 7265 <ws-ht:output/> 7266 </xdw:taskData> 7267 <xdw:taskEventHistory> 7268 <xdw:taskEvent> 7269 <xdw:id>1</xdw:id> 7270 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 7271 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 7272 <xdw:eventType>complete</xdw:eventType> 7273 <xdw:status>COMPLETED</xdw:status> 7274 <xdw:eventData xsi:nil="true"/> 7275 </xdw:taskEvent> 7276 </xdw:taskEventHistory> 7277 </xdw:XDWTask> 7278 <xdw:XDWTask> 7279 <xdw:taskData> 7280 <ws-ht:taskDetails> 7281 <ws-ht:id>task_0</ws-ht:id> 7282 <ws-ht:taskType>ttype</ws-ht:taskType> 7283 <ws-ht:name>tname_0</ws-ht:name> 7284 <ws-ht:status>COMPLETED</ws-ht:status> 7285 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7286 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 7287 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7288 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 7289 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7290 </ws-ht:taskDetails> 7291 <ws-ht:description>Undocumented task</ws-ht:description> 7292 <ws-ht:input/> 7293 <ws-ht:output> 7294 <ws-ht:part name="documentReference"> 7295 <ws-ht:attachment> 7296 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 7297 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 7298 <ws-ht:accessType>RLUS</ws-ht:accessType> 7299 <ws-ht:contentType>application/xml</ws-ht:contentType> 7300 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 7301 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 7302 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 7303 </ws-ht:attachment> 7304 </ws-ht:part> 7305 </ws-ht:output> 7306 </xdw:taskData> 7307 <xdw:taskEventHistory> 7308 <xdw:taskEvent> 7309 <xdw:id>1</xdw:id> 7310 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 7311 <xdw:identifier>task_0#1</xdw:identifier> 7312 <xdw:eventType>create</xdw:eventType> 7313 <xdw:status>READY</xdw:status> 7314 <xdw:eventData xsi:nil="true"/> 7315 </xdw:taskEvent> 7316 <xdw:taskEvent> 7317 <xdw:id>2</xdw:id> 7318 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 7319 <xdw:identifier>task_0#2</xdw:identifier> 7320 <xdw:eventType>complete</xdw:eventType> 7321 <xdw:status>COMPLETED</xdw:status> 7322 <xdw:eventData xsi:nil="true"/> 7323 </xdw:taskEvent> 7324 </xdw:taskEventHistory> 7325 </xdw:XDWTask> 7326 <xdw:XDWTask> 7327 <xdw:taskData> 7328 <ws-ht:taskDetails> 7329 <ws-ht:id>task_1</ws-ht:id> 7330 <ws-ht:taskType>ttype</ws-ht:taskType> 7331 <ws-ht:name>tname_1</ws-ht:name> 7332 <ws-ht:status>COMPLETED</ws-ht:status> 7333 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7334 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 7335 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7336 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 7337 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7338 </ws-ht:taskDetails> 7339 <ws-ht:description>Undocumented task</ws-ht:description> 7340 <ws-ht:input/> 7341 <ws-ht:output> 7342 <ws-ht:part name="documentReference"> 7343 <ws-ht:attachment> 7344 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 7345 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 7346 <ws-ht:accessType>RLUS</ws-ht:accessType> 7347 <ws-ht:contentType>application/xml</ws-ht:contentType> 7348 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 7349 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 7350 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 7351 </ws-ht:attachment> 7352 </ws-ht:part> 7353 </ws-ht:output> 7354 </xdw:taskData> 7355 <xdw:taskEventHistory> 7356 <xdw:taskEvent> 7357 <xdw:id>1</xdw:id> 7358 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 7359 <xdw:identifier>task_1#1</xdw:identifier> 7360 <xdw:eventType>create</xdw:eventType> 7361 <xdw:status>READY</xdw:status> 7362 <xdw:eventData xsi:nil="true"/> 7363 </xdw:taskEvent> 7364 <xdw:taskEvent> 7365 <xdw:id>2</xdw:id> 7366 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 7367 <xdw:identifier>task_1#2</xdw:identifier> 7368 <xdw:eventType>complete</xdw:eventType> 7369 <xdw:status>COMPLETED</xdw:status> 7370 <xdw:eventData xsi:nil="true"/> 7371 </xdw:taskEvent> 7372 </xdw:taskEventHistory> 7373 </xdw:XDWTask> 7374 <xdw:XDWTask> 7375 <xdw:taskData> 7376 <ws-ht:taskDetails> 7377 <ws-ht:id>task_2</ws-ht:id> 7378 <ws-ht:taskType>ttype</ws-ht:taskType> 7379 <ws-ht:name>tname_2</ws-ht:name> 7380 <ws-ht:status>COMPLETED</ws-ht:status> 7381 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7382 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 7383 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7384 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 7385 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7386 </ws-ht:taskDetails> 7387 <ws-ht:description>Undocumented task</ws-ht:description> 7388 <ws-ht:input/> 7389 <ws-ht:output> 7390 <ws-ht:part name="documentReference"> 7391 <ws-ht:attachment> 7392 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 7393 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 7394 <ws-ht:accessType>RLUS</ws-ht:accessType> 7395 <ws-ht:contentType>application/xml</ws-ht:contentType> 7396 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 7397 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 7398 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 7399 </ws-ht:attachment> 7400 </ws-ht:part> 7401 </ws-ht:output> 7402 </xdw:taskData> 7403 <xdw:taskEventHistory> 7404 <xdw:taskEvent> 7405 <xdw:id>1</xdw:id> 7406 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 7407 <xdw:identifier>task_2#1</xdw:identifier> 7408 <xdw:eventType>create</xdw:eventType> 7409 <xdw:status>READY</xdw:status> 7410 <xdw:eventData xsi:nil="true"/> 7411 </xdw:taskEvent> 7412 <xdw:taskEvent> 7413 <xdw:id>2</xdw:id> 7414 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 7415 <xdw:identifier>task_2#2</xdw:identifier> 7416 <xdw:eventType>complete</xdw:eventType> 7417 <xdw:status>COMPLETED</xdw:status> 7418 <xdw:eventData xsi:nil="true"/> 7419 </xdw:taskEvent> 7420 </xdw:taskEventHistory> 7421 </xdw:XDWTask> 7422 <xdw:XDWTask> 7423 <xdw:taskData> 7424 <ws-ht:taskDetails> 7425 <ws-ht:id>task_3</ws-ht:id> 7426 <ws-ht:taskType>ttype</ws-ht:taskType> 7427 <ws-ht:name>tname_3</ws-ht:name> 7428 <ws-ht:status>READY</ws-ht:status> 7429 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7430 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 7431 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7432 <ws-ht:lastModifiedTime>2014-06-13T17:20:18.029+02:00</ws-ht:lastModifiedTime> 7433 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7434 </ws-ht:taskDetails> 7435 <ws-ht:description>Undocumented task</ws-ht:description> 7436 <ws-ht:input/> 7437 <ws-ht:output/> 7438 </xdw:taskData> 7439 <xdw:taskEventHistory> 7440 <xdw:taskEvent> 7441 <xdw:id>1</xdw:id> 7442 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 7443 <xdw:identifier>task_3#1</xdw:identifier> 7444 <xdw:eventType>create</xdw:eventType> 7445 <xdw:status>READY</xdw:status> 7446 <xdw:eventData xsi:nil="true"/> 7447 </xdw:taskEvent> 7448 </xdw:taskEventHistory> 7449 </xdw:XDWTask> 7450 </xdw:TaskList> 7451 </xdw:XDW.WorkflowDocument> 7452 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 7453 <rlustypes:success>true</rlustypes:success> 7454 <rlustypes:message>One record fetched</rlustypes:message> 7455 </rlustypes:RLUSStatusCode> 7456 </GetResponse> 7457 </soapenv:Body> 7458 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41793</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/cda2report"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 7459 <soap:Header></soap:Header> 7460 <soap:Body> 7461 <PutRequest xmlns="urn:dedalus:rlus:cda2report:types"> 7462 <ClinicalDocument xmlns="urn:hl7-org:v3"> 7463 <realmCode code="IT"></realmCode> 7464 <typeId root="2.16.840.1.113883.1.3" extension="POCD_HD000040"></typeId> 7465 <templateId root="2.16.840.1.113883.2.9.10.2.10" extension="ITPRF_REF_LABCH-001"></templateId> 7466 <id root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-003"></id> 7467 <code codeSystem="2.16.840.1.113883.6.1" code="11502-2" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Laboratory Report"></code> 7468 <effectiveTime value="20140606121152+0100"></effectiveTime> 7469 <!-- N o R o V --> 7470 <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></confidentialityCode> 7471 <languageCode code="it-IT"></languageCode> 7472 <setId root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-003"></setId> 7473 <versionNumber value="1"></versionNumber> 7474 <recordTarget> 7475 <patientRole> 7476 <id extension="7809c024-8058-4c89-9a71-effd2d53f171" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 7477 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="PZNGZL62H58D524R" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 7478 <hl7v3:patient xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212"> 7479 <hl7v3:name> 7480 <hl7v3:given>Graziella</hl7v3:given> 7481 <hl7v3:family>Paziente</hl7v3:family> 7482 </hl7v3:name> 7483 <hl7v3:administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 7484 <hl7v3:birthTime value="19620618093000+0100"></hl7v3:birthTime> 7485 </hl7v3:patient> 7486 </patientRole> 7487 </recordTarget> 7488 <author> 7489 <time value="20140606121152+0100"></time> 7490 <assignedAuthor> 7491 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 7492 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 7493 </assignedAuthor> 7494 </author> 7495 <custodian> 7496 <assignedCustodian> 7497 <representedCustodianOrganization> 7498 <id root="2.16.840.1.113883.2.9.3.12" extension="2.16.840.1.113883.2.9.3.12.4"></id> 7499 </representedCustodianOrganization> 7500 </assignedCustodian> 7501 </custodian> 7502 <legalAuthenticator> 7503 <time value="20140606121152+0100"></time> 7504 <signatureCode code="S"></signatureCode> 7505 <assignedEntity> 7506 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 7507 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 7508 </assignedEntity> 7509 </legalAuthenticator> 7510 <component> 7511 <structuredBody> 7512 <component> 7513 <section> 7514 <code code="18723-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Hematology Studies"></code> 7515 <title>Esami ematochimici</title> 7516 <text>Valori nella norma</text> 7517 </section> 7518 </component> 7519 </structuredBody> 7520 </component> 7521 </ClinicalDocument> 7522 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 7523 <rlustypes:RLUSsemantic-signifierName>cda2report</rlustypes:RLUSsemantic-signifierName> 7524 <rlustypes:SecurityContext> 7525 <rlustypes:SourceIdentity identityName="admin"></rlustypes:SourceIdentity> 7526 </rlustypes:SecurityContext> 7527 <rlustypes:CBRContext> 7528 <rlustypes:CBRName>Testing App</rlustypes:CBRName> 7529 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 7530 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 7531 </rlustypes:CBRContext> 7532 </rlustypes:RLUSPutRequestSrcStruct> 7533 <writeCommandEnum>INSERT</writeCommandEnum> 7534 </PutRequest> 7535 </soap:Body> 7536 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 7537 <soapenv:Header/> 7538 <soapenv:Body> 7539 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 7540 <rlustypes:success>true</rlustypes:success> 7541 <rlustypes:message/> 7542 </rlustypes:RLUSStatusCode> 7543 </soapenv:Body> 7544 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 7545 <soap:Header/> 7546 <soap:Body> 7547 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 7548 <rlustypes:searchByCriteria> 7549 <rlustypes:FilterCriteria> 7550 <rlustypes:Expression> 7551 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 7552 <rlusexp:Operator type="EqualTo"/> 7553 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 7554 </rlustypes:Expression> 7555 </rlustypes:FilterCriteria> 7556 <rlustypes:SearchAttributes> 7557 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 7558 </rlustypes:SearchAttributes> 7559 </rlustypes:searchByCriteria> 7560 </rlustypes:RLUSSearchStruct> 7561 </soap:Body> 7562 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="14948"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="14948"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 7563 <soapenv:Header/> 7564 <soapenv:Body> 7565 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 7566 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 7567 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="d3369ee6-e24d-4fe9-9351-9fc4fa253cfb"/> 7568 <xdw:effectiveTime value="20140613172018+0200"/> 7569 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 7570 <xdw:patient> 7571 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 7572 </xdw:patient> 7573 <xdw:author> 7574 <xdw:assignedAuthor> 7575 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 7576 <hl7v3:assignedPerson/> 7577 </xdw:assignedAuthor> 7578 </xdw:author> 7579 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 7580 <xdw:workflowDocumentSequenceNumber>11</xdw:workflowDocumentSequenceNumber> 7581 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 7582 <xdw:workflowStatusHistory> 7583 <xdw:documentEvent> 7584 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 7585 <xdw:eventType>complete</xdw:eventType> 7586 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 7587 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7588 <xdw:previousStatus>OPEN</xdw:previousStatus> 7589 <xdw:actualStatus>OPEN</xdw:actualStatus> 7590 </xdw:documentEvent> 7591 <xdw:documentEvent> 7592 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 7593 <xdw:eventType>create</xdw:eventType> 7594 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 7595 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7596 <xdw:previousStatus>OPEN</xdw:previousStatus> 7597 <xdw:actualStatus>OPEN</xdw:actualStatus> 7598 </xdw:documentEvent> 7599 <xdw:documentEvent> 7600 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 7601 <xdw:eventType>create</xdw:eventType> 7602 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 7603 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7604 <xdw:previousStatus>OPEN</xdw:previousStatus> 7605 <xdw:actualStatus>OPEN</xdw:actualStatus> 7606 </xdw:documentEvent> 7607 <xdw:documentEvent> 7608 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 7609 <xdw:eventType>create</xdw:eventType> 7610 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 7611 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7612 <xdw:previousStatus>OPEN</xdw:previousStatus> 7613 <xdw:actualStatus>OPEN</xdw:actualStatus> 7614 </xdw:documentEvent> 7615 <xdw:documentEvent> 7616 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 7617 <xdw:eventType>create</xdw:eventType> 7618 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 7619 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7620 <xdw:previousStatus>OPEN</xdw:previousStatus> 7621 <xdw:actualStatus>OPEN</xdw:actualStatus> 7622 </xdw:documentEvent> 7623 </xdw:workflowStatusHistory> 7624 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 7625 <xdw:TaskList> 7626 <xdw:XDWTask> 7627 <xdw:taskData> 7628 <ws-ht:taskDetails> 7629 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 7630 <ws-ht:taskType>Requested</ws-ht:taskType> 7631 <ws-ht:name>xdw.creation</ws-ht:name> 7632 <ws-ht:status>COMPLETED</ws-ht:status> 7633 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7634 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 7635 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7636 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 7637 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7638 </ws-ht:taskDetails> 7639 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 7640 <ws-ht:input/> 7641 <ws-ht:output/> 7642 </xdw:taskData> 7643 <xdw:taskEventHistory> 7644 <xdw:taskEvent> 7645 <xdw:id>1</xdw:id> 7646 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 7647 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 7648 <xdw:eventType>complete</xdw:eventType> 7649 <xdw:status>COMPLETED</xdw:status> 7650 <xdw:eventData xsi:nil="true"/> 7651 </xdw:taskEvent> 7652 </xdw:taskEventHistory> 7653 </xdw:XDWTask> 7654 <xdw:XDWTask> 7655 <xdw:taskData> 7656 <ws-ht:taskDetails> 7657 <ws-ht:id>task_0</ws-ht:id> 7658 <ws-ht:taskType>ttype</ws-ht:taskType> 7659 <ws-ht:name>tname_0</ws-ht:name> 7660 <ws-ht:status>COMPLETED</ws-ht:status> 7661 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7662 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 7663 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7664 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 7665 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7666 </ws-ht:taskDetails> 7667 <ws-ht:description>Undocumented task</ws-ht:description> 7668 <ws-ht:input/> 7669 <ws-ht:output> 7670 <ws-ht:part name="documentReference"> 7671 <ws-ht:attachment> 7672 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 7673 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 7674 <ws-ht:accessType>RLUS</ws-ht:accessType> 7675 <ws-ht:contentType>application/xml</ws-ht:contentType> 7676 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 7677 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 7678 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 7679 </ws-ht:attachment> 7680 </ws-ht:part> 7681 </ws-ht:output> 7682 </xdw:taskData> 7683 <xdw:taskEventHistory> 7684 <xdw:taskEvent> 7685 <xdw:id>1</xdw:id> 7686 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 7687 <xdw:identifier>task_0#1</xdw:identifier> 7688 <xdw:eventType>create</xdw:eventType> 7689 <xdw:status>READY</xdw:status> 7690 <xdw:eventData xsi:nil="true"/> 7691 </xdw:taskEvent> 7692 <xdw:taskEvent> 7693 <xdw:id>2</xdw:id> 7694 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 7695 <xdw:identifier>task_0#2</xdw:identifier> 7696 <xdw:eventType>complete</xdw:eventType> 7697 <xdw:status>COMPLETED</xdw:status> 7698 <xdw:eventData xsi:nil="true"/> 7699 </xdw:taskEvent> 7700 </xdw:taskEventHistory> 7701 </xdw:XDWTask> 7702 <xdw:XDWTask> 7703 <xdw:taskData> 7704 <ws-ht:taskDetails> 7705 <ws-ht:id>task_1</ws-ht:id> 7706 <ws-ht:taskType>ttype</ws-ht:taskType> 7707 <ws-ht:name>tname_1</ws-ht:name> 7708 <ws-ht:status>COMPLETED</ws-ht:status> 7709 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7710 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 7711 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7712 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 7713 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7714 </ws-ht:taskDetails> 7715 <ws-ht:description>Undocumented task</ws-ht:description> 7716 <ws-ht:input/> 7717 <ws-ht:output> 7718 <ws-ht:part name="documentReference"> 7719 <ws-ht:attachment> 7720 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 7721 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 7722 <ws-ht:accessType>RLUS</ws-ht:accessType> 7723 <ws-ht:contentType>application/xml</ws-ht:contentType> 7724 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 7725 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 7726 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 7727 </ws-ht:attachment> 7728 </ws-ht:part> 7729 </ws-ht:output> 7730 </xdw:taskData> 7731 <xdw:taskEventHistory> 7732 <xdw:taskEvent> 7733 <xdw:id>1</xdw:id> 7734 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 7735 <xdw:identifier>task_1#1</xdw:identifier> 7736 <xdw:eventType>create</xdw:eventType> 7737 <xdw:status>READY</xdw:status> 7738 <xdw:eventData xsi:nil="true"/> 7739 </xdw:taskEvent> 7740 <xdw:taskEvent> 7741 <xdw:id>2</xdw:id> 7742 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 7743 <xdw:identifier>task_1#2</xdw:identifier> 7744 <xdw:eventType>complete</xdw:eventType> 7745 <xdw:status>COMPLETED</xdw:status> 7746 <xdw:eventData xsi:nil="true"/> 7747 </xdw:taskEvent> 7748 </xdw:taskEventHistory> 7749 </xdw:XDWTask> 7750 <xdw:XDWTask> 7751 <xdw:taskData> 7752 <ws-ht:taskDetails> 7753 <ws-ht:id>task_2</ws-ht:id> 7754 <ws-ht:taskType>ttype</ws-ht:taskType> 7755 <ws-ht:name>tname_2</ws-ht:name> 7756 <ws-ht:status>COMPLETED</ws-ht:status> 7757 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7758 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 7759 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7760 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 7761 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7762 </ws-ht:taskDetails> 7763 <ws-ht:description>Undocumented task</ws-ht:description> 7764 <ws-ht:input/> 7765 <ws-ht:output> 7766 <ws-ht:part name="documentReference"> 7767 <ws-ht:attachment> 7768 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 7769 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 7770 <ws-ht:accessType>RLUS</ws-ht:accessType> 7771 <ws-ht:contentType>application/xml</ws-ht:contentType> 7772 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 7773 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 7774 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 7775 </ws-ht:attachment> 7776 </ws-ht:part> 7777 </ws-ht:output> 7778 </xdw:taskData> 7779 <xdw:taskEventHistory> 7780 <xdw:taskEvent> 7781 <xdw:id>1</xdw:id> 7782 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 7783 <xdw:identifier>task_2#1</xdw:identifier> 7784 <xdw:eventType>create</xdw:eventType> 7785 <xdw:status>READY</xdw:status> 7786 <xdw:eventData xsi:nil="true"/> 7787 </xdw:taskEvent> 7788 <xdw:taskEvent> 7789 <xdw:id>2</xdw:id> 7790 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 7791 <xdw:identifier>task_2#2</xdw:identifier> 7792 <xdw:eventType>complete</xdw:eventType> 7793 <xdw:status>COMPLETED</xdw:status> 7794 <xdw:eventData xsi:nil="true"/> 7795 </xdw:taskEvent> 7796 </xdw:taskEventHistory> 7797 </xdw:XDWTask> 7798 <xdw:XDWTask> 7799 <xdw:taskData> 7800 <ws-ht:taskDetails> 7801 <ws-ht:id>task_3</ws-ht:id> 7802 <ws-ht:taskType>ttype</ws-ht:taskType> 7803 <ws-ht:name>tname_3</ws-ht:name> 7804 <ws-ht:status>READY</ws-ht:status> 7805 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7806 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 7807 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7808 <ws-ht:lastModifiedTime>2014-06-13T17:20:18.029+02:00</ws-ht:lastModifiedTime> 7809 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7810 </ws-ht:taskDetails> 7811 <ws-ht:description>Undocumented task</ws-ht:description> 7812 <ws-ht:input/> 7813 <ws-ht:output/> 7814 </xdw:taskData> 7815 <xdw:taskEventHistory> 7816 <xdw:taskEvent> 7817 <xdw:id>1</xdw:id> 7818 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 7819 <xdw:identifier>task_3#1</xdw:identifier> 7820 <xdw:eventType>create</xdw:eventType> 7821 <xdw:status>READY</xdw:status> 7822 <xdw:eventData xsi:nil="true"/> 7823 </xdw:taskEvent> 7824 </xdw:taskEventHistory> 7825 </xdw:XDWTask> 7826 </xdw:TaskList> 7827 </xdw:XDW.WorkflowDocument> 7828 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 7829 <rlustypes:success>true</rlustypes:success> 7830 <rlustypes:message>One record fetched</rlustypes:message> 7831 </rlustypes:RLUSStatusCode> 7832 </GetResponse> 7833 </soapenv:Body> 7834 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 7835 <soap:Header/> 7836 <soap:Body> 7837 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 7838 <rlustypes:searchByCriteria> 7839 <rlustypes:FilterCriteria> 7840 <rlustypes:Expression> 7841 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 7842 <rlusexp:Operator type="EqualTo"/> 7843 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 7844 </rlustypes:Expression> 7845 </rlustypes:FilterCriteria> 7846 <rlustypes:SearchAttributes> 7847 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 7848 </rlustypes:SearchAttributes> 7849 </rlustypes:searchByCriteria> 7850 </rlustypes:RLUSSearchStruct> 7851 </soap:Body> 7852 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="14948"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="14948"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 7853 <soapenv:Header/> 7854 <soapenv:Body> 7855 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 7856 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 7857 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="d3369ee6-e24d-4fe9-9351-9fc4fa253cfb"/> 7858 <xdw:effectiveTime value="20140613172018+0200"/> 7859 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 7860 <xdw:patient> 7861 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 7862 </xdw:patient> 7863 <xdw:author> 7864 <xdw:assignedAuthor> 7865 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 7866 <hl7v3:assignedPerson/> 7867 </xdw:assignedAuthor> 7868 </xdw:author> 7869 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 7870 <xdw:workflowDocumentSequenceNumber>11</xdw:workflowDocumentSequenceNumber> 7871 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 7872 <xdw:workflowStatusHistory> 7873 <xdw:documentEvent> 7874 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 7875 <xdw:eventType>complete</xdw:eventType> 7876 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 7877 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7878 <xdw:previousStatus>OPEN</xdw:previousStatus> 7879 <xdw:actualStatus>OPEN</xdw:actualStatus> 7880 </xdw:documentEvent> 7881 <xdw:documentEvent> 7882 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 7883 <xdw:eventType>create</xdw:eventType> 7884 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 7885 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7886 <xdw:previousStatus>OPEN</xdw:previousStatus> 7887 <xdw:actualStatus>OPEN</xdw:actualStatus> 7888 </xdw:documentEvent> 7889 <xdw:documentEvent> 7890 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 7891 <xdw:eventType>create</xdw:eventType> 7892 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 7893 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7894 <xdw:previousStatus>OPEN</xdw:previousStatus> 7895 <xdw:actualStatus>OPEN</xdw:actualStatus> 7896 </xdw:documentEvent> 7897 <xdw:documentEvent> 7898 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 7899 <xdw:eventType>create</xdw:eventType> 7900 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 7901 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7902 <xdw:previousStatus>OPEN</xdw:previousStatus> 7903 <xdw:actualStatus>OPEN</xdw:actualStatus> 7904 </xdw:documentEvent> 7905 <xdw:documentEvent> 7906 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 7907 <xdw:eventType>create</xdw:eventType> 7908 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 7909 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 7910 <xdw:previousStatus>OPEN</xdw:previousStatus> 7911 <xdw:actualStatus>OPEN</xdw:actualStatus> 7912 </xdw:documentEvent> 7913 </xdw:workflowStatusHistory> 7914 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 7915 <xdw:TaskList> 7916 <xdw:XDWTask> 7917 <xdw:taskData> 7918 <ws-ht:taskDetails> 7919 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 7920 <ws-ht:taskType>Requested</ws-ht:taskType> 7921 <ws-ht:name>xdw.creation</ws-ht:name> 7922 <ws-ht:status>COMPLETED</ws-ht:status> 7923 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7924 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 7925 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7926 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 7927 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7928 </ws-ht:taskDetails> 7929 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 7930 <ws-ht:input/> 7931 <ws-ht:output/> 7932 </xdw:taskData> 7933 <xdw:taskEventHistory> 7934 <xdw:taskEvent> 7935 <xdw:id>1</xdw:id> 7936 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 7937 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 7938 <xdw:eventType>complete</xdw:eventType> 7939 <xdw:status>COMPLETED</xdw:status> 7940 <xdw:eventData xsi:nil="true"/> 7941 </xdw:taskEvent> 7942 </xdw:taskEventHistory> 7943 </xdw:XDWTask> 7944 <xdw:XDWTask> 7945 <xdw:taskData> 7946 <ws-ht:taskDetails> 7947 <ws-ht:id>task_0</ws-ht:id> 7948 <ws-ht:taskType>ttype</ws-ht:taskType> 7949 <ws-ht:name>tname_0</ws-ht:name> 7950 <ws-ht:status>COMPLETED</ws-ht:status> 7951 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 7952 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 7953 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 7954 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 7955 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 7956 </ws-ht:taskDetails> 7957 <ws-ht:description>Undocumented task</ws-ht:description> 7958 <ws-ht:input/> 7959 <ws-ht:output> 7960 <ws-ht:part name="documentReference"> 7961 <ws-ht:attachment> 7962 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 7963 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 7964 <ws-ht:accessType>RLUS</ws-ht:accessType> 7965 <ws-ht:contentType>application/xml</ws-ht:contentType> 7966 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 7967 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 7968 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 7969 </ws-ht:attachment> 7970 </ws-ht:part> 7971 </ws-ht:output> 7972 </xdw:taskData> 7973 <xdw:taskEventHistory> 7974 <xdw:taskEvent> 7975 <xdw:id>1</xdw:id> 7976 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 7977 <xdw:identifier>task_0#1</xdw:identifier> 7978 <xdw:eventType>create</xdw:eventType> 7979 <xdw:status>READY</xdw:status> 7980 <xdw:eventData xsi:nil="true"/> 7981 </xdw:taskEvent> 7982 <xdw:taskEvent> 7983 <xdw:id>2</xdw:id> 7984 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 7985 <xdw:identifier>task_0#2</xdw:identifier> 7986 <xdw:eventType>complete</xdw:eventType> 7987 <xdw:status>COMPLETED</xdw:status> 7988 <xdw:eventData xsi:nil="true"/> 7989 </xdw:taskEvent> 7990 </xdw:taskEventHistory> 7991 </xdw:XDWTask> 7992 <xdw:XDWTask> 7993 <xdw:taskData> 7994 <ws-ht:taskDetails> 7995 <ws-ht:id>task_1</ws-ht:id> 7996 <ws-ht:taskType>ttype</ws-ht:taskType> 7997 <ws-ht:name>tname_1</ws-ht:name> 7998 <ws-ht:status>COMPLETED</ws-ht:status> 7999 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8000 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 8001 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8002 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 8003 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8004 </ws-ht:taskDetails> 8005 <ws-ht:description>Undocumented task</ws-ht:description> 8006 <ws-ht:input/> 8007 <ws-ht:output> 8008 <ws-ht:part name="documentReference"> 8009 <ws-ht:attachment> 8010 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 8011 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 8012 <ws-ht:accessType>RLUS</ws-ht:accessType> 8013 <ws-ht:contentType>application/xml</ws-ht:contentType> 8014 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8015 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 8016 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8017 </ws-ht:attachment> 8018 </ws-ht:part> 8019 </ws-ht:output> 8020 </xdw:taskData> 8021 <xdw:taskEventHistory> 8022 <xdw:taskEvent> 8023 <xdw:id>1</xdw:id> 8024 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 8025 <xdw:identifier>task_1#1</xdw:identifier> 8026 <xdw:eventType>create</xdw:eventType> 8027 <xdw:status>READY</xdw:status> 8028 <xdw:eventData xsi:nil="true"/> 8029 </xdw:taskEvent> 8030 <xdw:taskEvent> 8031 <xdw:id>2</xdw:id> 8032 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 8033 <xdw:identifier>task_1#2</xdw:identifier> 8034 <xdw:eventType>complete</xdw:eventType> 8035 <xdw:status>COMPLETED</xdw:status> 8036 <xdw:eventData xsi:nil="true"/> 8037 </xdw:taskEvent> 8038 </xdw:taskEventHistory> 8039 </xdw:XDWTask> 8040 <xdw:XDWTask> 8041 <xdw:taskData> 8042 <ws-ht:taskDetails> 8043 <ws-ht:id>task_2</ws-ht:id> 8044 <ws-ht:taskType>ttype</ws-ht:taskType> 8045 <ws-ht:name>tname_2</ws-ht:name> 8046 <ws-ht:status>COMPLETED</ws-ht:status> 8047 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8048 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 8049 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8050 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 8051 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8052 </ws-ht:taskDetails> 8053 <ws-ht:description>Undocumented task</ws-ht:description> 8054 <ws-ht:input/> 8055 <ws-ht:output> 8056 <ws-ht:part name="documentReference"> 8057 <ws-ht:attachment> 8058 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 8059 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 8060 <ws-ht:accessType>RLUS</ws-ht:accessType> 8061 <ws-ht:contentType>application/xml</ws-ht:contentType> 8062 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8063 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 8064 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8065 </ws-ht:attachment> 8066 </ws-ht:part> 8067 </ws-ht:output> 8068 </xdw:taskData> 8069 <xdw:taskEventHistory> 8070 <xdw:taskEvent> 8071 <xdw:id>1</xdw:id> 8072 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 8073 <xdw:identifier>task_2#1</xdw:identifier> 8074 <xdw:eventType>create</xdw:eventType> 8075 <xdw:status>READY</xdw:status> 8076 <xdw:eventData xsi:nil="true"/> 8077 </xdw:taskEvent> 8078 <xdw:taskEvent> 8079 <xdw:id>2</xdw:id> 8080 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 8081 <xdw:identifier>task_2#2</xdw:identifier> 8082 <xdw:eventType>complete</xdw:eventType> 8083 <xdw:status>COMPLETED</xdw:status> 8084 <xdw:eventData xsi:nil="true"/> 8085 </xdw:taskEvent> 8086 </xdw:taskEventHistory> 8087 </xdw:XDWTask> 8088 <xdw:XDWTask> 8089 <xdw:taskData> 8090 <ws-ht:taskDetails> 8091 <ws-ht:id>task_3</ws-ht:id> 8092 <ws-ht:taskType>ttype</ws-ht:taskType> 8093 <ws-ht:name>tname_3</ws-ht:name> 8094 <ws-ht:status>READY</ws-ht:status> 8095 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8096 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 8097 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8098 <ws-ht:lastModifiedTime>2014-06-13T17:20:18.029+02:00</ws-ht:lastModifiedTime> 8099 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8100 </ws-ht:taskDetails> 8101 <ws-ht:description>Undocumented task</ws-ht:description> 8102 <ws-ht:input/> 8103 <ws-ht:output/> 8104 </xdw:taskData> 8105 <xdw:taskEventHistory> 8106 <xdw:taskEvent> 8107 <xdw:id>1</xdw:id> 8108 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 8109 <xdw:identifier>task_3#1</xdw:identifier> 8110 <xdw:eventType>create</xdw:eventType> 8111 <xdw:status>READY</xdw:status> 8112 <xdw:eventData xsi:nil="true"/> 8113 </xdw:taskEvent> 8114 </xdw:taskEventHistory> 8115 </xdw:XDWTask> 8116 </xdw:TaskList> 8117 </xdw:XDW.WorkflowDocument> 8118 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 8119 <rlustypes:success>true</rlustypes:success> 8120 <rlustypes:message>One record fetched</rlustypes:message> 8121 </rlustypes:RLUSStatusCode> 8122 </GetResponse> 8123 </soapenv:Body> 8124 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="16154"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="16154"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 8125 <soap:Header/> 8126 <soap:Body> 8127 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 8128 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 8129 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="f39f6fb9-bdbd-449b-925b-5dcaa7efb3bd"/> 8130 <xdw:effectiveTime value="20140613172022+0200"/> 8131 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 8132 <xdw:patient> 8133 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 8134 </xdw:patient> 8135 <xdw:author> 8136 <xdw:assignedAuthor> 8137 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 8138 <hl7v3:assignedPerson/> 8139 </xdw:assignedAuthor> 8140 </xdw:author> 8141 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 8142 <xdw:workflowDocumentSequenceNumber>12</xdw:workflowDocumentSequenceNumber> 8143 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 8144 <xdw:workflowStatusHistory> 8145 <xdw:documentEvent> 8146 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 8147 <xdw:eventType>complete</xdw:eventType> 8148 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 8149 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8150 <xdw:previousStatus>OPEN</xdw:previousStatus> 8151 <xdw:actualStatus>OPEN</xdw:actualStatus> 8152 </xdw:documentEvent> 8153 <xdw:documentEvent> 8154 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 8155 <xdw:eventType>create</xdw:eventType> 8156 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 8157 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8158 <xdw:previousStatus>OPEN</xdw:previousStatus> 8159 <xdw:actualStatus>OPEN</xdw:actualStatus> 8160 </xdw:documentEvent> 8161 <xdw:documentEvent> 8162 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 8163 <xdw:eventType>create</xdw:eventType> 8164 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 8165 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8166 <xdw:previousStatus>OPEN</xdw:previousStatus> 8167 <xdw:actualStatus>OPEN</xdw:actualStatus> 8168 </xdw:documentEvent> 8169 <xdw:documentEvent> 8170 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 8171 <xdw:eventType>create</xdw:eventType> 8172 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 8173 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8174 <xdw:previousStatus>OPEN</xdw:previousStatus> 8175 <xdw:actualStatus>OPEN</xdw:actualStatus> 8176 </xdw:documentEvent> 8177 <xdw:documentEvent> 8178 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 8179 <xdw:eventType>create</xdw:eventType> 8180 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 8181 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8182 <xdw:previousStatus>OPEN</xdw:previousStatus> 8183 <xdw:actualStatus>OPEN</xdw:actualStatus> 8184 </xdw:documentEvent> 8185 </xdw:workflowStatusHistory> 8186 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 8187 <xdw:TaskList> 8188 <xdw:XDWTask> 8189 <xdw:taskData> 8190 <ws-ht:taskDetails> 8191 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 8192 <ws-ht:taskType>Requested</ws-ht:taskType> 8193 <ws-ht:name>xdw.creation</ws-ht:name> 8194 <ws-ht:status>COMPLETED</ws-ht:status> 8195 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8196 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 8197 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8198 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 8199 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8200 </ws-ht:taskDetails> 8201 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 8202 <ws-ht:input/> 8203 <ws-ht:output/> 8204 </xdw:taskData> 8205 <xdw:taskEventHistory> 8206 <xdw:taskEvent> 8207 <xdw:id>1</xdw:id> 8208 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 8209 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 8210 <xdw:eventType>complete</xdw:eventType> 8211 <xdw:status>COMPLETED</xdw:status> 8212 <xdw:eventData xsi:nil="true"/> 8213 </xdw:taskEvent> 8214 </xdw:taskEventHistory> 8215 </xdw:XDWTask> 8216 <xdw:XDWTask> 8217 <xdw:taskData> 8218 <ws-ht:taskDetails> 8219 <ws-ht:id>task_0</ws-ht:id> 8220 <ws-ht:taskType>ttype</ws-ht:taskType> 8221 <ws-ht:name>tname_0</ws-ht:name> 8222 <ws-ht:status>COMPLETED</ws-ht:status> 8223 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8224 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 8225 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8226 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 8227 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8228 </ws-ht:taskDetails> 8229 <ws-ht:description>Undocumented task</ws-ht:description> 8230 <ws-ht:input/> 8231 <ws-ht:output> 8232 <ws-ht:part name="documentReference"> 8233 <ws-ht:attachment> 8234 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 8235 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 8236 <ws-ht:accessType>RLUS</ws-ht:accessType> 8237 <ws-ht:contentType>application/xml</ws-ht:contentType> 8238 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8239 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 8240 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8241 </ws-ht:attachment> 8242 </ws-ht:part> 8243 </ws-ht:output> 8244 </xdw:taskData> 8245 <xdw:taskEventHistory> 8246 <xdw:taskEvent> 8247 <xdw:id>1</xdw:id> 8248 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 8249 <xdw:identifier>task_0#1</xdw:identifier> 8250 <xdw:eventType>create</xdw:eventType> 8251 <xdw:status>READY</xdw:status> 8252 <xdw:eventData xsi:nil="true"/> 8253 </xdw:taskEvent> 8254 <xdw:taskEvent> 8255 <xdw:id>2</xdw:id> 8256 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 8257 <xdw:identifier>task_0#2</xdw:identifier> 8258 <xdw:eventType>complete</xdw:eventType> 8259 <xdw:status>COMPLETED</xdw:status> 8260 <xdw:eventData xsi:nil="true"/> 8261 </xdw:taskEvent> 8262 </xdw:taskEventHistory> 8263 </xdw:XDWTask> 8264 <xdw:XDWTask> 8265 <xdw:taskData> 8266 <ws-ht:taskDetails> 8267 <ws-ht:id>task_1</ws-ht:id> 8268 <ws-ht:taskType>ttype</ws-ht:taskType> 8269 <ws-ht:name>tname_1</ws-ht:name> 8270 <ws-ht:status>COMPLETED</ws-ht:status> 8271 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8272 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 8273 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8274 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 8275 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8276 </ws-ht:taskDetails> 8277 <ws-ht:description>Undocumented task</ws-ht:description> 8278 <ws-ht:input/> 8279 <ws-ht:output> 8280 <ws-ht:part name="documentReference"> 8281 <ws-ht:attachment> 8282 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 8283 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 8284 <ws-ht:accessType>RLUS</ws-ht:accessType> 8285 <ws-ht:contentType>application/xml</ws-ht:contentType> 8286 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8287 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 8288 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8289 </ws-ht:attachment> 8290 </ws-ht:part> 8291 </ws-ht:output> 8292 </xdw:taskData> 8293 <xdw:taskEventHistory> 8294 <xdw:taskEvent> 8295 <xdw:id>1</xdw:id> 8296 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 8297 <xdw:identifier>task_1#1</xdw:identifier> 8298 <xdw:eventType>create</xdw:eventType> 8299 <xdw:status>READY</xdw:status> 8300 <xdw:eventData xsi:nil="true"/> 8301 </xdw:taskEvent> 8302 <xdw:taskEvent> 8303 <xdw:id>2</xdw:id> 8304 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 8305 <xdw:identifier>task_1#2</xdw:identifier> 8306 <xdw:eventType>complete</xdw:eventType> 8307 <xdw:status>COMPLETED</xdw:status> 8308 <xdw:eventData xsi:nil="true"/> 8309 </xdw:taskEvent> 8310 </xdw:taskEventHistory> 8311 </xdw:XDWTask> 8312 <xdw:XDWTask> 8313 <xdw:taskData> 8314 <ws-ht:taskDetails> 8315 <ws-ht:id>task_2</ws-ht:id> 8316 <ws-ht:taskType>ttype</ws-ht:taskType> 8317 <ws-ht:name>tname_2</ws-ht:name> 8318 <ws-ht:status>COMPLETED</ws-ht:status> 8319 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8320 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 8321 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8322 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 8323 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8324 </ws-ht:taskDetails> 8325 <ws-ht:description>Undocumented task</ws-ht:description> 8326 <ws-ht:input/> 8327 <ws-ht:output> 8328 <ws-ht:part name="documentReference"> 8329 <ws-ht:attachment> 8330 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 8331 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 8332 <ws-ht:accessType>RLUS</ws-ht:accessType> 8333 <ws-ht:contentType>application/xml</ws-ht:contentType> 8334 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8335 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 8336 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8337 </ws-ht:attachment> 8338 </ws-ht:part> 8339 </ws-ht:output> 8340 </xdw:taskData> 8341 <xdw:taskEventHistory> 8342 <xdw:taskEvent> 8343 <xdw:id>1</xdw:id> 8344 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 8345 <xdw:identifier>task_2#1</xdw:identifier> 8346 <xdw:eventType>create</xdw:eventType> 8347 <xdw:status>READY</xdw:status> 8348 <xdw:eventData xsi:nil="true"/> 8349 </xdw:taskEvent> 8350 <xdw:taskEvent> 8351 <xdw:id>2</xdw:id> 8352 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 8353 <xdw:identifier>task_2#2</xdw:identifier> 8354 <xdw:eventType>complete</xdw:eventType> 8355 <xdw:status>COMPLETED</xdw:status> 8356 <xdw:eventData xsi:nil="true"/> 8357 </xdw:taskEvent> 8358 </xdw:taskEventHistory> 8359 </xdw:XDWTask> 8360 <xdw:XDWTask> 8361 <xdw:taskData> 8362 <ws-ht:taskDetails> 8363 <ws-ht:id>task_3</ws-ht:id> 8364 <ws-ht:taskType>ttype</ws-ht:taskType> 8365 <ws-ht:name>tname_3</ws-ht:name> 8366 <ws-ht:status>READY</ws-ht:status> 8367 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8368 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 8369 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8370 <ws-ht:lastModifiedTime>2014-06-13T17:20:18.029+02:00</ws-ht:lastModifiedTime> 8371 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8372 </ws-ht:taskDetails> 8373 <ws-ht:description>Undocumented task</ws-ht:description> 8374 <ws-ht:input/> 8375 <ws-ht:output> 8376 <ws-ht:part name="documentReference"> 8377 <ws-ht:attachment> 8378 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 8379 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 8380 <ws-ht:accessType>RLUS</ws-ht:accessType> 8381 <ws-ht:contentType>application/xml</ws-ht:contentType> 8382 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8383 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 8384 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8385 </ws-ht:attachment> 8386 </ws-ht:part> 8387 </ws-ht:output> 8388 </xdw:taskData> 8389 <xdw:taskEventHistory> 8390 <xdw:taskEvent> 8391 <xdw:id>1</xdw:id> 8392 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 8393 <xdw:identifier>task_3#1</xdw:identifier> 8394 <xdw:eventType>create</xdw:eventType> 8395 <xdw:status>READY</xdw:status> 8396 <xdw:eventData xsi:nil="true"/> 8397 </xdw:taskEvent> 8398 </xdw:taskEventHistory> 8399 </xdw:XDWTask> 8400 </xdw:TaskList> 8401 </xdw:XDW.WorkflowDocument> 8402 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 8403 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 8404 <rlustypes:SecurityContext> 8405 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 8406 </rlustypes:SecurityContext> 8407 <rlustypes:CBRContext> 8408 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 8409 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 8410 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 8411 </rlustypes:CBRContext> 8412 </rlustypes:RLUSPutRequestSrcStruct> 8413 <writeCommandEnum>UPDATE</writeCommandEnum> 8414 </PutRequest> 8415 </soap:Body> 8416 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 8417 <soapenv:Header/> 8418 <soapenv:Body> 8419 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 8420 <rlustypes:success>true</rlustypes:success> 8421 <rlustypes:message/> 8422 </rlustypes:RLUSStatusCode> 8423 </soapenv:Body> 8424 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 8425 <soap:Header/> 8426 <soap:Body> 8427 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 8428 <rlustypes:searchByCriteria> 8429 <rlustypes:FilterCriteria> 8430 <rlustypes:Expression> 8431 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 8432 <rlusexp:Operator type="EqualTo"/> 8433 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 8434 </rlustypes:Expression> 8435 </rlustypes:FilterCriteria> 8436 <rlustypes:SearchAttributes> 8437 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 8438 </rlustypes:SearchAttributes> 8439 </rlustypes:searchByCriteria> 8440 </rlustypes:RLUSSearchStruct> 8441 </soap:Body> 8442 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="15716"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="15716"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 8443 <soapenv:Header/> 8444 <soapenv:Body> 8445 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 8446 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 8447 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="f39f6fb9-bdbd-449b-925b-5dcaa7efb3bd"/> 8448 <xdw:effectiveTime value="20140613172022+0200"/> 8449 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 8450 <xdw:patient> 8451 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 8452 </xdw:patient> 8453 <xdw:author> 8454 <xdw:assignedAuthor> 8455 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 8456 <hl7v3:assignedPerson/> 8457 </xdw:assignedAuthor> 8458 </xdw:author> 8459 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 8460 <xdw:workflowDocumentSequenceNumber>12</xdw:workflowDocumentSequenceNumber> 8461 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 8462 <xdw:workflowStatusHistory> 8463 <xdw:documentEvent> 8464 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 8465 <xdw:eventType>complete</xdw:eventType> 8466 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 8467 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8468 <xdw:previousStatus>OPEN</xdw:previousStatus> 8469 <xdw:actualStatus>OPEN</xdw:actualStatus> 8470 </xdw:documentEvent> 8471 <xdw:documentEvent> 8472 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 8473 <xdw:eventType>create</xdw:eventType> 8474 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 8475 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8476 <xdw:previousStatus>OPEN</xdw:previousStatus> 8477 <xdw:actualStatus>OPEN</xdw:actualStatus> 8478 </xdw:documentEvent> 8479 <xdw:documentEvent> 8480 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 8481 <xdw:eventType>create</xdw:eventType> 8482 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 8483 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8484 <xdw:previousStatus>OPEN</xdw:previousStatus> 8485 <xdw:actualStatus>OPEN</xdw:actualStatus> 8486 </xdw:documentEvent> 8487 <xdw:documentEvent> 8488 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 8489 <xdw:eventType>create</xdw:eventType> 8490 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 8491 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8492 <xdw:previousStatus>OPEN</xdw:previousStatus> 8493 <xdw:actualStatus>OPEN</xdw:actualStatus> 8494 </xdw:documentEvent> 8495 <xdw:documentEvent> 8496 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 8497 <xdw:eventType>create</xdw:eventType> 8498 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 8499 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8500 <xdw:previousStatus>OPEN</xdw:previousStatus> 8501 <xdw:actualStatus>OPEN</xdw:actualStatus> 8502 </xdw:documentEvent> 8503 </xdw:workflowStatusHistory> 8504 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 8505 <xdw:TaskList> 8506 <xdw:XDWTask> 8507 <xdw:taskData> 8508 <ws-ht:taskDetails> 8509 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 8510 <ws-ht:taskType>Requested</ws-ht:taskType> 8511 <ws-ht:name>xdw.creation</ws-ht:name> 8512 <ws-ht:status>COMPLETED</ws-ht:status> 8513 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8514 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 8515 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8516 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 8517 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8518 </ws-ht:taskDetails> 8519 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 8520 <ws-ht:input/> 8521 <ws-ht:output/> 8522 </xdw:taskData> 8523 <xdw:taskEventHistory> 8524 <xdw:taskEvent> 8525 <xdw:id>1</xdw:id> 8526 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 8527 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 8528 <xdw:eventType>complete</xdw:eventType> 8529 <xdw:status>COMPLETED</xdw:status> 8530 <xdw:eventData xsi:nil="true"/> 8531 </xdw:taskEvent> 8532 </xdw:taskEventHistory> 8533 </xdw:XDWTask> 8534 <xdw:XDWTask> 8535 <xdw:taskData> 8536 <ws-ht:taskDetails> 8537 <ws-ht:id>task_0</ws-ht:id> 8538 <ws-ht:taskType>ttype</ws-ht:taskType> 8539 <ws-ht:name>tname_0</ws-ht:name> 8540 <ws-ht:status>COMPLETED</ws-ht:status> 8541 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8542 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 8543 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8544 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 8545 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8546 </ws-ht:taskDetails> 8547 <ws-ht:description>Undocumented task</ws-ht:description> 8548 <ws-ht:input/> 8549 <ws-ht:output> 8550 <ws-ht:part name="documentReference"> 8551 <ws-ht:attachment> 8552 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 8553 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 8554 <ws-ht:accessType>RLUS</ws-ht:accessType> 8555 <ws-ht:contentType>application/xml</ws-ht:contentType> 8556 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8557 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 8558 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8559 </ws-ht:attachment> 8560 </ws-ht:part> 8561 </ws-ht:output> 8562 </xdw:taskData> 8563 <xdw:taskEventHistory> 8564 <xdw:taskEvent> 8565 <xdw:id>1</xdw:id> 8566 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 8567 <xdw:identifier>task_0#1</xdw:identifier> 8568 <xdw:eventType>create</xdw:eventType> 8569 <xdw:status>READY</xdw:status> 8570 <xdw:eventData xsi:nil="true"/> 8571 </xdw:taskEvent> 8572 <xdw:taskEvent> 8573 <xdw:id>2</xdw:id> 8574 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 8575 <xdw:identifier>task_0#2</xdw:identifier> 8576 <xdw:eventType>complete</xdw:eventType> 8577 <xdw:status>COMPLETED</xdw:status> 8578 <xdw:eventData xsi:nil="true"/> 8579 </xdw:taskEvent> 8580 </xdw:taskEventHistory> 8581 </xdw:XDWTask> 8582 <xdw:XDWTask> 8583 <xdw:taskData> 8584 <ws-ht:taskDetails> 8585 <ws-ht:id>task_1</ws-ht:id> 8586 <ws-ht:taskType>ttype</ws-ht:taskType> 8587 <ws-ht:name>tname_1</ws-ht:name> 8588 <ws-ht:status>COMPLETED</ws-ht:status> 8589 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8590 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 8591 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8592 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 8593 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8594 </ws-ht:taskDetails> 8595 <ws-ht:description>Undocumented task</ws-ht:description> 8596 <ws-ht:input/> 8597 <ws-ht:output> 8598 <ws-ht:part name="documentReference"> 8599 <ws-ht:attachment> 8600 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 8601 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 8602 <ws-ht:accessType>RLUS</ws-ht:accessType> 8603 <ws-ht:contentType>application/xml</ws-ht:contentType> 8604 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8605 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 8606 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8607 </ws-ht:attachment> 8608 </ws-ht:part> 8609 </ws-ht:output> 8610 </xdw:taskData> 8611 <xdw:taskEventHistory> 8612 <xdw:taskEvent> 8613 <xdw:id>1</xdw:id> 8614 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 8615 <xdw:identifier>task_1#1</xdw:identifier> 8616 <xdw:eventType>create</xdw:eventType> 8617 <xdw:status>READY</xdw:status> 8618 <xdw:eventData xsi:nil="true"/> 8619 </xdw:taskEvent> 8620 <xdw:taskEvent> 8621 <xdw:id>2</xdw:id> 8622 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 8623 <xdw:identifier>task_1#2</xdw:identifier> 8624 <xdw:eventType>complete</xdw:eventType> 8625 <xdw:status>COMPLETED</xdw:status> 8626 <xdw:eventData xsi:nil="true"/> 8627 </xdw:taskEvent> 8628 </xdw:taskEventHistory> 8629 </xdw:XDWTask> 8630 <xdw:XDWTask> 8631 <xdw:taskData> 8632 <ws-ht:taskDetails> 8633 <ws-ht:id>task_2</ws-ht:id> 8634 <ws-ht:taskType>ttype</ws-ht:taskType> 8635 <ws-ht:name>tname_2</ws-ht:name> 8636 <ws-ht:status>COMPLETED</ws-ht:status> 8637 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8638 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 8639 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8640 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 8641 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8642 </ws-ht:taskDetails> 8643 <ws-ht:description>Undocumented task</ws-ht:description> 8644 <ws-ht:input/> 8645 <ws-ht:output> 8646 <ws-ht:part name="documentReference"> 8647 <ws-ht:attachment> 8648 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 8649 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 8650 <ws-ht:accessType>RLUS</ws-ht:accessType> 8651 <ws-ht:contentType>application/xml</ws-ht:contentType> 8652 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8653 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 8654 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8655 </ws-ht:attachment> 8656 </ws-ht:part> 8657 </ws-ht:output> 8658 </xdw:taskData> 8659 <xdw:taskEventHistory> 8660 <xdw:taskEvent> 8661 <xdw:id>1</xdw:id> 8662 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 8663 <xdw:identifier>task_2#1</xdw:identifier> 8664 <xdw:eventType>create</xdw:eventType> 8665 <xdw:status>READY</xdw:status> 8666 <xdw:eventData xsi:nil="true"/> 8667 </xdw:taskEvent> 8668 <xdw:taskEvent> 8669 <xdw:id>2</xdw:id> 8670 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 8671 <xdw:identifier>task_2#2</xdw:identifier> 8672 <xdw:eventType>complete</xdw:eventType> 8673 <xdw:status>COMPLETED</xdw:status> 8674 <xdw:eventData xsi:nil="true"/> 8675 </xdw:taskEvent> 8676 </xdw:taskEventHistory> 8677 </xdw:XDWTask> 8678 <xdw:XDWTask> 8679 <xdw:taskData> 8680 <ws-ht:taskDetails> 8681 <ws-ht:id>task_3</ws-ht:id> 8682 <ws-ht:taskType>ttype</ws-ht:taskType> 8683 <ws-ht:name>tname_3</ws-ht:name> 8684 <ws-ht:status>READY</ws-ht:status> 8685 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8686 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 8687 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8688 <ws-ht:lastModifiedTime>2014-06-13T17:20:18.029+02:00</ws-ht:lastModifiedTime> 8689 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8690 </ws-ht:taskDetails> 8691 <ws-ht:description>Undocumented task</ws-ht:description> 8692 <ws-ht:input/> 8693 <ws-ht:output> 8694 <ws-ht:part name="documentReference"> 8695 <ws-ht:attachment> 8696 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 8697 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 8698 <ws-ht:accessType>RLUS</ws-ht:accessType> 8699 <ws-ht:contentType>application/xml</ws-ht:contentType> 8700 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8701 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 8702 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8703 </ws-ht:attachment> 8704 </ws-ht:part> 8705 </ws-ht:output> 8706 </xdw:taskData> 8707 <xdw:taskEventHistory> 8708 <xdw:taskEvent> 8709 <xdw:id>1</xdw:id> 8710 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 8711 <xdw:identifier>task_3#1</xdw:identifier> 8712 <xdw:eventType>create</xdw:eventType> 8713 <xdw:status>READY</xdw:status> 8714 <xdw:eventData xsi:nil="true"/> 8715 </xdw:taskEvent> 8716 </xdw:taskEventHistory> 8717 </xdw:XDWTask> 8718 </xdw:TaskList> 8719 </xdw:XDW.WorkflowDocument> 8720 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 8721 <rlustypes:success>true</rlustypes:success> 8722 <rlustypes:message>One record fetched</rlustypes:message> 8723 </rlustypes:RLUSStatusCode> 8724 </GetResponse> 8725 </soapenv:Body> 8726 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 8727 <soap:Header/> 8728 <soap:Body> 8729 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 8730 <rlustypes:searchByCriteria> 8731 <rlustypes:FilterCriteria> 8732 <rlustypes:Expression> 8733 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 8734 <rlusexp:Operator type="EqualTo"/> 8735 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 8736 </rlustypes:Expression> 8737 </rlustypes:FilterCriteria> 8738 <rlustypes:SearchAttributes> 8739 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 8740 </rlustypes:SearchAttributes> 8741 </rlustypes:searchByCriteria> 8742 </rlustypes:RLUSSearchStruct> 8743 </soap:Body> 8744 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="15716"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="15716"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 8745 <soapenv:Header/> 8746 <soapenv:Body> 8747 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 8748 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 8749 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="f39f6fb9-bdbd-449b-925b-5dcaa7efb3bd"/> 8750 <xdw:effectiveTime value="20140613172022+0200"/> 8751 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 8752 <xdw:patient> 8753 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 8754 </xdw:patient> 8755 <xdw:author> 8756 <xdw:assignedAuthor> 8757 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 8758 <hl7v3:assignedPerson/> 8759 </xdw:assignedAuthor> 8760 </xdw:author> 8761 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 8762 <xdw:workflowDocumentSequenceNumber>12</xdw:workflowDocumentSequenceNumber> 8763 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 8764 <xdw:workflowStatusHistory> 8765 <xdw:documentEvent> 8766 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 8767 <xdw:eventType>complete</xdw:eventType> 8768 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 8769 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8770 <xdw:previousStatus>OPEN</xdw:previousStatus> 8771 <xdw:actualStatus>OPEN</xdw:actualStatus> 8772 </xdw:documentEvent> 8773 <xdw:documentEvent> 8774 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 8775 <xdw:eventType>create</xdw:eventType> 8776 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 8777 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8778 <xdw:previousStatus>OPEN</xdw:previousStatus> 8779 <xdw:actualStatus>OPEN</xdw:actualStatus> 8780 </xdw:documentEvent> 8781 <xdw:documentEvent> 8782 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 8783 <xdw:eventType>create</xdw:eventType> 8784 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 8785 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8786 <xdw:previousStatus>OPEN</xdw:previousStatus> 8787 <xdw:actualStatus>OPEN</xdw:actualStatus> 8788 </xdw:documentEvent> 8789 <xdw:documentEvent> 8790 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 8791 <xdw:eventType>create</xdw:eventType> 8792 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 8793 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8794 <xdw:previousStatus>OPEN</xdw:previousStatus> 8795 <xdw:actualStatus>OPEN</xdw:actualStatus> 8796 </xdw:documentEvent> 8797 <xdw:documentEvent> 8798 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 8799 <xdw:eventType>create</xdw:eventType> 8800 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 8801 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 8802 <xdw:previousStatus>OPEN</xdw:previousStatus> 8803 <xdw:actualStatus>OPEN</xdw:actualStatus> 8804 </xdw:documentEvent> 8805 </xdw:workflowStatusHistory> 8806 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 8807 <xdw:TaskList> 8808 <xdw:XDWTask> 8809 <xdw:taskData> 8810 <ws-ht:taskDetails> 8811 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 8812 <ws-ht:taskType>Requested</ws-ht:taskType> 8813 <ws-ht:name>xdw.creation</ws-ht:name> 8814 <ws-ht:status>COMPLETED</ws-ht:status> 8815 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8816 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 8817 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8818 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 8819 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8820 </ws-ht:taskDetails> 8821 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 8822 <ws-ht:input/> 8823 <ws-ht:output/> 8824 </xdw:taskData> 8825 <xdw:taskEventHistory> 8826 <xdw:taskEvent> 8827 <xdw:id>1</xdw:id> 8828 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 8829 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 8830 <xdw:eventType>complete</xdw:eventType> 8831 <xdw:status>COMPLETED</xdw:status> 8832 <xdw:eventData xsi:nil="true"/> 8833 </xdw:taskEvent> 8834 </xdw:taskEventHistory> 8835 </xdw:XDWTask> 8836 <xdw:XDWTask> 8837 <xdw:taskData> 8838 <ws-ht:taskDetails> 8839 <ws-ht:id>task_0</ws-ht:id> 8840 <ws-ht:taskType>ttype</ws-ht:taskType> 8841 <ws-ht:name>tname_0</ws-ht:name> 8842 <ws-ht:status>COMPLETED</ws-ht:status> 8843 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8844 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 8845 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8846 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 8847 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8848 </ws-ht:taskDetails> 8849 <ws-ht:description>Undocumented task</ws-ht:description> 8850 <ws-ht:input/> 8851 <ws-ht:output> 8852 <ws-ht:part name="documentReference"> 8853 <ws-ht:attachment> 8854 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 8855 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 8856 <ws-ht:accessType>RLUS</ws-ht:accessType> 8857 <ws-ht:contentType>application/xml</ws-ht:contentType> 8858 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8859 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 8860 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8861 </ws-ht:attachment> 8862 </ws-ht:part> 8863 </ws-ht:output> 8864 </xdw:taskData> 8865 <xdw:taskEventHistory> 8866 <xdw:taskEvent> 8867 <xdw:id>1</xdw:id> 8868 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 8869 <xdw:identifier>task_0#1</xdw:identifier> 8870 <xdw:eventType>create</xdw:eventType> 8871 <xdw:status>READY</xdw:status> 8872 <xdw:eventData xsi:nil="true"/> 8873 </xdw:taskEvent> 8874 <xdw:taskEvent> 8875 <xdw:id>2</xdw:id> 8876 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 8877 <xdw:identifier>task_0#2</xdw:identifier> 8878 <xdw:eventType>complete</xdw:eventType> 8879 <xdw:status>COMPLETED</xdw:status> 8880 <xdw:eventData xsi:nil="true"/> 8881 </xdw:taskEvent> 8882 </xdw:taskEventHistory> 8883 </xdw:XDWTask> 8884 <xdw:XDWTask> 8885 <xdw:taskData> 8886 <ws-ht:taskDetails> 8887 <ws-ht:id>task_1</ws-ht:id> 8888 <ws-ht:taskType>ttype</ws-ht:taskType> 8889 <ws-ht:name>tname_1</ws-ht:name> 8890 <ws-ht:status>COMPLETED</ws-ht:status> 8891 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8892 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 8893 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8894 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 8895 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8896 </ws-ht:taskDetails> 8897 <ws-ht:description>Undocumented task</ws-ht:description> 8898 <ws-ht:input/> 8899 <ws-ht:output> 8900 <ws-ht:part name="documentReference"> 8901 <ws-ht:attachment> 8902 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 8903 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 8904 <ws-ht:accessType>RLUS</ws-ht:accessType> 8905 <ws-ht:contentType>application/xml</ws-ht:contentType> 8906 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8907 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 8908 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8909 </ws-ht:attachment> 8910 </ws-ht:part> 8911 </ws-ht:output> 8912 </xdw:taskData> 8913 <xdw:taskEventHistory> 8914 <xdw:taskEvent> 8915 <xdw:id>1</xdw:id> 8916 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 8917 <xdw:identifier>task_1#1</xdw:identifier> 8918 <xdw:eventType>create</xdw:eventType> 8919 <xdw:status>READY</xdw:status> 8920 <xdw:eventData xsi:nil="true"/> 8921 </xdw:taskEvent> 8922 <xdw:taskEvent> 8923 <xdw:id>2</xdw:id> 8924 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 8925 <xdw:identifier>task_1#2</xdw:identifier> 8926 <xdw:eventType>complete</xdw:eventType> 8927 <xdw:status>COMPLETED</xdw:status> 8928 <xdw:eventData xsi:nil="true"/> 8929 </xdw:taskEvent> 8930 </xdw:taskEventHistory> 8931 </xdw:XDWTask> 8932 <xdw:XDWTask> 8933 <xdw:taskData> 8934 <ws-ht:taskDetails> 8935 <ws-ht:id>task_2</ws-ht:id> 8936 <ws-ht:taskType>ttype</ws-ht:taskType> 8937 <ws-ht:name>tname_2</ws-ht:name> 8938 <ws-ht:status>COMPLETED</ws-ht:status> 8939 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8940 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 8941 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8942 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 8943 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8944 </ws-ht:taskDetails> 8945 <ws-ht:description>Undocumented task</ws-ht:description> 8946 <ws-ht:input/> 8947 <ws-ht:output> 8948 <ws-ht:part name="documentReference"> 8949 <ws-ht:attachment> 8950 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 8951 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 8952 <ws-ht:accessType>RLUS</ws-ht:accessType> 8953 <ws-ht:contentType>application/xml</ws-ht:contentType> 8954 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 8955 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 8956 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 8957 </ws-ht:attachment> 8958 </ws-ht:part> 8959 </ws-ht:output> 8960 </xdw:taskData> 8961 <xdw:taskEventHistory> 8962 <xdw:taskEvent> 8963 <xdw:id>1</xdw:id> 8964 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 8965 <xdw:identifier>task_2#1</xdw:identifier> 8966 <xdw:eventType>create</xdw:eventType> 8967 <xdw:status>READY</xdw:status> 8968 <xdw:eventData xsi:nil="true"/> 8969 </xdw:taskEvent> 8970 <xdw:taskEvent> 8971 <xdw:id>2</xdw:id> 8972 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 8973 <xdw:identifier>task_2#2</xdw:identifier> 8974 <xdw:eventType>complete</xdw:eventType> 8975 <xdw:status>COMPLETED</xdw:status> 8976 <xdw:eventData xsi:nil="true"/> 8977 </xdw:taskEvent> 8978 </xdw:taskEventHistory> 8979 </xdw:XDWTask> 8980 <xdw:XDWTask> 8981 <xdw:taskData> 8982 <ws-ht:taskDetails> 8983 <ws-ht:id>task_3</ws-ht:id> 8984 <ws-ht:taskType>ttype</ws-ht:taskType> 8985 <ws-ht:name>tname_3</ws-ht:name> 8986 <ws-ht:status>READY</ws-ht:status> 8987 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 8988 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 8989 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 8990 <ws-ht:lastModifiedTime>2014-06-13T17:20:18.029+02:00</ws-ht:lastModifiedTime> 8991 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 8992 </ws-ht:taskDetails> 8993 <ws-ht:description>Undocumented task</ws-ht:description> 8994 <ws-ht:input/> 8995 <ws-ht:output> 8996 <ws-ht:part name="documentReference"> 8997 <ws-ht:attachment> 8998 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 8999 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 9000 <ws-ht:accessType>RLUS</ws-ht:accessType> 9001 <ws-ht:contentType>application/xml</ws-ht:contentType> 9002 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9003 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 9004 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9005 </ws-ht:attachment> 9006 </ws-ht:part> 9007 </ws-ht:output> 9008 </xdw:taskData> 9009 <xdw:taskEventHistory> 9010 <xdw:taskEvent> 9011 <xdw:id>1</xdw:id> 9012 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 9013 <xdw:identifier>task_3#1</xdw:identifier> 9014 <xdw:eventType>create</xdw:eventType> 9015 <xdw:status>READY</xdw:status> 9016 <xdw:eventData xsi:nil="true"/> 9017 </xdw:taskEvent> 9018 </xdw:taskEventHistory> 9019 </xdw:XDWTask> 9020 </xdw:TaskList> 9021 </xdw:XDW.WorkflowDocument> 9022 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 9023 <rlustypes:success>true</rlustypes:success> 9024 <rlustypes:message>One record fetched</rlustypes:message> 9025 </rlustypes:RLUSStatusCode> 9026 </GetResponse> 9027 </soapenv:Body> 9028 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="16544"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="16544"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 9029 <soap:Header/> 9030 <soap:Body> 9031 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 9032 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 9033 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="39a77cfe-df91-43cc-bd57-0452ee247662"/> 9034 <xdw:effectiveTime value="20140613172023+0200"/> 9035 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 9036 <xdw:patient> 9037 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 9038 </xdw:patient> 9039 <xdw:author> 9040 <xdw:assignedAuthor> 9041 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 9042 <hl7v3:assignedPerson/> 9043 </xdw:assignedAuthor> 9044 </xdw:author> 9045 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 9046 <xdw:workflowDocumentSequenceNumber>13</xdw:workflowDocumentSequenceNumber> 9047 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 9048 <xdw:workflowStatusHistory> 9049 <xdw:documentEvent> 9050 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 9051 <xdw:eventType>complete</xdw:eventType> 9052 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 9053 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9054 <xdw:previousStatus>OPEN</xdw:previousStatus> 9055 <xdw:actualStatus>OPEN</xdw:actualStatus> 9056 </xdw:documentEvent> 9057 <xdw:documentEvent> 9058 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 9059 <xdw:eventType>create</xdw:eventType> 9060 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 9061 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9062 <xdw:previousStatus>OPEN</xdw:previousStatus> 9063 <xdw:actualStatus>OPEN</xdw:actualStatus> 9064 </xdw:documentEvent> 9065 <xdw:documentEvent> 9066 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 9067 <xdw:eventType>create</xdw:eventType> 9068 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 9069 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9070 <xdw:previousStatus>OPEN</xdw:previousStatus> 9071 <xdw:actualStatus>OPEN</xdw:actualStatus> 9072 </xdw:documentEvent> 9073 <xdw:documentEvent> 9074 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 9075 <xdw:eventType>create</xdw:eventType> 9076 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 9077 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9078 <xdw:previousStatus>OPEN</xdw:previousStatus> 9079 <xdw:actualStatus>OPEN</xdw:actualStatus> 9080 </xdw:documentEvent> 9081 <xdw:documentEvent> 9082 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 9083 <xdw:eventType>create</xdw:eventType> 9084 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 9085 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9086 <xdw:previousStatus>OPEN</xdw:previousStatus> 9087 <xdw:actualStatus>OPEN</xdw:actualStatus> 9088 </xdw:documentEvent> 9089 </xdw:workflowStatusHistory> 9090 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 9091 <xdw:TaskList> 9092 <xdw:XDWTask> 9093 <xdw:taskData> 9094 <ws-ht:taskDetails> 9095 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 9096 <ws-ht:taskType>Requested</ws-ht:taskType> 9097 <ws-ht:name>xdw.creation</ws-ht:name> 9098 <ws-ht:status>COMPLETED</ws-ht:status> 9099 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9100 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 9101 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9102 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 9103 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9104 </ws-ht:taskDetails> 9105 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 9106 <ws-ht:input/> 9107 <ws-ht:output/> 9108 </xdw:taskData> 9109 <xdw:taskEventHistory> 9110 <xdw:taskEvent> 9111 <xdw:id>1</xdw:id> 9112 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 9113 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 9114 <xdw:eventType>complete</xdw:eventType> 9115 <xdw:status>COMPLETED</xdw:status> 9116 <xdw:eventData xsi:nil="true"/> 9117 </xdw:taskEvent> 9118 </xdw:taskEventHistory> 9119 </xdw:XDWTask> 9120 <xdw:XDWTask> 9121 <xdw:taskData> 9122 <ws-ht:taskDetails> 9123 <ws-ht:id>task_0</ws-ht:id> 9124 <ws-ht:taskType>ttype</ws-ht:taskType> 9125 <ws-ht:name>tname_0</ws-ht:name> 9126 <ws-ht:status>COMPLETED</ws-ht:status> 9127 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9128 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 9129 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9130 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 9131 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9132 </ws-ht:taskDetails> 9133 <ws-ht:description>Undocumented task</ws-ht:description> 9134 <ws-ht:input/> 9135 <ws-ht:output> 9136 <ws-ht:part name="documentReference"> 9137 <ws-ht:attachment> 9138 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 9139 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 9140 <ws-ht:accessType>RLUS</ws-ht:accessType> 9141 <ws-ht:contentType>application/xml</ws-ht:contentType> 9142 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9143 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 9144 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9145 </ws-ht:attachment> 9146 </ws-ht:part> 9147 </ws-ht:output> 9148 </xdw:taskData> 9149 <xdw:taskEventHistory> 9150 <xdw:taskEvent> 9151 <xdw:id>1</xdw:id> 9152 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 9153 <xdw:identifier>task_0#1</xdw:identifier> 9154 <xdw:eventType>create</xdw:eventType> 9155 <xdw:status>READY</xdw:status> 9156 <xdw:eventData xsi:nil="true"/> 9157 </xdw:taskEvent> 9158 <xdw:taskEvent> 9159 <xdw:id>2</xdw:id> 9160 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 9161 <xdw:identifier>task_0#2</xdw:identifier> 9162 <xdw:eventType>complete</xdw:eventType> 9163 <xdw:status>COMPLETED</xdw:status> 9164 <xdw:eventData xsi:nil="true"/> 9165 </xdw:taskEvent> 9166 </xdw:taskEventHistory> 9167 </xdw:XDWTask> 9168 <xdw:XDWTask> 9169 <xdw:taskData> 9170 <ws-ht:taskDetails> 9171 <ws-ht:id>task_1</ws-ht:id> 9172 <ws-ht:taskType>ttype</ws-ht:taskType> 9173 <ws-ht:name>tname_1</ws-ht:name> 9174 <ws-ht:status>COMPLETED</ws-ht:status> 9175 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9176 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 9177 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9178 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 9179 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9180 </ws-ht:taskDetails> 9181 <ws-ht:description>Undocumented task</ws-ht:description> 9182 <ws-ht:input/> 9183 <ws-ht:output> 9184 <ws-ht:part name="documentReference"> 9185 <ws-ht:attachment> 9186 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 9187 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 9188 <ws-ht:accessType>RLUS</ws-ht:accessType> 9189 <ws-ht:contentType>application/xml</ws-ht:contentType> 9190 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9191 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 9192 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9193 </ws-ht:attachment> 9194 </ws-ht:part> 9195 </ws-ht:output> 9196 </xdw:taskData> 9197 <xdw:taskEventHistory> 9198 <xdw:taskEvent> 9199 <xdw:id>1</xdw:id> 9200 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 9201 <xdw:identifier>task_1#1</xdw:identifier> 9202 <xdw:eventType>create</xdw:eventType> 9203 <xdw:status>READY</xdw:status> 9204 <xdw:eventData xsi:nil="true"/> 9205 </xdw:taskEvent> 9206 <xdw:taskEvent> 9207 <xdw:id>2</xdw:id> 9208 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 9209 <xdw:identifier>task_1#2</xdw:identifier> 9210 <xdw:eventType>complete</xdw:eventType> 9211 <xdw:status>COMPLETED</xdw:status> 9212 <xdw:eventData xsi:nil="true"/> 9213 </xdw:taskEvent> 9214 </xdw:taskEventHistory> 9215 </xdw:XDWTask> 9216 <xdw:XDWTask> 9217 <xdw:taskData> 9218 <ws-ht:taskDetails> 9219 <ws-ht:id>task_2</ws-ht:id> 9220 <ws-ht:taskType>ttype</ws-ht:taskType> 9221 <ws-ht:name>tname_2</ws-ht:name> 9222 <ws-ht:status>COMPLETED</ws-ht:status> 9223 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9224 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 9225 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9226 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 9227 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9228 </ws-ht:taskDetails> 9229 <ws-ht:description>Undocumented task</ws-ht:description> 9230 <ws-ht:input/> 9231 <ws-ht:output> 9232 <ws-ht:part name="documentReference"> 9233 <ws-ht:attachment> 9234 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 9235 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 9236 <ws-ht:accessType>RLUS</ws-ht:accessType> 9237 <ws-ht:contentType>application/xml</ws-ht:contentType> 9238 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9239 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 9240 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9241 </ws-ht:attachment> 9242 </ws-ht:part> 9243 </ws-ht:output> 9244 </xdw:taskData> 9245 <xdw:taskEventHistory> 9246 <xdw:taskEvent> 9247 <xdw:id>1</xdw:id> 9248 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 9249 <xdw:identifier>task_2#1</xdw:identifier> 9250 <xdw:eventType>create</xdw:eventType> 9251 <xdw:status>READY</xdw:status> 9252 <xdw:eventData xsi:nil="true"/> 9253 </xdw:taskEvent> 9254 <xdw:taskEvent> 9255 <xdw:id>2</xdw:id> 9256 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 9257 <xdw:identifier>task_2#2</xdw:identifier> 9258 <xdw:eventType>complete</xdw:eventType> 9259 <xdw:status>COMPLETED</xdw:status> 9260 <xdw:eventData xsi:nil="true"/> 9261 </xdw:taskEvent> 9262 </xdw:taskEventHistory> 9263 </xdw:XDWTask> 9264 <xdw:XDWTask> 9265 <xdw:taskData> 9266 <ws-ht:taskDetails> 9267 <ws-ht:id>task_3</ws-ht:id> 9268 <ws-ht:taskType>ttype</ws-ht:taskType> 9269 <ws-ht:name>tname_3</ws-ht:name> 9270 <ws-ht:status>COMPLETED</ws-ht:status> 9271 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9272 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 9273 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9274 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 9275 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9276 </ws-ht:taskDetails> 9277 <ws-ht:description>Undocumented task</ws-ht:description> 9278 <ws-ht:input/> 9279 <ws-ht:output> 9280 <ws-ht:part name="documentReference"> 9281 <ws-ht:attachment> 9282 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 9283 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 9284 <ws-ht:accessType>RLUS</ws-ht:accessType> 9285 <ws-ht:contentType>application/xml</ws-ht:contentType> 9286 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9287 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 9288 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9289 </ws-ht:attachment> 9290 </ws-ht:part> 9291 </ws-ht:output> 9292 </xdw:taskData> 9293 <xdw:taskEventHistory> 9294 <xdw:taskEvent> 9295 <xdw:id>1</xdw:id> 9296 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 9297 <xdw:identifier>task_3#1</xdw:identifier> 9298 <xdw:eventType>create</xdw:eventType> 9299 <xdw:status>READY</xdw:status> 9300 <xdw:eventData xsi:nil="true"/> 9301 </xdw:taskEvent> 9302 <xdw:taskEvent> 9303 <xdw:id>2</xdw:id> 9304 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 9305 <xdw:identifier>task_3#2</xdw:identifier> 9306 <xdw:eventType>complete</xdw:eventType> 9307 <xdw:status>COMPLETED</xdw:status> 9308 <xdw:eventData xsi:nil="true"/> 9309 </xdw:taskEvent> 9310 </xdw:taskEventHistory> 9311 </xdw:XDWTask> 9312 </xdw:TaskList> 9313 </xdw:XDW.WorkflowDocument> 9314 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 9315 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 9316 <rlustypes:SecurityContext> 9317 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 9318 </rlustypes:SecurityContext> 9319 <rlustypes:CBRContext> 9320 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 9321 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 9322 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 9323 </rlustypes:CBRContext> 9324 </rlustypes:RLUSPutRequestSrcStruct> 9325 <writeCommandEnum>UPDATE</writeCommandEnum> 9326 </PutRequest> 9327 </soap:Body> 9328 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 9329 <soapenv:Header/> 9330 <soapenv:Body> 9331 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 9332 <rlustypes:success>true</rlustypes:success> 9333 <rlustypes:message/> 9334 </rlustypes:RLUSStatusCode> 9335 </soapenv:Body> 9336 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 9337 <soap:Header/> 9338 <soap:Body> 9339 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 9340 <rlustypes:searchByCriteria> 9341 <rlustypes:FilterCriteria> 9342 <rlustypes:Expression> 9343 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 9344 <rlusexp:Operator type="EqualTo"/> 9345 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 9346 </rlustypes:Expression> 9347 </rlustypes:FilterCriteria> 9348 <rlustypes:SearchAttributes> 9349 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 9350 </rlustypes:SearchAttributes> 9351 </rlustypes:searchByCriteria> 9352 </rlustypes:RLUSSearchStruct> 9353 </soap:Body> 9354 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="16106"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="16106"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 9355 <soapenv:Header/> 9356 <soapenv:Body> 9357 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 9358 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 9359 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="39a77cfe-df91-43cc-bd57-0452ee247662"/> 9360 <xdw:effectiveTime value="20140613172023+0200"/> 9361 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 9362 <xdw:patient> 9363 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 9364 </xdw:patient> 9365 <xdw:author> 9366 <xdw:assignedAuthor> 9367 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 9368 <hl7v3:assignedPerson/> 9369 </xdw:assignedAuthor> 9370 </xdw:author> 9371 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 9372 <xdw:workflowDocumentSequenceNumber>13</xdw:workflowDocumentSequenceNumber> 9373 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 9374 <xdw:workflowStatusHistory> 9375 <xdw:documentEvent> 9376 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 9377 <xdw:eventType>complete</xdw:eventType> 9378 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 9379 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9380 <xdw:previousStatus>OPEN</xdw:previousStatus> 9381 <xdw:actualStatus>OPEN</xdw:actualStatus> 9382 </xdw:documentEvent> 9383 <xdw:documentEvent> 9384 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 9385 <xdw:eventType>create</xdw:eventType> 9386 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 9387 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9388 <xdw:previousStatus>OPEN</xdw:previousStatus> 9389 <xdw:actualStatus>OPEN</xdw:actualStatus> 9390 </xdw:documentEvent> 9391 <xdw:documentEvent> 9392 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 9393 <xdw:eventType>create</xdw:eventType> 9394 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 9395 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9396 <xdw:previousStatus>OPEN</xdw:previousStatus> 9397 <xdw:actualStatus>OPEN</xdw:actualStatus> 9398 </xdw:documentEvent> 9399 <xdw:documentEvent> 9400 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 9401 <xdw:eventType>create</xdw:eventType> 9402 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 9403 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9404 <xdw:previousStatus>OPEN</xdw:previousStatus> 9405 <xdw:actualStatus>OPEN</xdw:actualStatus> 9406 </xdw:documentEvent> 9407 <xdw:documentEvent> 9408 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 9409 <xdw:eventType>create</xdw:eventType> 9410 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 9411 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9412 <xdw:previousStatus>OPEN</xdw:previousStatus> 9413 <xdw:actualStatus>OPEN</xdw:actualStatus> 9414 </xdw:documentEvent> 9415 </xdw:workflowStatusHistory> 9416 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 9417 <xdw:TaskList> 9418 <xdw:XDWTask> 9419 <xdw:taskData> 9420 <ws-ht:taskDetails> 9421 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 9422 <ws-ht:taskType>Requested</ws-ht:taskType> 9423 <ws-ht:name>xdw.creation</ws-ht:name> 9424 <ws-ht:status>COMPLETED</ws-ht:status> 9425 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9426 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 9427 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9428 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 9429 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9430 </ws-ht:taskDetails> 9431 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 9432 <ws-ht:input/> 9433 <ws-ht:output/> 9434 </xdw:taskData> 9435 <xdw:taskEventHistory> 9436 <xdw:taskEvent> 9437 <xdw:id>1</xdw:id> 9438 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 9439 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 9440 <xdw:eventType>complete</xdw:eventType> 9441 <xdw:status>COMPLETED</xdw:status> 9442 <xdw:eventData xsi:nil="true"/> 9443 </xdw:taskEvent> 9444 </xdw:taskEventHistory> 9445 </xdw:XDWTask> 9446 <xdw:XDWTask> 9447 <xdw:taskData> 9448 <ws-ht:taskDetails> 9449 <ws-ht:id>task_0</ws-ht:id> 9450 <ws-ht:taskType>ttype</ws-ht:taskType> 9451 <ws-ht:name>tname_0</ws-ht:name> 9452 <ws-ht:status>COMPLETED</ws-ht:status> 9453 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9454 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 9455 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9456 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 9457 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9458 </ws-ht:taskDetails> 9459 <ws-ht:description>Undocumented task</ws-ht:description> 9460 <ws-ht:input/> 9461 <ws-ht:output> 9462 <ws-ht:part name="documentReference"> 9463 <ws-ht:attachment> 9464 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 9465 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 9466 <ws-ht:accessType>RLUS</ws-ht:accessType> 9467 <ws-ht:contentType>application/xml</ws-ht:contentType> 9468 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9469 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 9470 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9471 </ws-ht:attachment> 9472 </ws-ht:part> 9473 </ws-ht:output> 9474 </xdw:taskData> 9475 <xdw:taskEventHistory> 9476 <xdw:taskEvent> 9477 <xdw:id>1</xdw:id> 9478 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 9479 <xdw:identifier>task_0#1</xdw:identifier> 9480 <xdw:eventType>create</xdw:eventType> 9481 <xdw:status>READY</xdw:status> 9482 <xdw:eventData xsi:nil="true"/> 9483 </xdw:taskEvent> 9484 <xdw:taskEvent> 9485 <xdw:id>2</xdw:id> 9486 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 9487 <xdw:identifier>task_0#2</xdw:identifier> 9488 <xdw:eventType>complete</xdw:eventType> 9489 <xdw:status>COMPLETED</xdw:status> 9490 <xdw:eventData xsi:nil="true"/> 9491 </xdw:taskEvent> 9492 </xdw:taskEventHistory> 9493 </xdw:XDWTask> 9494 <xdw:XDWTask> 9495 <xdw:taskData> 9496 <ws-ht:taskDetails> 9497 <ws-ht:id>task_1</ws-ht:id> 9498 <ws-ht:taskType>ttype</ws-ht:taskType> 9499 <ws-ht:name>tname_1</ws-ht:name> 9500 <ws-ht:status>COMPLETED</ws-ht:status> 9501 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9502 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 9503 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9504 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 9505 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9506 </ws-ht:taskDetails> 9507 <ws-ht:description>Undocumented task</ws-ht:description> 9508 <ws-ht:input/> 9509 <ws-ht:output> 9510 <ws-ht:part name="documentReference"> 9511 <ws-ht:attachment> 9512 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 9513 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 9514 <ws-ht:accessType>RLUS</ws-ht:accessType> 9515 <ws-ht:contentType>application/xml</ws-ht:contentType> 9516 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9517 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 9518 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9519 </ws-ht:attachment> 9520 </ws-ht:part> 9521 </ws-ht:output> 9522 </xdw:taskData> 9523 <xdw:taskEventHistory> 9524 <xdw:taskEvent> 9525 <xdw:id>1</xdw:id> 9526 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 9527 <xdw:identifier>task_1#1</xdw:identifier> 9528 <xdw:eventType>create</xdw:eventType> 9529 <xdw:status>READY</xdw:status> 9530 <xdw:eventData xsi:nil="true"/> 9531 </xdw:taskEvent> 9532 <xdw:taskEvent> 9533 <xdw:id>2</xdw:id> 9534 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 9535 <xdw:identifier>task_1#2</xdw:identifier> 9536 <xdw:eventType>complete</xdw:eventType> 9537 <xdw:status>COMPLETED</xdw:status> 9538 <xdw:eventData xsi:nil="true"/> 9539 </xdw:taskEvent> 9540 </xdw:taskEventHistory> 9541 </xdw:XDWTask> 9542 <xdw:XDWTask> 9543 <xdw:taskData> 9544 <ws-ht:taskDetails> 9545 <ws-ht:id>task_2</ws-ht:id> 9546 <ws-ht:taskType>ttype</ws-ht:taskType> 9547 <ws-ht:name>tname_2</ws-ht:name> 9548 <ws-ht:status>COMPLETED</ws-ht:status> 9549 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9550 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 9551 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9552 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 9553 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9554 </ws-ht:taskDetails> 9555 <ws-ht:description>Undocumented task</ws-ht:description> 9556 <ws-ht:input/> 9557 <ws-ht:output> 9558 <ws-ht:part name="documentReference"> 9559 <ws-ht:attachment> 9560 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 9561 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 9562 <ws-ht:accessType>RLUS</ws-ht:accessType> 9563 <ws-ht:contentType>application/xml</ws-ht:contentType> 9564 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9565 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 9566 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9567 </ws-ht:attachment> 9568 </ws-ht:part> 9569 </ws-ht:output> 9570 </xdw:taskData> 9571 <xdw:taskEventHistory> 9572 <xdw:taskEvent> 9573 <xdw:id>1</xdw:id> 9574 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 9575 <xdw:identifier>task_2#1</xdw:identifier> 9576 <xdw:eventType>create</xdw:eventType> 9577 <xdw:status>READY</xdw:status> 9578 <xdw:eventData xsi:nil="true"/> 9579 </xdw:taskEvent> 9580 <xdw:taskEvent> 9581 <xdw:id>2</xdw:id> 9582 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 9583 <xdw:identifier>task_2#2</xdw:identifier> 9584 <xdw:eventType>complete</xdw:eventType> 9585 <xdw:status>COMPLETED</xdw:status> 9586 <xdw:eventData xsi:nil="true"/> 9587 </xdw:taskEvent> 9588 </xdw:taskEventHistory> 9589 </xdw:XDWTask> 9590 <xdw:XDWTask> 9591 <xdw:taskData> 9592 <ws-ht:taskDetails> 9593 <ws-ht:id>task_3</ws-ht:id> 9594 <ws-ht:taskType>ttype</ws-ht:taskType> 9595 <ws-ht:name>tname_3</ws-ht:name> 9596 <ws-ht:status>COMPLETED</ws-ht:status> 9597 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9598 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 9599 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9600 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 9601 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9602 </ws-ht:taskDetails> 9603 <ws-ht:description>Undocumented task</ws-ht:description> 9604 <ws-ht:input/> 9605 <ws-ht:output> 9606 <ws-ht:part name="documentReference"> 9607 <ws-ht:attachment> 9608 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 9609 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 9610 <ws-ht:accessType>RLUS</ws-ht:accessType> 9611 <ws-ht:contentType>application/xml</ws-ht:contentType> 9612 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9613 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 9614 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9615 </ws-ht:attachment> 9616 </ws-ht:part> 9617 </ws-ht:output> 9618 </xdw:taskData> 9619 <xdw:taskEventHistory> 9620 <xdw:taskEvent> 9621 <xdw:id>1</xdw:id> 9622 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 9623 <xdw:identifier>task_3#1</xdw:identifier> 9624 <xdw:eventType>create</xdw:eventType> 9625 <xdw:status>READY</xdw:status> 9626 <xdw:eventData xsi:nil="true"/> 9627 </xdw:taskEvent> 9628 <xdw:taskEvent> 9629 <xdw:id>2</xdw:id> 9630 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 9631 <xdw:identifier>task_3#2</xdw:identifier> 9632 <xdw:eventType>complete</xdw:eventType> 9633 <xdw:status>COMPLETED</xdw:status> 9634 <xdw:eventData xsi:nil="true"/> 9635 </xdw:taskEvent> 9636 </xdw:taskEventHistory> 9637 </xdw:XDWTask> 9638 </xdw:TaskList> 9639 </xdw:XDW.WorkflowDocument> 9640 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 9641 <rlustypes:success>true</rlustypes:success> 9642 <rlustypes:message>One record fetched</rlustypes:message> 9643 </rlustypes:RLUSStatusCode> 9644 </GetResponse> 9645 </soapenv:Body> 9646 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 9647 <soap:Header/> 9648 <soap:Body> 9649 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 9650 <rlustypes:searchByCriteria> 9651 <rlustypes:FilterCriteria> 9652 <rlustypes:Expression> 9653 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 9654 <rlusexp:Operator type="EqualTo"/> 9655 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 9656 </rlustypes:Expression> 9657 </rlustypes:FilterCriteria> 9658 <rlustypes:SearchAttributes> 9659 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 9660 </rlustypes:SearchAttributes> 9661 </rlustypes:searchByCriteria> 9662 </rlustypes:RLUSSearchStruct> 9663 </soap:Body> 9664 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="16106"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="16106"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 9665 <soapenv:Header/> 9666 <soapenv:Body> 9667 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 9668 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 9669 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="39a77cfe-df91-43cc-bd57-0452ee247662"/> 9670 <xdw:effectiveTime value="20140613172023+0200"/> 9671 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 9672 <xdw:patient> 9673 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 9674 </xdw:patient> 9675 <xdw:author> 9676 <xdw:assignedAuthor> 9677 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 9678 <hl7v3:assignedPerson/> 9679 </xdw:assignedAuthor> 9680 </xdw:author> 9681 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 9682 <xdw:workflowDocumentSequenceNumber>13</xdw:workflowDocumentSequenceNumber> 9683 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 9684 <xdw:workflowStatusHistory> 9685 <xdw:documentEvent> 9686 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 9687 <xdw:eventType>complete</xdw:eventType> 9688 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 9689 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9690 <xdw:previousStatus>OPEN</xdw:previousStatus> 9691 <xdw:actualStatus>OPEN</xdw:actualStatus> 9692 </xdw:documentEvent> 9693 <xdw:documentEvent> 9694 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 9695 <xdw:eventType>create</xdw:eventType> 9696 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 9697 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9698 <xdw:previousStatus>OPEN</xdw:previousStatus> 9699 <xdw:actualStatus>OPEN</xdw:actualStatus> 9700 </xdw:documentEvent> 9701 <xdw:documentEvent> 9702 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 9703 <xdw:eventType>create</xdw:eventType> 9704 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 9705 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9706 <xdw:previousStatus>OPEN</xdw:previousStatus> 9707 <xdw:actualStatus>OPEN</xdw:actualStatus> 9708 </xdw:documentEvent> 9709 <xdw:documentEvent> 9710 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 9711 <xdw:eventType>create</xdw:eventType> 9712 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 9713 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9714 <xdw:previousStatus>OPEN</xdw:previousStatus> 9715 <xdw:actualStatus>OPEN</xdw:actualStatus> 9716 </xdw:documentEvent> 9717 <xdw:documentEvent> 9718 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 9719 <xdw:eventType>create</xdw:eventType> 9720 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 9721 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 9722 <xdw:previousStatus>OPEN</xdw:previousStatus> 9723 <xdw:actualStatus>OPEN</xdw:actualStatus> 9724 </xdw:documentEvent> 9725 </xdw:workflowStatusHistory> 9726 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 9727 <xdw:TaskList> 9728 <xdw:XDWTask> 9729 <xdw:taskData> 9730 <ws-ht:taskDetails> 9731 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 9732 <ws-ht:taskType>Requested</ws-ht:taskType> 9733 <ws-ht:name>xdw.creation</ws-ht:name> 9734 <ws-ht:status>COMPLETED</ws-ht:status> 9735 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9736 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 9737 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9738 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 9739 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9740 </ws-ht:taskDetails> 9741 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 9742 <ws-ht:input/> 9743 <ws-ht:output/> 9744 </xdw:taskData> 9745 <xdw:taskEventHistory> 9746 <xdw:taskEvent> 9747 <xdw:id>1</xdw:id> 9748 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 9749 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 9750 <xdw:eventType>complete</xdw:eventType> 9751 <xdw:status>COMPLETED</xdw:status> 9752 <xdw:eventData xsi:nil="true"/> 9753 </xdw:taskEvent> 9754 </xdw:taskEventHistory> 9755 </xdw:XDWTask> 9756 <xdw:XDWTask> 9757 <xdw:taskData> 9758 <ws-ht:taskDetails> 9759 <ws-ht:id>task_0</ws-ht:id> 9760 <ws-ht:taskType>ttype</ws-ht:taskType> 9761 <ws-ht:name>tname_0</ws-ht:name> 9762 <ws-ht:status>COMPLETED</ws-ht:status> 9763 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9764 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 9765 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9766 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 9767 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9768 </ws-ht:taskDetails> 9769 <ws-ht:description>Undocumented task</ws-ht:description> 9770 <ws-ht:input/> 9771 <ws-ht:output> 9772 <ws-ht:part name="documentReference"> 9773 <ws-ht:attachment> 9774 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 9775 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 9776 <ws-ht:accessType>RLUS</ws-ht:accessType> 9777 <ws-ht:contentType>application/xml</ws-ht:contentType> 9778 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9779 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 9780 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9781 </ws-ht:attachment> 9782 </ws-ht:part> 9783 </ws-ht:output> 9784 </xdw:taskData> 9785 <xdw:taskEventHistory> 9786 <xdw:taskEvent> 9787 <xdw:id>1</xdw:id> 9788 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 9789 <xdw:identifier>task_0#1</xdw:identifier> 9790 <xdw:eventType>create</xdw:eventType> 9791 <xdw:status>READY</xdw:status> 9792 <xdw:eventData xsi:nil="true"/> 9793 </xdw:taskEvent> 9794 <xdw:taskEvent> 9795 <xdw:id>2</xdw:id> 9796 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 9797 <xdw:identifier>task_0#2</xdw:identifier> 9798 <xdw:eventType>complete</xdw:eventType> 9799 <xdw:status>COMPLETED</xdw:status> 9800 <xdw:eventData xsi:nil="true"/> 9801 </xdw:taskEvent> 9802 </xdw:taskEventHistory> 9803 </xdw:XDWTask> 9804 <xdw:XDWTask> 9805 <xdw:taskData> 9806 <ws-ht:taskDetails> 9807 <ws-ht:id>task_1</ws-ht:id> 9808 <ws-ht:taskType>ttype</ws-ht:taskType> 9809 <ws-ht:name>tname_1</ws-ht:name> 9810 <ws-ht:status>COMPLETED</ws-ht:status> 9811 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9812 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 9813 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9814 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 9815 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9816 </ws-ht:taskDetails> 9817 <ws-ht:description>Undocumented task</ws-ht:description> 9818 <ws-ht:input/> 9819 <ws-ht:output> 9820 <ws-ht:part name="documentReference"> 9821 <ws-ht:attachment> 9822 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 9823 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 9824 <ws-ht:accessType>RLUS</ws-ht:accessType> 9825 <ws-ht:contentType>application/xml</ws-ht:contentType> 9826 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9827 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 9828 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9829 </ws-ht:attachment> 9830 </ws-ht:part> 9831 </ws-ht:output> 9832 </xdw:taskData> 9833 <xdw:taskEventHistory> 9834 <xdw:taskEvent> 9835 <xdw:id>1</xdw:id> 9836 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 9837 <xdw:identifier>task_1#1</xdw:identifier> 9838 <xdw:eventType>create</xdw:eventType> 9839 <xdw:status>READY</xdw:status> 9840 <xdw:eventData xsi:nil="true"/> 9841 </xdw:taskEvent> 9842 <xdw:taskEvent> 9843 <xdw:id>2</xdw:id> 9844 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 9845 <xdw:identifier>task_1#2</xdw:identifier> 9846 <xdw:eventType>complete</xdw:eventType> 9847 <xdw:status>COMPLETED</xdw:status> 9848 <xdw:eventData xsi:nil="true"/> 9849 </xdw:taskEvent> 9850 </xdw:taskEventHistory> 9851 </xdw:XDWTask> 9852 <xdw:XDWTask> 9853 <xdw:taskData> 9854 <ws-ht:taskDetails> 9855 <ws-ht:id>task_2</ws-ht:id> 9856 <ws-ht:taskType>ttype</ws-ht:taskType> 9857 <ws-ht:name>tname_2</ws-ht:name> 9858 <ws-ht:status>COMPLETED</ws-ht:status> 9859 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9860 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 9861 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9862 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 9863 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9864 </ws-ht:taskDetails> 9865 <ws-ht:description>Undocumented task</ws-ht:description> 9866 <ws-ht:input/> 9867 <ws-ht:output> 9868 <ws-ht:part name="documentReference"> 9869 <ws-ht:attachment> 9870 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 9871 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 9872 <ws-ht:accessType>RLUS</ws-ht:accessType> 9873 <ws-ht:contentType>application/xml</ws-ht:contentType> 9874 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9875 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 9876 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9877 </ws-ht:attachment> 9878 </ws-ht:part> 9879 </ws-ht:output> 9880 </xdw:taskData> 9881 <xdw:taskEventHistory> 9882 <xdw:taskEvent> 9883 <xdw:id>1</xdw:id> 9884 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 9885 <xdw:identifier>task_2#1</xdw:identifier> 9886 <xdw:eventType>create</xdw:eventType> 9887 <xdw:status>READY</xdw:status> 9888 <xdw:eventData xsi:nil="true"/> 9889 </xdw:taskEvent> 9890 <xdw:taskEvent> 9891 <xdw:id>2</xdw:id> 9892 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 9893 <xdw:identifier>task_2#2</xdw:identifier> 9894 <xdw:eventType>complete</xdw:eventType> 9895 <xdw:status>COMPLETED</xdw:status> 9896 <xdw:eventData xsi:nil="true"/> 9897 </xdw:taskEvent> 9898 </xdw:taskEventHistory> 9899 </xdw:XDWTask> 9900 <xdw:XDWTask> 9901 <xdw:taskData> 9902 <ws-ht:taskDetails> 9903 <ws-ht:id>task_3</ws-ht:id> 9904 <ws-ht:taskType>ttype</ws-ht:taskType> 9905 <ws-ht:name>tname_3</ws-ht:name> 9906 <ws-ht:status>COMPLETED</ws-ht:status> 9907 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 9908 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 9909 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 9910 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 9911 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 9912 </ws-ht:taskDetails> 9913 <ws-ht:description>Undocumented task</ws-ht:description> 9914 <ws-ht:input/> 9915 <ws-ht:output> 9916 <ws-ht:part name="documentReference"> 9917 <ws-ht:attachment> 9918 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 9919 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 9920 <ws-ht:accessType>RLUS</ws-ht:accessType> 9921 <ws-ht:contentType>application/xml</ws-ht:contentType> 9922 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 9923 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 9924 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 9925 </ws-ht:attachment> 9926 </ws-ht:part> 9927 </ws-ht:output> 9928 </xdw:taskData> 9929 <xdw:taskEventHistory> 9930 <xdw:taskEvent> 9931 <xdw:id>1</xdw:id> 9932 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 9933 <xdw:identifier>task_3#1</xdw:identifier> 9934 <xdw:eventType>create</xdw:eventType> 9935 <xdw:status>READY</xdw:status> 9936 <xdw:eventData xsi:nil="true"/> 9937 </xdw:taskEvent> 9938 <xdw:taskEvent> 9939 <xdw:id>2</xdw:id> 9940 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 9941 <xdw:identifier>task_3#2</xdw:identifier> 9942 <xdw:eventType>complete</xdw:eventType> 9943 <xdw:status>COMPLETED</xdw:status> 9944 <xdw:eventData xsi:nil="true"/> 9945 </xdw:taskEvent> 9946 </xdw:taskEventHistory> 9947 </xdw:XDWTask> 9948 </xdw:TaskList> 9949 </xdw:XDW.WorkflowDocument> 9950 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 9951 <rlustypes:success>true</rlustypes:success> 9952 <rlustypes:message>One record fetched</rlustypes:message> 9953 </rlustypes:RLUSStatusCode> 9954 </GetResponse> 9955 </soapenv:Body> 9956 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 9957 <soap:Header/> 9958 <soap:Body> 9959 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 9960 <rlustypes:searchByCriteria> 9961 <rlustypes:FilterCriteria> 9962 <rlustypes:Expression> 9963 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 9964 <rlusexp:Operator type="EqualTo"/> 9965 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 9966 </rlustypes:Expression> 9967 </rlustypes:FilterCriteria> 9968 <rlustypes:SearchAttributes> 9969 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 9970 </rlustypes:SearchAttributes> 9971 </rlustypes:searchByCriteria> 9972 </rlustypes:RLUSSearchStruct> 9973 </soap:Body> 9974 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="16106"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="16106"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 9975 <soapenv:Header/> 9976 <soapenv:Body> 9977 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 9978 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 9979 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="39a77cfe-df91-43cc-bd57-0452ee247662"/> 9980 <xdw:effectiveTime value="20140613172023+0200"/> 9981 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 9982 <xdw:patient> 9983 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 9984 </xdw:patient> 9985 <xdw:author> 9986 <xdw:assignedAuthor> 9987 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 9988 <hl7v3:assignedPerson/> 9989 </xdw:assignedAuthor> 9990 </xdw:author> 9991 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 9992 <xdw:workflowDocumentSequenceNumber>13</xdw:workflowDocumentSequenceNumber> 9993 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 9994 <xdw:workflowStatusHistory> 9995 <xdw:documentEvent> 9996 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 9997 <xdw:eventType>complete</xdw:eventType> 9998 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 9999 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10000 <xdw:previousStatus>OPEN</xdw:previousStatus> 10001 <xdw:actualStatus>OPEN</xdw:actualStatus> 10002 </xdw:documentEvent> 10003 <xdw:documentEvent> 10004 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 10005 <xdw:eventType>create</xdw:eventType> 10006 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 10007 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10008 <xdw:previousStatus>OPEN</xdw:previousStatus> 10009 <xdw:actualStatus>OPEN</xdw:actualStatus> 10010 </xdw:documentEvent> 10011 <xdw:documentEvent> 10012 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 10013 <xdw:eventType>create</xdw:eventType> 10014 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 10015 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10016 <xdw:previousStatus>OPEN</xdw:previousStatus> 10017 <xdw:actualStatus>OPEN</xdw:actualStatus> 10018 </xdw:documentEvent> 10019 <xdw:documentEvent> 10020 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 10021 <xdw:eventType>create</xdw:eventType> 10022 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 10023 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10024 <xdw:previousStatus>OPEN</xdw:previousStatus> 10025 <xdw:actualStatus>OPEN</xdw:actualStatus> 10026 </xdw:documentEvent> 10027 <xdw:documentEvent> 10028 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 10029 <xdw:eventType>create</xdw:eventType> 10030 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 10031 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10032 <xdw:previousStatus>OPEN</xdw:previousStatus> 10033 <xdw:actualStatus>OPEN</xdw:actualStatus> 10034 </xdw:documentEvent> 10035 </xdw:workflowStatusHistory> 10036 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 10037 <xdw:TaskList> 10038 <xdw:XDWTask> 10039 <xdw:taskData> 10040 <ws-ht:taskDetails> 10041 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 10042 <ws-ht:taskType>Requested</ws-ht:taskType> 10043 <ws-ht:name>xdw.creation</ws-ht:name> 10044 <ws-ht:status>COMPLETED</ws-ht:status> 10045 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10046 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 10047 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10048 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 10049 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10050 </ws-ht:taskDetails> 10051 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 10052 <ws-ht:input/> 10053 <ws-ht:output/> 10054 </xdw:taskData> 10055 <xdw:taskEventHistory> 10056 <xdw:taskEvent> 10057 <xdw:id>1</xdw:id> 10058 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 10059 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 10060 <xdw:eventType>complete</xdw:eventType> 10061 <xdw:status>COMPLETED</xdw:status> 10062 <xdw:eventData xsi:nil="true"/> 10063 </xdw:taskEvent> 10064 </xdw:taskEventHistory> 10065 </xdw:XDWTask> 10066 <xdw:XDWTask> 10067 <xdw:taskData> 10068 <ws-ht:taskDetails> 10069 <ws-ht:id>task_0</ws-ht:id> 10070 <ws-ht:taskType>ttype</ws-ht:taskType> 10071 <ws-ht:name>tname_0</ws-ht:name> 10072 <ws-ht:status>COMPLETED</ws-ht:status> 10073 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10074 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 10075 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10076 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 10077 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10078 </ws-ht:taskDetails> 10079 <ws-ht:description>Undocumented task</ws-ht:description> 10080 <ws-ht:input/> 10081 <ws-ht:output> 10082 <ws-ht:part name="documentReference"> 10083 <ws-ht:attachment> 10084 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 10085 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 10086 <ws-ht:accessType>RLUS</ws-ht:accessType> 10087 <ws-ht:contentType>application/xml</ws-ht:contentType> 10088 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10089 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 10090 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10091 </ws-ht:attachment> 10092 </ws-ht:part> 10093 </ws-ht:output> 10094 </xdw:taskData> 10095 <xdw:taskEventHistory> 10096 <xdw:taskEvent> 10097 <xdw:id>1</xdw:id> 10098 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 10099 <xdw:identifier>task_0#1</xdw:identifier> 10100 <xdw:eventType>create</xdw:eventType> 10101 <xdw:status>READY</xdw:status> 10102 <xdw:eventData xsi:nil="true"/> 10103 </xdw:taskEvent> 10104 <xdw:taskEvent> 10105 <xdw:id>2</xdw:id> 10106 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 10107 <xdw:identifier>task_0#2</xdw:identifier> 10108 <xdw:eventType>complete</xdw:eventType> 10109 <xdw:status>COMPLETED</xdw:status> 10110 <xdw:eventData xsi:nil="true"/> 10111 </xdw:taskEvent> 10112 </xdw:taskEventHistory> 10113 </xdw:XDWTask> 10114 <xdw:XDWTask> 10115 <xdw:taskData> 10116 <ws-ht:taskDetails> 10117 <ws-ht:id>task_1</ws-ht:id> 10118 <ws-ht:taskType>ttype</ws-ht:taskType> 10119 <ws-ht:name>tname_1</ws-ht:name> 10120 <ws-ht:status>COMPLETED</ws-ht:status> 10121 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10122 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 10123 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10124 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 10125 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10126 </ws-ht:taskDetails> 10127 <ws-ht:description>Undocumented task</ws-ht:description> 10128 <ws-ht:input/> 10129 <ws-ht:output> 10130 <ws-ht:part name="documentReference"> 10131 <ws-ht:attachment> 10132 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 10133 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 10134 <ws-ht:accessType>RLUS</ws-ht:accessType> 10135 <ws-ht:contentType>application/xml</ws-ht:contentType> 10136 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10137 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 10138 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10139 </ws-ht:attachment> 10140 </ws-ht:part> 10141 </ws-ht:output> 10142 </xdw:taskData> 10143 <xdw:taskEventHistory> 10144 <xdw:taskEvent> 10145 <xdw:id>1</xdw:id> 10146 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 10147 <xdw:identifier>task_1#1</xdw:identifier> 10148 <xdw:eventType>create</xdw:eventType> 10149 <xdw:status>READY</xdw:status> 10150 <xdw:eventData xsi:nil="true"/> 10151 </xdw:taskEvent> 10152 <xdw:taskEvent> 10153 <xdw:id>2</xdw:id> 10154 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 10155 <xdw:identifier>task_1#2</xdw:identifier> 10156 <xdw:eventType>complete</xdw:eventType> 10157 <xdw:status>COMPLETED</xdw:status> 10158 <xdw:eventData xsi:nil="true"/> 10159 </xdw:taskEvent> 10160 </xdw:taskEventHistory> 10161 </xdw:XDWTask> 10162 <xdw:XDWTask> 10163 <xdw:taskData> 10164 <ws-ht:taskDetails> 10165 <ws-ht:id>task_2</ws-ht:id> 10166 <ws-ht:taskType>ttype</ws-ht:taskType> 10167 <ws-ht:name>tname_2</ws-ht:name> 10168 <ws-ht:status>COMPLETED</ws-ht:status> 10169 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10170 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 10171 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10172 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 10173 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10174 </ws-ht:taskDetails> 10175 <ws-ht:description>Undocumented task</ws-ht:description> 10176 <ws-ht:input/> 10177 <ws-ht:output> 10178 <ws-ht:part name="documentReference"> 10179 <ws-ht:attachment> 10180 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 10181 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 10182 <ws-ht:accessType>RLUS</ws-ht:accessType> 10183 <ws-ht:contentType>application/xml</ws-ht:contentType> 10184 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10185 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 10186 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10187 </ws-ht:attachment> 10188 </ws-ht:part> 10189 </ws-ht:output> 10190 </xdw:taskData> 10191 <xdw:taskEventHistory> 10192 <xdw:taskEvent> 10193 <xdw:id>1</xdw:id> 10194 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 10195 <xdw:identifier>task_2#1</xdw:identifier> 10196 <xdw:eventType>create</xdw:eventType> 10197 <xdw:status>READY</xdw:status> 10198 <xdw:eventData xsi:nil="true"/> 10199 </xdw:taskEvent> 10200 <xdw:taskEvent> 10201 <xdw:id>2</xdw:id> 10202 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 10203 <xdw:identifier>task_2#2</xdw:identifier> 10204 <xdw:eventType>complete</xdw:eventType> 10205 <xdw:status>COMPLETED</xdw:status> 10206 <xdw:eventData xsi:nil="true"/> 10207 </xdw:taskEvent> 10208 </xdw:taskEventHistory> 10209 </xdw:XDWTask> 10210 <xdw:XDWTask> 10211 <xdw:taskData> 10212 <ws-ht:taskDetails> 10213 <ws-ht:id>task_3</ws-ht:id> 10214 <ws-ht:taskType>ttype</ws-ht:taskType> 10215 <ws-ht:name>tname_3</ws-ht:name> 10216 <ws-ht:status>COMPLETED</ws-ht:status> 10217 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10218 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 10219 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10220 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 10221 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10222 </ws-ht:taskDetails> 10223 <ws-ht:description>Undocumented task</ws-ht:description> 10224 <ws-ht:input/> 10225 <ws-ht:output> 10226 <ws-ht:part name="documentReference"> 10227 <ws-ht:attachment> 10228 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 10229 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 10230 <ws-ht:accessType>RLUS</ws-ht:accessType> 10231 <ws-ht:contentType>application/xml</ws-ht:contentType> 10232 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10233 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 10234 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10235 </ws-ht:attachment> 10236 </ws-ht:part> 10237 </ws-ht:output> 10238 </xdw:taskData> 10239 <xdw:taskEventHistory> 10240 <xdw:taskEvent> 10241 <xdw:id>1</xdw:id> 10242 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 10243 <xdw:identifier>task_3#1</xdw:identifier> 10244 <xdw:eventType>create</xdw:eventType> 10245 <xdw:status>READY</xdw:status> 10246 <xdw:eventData xsi:nil="true"/> 10247 </xdw:taskEvent> 10248 <xdw:taskEvent> 10249 <xdw:id>2</xdw:id> 10250 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 10251 <xdw:identifier>task_3#2</xdw:identifier> 10252 <xdw:eventType>complete</xdw:eventType> 10253 <xdw:status>COMPLETED</xdw:status> 10254 <xdw:eventData xsi:nil="true"/> 10255 </xdw:taskEvent> 10256 </xdw:taskEventHistory> 10257 </xdw:XDWTask> 10258 </xdw:TaskList> 10259 </xdw:XDW.WorkflowDocument> 10260 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 10261 <rlustypes:success>true</rlustypes:success> 10262 <rlustypes:message>One record fetched</rlustypes:message> 10263 </rlustypes:RLUSStatusCode> 10264 </GetResponse> 10265 </soapenv:Body> 10266 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="18380"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="18380"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 10267 <soap:Header/> 10268 <soap:Body> 10269 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 10270 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 10271 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="388335b0-d76b-4c05-8b82-814dee8cbd3f"/> 10272 <xdw:effectiveTime value="20140613172025+0200"/> 10273 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 10274 <xdw:patient> 10275 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 10276 </xdw:patient> 10277 <xdw:author> 10278 <xdw:assignedAuthor> 10279 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 10280 <hl7v3:assignedPerson/> 10281 </xdw:assignedAuthor> 10282 </xdw:author> 10283 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 10284 <xdw:workflowDocumentSequenceNumber>14</xdw:workflowDocumentSequenceNumber> 10285 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 10286 <xdw:workflowStatusHistory> 10287 <xdw:documentEvent> 10288 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 10289 <xdw:eventType>complete</xdw:eventType> 10290 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 10291 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10292 <xdw:previousStatus>OPEN</xdw:previousStatus> 10293 <xdw:actualStatus>OPEN</xdw:actualStatus> 10294 </xdw:documentEvent> 10295 <xdw:documentEvent> 10296 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 10297 <xdw:eventType>create</xdw:eventType> 10298 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 10299 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10300 <xdw:previousStatus>OPEN</xdw:previousStatus> 10301 <xdw:actualStatus>OPEN</xdw:actualStatus> 10302 </xdw:documentEvent> 10303 <xdw:documentEvent> 10304 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 10305 <xdw:eventType>create</xdw:eventType> 10306 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 10307 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10308 <xdw:previousStatus>OPEN</xdw:previousStatus> 10309 <xdw:actualStatus>OPEN</xdw:actualStatus> 10310 </xdw:documentEvent> 10311 <xdw:documentEvent> 10312 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 10313 <xdw:eventType>create</xdw:eventType> 10314 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 10315 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10316 <xdw:previousStatus>OPEN</xdw:previousStatus> 10317 <xdw:actualStatus>OPEN</xdw:actualStatus> 10318 </xdw:documentEvent> 10319 <xdw:documentEvent> 10320 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 10321 <xdw:eventType>create</xdw:eventType> 10322 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 10323 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10324 <xdw:previousStatus>OPEN</xdw:previousStatus> 10325 <xdw:actualStatus>OPEN</xdw:actualStatus> 10326 </xdw:documentEvent> 10327 <xdw:documentEvent> 10328 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 10329 <xdw:eventType>create</xdw:eventType> 10330 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 10331 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10332 <xdw:previousStatus>OPEN</xdw:previousStatus> 10333 <xdw:actualStatus>OPEN</xdw:actualStatus> 10334 </xdw:documentEvent> 10335 </xdw:workflowStatusHistory> 10336 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 10337 <xdw:TaskList> 10338 <xdw:XDWTask> 10339 <xdw:taskData> 10340 <ws-ht:taskDetails> 10341 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 10342 <ws-ht:taskType>Requested</ws-ht:taskType> 10343 <ws-ht:name>xdw.creation</ws-ht:name> 10344 <ws-ht:status>COMPLETED</ws-ht:status> 10345 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10346 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 10347 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10348 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 10349 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10350 </ws-ht:taskDetails> 10351 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 10352 <ws-ht:input/> 10353 <ws-ht:output/> 10354 </xdw:taskData> 10355 <xdw:taskEventHistory> 10356 <xdw:taskEvent> 10357 <xdw:id>1</xdw:id> 10358 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 10359 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 10360 <xdw:eventType>complete</xdw:eventType> 10361 <xdw:status>COMPLETED</xdw:status> 10362 <xdw:eventData xsi:nil="true"/> 10363 </xdw:taskEvent> 10364 </xdw:taskEventHistory> 10365 </xdw:XDWTask> 10366 <xdw:XDWTask> 10367 <xdw:taskData> 10368 <ws-ht:taskDetails> 10369 <ws-ht:id>task_0</ws-ht:id> 10370 <ws-ht:taskType>ttype</ws-ht:taskType> 10371 <ws-ht:name>tname_0</ws-ht:name> 10372 <ws-ht:status>COMPLETED</ws-ht:status> 10373 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10374 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 10375 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10376 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 10377 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10378 </ws-ht:taskDetails> 10379 <ws-ht:description>Undocumented task</ws-ht:description> 10380 <ws-ht:input/> 10381 <ws-ht:output> 10382 <ws-ht:part name="documentReference"> 10383 <ws-ht:attachment> 10384 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 10385 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 10386 <ws-ht:accessType>RLUS</ws-ht:accessType> 10387 <ws-ht:contentType>application/xml</ws-ht:contentType> 10388 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10389 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 10390 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10391 </ws-ht:attachment> 10392 </ws-ht:part> 10393 </ws-ht:output> 10394 </xdw:taskData> 10395 <xdw:taskEventHistory> 10396 <xdw:taskEvent> 10397 <xdw:id>1</xdw:id> 10398 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 10399 <xdw:identifier>task_0#1</xdw:identifier> 10400 <xdw:eventType>create</xdw:eventType> 10401 <xdw:status>READY</xdw:status> 10402 <xdw:eventData xsi:nil="true"/> 10403 </xdw:taskEvent> 10404 <xdw:taskEvent> 10405 <xdw:id>2</xdw:id> 10406 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 10407 <xdw:identifier>task_0#2</xdw:identifier> 10408 <xdw:eventType>complete</xdw:eventType> 10409 <xdw:status>COMPLETED</xdw:status> 10410 <xdw:eventData xsi:nil="true"/> 10411 </xdw:taskEvent> 10412 </xdw:taskEventHistory> 10413 </xdw:XDWTask> 10414 <xdw:XDWTask> 10415 <xdw:taskData> 10416 <ws-ht:taskDetails> 10417 <ws-ht:id>task_1</ws-ht:id> 10418 <ws-ht:taskType>ttype</ws-ht:taskType> 10419 <ws-ht:name>tname_1</ws-ht:name> 10420 <ws-ht:status>COMPLETED</ws-ht:status> 10421 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10422 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 10423 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10424 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 10425 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10426 </ws-ht:taskDetails> 10427 <ws-ht:description>Undocumented task</ws-ht:description> 10428 <ws-ht:input/> 10429 <ws-ht:output> 10430 <ws-ht:part name="documentReference"> 10431 <ws-ht:attachment> 10432 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 10433 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 10434 <ws-ht:accessType>RLUS</ws-ht:accessType> 10435 <ws-ht:contentType>application/xml</ws-ht:contentType> 10436 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10437 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 10438 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10439 </ws-ht:attachment> 10440 </ws-ht:part> 10441 </ws-ht:output> 10442 </xdw:taskData> 10443 <xdw:taskEventHistory> 10444 <xdw:taskEvent> 10445 <xdw:id>1</xdw:id> 10446 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 10447 <xdw:identifier>task_1#1</xdw:identifier> 10448 <xdw:eventType>create</xdw:eventType> 10449 <xdw:status>READY</xdw:status> 10450 <xdw:eventData xsi:nil="true"/> 10451 </xdw:taskEvent> 10452 <xdw:taskEvent> 10453 <xdw:id>2</xdw:id> 10454 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 10455 <xdw:identifier>task_1#2</xdw:identifier> 10456 <xdw:eventType>complete</xdw:eventType> 10457 <xdw:status>COMPLETED</xdw:status> 10458 <xdw:eventData xsi:nil="true"/> 10459 </xdw:taskEvent> 10460 </xdw:taskEventHistory> 10461 </xdw:XDWTask> 10462 <xdw:XDWTask> 10463 <xdw:taskData> 10464 <ws-ht:taskDetails> 10465 <ws-ht:id>task_2</ws-ht:id> 10466 <ws-ht:taskType>ttype</ws-ht:taskType> 10467 <ws-ht:name>tname_2</ws-ht:name> 10468 <ws-ht:status>COMPLETED</ws-ht:status> 10469 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10470 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 10471 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10472 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 10473 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10474 </ws-ht:taskDetails> 10475 <ws-ht:description>Undocumented task</ws-ht:description> 10476 <ws-ht:input/> 10477 <ws-ht:output> 10478 <ws-ht:part name="documentReference"> 10479 <ws-ht:attachment> 10480 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 10481 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 10482 <ws-ht:accessType>RLUS</ws-ht:accessType> 10483 <ws-ht:contentType>application/xml</ws-ht:contentType> 10484 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10485 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 10486 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10487 </ws-ht:attachment> 10488 </ws-ht:part> 10489 </ws-ht:output> 10490 </xdw:taskData> 10491 <xdw:taskEventHistory> 10492 <xdw:taskEvent> 10493 <xdw:id>1</xdw:id> 10494 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 10495 <xdw:identifier>task_2#1</xdw:identifier> 10496 <xdw:eventType>create</xdw:eventType> 10497 <xdw:status>READY</xdw:status> 10498 <xdw:eventData xsi:nil="true"/> 10499 </xdw:taskEvent> 10500 <xdw:taskEvent> 10501 <xdw:id>2</xdw:id> 10502 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 10503 <xdw:identifier>task_2#2</xdw:identifier> 10504 <xdw:eventType>complete</xdw:eventType> 10505 <xdw:status>COMPLETED</xdw:status> 10506 <xdw:eventData xsi:nil="true"/> 10507 </xdw:taskEvent> 10508 </xdw:taskEventHistory> 10509 </xdw:XDWTask> 10510 <xdw:XDWTask> 10511 <xdw:taskData> 10512 <ws-ht:taskDetails> 10513 <ws-ht:id>task_3</ws-ht:id> 10514 <ws-ht:taskType>ttype</ws-ht:taskType> 10515 <ws-ht:name>tname_3</ws-ht:name> 10516 <ws-ht:status>COMPLETED</ws-ht:status> 10517 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10518 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 10519 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10520 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 10521 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10522 </ws-ht:taskDetails> 10523 <ws-ht:description>Undocumented task</ws-ht:description> 10524 <ws-ht:input/> 10525 <ws-ht:output> 10526 <ws-ht:part name="documentReference"> 10527 <ws-ht:attachment> 10528 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 10529 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 10530 <ws-ht:accessType>RLUS</ws-ht:accessType> 10531 <ws-ht:contentType>application/xml</ws-ht:contentType> 10532 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10533 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 10534 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10535 </ws-ht:attachment> 10536 </ws-ht:part> 10537 </ws-ht:output> 10538 </xdw:taskData> 10539 <xdw:taskEventHistory> 10540 <xdw:taskEvent> 10541 <xdw:id>1</xdw:id> 10542 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 10543 <xdw:identifier>task_3#1</xdw:identifier> 10544 <xdw:eventType>create</xdw:eventType> 10545 <xdw:status>READY</xdw:status> 10546 <xdw:eventData xsi:nil="true"/> 10547 </xdw:taskEvent> 10548 <xdw:taskEvent> 10549 <xdw:id>2</xdw:id> 10550 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 10551 <xdw:identifier>task_3#2</xdw:identifier> 10552 <xdw:eventType>complete</xdw:eventType> 10553 <xdw:status>COMPLETED</xdw:status> 10554 <xdw:eventData xsi:nil="true"/> 10555 </xdw:taskEvent> 10556 </xdw:taskEventHistory> 10557 </xdw:XDWTask> 10558 <xdw:XDWTask> 10559 <xdw:taskData> 10560 <ws-ht:taskDetails> 10561 <ws-ht:id>task_4</ws-ht:id> 10562 <ws-ht:taskType>ttype</ws-ht:taskType> 10563 <ws-ht:name>tname_4</ws-ht:name> 10564 <ws-ht:status>READY</ws-ht:status> 10565 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10566 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 10567 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10568 <ws-ht:lastModifiedTime>2014-06-13T17:20:25.669+02:00</ws-ht:lastModifiedTime> 10569 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10570 </ws-ht:taskDetails> 10571 <ws-ht:description>Undocumented task</ws-ht:description> 10572 <ws-ht:input/> 10573 <ws-ht:output/> 10574 </xdw:taskData> 10575 <xdw:taskEventHistory> 10576 <xdw:taskEvent> 10577 <xdw:id>1</xdw:id> 10578 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 10579 <xdw:identifier>task_4#1</xdw:identifier> 10580 <xdw:eventType>create</xdw:eventType> 10581 <xdw:status>READY</xdw:status> 10582 <xdw:eventData xsi:nil="true"/> 10583 </xdw:taskEvent> 10584 </xdw:taskEventHistory> 10585 </xdw:XDWTask> 10586 </xdw:TaskList> 10587 </xdw:XDW.WorkflowDocument> 10588 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 10589 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 10590 <rlustypes:SecurityContext> 10591 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 10592 </rlustypes:SecurityContext> 10593 <rlustypes:CBRContext> 10594 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 10595 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 10596 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 10597 </rlustypes:CBRContext> 10598 </rlustypes:RLUSPutRequestSrcStruct> 10599 <writeCommandEnum>UPDATE</writeCommandEnum> 10600 </PutRequest> 10601 </soap:Body> 10602 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 10603 <soapenv:Header/> 10604 <soapenv:Body> 10605 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 10606 <rlustypes:success>true</rlustypes:success> 10607 <rlustypes:message/> 10608 </rlustypes:RLUSStatusCode> 10609 </soapenv:Body> 10610 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 10611 <soap:Header/> 10612 <soap:Body> 10613 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 10614 <rlustypes:searchByCriteria> 10615 <rlustypes:FilterCriteria> 10616 <rlustypes:Expression> 10617 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 10618 <rlusexp:Operator type="EqualTo"/> 10619 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 10620 </rlustypes:Expression> 10621 </rlustypes:FilterCriteria> 10622 <rlustypes:SearchAttributes> 10623 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 10624 </rlustypes:SearchAttributes> 10625 </rlustypes:searchByCriteria> 10626 </rlustypes:RLUSSearchStruct> 10627 </soap:Body> 10628 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="17942"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="17942"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 10629 <soapenv:Header/> 10630 <soapenv:Body> 10631 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 10632 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 10633 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="388335b0-d76b-4c05-8b82-814dee8cbd3f"/> 10634 <xdw:effectiveTime value="20140613172025+0200"/> 10635 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 10636 <xdw:patient> 10637 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 10638 </xdw:patient> 10639 <xdw:author> 10640 <xdw:assignedAuthor> 10641 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 10642 <hl7v3:assignedPerson/> 10643 </xdw:assignedAuthor> 10644 </xdw:author> 10645 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 10646 <xdw:workflowDocumentSequenceNumber>14</xdw:workflowDocumentSequenceNumber> 10647 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 10648 <xdw:workflowStatusHistory> 10649 <xdw:documentEvent> 10650 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 10651 <xdw:eventType>complete</xdw:eventType> 10652 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 10653 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10654 <xdw:previousStatus>OPEN</xdw:previousStatus> 10655 <xdw:actualStatus>OPEN</xdw:actualStatus> 10656 </xdw:documentEvent> 10657 <xdw:documentEvent> 10658 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 10659 <xdw:eventType>create</xdw:eventType> 10660 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 10661 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10662 <xdw:previousStatus>OPEN</xdw:previousStatus> 10663 <xdw:actualStatus>OPEN</xdw:actualStatus> 10664 </xdw:documentEvent> 10665 <xdw:documentEvent> 10666 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 10667 <xdw:eventType>create</xdw:eventType> 10668 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 10669 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10670 <xdw:previousStatus>OPEN</xdw:previousStatus> 10671 <xdw:actualStatus>OPEN</xdw:actualStatus> 10672 </xdw:documentEvent> 10673 <xdw:documentEvent> 10674 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 10675 <xdw:eventType>create</xdw:eventType> 10676 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 10677 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10678 <xdw:previousStatus>OPEN</xdw:previousStatus> 10679 <xdw:actualStatus>OPEN</xdw:actualStatus> 10680 </xdw:documentEvent> 10681 <xdw:documentEvent> 10682 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 10683 <xdw:eventType>create</xdw:eventType> 10684 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 10685 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10686 <xdw:previousStatus>OPEN</xdw:previousStatus> 10687 <xdw:actualStatus>OPEN</xdw:actualStatus> 10688 </xdw:documentEvent> 10689 <xdw:documentEvent> 10690 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 10691 <xdw:eventType>create</xdw:eventType> 10692 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 10693 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 10694 <xdw:previousStatus>OPEN</xdw:previousStatus> 10695 <xdw:actualStatus>OPEN</xdw:actualStatus> 10696 </xdw:documentEvent> 10697 </xdw:workflowStatusHistory> 10698 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 10699 <xdw:TaskList> 10700 <xdw:XDWTask> 10701 <xdw:taskData> 10702 <ws-ht:taskDetails> 10703 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 10704 <ws-ht:taskType>Requested</ws-ht:taskType> 10705 <ws-ht:name>xdw.creation</ws-ht:name> 10706 <ws-ht:status>COMPLETED</ws-ht:status> 10707 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10708 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 10709 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10710 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 10711 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10712 </ws-ht:taskDetails> 10713 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 10714 <ws-ht:input/> 10715 <ws-ht:output/> 10716 </xdw:taskData> 10717 <xdw:taskEventHistory> 10718 <xdw:taskEvent> 10719 <xdw:id>1</xdw:id> 10720 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 10721 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 10722 <xdw:eventType>complete</xdw:eventType> 10723 <xdw:status>COMPLETED</xdw:status> 10724 <xdw:eventData xsi:nil="true"/> 10725 </xdw:taskEvent> 10726 </xdw:taskEventHistory> 10727 </xdw:XDWTask> 10728 <xdw:XDWTask> 10729 <xdw:taskData> 10730 <ws-ht:taskDetails> 10731 <ws-ht:id>task_0</ws-ht:id> 10732 <ws-ht:taskType>ttype</ws-ht:taskType> 10733 <ws-ht:name>tname_0</ws-ht:name> 10734 <ws-ht:status>COMPLETED</ws-ht:status> 10735 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10736 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 10737 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10738 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 10739 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10740 </ws-ht:taskDetails> 10741 <ws-ht:description>Undocumented task</ws-ht:description> 10742 <ws-ht:input/> 10743 <ws-ht:output> 10744 <ws-ht:part name="documentReference"> 10745 <ws-ht:attachment> 10746 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 10747 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 10748 <ws-ht:accessType>RLUS</ws-ht:accessType> 10749 <ws-ht:contentType>application/xml</ws-ht:contentType> 10750 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10751 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 10752 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10753 </ws-ht:attachment> 10754 </ws-ht:part> 10755 </ws-ht:output> 10756 </xdw:taskData> 10757 <xdw:taskEventHistory> 10758 <xdw:taskEvent> 10759 <xdw:id>1</xdw:id> 10760 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 10761 <xdw:identifier>task_0#1</xdw:identifier> 10762 <xdw:eventType>create</xdw:eventType> 10763 <xdw:status>READY</xdw:status> 10764 <xdw:eventData xsi:nil="true"/> 10765 </xdw:taskEvent> 10766 <xdw:taskEvent> 10767 <xdw:id>2</xdw:id> 10768 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 10769 <xdw:identifier>task_0#2</xdw:identifier> 10770 <xdw:eventType>complete</xdw:eventType> 10771 <xdw:status>COMPLETED</xdw:status> 10772 <xdw:eventData xsi:nil="true"/> 10773 </xdw:taskEvent> 10774 </xdw:taskEventHistory> 10775 </xdw:XDWTask> 10776 <xdw:XDWTask> 10777 <xdw:taskData> 10778 <ws-ht:taskDetails> 10779 <ws-ht:id>task_1</ws-ht:id> 10780 <ws-ht:taskType>ttype</ws-ht:taskType> 10781 <ws-ht:name>tname_1</ws-ht:name> 10782 <ws-ht:status>COMPLETED</ws-ht:status> 10783 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10784 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 10785 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10786 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 10787 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10788 </ws-ht:taskDetails> 10789 <ws-ht:description>Undocumented task</ws-ht:description> 10790 <ws-ht:input/> 10791 <ws-ht:output> 10792 <ws-ht:part name="documentReference"> 10793 <ws-ht:attachment> 10794 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 10795 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 10796 <ws-ht:accessType>RLUS</ws-ht:accessType> 10797 <ws-ht:contentType>application/xml</ws-ht:contentType> 10798 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10799 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 10800 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10801 </ws-ht:attachment> 10802 </ws-ht:part> 10803 </ws-ht:output> 10804 </xdw:taskData> 10805 <xdw:taskEventHistory> 10806 <xdw:taskEvent> 10807 <xdw:id>1</xdw:id> 10808 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 10809 <xdw:identifier>task_1#1</xdw:identifier> 10810 <xdw:eventType>create</xdw:eventType> 10811 <xdw:status>READY</xdw:status> 10812 <xdw:eventData xsi:nil="true"/> 10813 </xdw:taskEvent> 10814 <xdw:taskEvent> 10815 <xdw:id>2</xdw:id> 10816 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 10817 <xdw:identifier>task_1#2</xdw:identifier> 10818 <xdw:eventType>complete</xdw:eventType> 10819 <xdw:status>COMPLETED</xdw:status> 10820 <xdw:eventData xsi:nil="true"/> 10821 </xdw:taskEvent> 10822 </xdw:taskEventHistory> 10823 </xdw:XDWTask> 10824 <xdw:XDWTask> 10825 <xdw:taskData> 10826 <ws-ht:taskDetails> 10827 <ws-ht:id>task_2</ws-ht:id> 10828 <ws-ht:taskType>ttype</ws-ht:taskType> 10829 <ws-ht:name>tname_2</ws-ht:name> 10830 <ws-ht:status>COMPLETED</ws-ht:status> 10831 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10832 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 10833 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10834 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 10835 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10836 </ws-ht:taskDetails> 10837 <ws-ht:description>Undocumented task</ws-ht:description> 10838 <ws-ht:input/> 10839 <ws-ht:output> 10840 <ws-ht:part name="documentReference"> 10841 <ws-ht:attachment> 10842 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 10843 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 10844 <ws-ht:accessType>RLUS</ws-ht:accessType> 10845 <ws-ht:contentType>application/xml</ws-ht:contentType> 10846 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10847 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 10848 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10849 </ws-ht:attachment> 10850 </ws-ht:part> 10851 </ws-ht:output> 10852 </xdw:taskData> 10853 <xdw:taskEventHistory> 10854 <xdw:taskEvent> 10855 <xdw:id>1</xdw:id> 10856 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 10857 <xdw:identifier>task_2#1</xdw:identifier> 10858 <xdw:eventType>create</xdw:eventType> 10859 <xdw:status>READY</xdw:status> 10860 <xdw:eventData xsi:nil="true"/> 10861 </xdw:taskEvent> 10862 <xdw:taskEvent> 10863 <xdw:id>2</xdw:id> 10864 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 10865 <xdw:identifier>task_2#2</xdw:identifier> 10866 <xdw:eventType>complete</xdw:eventType> 10867 <xdw:status>COMPLETED</xdw:status> 10868 <xdw:eventData xsi:nil="true"/> 10869 </xdw:taskEvent> 10870 </xdw:taskEventHistory> 10871 </xdw:XDWTask> 10872 <xdw:XDWTask> 10873 <xdw:taskData> 10874 <ws-ht:taskDetails> 10875 <ws-ht:id>task_3</ws-ht:id> 10876 <ws-ht:taskType>ttype</ws-ht:taskType> 10877 <ws-ht:name>tname_3</ws-ht:name> 10878 <ws-ht:status>COMPLETED</ws-ht:status> 10879 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10880 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 10881 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10882 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 10883 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10884 </ws-ht:taskDetails> 10885 <ws-ht:description>Undocumented task</ws-ht:description> 10886 <ws-ht:input/> 10887 <ws-ht:output> 10888 <ws-ht:part name="documentReference"> 10889 <ws-ht:attachment> 10890 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 10891 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 10892 <ws-ht:accessType>RLUS</ws-ht:accessType> 10893 <ws-ht:contentType>application/xml</ws-ht:contentType> 10894 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 10895 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 10896 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 10897 </ws-ht:attachment> 10898 </ws-ht:part> 10899 </ws-ht:output> 10900 </xdw:taskData> 10901 <xdw:taskEventHistory> 10902 <xdw:taskEvent> 10903 <xdw:id>1</xdw:id> 10904 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 10905 <xdw:identifier>task_3#1</xdw:identifier> 10906 <xdw:eventType>create</xdw:eventType> 10907 <xdw:status>READY</xdw:status> 10908 <xdw:eventData xsi:nil="true"/> 10909 </xdw:taskEvent> 10910 <xdw:taskEvent> 10911 <xdw:id>2</xdw:id> 10912 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 10913 <xdw:identifier>task_3#2</xdw:identifier> 10914 <xdw:eventType>complete</xdw:eventType> 10915 <xdw:status>COMPLETED</xdw:status> 10916 <xdw:eventData xsi:nil="true"/> 10917 </xdw:taskEvent> 10918 </xdw:taskEventHistory> 10919 </xdw:XDWTask> 10920 <xdw:XDWTask> 10921 <xdw:taskData> 10922 <ws-ht:taskDetails> 10923 <ws-ht:id>task_4</ws-ht:id> 10924 <ws-ht:taskType>ttype</ws-ht:taskType> 10925 <ws-ht:name>tname_4</ws-ht:name> 10926 <ws-ht:status>READY</ws-ht:status> 10927 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 10928 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 10929 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 10930 <ws-ht:lastModifiedTime>2014-06-13T17:20:25.669+02:00</ws-ht:lastModifiedTime> 10931 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 10932 </ws-ht:taskDetails> 10933 <ws-ht:description>Undocumented task</ws-ht:description> 10934 <ws-ht:input/> 10935 <ws-ht:output/> 10936 </xdw:taskData> 10937 <xdw:taskEventHistory> 10938 <xdw:taskEvent> 10939 <xdw:id>1</xdw:id> 10940 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 10941 <xdw:identifier>task_4#1</xdw:identifier> 10942 <xdw:eventType>create</xdw:eventType> 10943 <xdw:status>READY</xdw:status> 10944 <xdw:eventData xsi:nil="true"/> 10945 </xdw:taskEvent> 10946 </xdw:taskEventHistory> 10947 </xdw:XDWTask> 10948 </xdw:TaskList> 10949 </xdw:XDW.WorkflowDocument> 10950 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 10951 <rlustypes:success>true</rlustypes:success> 10952 <rlustypes:message>One record fetched</rlustypes:message> 10953 </rlustypes:RLUSStatusCode> 10954 </GetResponse> 10955 </soapenv:Body> 10956 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41793</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/cda2report"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 10957 <soap:Header></soap:Header> 10958 <soap:Body> 10959 <PutRequest xmlns="urn:dedalus:rlus:cda2report:types"> 10960 <ClinicalDocument xmlns="urn:hl7-org:v3"> 10961 <realmCode code="IT"></realmCode> 10962 <typeId root="2.16.840.1.113883.1.3" extension="POCD_HD000040"></typeId> 10963 <templateId root="2.16.840.1.113883.2.9.10.2.10" extension="ITPRF_REF_RADIO-001"></templateId> 10964 <id root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-004"></id> 10965 <code codeSystem="2.16.840.1.113883.6.1" code="18748-4" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study Report Diagnostic Imaging"></code> 10966 <effectiveTime value="20140606114243+0100"></effectiveTime> 10967 <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></confidentialityCode> 10968 <languageCode code="it-IT"></languageCode> 10969 <setId root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-004"></setId> 10970 <versionNumber value="1"></versionNumber> 10971 <recordTarget> 10972 <patientRole> 10973 <id extension="7809c024-8058-4c89-9a71-effd2d53f171" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 10974 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="PZNGZL62H58D524R" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 10975 <hl7v3:patient xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212"> 10976 <hl7v3:name> 10977 <hl7v3:given>Graziella</hl7v3:given> 10978 <hl7v3:family>Paziente</hl7v3:family> 10979 </hl7v3:name> 10980 <hl7v3:administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 10981 <hl7v3:birthTime value="19620618093000+0100"></hl7v3:birthTime> 10982 </hl7v3:patient> 10983 </patientRole> 10984 </recordTarget> 10985 <author> 10986 <time value="20140606114243+0100"></time> 10987 <assignedAuthor> 10988 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 10989 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 10990 </assignedAuthor> 10991 </author> 10992 <custodian> 10993 <assignedCustodian> 10994 <representedCustodianOrganization> 10995 <id root="2.16.840.1.113883.2.9.3.12" extension="2.16.840.1.113883.2.9.3.12.4"></id> 10996 </representedCustodianOrganization> 10997 </assignedCustodian> 10998 </custodian> 10999 <legalAuthenticator> 11000 <time value="20140606114243+0100"></time> 11001 <signatureCode code="S"></signatureCode> 11002 <assignedEntity> 11003 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 11004 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 11005 </assignedEntity> 11006 </legalAuthenticator> 11007 <component> 11008 <structuredBody> 11009 <component> 11010 <section> 11011 <code code="18782-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study observation"></code> 11012 <title>Scintigrafia miocardica con 123I-MIBG</title> 11013 <text> 11014 <paragraph> 11015 <content>Conservata concentrazione del radiocomposto in sede miocardica sia in fase precoce che in fase tardiva. Valori H/M nella norma.</content> 11016 </paragraph> 11017 <table border="0"> 11018 <tbody> 11019 <tr> 11020 <td>Acquisizione precoce: H/M=1.67 (v.n. 1.94 ᅡᄆ 0.18)</td> 11021 <td>Acquisizione tardiva: H/M=1.72 (v.n. 2.02 ᅡᄆ 0.19)</td> 11022 </tr> 11023 </tbody> 11024 </table> 11025 </text> 11026 </section> 11027 </component> 11028 </structuredBody> 11029 </component> 11030 </ClinicalDocument> 11031 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 11032 <rlustypes:RLUSsemantic-signifierName>cda2report</rlustypes:RLUSsemantic-signifierName> 11033 <rlustypes:SecurityContext> 11034 <rlustypes:SourceIdentity identityName="admin"></rlustypes:SourceIdentity> 11035 </rlustypes:SecurityContext> 11036 <rlustypes:CBRContext> 11037 <rlustypes:CBRName>Testing App</rlustypes:CBRName> 11038 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 11039 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 11040 </rlustypes:CBRContext> 11041 </rlustypes:RLUSPutRequestSrcStruct> 11042 <writeCommandEnum>INSERT</writeCommandEnum> 11043 </PutRequest> 11044 </soap:Body> 11045 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 11046 <soapenv:Header/> 11047 <soapenv:Body> 11048 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 11049 <rlustypes:success>true</rlustypes:success> 11050 <rlustypes:message/> 11051 </rlustypes:RLUSStatusCode> 11052 </soapenv:Body> 11053 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 11054 <soap:Header/> 11055 <soap:Body> 11056 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 11057 <rlustypes:searchByCriteria> 11058 <rlustypes:FilterCriteria> 11059 <rlustypes:Expression> 11060 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 11061 <rlusexp:Operator type="EqualTo"/> 11062 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 11063 </rlustypes:Expression> 11064 </rlustypes:FilterCriteria> 11065 <rlustypes:SearchAttributes> 11066 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 11067 </rlustypes:SearchAttributes> 11068 </rlustypes:searchByCriteria> 11069 </rlustypes:RLUSSearchStruct> 11070 </soap:Body> 11071 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="17942"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="17942"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 11072 <soapenv:Header/> 11073 <soapenv:Body> 11074 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 11075 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 11076 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="388335b0-d76b-4c05-8b82-814dee8cbd3f"/> 11077 <xdw:effectiveTime value="20140613172025+0200"/> 11078 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 11079 <xdw:patient> 11080 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 11081 </xdw:patient> 11082 <xdw:author> 11083 <xdw:assignedAuthor> 11084 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 11085 <hl7v3:assignedPerson/> 11086 </xdw:assignedAuthor> 11087 </xdw:author> 11088 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 11089 <xdw:workflowDocumentSequenceNumber>14</xdw:workflowDocumentSequenceNumber> 11090 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 11091 <xdw:workflowStatusHistory> 11092 <xdw:documentEvent> 11093 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 11094 <xdw:eventType>complete</xdw:eventType> 11095 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 11096 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11097 <xdw:previousStatus>OPEN</xdw:previousStatus> 11098 <xdw:actualStatus>OPEN</xdw:actualStatus> 11099 </xdw:documentEvent> 11100 <xdw:documentEvent> 11101 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 11102 <xdw:eventType>create</xdw:eventType> 11103 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 11104 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11105 <xdw:previousStatus>OPEN</xdw:previousStatus> 11106 <xdw:actualStatus>OPEN</xdw:actualStatus> 11107 </xdw:documentEvent> 11108 <xdw:documentEvent> 11109 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 11110 <xdw:eventType>create</xdw:eventType> 11111 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 11112 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11113 <xdw:previousStatus>OPEN</xdw:previousStatus> 11114 <xdw:actualStatus>OPEN</xdw:actualStatus> 11115 </xdw:documentEvent> 11116 <xdw:documentEvent> 11117 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 11118 <xdw:eventType>create</xdw:eventType> 11119 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 11120 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11121 <xdw:previousStatus>OPEN</xdw:previousStatus> 11122 <xdw:actualStatus>OPEN</xdw:actualStatus> 11123 </xdw:documentEvent> 11124 <xdw:documentEvent> 11125 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 11126 <xdw:eventType>create</xdw:eventType> 11127 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 11128 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11129 <xdw:previousStatus>OPEN</xdw:previousStatus> 11130 <xdw:actualStatus>OPEN</xdw:actualStatus> 11131 </xdw:documentEvent> 11132 <xdw:documentEvent> 11133 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 11134 <xdw:eventType>create</xdw:eventType> 11135 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 11136 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11137 <xdw:previousStatus>OPEN</xdw:previousStatus> 11138 <xdw:actualStatus>OPEN</xdw:actualStatus> 11139 </xdw:documentEvent> 11140 </xdw:workflowStatusHistory> 11141 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 11142 <xdw:TaskList> 11143 <xdw:XDWTask> 11144 <xdw:taskData> 11145 <ws-ht:taskDetails> 11146 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 11147 <ws-ht:taskType>Requested</ws-ht:taskType> 11148 <ws-ht:name>xdw.creation</ws-ht:name> 11149 <ws-ht:status>COMPLETED</ws-ht:status> 11150 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11151 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 11152 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11153 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 11154 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11155 </ws-ht:taskDetails> 11156 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 11157 <ws-ht:input/> 11158 <ws-ht:output/> 11159 </xdw:taskData> 11160 <xdw:taskEventHistory> 11161 <xdw:taskEvent> 11162 <xdw:id>1</xdw:id> 11163 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 11164 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 11165 <xdw:eventType>complete</xdw:eventType> 11166 <xdw:status>COMPLETED</xdw:status> 11167 <xdw:eventData xsi:nil="true"/> 11168 </xdw:taskEvent> 11169 </xdw:taskEventHistory> 11170 </xdw:XDWTask> 11171 <xdw:XDWTask> 11172 <xdw:taskData> 11173 <ws-ht:taskDetails> 11174 <ws-ht:id>task_0</ws-ht:id> 11175 <ws-ht:taskType>ttype</ws-ht:taskType> 11176 <ws-ht:name>tname_0</ws-ht:name> 11177 <ws-ht:status>COMPLETED</ws-ht:status> 11178 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11179 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 11180 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11181 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 11182 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11183 </ws-ht:taskDetails> 11184 <ws-ht:description>Undocumented task</ws-ht:description> 11185 <ws-ht:input/> 11186 <ws-ht:output> 11187 <ws-ht:part name="documentReference"> 11188 <ws-ht:attachment> 11189 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 11190 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 11191 <ws-ht:accessType>RLUS</ws-ht:accessType> 11192 <ws-ht:contentType>application/xml</ws-ht:contentType> 11193 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11194 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 11195 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11196 </ws-ht:attachment> 11197 </ws-ht:part> 11198 </ws-ht:output> 11199 </xdw:taskData> 11200 <xdw:taskEventHistory> 11201 <xdw:taskEvent> 11202 <xdw:id>1</xdw:id> 11203 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 11204 <xdw:identifier>task_0#1</xdw:identifier> 11205 <xdw:eventType>create</xdw:eventType> 11206 <xdw:status>READY</xdw:status> 11207 <xdw:eventData xsi:nil="true"/> 11208 </xdw:taskEvent> 11209 <xdw:taskEvent> 11210 <xdw:id>2</xdw:id> 11211 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 11212 <xdw:identifier>task_0#2</xdw:identifier> 11213 <xdw:eventType>complete</xdw:eventType> 11214 <xdw:status>COMPLETED</xdw:status> 11215 <xdw:eventData xsi:nil="true"/> 11216 </xdw:taskEvent> 11217 </xdw:taskEventHistory> 11218 </xdw:XDWTask> 11219 <xdw:XDWTask> 11220 <xdw:taskData> 11221 <ws-ht:taskDetails> 11222 <ws-ht:id>task_1</ws-ht:id> 11223 <ws-ht:taskType>ttype</ws-ht:taskType> 11224 <ws-ht:name>tname_1</ws-ht:name> 11225 <ws-ht:status>COMPLETED</ws-ht:status> 11226 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11227 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 11228 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11229 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 11230 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11231 </ws-ht:taskDetails> 11232 <ws-ht:description>Undocumented task</ws-ht:description> 11233 <ws-ht:input/> 11234 <ws-ht:output> 11235 <ws-ht:part name="documentReference"> 11236 <ws-ht:attachment> 11237 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 11238 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 11239 <ws-ht:accessType>RLUS</ws-ht:accessType> 11240 <ws-ht:contentType>application/xml</ws-ht:contentType> 11241 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11242 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 11243 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11244 </ws-ht:attachment> 11245 </ws-ht:part> 11246 </ws-ht:output> 11247 </xdw:taskData> 11248 <xdw:taskEventHistory> 11249 <xdw:taskEvent> 11250 <xdw:id>1</xdw:id> 11251 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 11252 <xdw:identifier>task_1#1</xdw:identifier> 11253 <xdw:eventType>create</xdw:eventType> 11254 <xdw:status>READY</xdw:status> 11255 <xdw:eventData xsi:nil="true"/> 11256 </xdw:taskEvent> 11257 <xdw:taskEvent> 11258 <xdw:id>2</xdw:id> 11259 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 11260 <xdw:identifier>task_1#2</xdw:identifier> 11261 <xdw:eventType>complete</xdw:eventType> 11262 <xdw:status>COMPLETED</xdw:status> 11263 <xdw:eventData xsi:nil="true"/> 11264 </xdw:taskEvent> 11265 </xdw:taskEventHistory> 11266 </xdw:XDWTask> 11267 <xdw:XDWTask> 11268 <xdw:taskData> 11269 <ws-ht:taskDetails> 11270 <ws-ht:id>task_2</ws-ht:id> 11271 <ws-ht:taskType>ttype</ws-ht:taskType> 11272 <ws-ht:name>tname_2</ws-ht:name> 11273 <ws-ht:status>COMPLETED</ws-ht:status> 11274 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11275 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 11276 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11277 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 11278 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11279 </ws-ht:taskDetails> 11280 <ws-ht:description>Undocumented task</ws-ht:description> 11281 <ws-ht:input/> 11282 <ws-ht:output> 11283 <ws-ht:part name="documentReference"> 11284 <ws-ht:attachment> 11285 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 11286 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 11287 <ws-ht:accessType>RLUS</ws-ht:accessType> 11288 <ws-ht:contentType>application/xml</ws-ht:contentType> 11289 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11290 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 11291 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11292 </ws-ht:attachment> 11293 </ws-ht:part> 11294 </ws-ht:output> 11295 </xdw:taskData> 11296 <xdw:taskEventHistory> 11297 <xdw:taskEvent> 11298 <xdw:id>1</xdw:id> 11299 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 11300 <xdw:identifier>task_2#1</xdw:identifier> 11301 <xdw:eventType>create</xdw:eventType> 11302 <xdw:status>READY</xdw:status> 11303 <xdw:eventData xsi:nil="true"/> 11304 </xdw:taskEvent> 11305 <xdw:taskEvent> 11306 <xdw:id>2</xdw:id> 11307 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 11308 <xdw:identifier>task_2#2</xdw:identifier> 11309 <xdw:eventType>complete</xdw:eventType> 11310 <xdw:status>COMPLETED</xdw:status> 11311 <xdw:eventData xsi:nil="true"/> 11312 </xdw:taskEvent> 11313 </xdw:taskEventHistory> 11314 </xdw:XDWTask> 11315 <xdw:XDWTask> 11316 <xdw:taskData> 11317 <ws-ht:taskDetails> 11318 <ws-ht:id>task_3</ws-ht:id> 11319 <ws-ht:taskType>ttype</ws-ht:taskType> 11320 <ws-ht:name>tname_3</ws-ht:name> 11321 <ws-ht:status>COMPLETED</ws-ht:status> 11322 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11323 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 11324 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11325 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 11326 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11327 </ws-ht:taskDetails> 11328 <ws-ht:description>Undocumented task</ws-ht:description> 11329 <ws-ht:input/> 11330 <ws-ht:output> 11331 <ws-ht:part name="documentReference"> 11332 <ws-ht:attachment> 11333 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 11334 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 11335 <ws-ht:accessType>RLUS</ws-ht:accessType> 11336 <ws-ht:contentType>application/xml</ws-ht:contentType> 11337 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11338 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 11339 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11340 </ws-ht:attachment> 11341 </ws-ht:part> 11342 </ws-ht:output> 11343 </xdw:taskData> 11344 <xdw:taskEventHistory> 11345 <xdw:taskEvent> 11346 <xdw:id>1</xdw:id> 11347 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 11348 <xdw:identifier>task_3#1</xdw:identifier> 11349 <xdw:eventType>create</xdw:eventType> 11350 <xdw:status>READY</xdw:status> 11351 <xdw:eventData xsi:nil="true"/> 11352 </xdw:taskEvent> 11353 <xdw:taskEvent> 11354 <xdw:id>2</xdw:id> 11355 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 11356 <xdw:identifier>task_3#2</xdw:identifier> 11357 <xdw:eventType>complete</xdw:eventType> 11358 <xdw:status>COMPLETED</xdw:status> 11359 <xdw:eventData xsi:nil="true"/> 11360 </xdw:taskEvent> 11361 </xdw:taskEventHistory> 11362 </xdw:XDWTask> 11363 <xdw:XDWTask> 11364 <xdw:taskData> 11365 <ws-ht:taskDetails> 11366 <ws-ht:id>task_4</ws-ht:id> 11367 <ws-ht:taskType>ttype</ws-ht:taskType> 11368 <ws-ht:name>tname_4</ws-ht:name> 11369 <ws-ht:status>READY</ws-ht:status> 11370 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11371 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 11372 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11373 <ws-ht:lastModifiedTime>2014-06-13T17:20:25.669+02:00</ws-ht:lastModifiedTime> 11374 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11375 </ws-ht:taskDetails> 11376 <ws-ht:description>Undocumented task</ws-ht:description> 11377 <ws-ht:input/> 11378 <ws-ht:output/> 11379 </xdw:taskData> 11380 <xdw:taskEventHistory> 11381 <xdw:taskEvent> 11382 <xdw:id>1</xdw:id> 11383 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 11384 <xdw:identifier>task_4#1</xdw:identifier> 11385 <xdw:eventType>create</xdw:eventType> 11386 <xdw:status>READY</xdw:status> 11387 <xdw:eventData xsi:nil="true"/> 11388 </xdw:taskEvent> 11389 </xdw:taskEventHistory> 11390 </xdw:XDWTask> 11391 </xdw:TaskList> 11392 </xdw:XDW.WorkflowDocument> 11393 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 11394 <rlustypes:success>true</rlustypes:success> 11395 <rlustypes:message>One record fetched</rlustypes:message> 11396 </rlustypes:RLUSStatusCode> 11397 </GetResponse> 11398 </soapenv:Body> 11399 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 11400 <soap:Header/> 11401 <soap:Body> 11402 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 11403 <rlustypes:searchByCriteria> 11404 <rlustypes:FilterCriteria> 11405 <rlustypes:Expression> 11406 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 11407 <rlusexp:Operator type="EqualTo"/> 11408 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 11409 </rlustypes:Expression> 11410 </rlustypes:FilterCriteria> 11411 <rlustypes:SearchAttributes> 11412 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 11413 </rlustypes:SearchAttributes> 11414 </rlustypes:searchByCriteria> 11415 </rlustypes:RLUSSearchStruct> 11416 </soap:Body> 11417 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="17942"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="17942"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 11418 <soapenv:Header/> 11419 <soapenv:Body> 11420 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 11421 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 11422 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="388335b0-d76b-4c05-8b82-814dee8cbd3f"/> 11423 <xdw:effectiveTime value="20140613172025+0200"/> 11424 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 11425 <xdw:patient> 11426 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 11427 </xdw:patient> 11428 <xdw:author> 11429 <xdw:assignedAuthor> 11430 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 11431 <hl7v3:assignedPerson/> 11432 </xdw:assignedAuthor> 11433 </xdw:author> 11434 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 11435 <xdw:workflowDocumentSequenceNumber>14</xdw:workflowDocumentSequenceNumber> 11436 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 11437 <xdw:workflowStatusHistory> 11438 <xdw:documentEvent> 11439 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 11440 <xdw:eventType>complete</xdw:eventType> 11441 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 11442 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11443 <xdw:previousStatus>OPEN</xdw:previousStatus> 11444 <xdw:actualStatus>OPEN</xdw:actualStatus> 11445 </xdw:documentEvent> 11446 <xdw:documentEvent> 11447 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 11448 <xdw:eventType>create</xdw:eventType> 11449 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 11450 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11451 <xdw:previousStatus>OPEN</xdw:previousStatus> 11452 <xdw:actualStatus>OPEN</xdw:actualStatus> 11453 </xdw:documentEvent> 11454 <xdw:documentEvent> 11455 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 11456 <xdw:eventType>create</xdw:eventType> 11457 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 11458 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11459 <xdw:previousStatus>OPEN</xdw:previousStatus> 11460 <xdw:actualStatus>OPEN</xdw:actualStatus> 11461 </xdw:documentEvent> 11462 <xdw:documentEvent> 11463 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 11464 <xdw:eventType>create</xdw:eventType> 11465 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 11466 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11467 <xdw:previousStatus>OPEN</xdw:previousStatus> 11468 <xdw:actualStatus>OPEN</xdw:actualStatus> 11469 </xdw:documentEvent> 11470 <xdw:documentEvent> 11471 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 11472 <xdw:eventType>create</xdw:eventType> 11473 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 11474 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11475 <xdw:previousStatus>OPEN</xdw:previousStatus> 11476 <xdw:actualStatus>OPEN</xdw:actualStatus> 11477 </xdw:documentEvent> 11478 <xdw:documentEvent> 11479 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 11480 <xdw:eventType>create</xdw:eventType> 11481 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 11482 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11483 <xdw:previousStatus>OPEN</xdw:previousStatus> 11484 <xdw:actualStatus>OPEN</xdw:actualStatus> 11485 </xdw:documentEvent> 11486 </xdw:workflowStatusHistory> 11487 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 11488 <xdw:TaskList> 11489 <xdw:XDWTask> 11490 <xdw:taskData> 11491 <ws-ht:taskDetails> 11492 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 11493 <ws-ht:taskType>Requested</ws-ht:taskType> 11494 <ws-ht:name>xdw.creation</ws-ht:name> 11495 <ws-ht:status>COMPLETED</ws-ht:status> 11496 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11497 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 11498 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11499 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 11500 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11501 </ws-ht:taskDetails> 11502 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 11503 <ws-ht:input/> 11504 <ws-ht:output/> 11505 </xdw:taskData> 11506 <xdw:taskEventHistory> 11507 <xdw:taskEvent> 11508 <xdw:id>1</xdw:id> 11509 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 11510 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 11511 <xdw:eventType>complete</xdw:eventType> 11512 <xdw:status>COMPLETED</xdw:status> 11513 <xdw:eventData xsi:nil="true"/> 11514 </xdw:taskEvent> 11515 </xdw:taskEventHistory> 11516 </xdw:XDWTask> 11517 <xdw:XDWTask> 11518 <xdw:taskData> 11519 <ws-ht:taskDetails> 11520 <ws-ht:id>task_0</ws-ht:id> 11521 <ws-ht:taskType>ttype</ws-ht:taskType> 11522 <ws-ht:name>tname_0</ws-ht:name> 11523 <ws-ht:status>COMPLETED</ws-ht:status> 11524 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11525 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 11526 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11527 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 11528 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11529 </ws-ht:taskDetails> 11530 <ws-ht:description>Undocumented task</ws-ht:description> 11531 <ws-ht:input/> 11532 <ws-ht:output> 11533 <ws-ht:part name="documentReference"> 11534 <ws-ht:attachment> 11535 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 11536 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 11537 <ws-ht:accessType>RLUS</ws-ht:accessType> 11538 <ws-ht:contentType>application/xml</ws-ht:contentType> 11539 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11540 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 11541 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11542 </ws-ht:attachment> 11543 </ws-ht:part> 11544 </ws-ht:output> 11545 </xdw:taskData> 11546 <xdw:taskEventHistory> 11547 <xdw:taskEvent> 11548 <xdw:id>1</xdw:id> 11549 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 11550 <xdw:identifier>task_0#1</xdw:identifier> 11551 <xdw:eventType>create</xdw:eventType> 11552 <xdw:status>READY</xdw:status> 11553 <xdw:eventData xsi:nil="true"/> 11554 </xdw:taskEvent> 11555 <xdw:taskEvent> 11556 <xdw:id>2</xdw:id> 11557 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 11558 <xdw:identifier>task_0#2</xdw:identifier> 11559 <xdw:eventType>complete</xdw:eventType> 11560 <xdw:status>COMPLETED</xdw:status> 11561 <xdw:eventData xsi:nil="true"/> 11562 </xdw:taskEvent> 11563 </xdw:taskEventHistory> 11564 </xdw:XDWTask> 11565 <xdw:XDWTask> 11566 <xdw:taskData> 11567 <ws-ht:taskDetails> 11568 <ws-ht:id>task_1</ws-ht:id> 11569 <ws-ht:taskType>ttype</ws-ht:taskType> 11570 <ws-ht:name>tname_1</ws-ht:name> 11571 <ws-ht:status>COMPLETED</ws-ht:status> 11572 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11573 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 11574 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11575 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 11576 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11577 </ws-ht:taskDetails> 11578 <ws-ht:description>Undocumented task</ws-ht:description> 11579 <ws-ht:input/> 11580 <ws-ht:output> 11581 <ws-ht:part name="documentReference"> 11582 <ws-ht:attachment> 11583 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 11584 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 11585 <ws-ht:accessType>RLUS</ws-ht:accessType> 11586 <ws-ht:contentType>application/xml</ws-ht:contentType> 11587 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11588 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 11589 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11590 </ws-ht:attachment> 11591 </ws-ht:part> 11592 </ws-ht:output> 11593 </xdw:taskData> 11594 <xdw:taskEventHistory> 11595 <xdw:taskEvent> 11596 <xdw:id>1</xdw:id> 11597 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 11598 <xdw:identifier>task_1#1</xdw:identifier> 11599 <xdw:eventType>create</xdw:eventType> 11600 <xdw:status>READY</xdw:status> 11601 <xdw:eventData xsi:nil="true"/> 11602 </xdw:taskEvent> 11603 <xdw:taskEvent> 11604 <xdw:id>2</xdw:id> 11605 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 11606 <xdw:identifier>task_1#2</xdw:identifier> 11607 <xdw:eventType>complete</xdw:eventType> 11608 <xdw:status>COMPLETED</xdw:status> 11609 <xdw:eventData xsi:nil="true"/> 11610 </xdw:taskEvent> 11611 </xdw:taskEventHistory> 11612 </xdw:XDWTask> 11613 <xdw:XDWTask> 11614 <xdw:taskData> 11615 <ws-ht:taskDetails> 11616 <ws-ht:id>task_2</ws-ht:id> 11617 <ws-ht:taskType>ttype</ws-ht:taskType> 11618 <ws-ht:name>tname_2</ws-ht:name> 11619 <ws-ht:status>COMPLETED</ws-ht:status> 11620 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11621 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 11622 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11623 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 11624 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11625 </ws-ht:taskDetails> 11626 <ws-ht:description>Undocumented task</ws-ht:description> 11627 <ws-ht:input/> 11628 <ws-ht:output> 11629 <ws-ht:part name="documentReference"> 11630 <ws-ht:attachment> 11631 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 11632 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 11633 <ws-ht:accessType>RLUS</ws-ht:accessType> 11634 <ws-ht:contentType>application/xml</ws-ht:contentType> 11635 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11636 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 11637 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11638 </ws-ht:attachment> 11639 </ws-ht:part> 11640 </ws-ht:output> 11641 </xdw:taskData> 11642 <xdw:taskEventHistory> 11643 <xdw:taskEvent> 11644 <xdw:id>1</xdw:id> 11645 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 11646 <xdw:identifier>task_2#1</xdw:identifier> 11647 <xdw:eventType>create</xdw:eventType> 11648 <xdw:status>READY</xdw:status> 11649 <xdw:eventData xsi:nil="true"/> 11650 </xdw:taskEvent> 11651 <xdw:taskEvent> 11652 <xdw:id>2</xdw:id> 11653 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 11654 <xdw:identifier>task_2#2</xdw:identifier> 11655 <xdw:eventType>complete</xdw:eventType> 11656 <xdw:status>COMPLETED</xdw:status> 11657 <xdw:eventData xsi:nil="true"/> 11658 </xdw:taskEvent> 11659 </xdw:taskEventHistory> 11660 </xdw:XDWTask> 11661 <xdw:XDWTask> 11662 <xdw:taskData> 11663 <ws-ht:taskDetails> 11664 <ws-ht:id>task_3</ws-ht:id> 11665 <ws-ht:taskType>ttype</ws-ht:taskType> 11666 <ws-ht:name>tname_3</ws-ht:name> 11667 <ws-ht:status>COMPLETED</ws-ht:status> 11668 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11669 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 11670 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11671 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 11672 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11673 </ws-ht:taskDetails> 11674 <ws-ht:description>Undocumented task</ws-ht:description> 11675 <ws-ht:input/> 11676 <ws-ht:output> 11677 <ws-ht:part name="documentReference"> 11678 <ws-ht:attachment> 11679 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 11680 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 11681 <ws-ht:accessType>RLUS</ws-ht:accessType> 11682 <ws-ht:contentType>application/xml</ws-ht:contentType> 11683 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11684 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 11685 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11686 </ws-ht:attachment> 11687 </ws-ht:part> 11688 </ws-ht:output> 11689 </xdw:taskData> 11690 <xdw:taskEventHistory> 11691 <xdw:taskEvent> 11692 <xdw:id>1</xdw:id> 11693 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 11694 <xdw:identifier>task_3#1</xdw:identifier> 11695 <xdw:eventType>create</xdw:eventType> 11696 <xdw:status>READY</xdw:status> 11697 <xdw:eventData xsi:nil="true"/> 11698 </xdw:taskEvent> 11699 <xdw:taskEvent> 11700 <xdw:id>2</xdw:id> 11701 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 11702 <xdw:identifier>task_3#2</xdw:identifier> 11703 <xdw:eventType>complete</xdw:eventType> 11704 <xdw:status>COMPLETED</xdw:status> 11705 <xdw:eventData xsi:nil="true"/> 11706 </xdw:taskEvent> 11707 </xdw:taskEventHistory> 11708 </xdw:XDWTask> 11709 <xdw:XDWTask> 11710 <xdw:taskData> 11711 <ws-ht:taskDetails> 11712 <ws-ht:id>task_4</ws-ht:id> 11713 <ws-ht:taskType>ttype</ws-ht:taskType> 11714 <ws-ht:name>tname_4</ws-ht:name> 11715 <ws-ht:status>READY</ws-ht:status> 11716 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11717 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 11718 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11719 <ws-ht:lastModifiedTime>2014-06-13T17:20:25.669+02:00</ws-ht:lastModifiedTime> 11720 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11721 </ws-ht:taskDetails> 11722 <ws-ht:description>Undocumented task</ws-ht:description> 11723 <ws-ht:input/> 11724 <ws-ht:output/> 11725 </xdw:taskData> 11726 <xdw:taskEventHistory> 11727 <xdw:taskEvent> 11728 <xdw:id>1</xdw:id> 11729 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 11730 <xdw:identifier>task_4#1</xdw:identifier> 11731 <xdw:eventType>create</xdw:eventType> 11732 <xdw:status>READY</xdw:status> 11733 <xdw:eventData xsi:nil="true"/> 11734 </xdw:taskEvent> 11735 </xdw:taskEventHistory> 11736 </xdw:XDWTask> 11737 </xdw:TaskList> 11738 </xdw:XDW.WorkflowDocument> 11739 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 11740 <rlustypes:success>true</rlustypes:success> 11741 <rlustypes:message>One record fetched</rlustypes:message> 11742 </rlustypes:RLUSStatusCode> 11743 </GetResponse> 11744 </soapenv:Body> 11745 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="19149"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="19149"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 11746 <soap:Header/> 11747 <soap:Body> 11748 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 11749 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 11750 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="80c880f0-4185-428b-8642-930c9c4ae506"/> 11751 <xdw:effectiveTime value="20140613172029+0200"/> 11752 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 11753 <xdw:patient> 11754 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 11755 </xdw:patient> 11756 <xdw:author> 11757 <xdw:assignedAuthor> 11758 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 11759 <hl7v3:assignedPerson/> 11760 </xdw:assignedAuthor> 11761 </xdw:author> 11762 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 11763 <xdw:workflowDocumentSequenceNumber>15</xdw:workflowDocumentSequenceNumber> 11764 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 11765 <xdw:workflowStatusHistory> 11766 <xdw:documentEvent> 11767 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 11768 <xdw:eventType>complete</xdw:eventType> 11769 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 11770 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11771 <xdw:previousStatus>OPEN</xdw:previousStatus> 11772 <xdw:actualStatus>OPEN</xdw:actualStatus> 11773 </xdw:documentEvent> 11774 <xdw:documentEvent> 11775 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 11776 <xdw:eventType>create</xdw:eventType> 11777 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 11778 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11779 <xdw:previousStatus>OPEN</xdw:previousStatus> 11780 <xdw:actualStatus>OPEN</xdw:actualStatus> 11781 </xdw:documentEvent> 11782 <xdw:documentEvent> 11783 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 11784 <xdw:eventType>create</xdw:eventType> 11785 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 11786 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11787 <xdw:previousStatus>OPEN</xdw:previousStatus> 11788 <xdw:actualStatus>OPEN</xdw:actualStatus> 11789 </xdw:documentEvent> 11790 <xdw:documentEvent> 11791 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 11792 <xdw:eventType>create</xdw:eventType> 11793 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 11794 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11795 <xdw:previousStatus>OPEN</xdw:previousStatus> 11796 <xdw:actualStatus>OPEN</xdw:actualStatus> 11797 </xdw:documentEvent> 11798 <xdw:documentEvent> 11799 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 11800 <xdw:eventType>create</xdw:eventType> 11801 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 11802 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11803 <xdw:previousStatus>OPEN</xdw:previousStatus> 11804 <xdw:actualStatus>OPEN</xdw:actualStatus> 11805 </xdw:documentEvent> 11806 <xdw:documentEvent> 11807 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 11808 <xdw:eventType>create</xdw:eventType> 11809 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 11810 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 11811 <xdw:previousStatus>OPEN</xdw:previousStatus> 11812 <xdw:actualStatus>OPEN</xdw:actualStatus> 11813 </xdw:documentEvent> 11814 </xdw:workflowStatusHistory> 11815 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 11816 <xdw:TaskList> 11817 <xdw:XDWTask> 11818 <xdw:taskData> 11819 <ws-ht:taskDetails> 11820 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 11821 <ws-ht:taskType>Requested</ws-ht:taskType> 11822 <ws-ht:name>xdw.creation</ws-ht:name> 11823 <ws-ht:status>COMPLETED</ws-ht:status> 11824 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11825 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 11826 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11827 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 11828 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11829 </ws-ht:taskDetails> 11830 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 11831 <ws-ht:input/> 11832 <ws-ht:output/> 11833 </xdw:taskData> 11834 <xdw:taskEventHistory> 11835 <xdw:taskEvent> 11836 <xdw:id>1</xdw:id> 11837 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 11838 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 11839 <xdw:eventType>complete</xdw:eventType> 11840 <xdw:status>COMPLETED</xdw:status> 11841 <xdw:eventData xsi:nil="true"/> 11842 </xdw:taskEvent> 11843 </xdw:taskEventHistory> 11844 </xdw:XDWTask> 11845 <xdw:XDWTask> 11846 <xdw:taskData> 11847 <ws-ht:taskDetails> 11848 <ws-ht:id>task_0</ws-ht:id> 11849 <ws-ht:taskType>ttype</ws-ht:taskType> 11850 <ws-ht:name>tname_0</ws-ht:name> 11851 <ws-ht:status>COMPLETED</ws-ht:status> 11852 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11853 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 11854 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11855 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 11856 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11857 </ws-ht:taskDetails> 11858 <ws-ht:description>Undocumented task</ws-ht:description> 11859 <ws-ht:input/> 11860 <ws-ht:output> 11861 <ws-ht:part name="documentReference"> 11862 <ws-ht:attachment> 11863 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 11864 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 11865 <ws-ht:accessType>RLUS</ws-ht:accessType> 11866 <ws-ht:contentType>application/xml</ws-ht:contentType> 11867 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11868 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 11869 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11870 </ws-ht:attachment> 11871 </ws-ht:part> 11872 </ws-ht:output> 11873 </xdw:taskData> 11874 <xdw:taskEventHistory> 11875 <xdw:taskEvent> 11876 <xdw:id>1</xdw:id> 11877 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 11878 <xdw:identifier>task_0#1</xdw:identifier> 11879 <xdw:eventType>create</xdw:eventType> 11880 <xdw:status>READY</xdw:status> 11881 <xdw:eventData xsi:nil="true"/> 11882 </xdw:taskEvent> 11883 <xdw:taskEvent> 11884 <xdw:id>2</xdw:id> 11885 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 11886 <xdw:identifier>task_0#2</xdw:identifier> 11887 <xdw:eventType>complete</xdw:eventType> 11888 <xdw:status>COMPLETED</xdw:status> 11889 <xdw:eventData xsi:nil="true"/> 11890 </xdw:taskEvent> 11891 </xdw:taskEventHistory> 11892 </xdw:XDWTask> 11893 <xdw:XDWTask> 11894 <xdw:taskData> 11895 <ws-ht:taskDetails> 11896 <ws-ht:id>task_1</ws-ht:id> 11897 <ws-ht:taskType>ttype</ws-ht:taskType> 11898 <ws-ht:name>tname_1</ws-ht:name> 11899 <ws-ht:status>COMPLETED</ws-ht:status> 11900 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11901 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 11902 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11903 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 11904 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11905 </ws-ht:taskDetails> 11906 <ws-ht:description>Undocumented task</ws-ht:description> 11907 <ws-ht:input/> 11908 <ws-ht:output> 11909 <ws-ht:part name="documentReference"> 11910 <ws-ht:attachment> 11911 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 11912 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 11913 <ws-ht:accessType>RLUS</ws-ht:accessType> 11914 <ws-ht:contentType>application/xml</ws-ht:contentType> 11915 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11916 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 11917 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11918 </ws-ht:attachment> 11919 </ws-ht:part> 11920 </ws-ht:output> 11921 </xdw:taskData> 11922 <xdw:taskEventHistory> 11923 <xdw:taskEvent> 11924 <xdw:id>1</xdw:id> 11925 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 11926 <xdw:identifier>task_1#1</xdw:identifier> 11927 <xdw:eventType>create</xdw:eventType> 11928 <xdw:status>READY</xdw:status> 11929 <xdw:eventData xsi:nil="true"/> 11930 </xdw:taskEvent> 11931 <xdw:taskEvent> 11932 <xdw:id>2</xdw:id> 11933 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 11934 <xdw:identifier>task_1#2</xdw:identifier> 11935 <xdw:eventType>complete</xdw:eventType> 11936 <xdw:status>COMPLETED</xdw:status> 11937 <xdw:eventData xsi:nil="true"/> 11938 </xdw:taskEvent> 11939 </xdw:taskEventHistory> 11940 </xdw:XDWTask> 11941 <xdw:XDWTask> 11942 <xdw:taskData> 11943 <ws-ht:taskDetails> 11944 <ws-ht:id>task_2</ws-ht:id> 11945 <ws-ht:taskType>ttype</ws-ht:taskType> 11946 <ws-ht:name>tname_2</ws-ht:name> 11947 <ws-ht:status>COMPLETED</ws-ht:status> 11948 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11949 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 11950 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11951 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 11952 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 11953 </ws-ht:taskDetails> 11954 <ws-ht:description>Undocumented task</ws-ht:description> 11955 <ws-ht:input/> 11956 <ws-ht:output> 11957 <ws-ht:part name="documentReference"> 11958 <ws-ht:attachment> 11959 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 11960 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 11961 <ws-ht:accessType>RLUS</ws-ht:accessType> 11962 <ws-ht:contentType>application/xml</ws-ht:contentType> 11963 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 11964 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 11965 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 11966 </ws-ht:attachment> 11967 </ws-ht:part> 11968 </ws-ht:output> 11969 </xdw:taskData> 11970 <xdw:taskEventHistory> 11971 <xdw:taskEvent> 11972 <xdw:id>1</xdw:id> 11973 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 11974 <xdw:identifier>task_2#1</xdw:identifier> 11975 <xdw:eventType>create</xdw:eventType> 11976 <xdw:status>READY</xdw:status> 11977 <xdw:eventData xsi:nil="true"/> 11978 </xdw:taskEvent> 11979 <xdw:taskEvent> 11980 <xdw:id>2</xdw:id> 11981 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 11982 <xdw:identifier>task_2#2</xdw:identifier> 11983 <xdw:eventType>complete</xdw:eventType> 11984 <xdw:status>COMPLETED</xdw:status> 11985 <xdw:eventData xsi:nil="true"/> 11986 </xdw:taskEvent> 11987 </xdw:taskEventHistory> 11988 </xdw:XDWTask> 11989 <xdw:XDWTask> 11990 <xdw:taskData> 11991 <ws-ht:taskDetails> 11992 <ws-ht:id>task_3</ws-ht:id> 11993 <ws-ht:taskType>ttype</ws-ht:taskType> 11994 <ws-ht:name>tname_3</ws-ht:name> 11995 <ws-ht:status>COMPLETED</ws-ht:status> 11996 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 11997 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 11998 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 11999 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 12000 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12001 </ws-ht:taskDetails> 12002 <ws-ht:description>Undocumented task</ws-ht:description> 12003 <ws-ht:input/> 12004 <ws-ht:output> 12005 <ws-ht:part name="documentReference"> 12006 <ws-ht:attachment> 12007 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 12008 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 12009 <ws-ht:accessType>RLUS</ws-ht:accessType> 12010 <ws-ht:contentType>application/xml</ws-ht:contentType> 12011 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12012 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 12013 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12014 </ws-ht:attachment> 12015 </ws-ht:part> 12016 </ws-ht:output> 12017 </xdw:taskData> 12018 <xdw:taskEventHistory> 12019 <xdw:taskEvent> 12020 <xdw:id>1</xdw:id> 12021 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 12022 <xdw:identifier>task_3#1</xdw:identifier> 12023 <xdw:eventType>create</xdw:eventType> 12024 <xdw:status>READY</xdw:status> 12025 <xdw:eventData xsi:nil="true"/> 12026 </xdw:taskEvent> 12027 <xdw:taskEvent> 12028 <xdw:id>2</xdw:id> 12029 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 12030 <xdw:identifier>task_3#2</xdw:identifier> 12031 <xdw:eventType>complete</xdw:eventType> 12032 <xdw:status>COMPLETED</xdw:status> 12033 <xdw:eventData xsi:nil="true"/> 12034 </xdw:taskEvent> 12035 </xdw:taskEventHistory> 12036 </xdw:XDWTask> 12037 <xdw:XDWTask> 12038 <xdw:taskData> 12039 <ws-ht:taskDetails> 12040 <ws-ht:id>task_4</ws-ht:id> 12041 <ws-ht:taskType>ttype</ws-ht:taskType> 12042 <ws-ht:name>tname_4</ws-ht:name> 12043 <ws-ht:status>READY</ws-ht:status> 12044 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12045 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 12046 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12047 <ws-ht:lastModifiedTime>2014-06-13T17:20:25.669+02:00</ws-ht:lastModifiedTime> 12048 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12049 </ws-ht:taskDetails> 12050 <ws-ht:description>Undocumented task</ws-ht:description> 12051 <ws-ht:input/> 12052 <ws-ht:output> 12053 <ws-ht:part name="documentReference"> 12054 <ws-ht:attachment> 12055 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 12056 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 12057 <ws-ht:accessType>RLUS</ws-ht:accessType> 12058 <ws-ht:contentType>application/xml</ws-ht:contentType> 12059 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12060 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 12061 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12062 </ws-ht:attachment> 12063 </ws-ht:part> 12064 </ws-ht:output> 12065 </xdw:taskData> 12066 <xdw:taskEventHistory> 12067 <xdw:taskEvent> 12068 <xdw:id>1</xdw:id> 12069 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 12070 <xdw:identifier>task_4#1</xdw:identifier> 12071 <xdw:eventType>create</xdw:eventType> 12072 <xdw:status>READY</xdw:status> 12073 <xdw:eventData xsi:nil="true"/> 12074 </xdw:taskEvent> 12075 </xdw:taskEventHistory> 12076 </xdw:XDWTask> 12077 </xdw:TaskList> 12078 </xdw:XDW.WorkflowDocument> 12079 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 12080 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 12081 <rlustypes:SecurityContext> 12082 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 12083 </rlustypes:SecurityContext> 12084 <rlustypes:CBRContext> 12085 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 12086 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 12087 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 12088 </rlustypes:CBRContext> 12089 </rlustypes:RLUSPutRequestSrcStruct> 12090 <writeCommandEnum>UPDATE</writeCommandEnum> 12091 </PutRequest> 12092 </soap:Body> 12093 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 12094 <soapenv:Header/> 12095 <soapenv:Body> 12096 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 12097 <rlustypes:success>true</rlustypes:success> 12098 <rlustypes:message/> 12099 </rlustypes:RLUSStatusCode> 12100 </soapenv:Body> 12101 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 12102 <soap:Header/> 12103 <soap:Body> 12104 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 12105 <rlustypes:searchByCriteria> 12106 <rlustypes:FilterCriteria> 12107 <rlustypes:Expression> 12108 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 12109 <rlusexp:Operator type="EqualTo"/> 12110 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 12111 </rlustypes:Expression> 12112 </rlustypes:FilterCriteria> 12113 <rlustypes:SearchAttributes> 12114 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 12115 </rlustypes:SearchAttributes> 12116 </rlustypes:searchByCriteria> 12117 </rlustypes:RLUSSearchStruct> 12118 </soap:Body> 12119 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="18711"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="18711"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 12120 <soapenv:Header/> 12121 <soapenv:Body> 12122 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 12123 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 12124 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="80c880f0-4185-428b-8642-930c9c4ae506"/> 12125 <xdw:effectiveTime value="20140613172029+0200"/> 12126 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 12127 <xdw:patient> 12128 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 12129 </xdw:patient> 12130 <xdw:author> 12131 <xdw:assignedAuthor> 12132 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 12133 <hl7v3:assignedPerson/> 12134 </xdw:assignedAuthor> 12135 </xdw:author> 12136 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 12137 <xdw:workflowDocumentSequenceNumber>15</xdw:workflowDocumentSequenceNumber> 12138 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 12139 <xdw:workflowStatusHistory> 12140 <xdw:documentEvent> 12141 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 12142 <xdw:eventType>complete</xdw:eventType> 12143 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 12144 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12145 <xdw:previousStatus>OPEN</xdw:previousStatus> 12146 <xdw:actualStatus>OPEN</xdw:actualStatus> 12147 </xdw:documentEvent> 12148 <xdw:documentEvent> 12149 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 12150 <xdw:eventType>create</xdw:eventType> 12151 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 12152 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12153 <xdw:previousStatus>OPEN</xdw:previousStatus> 12154 <xdw:actualStatus>OPEN</xdw:actualStatus> 12155 </xdw:documentEvent> 12156 <xdw:documentEvent> 12157 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 12158 <xdw:eventType>create</xdw:eventType> 12159 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 12160 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12161 <xdw:previousStatus>OPEN</xdw:previousStatus> 12162 <xdw:actualStatus>OPEN</xdw:actualStatus> 12163 </xdw:documentEvent> 12164 <xdw:documentEvent> 12165 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 12166 <xdw:eventType>create</xdw:eventType> 12167 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 12168 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12169 <xdw:previousStatus>OPEN</xdw:previousStatus> 12170 <xdw:actualStatus>OPEN</xdw:actualStatus> 12171 </xdw:documentEvent> 12172 <xdw:documentEvent> 12173 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 12174 <xdw:eventType>create</xdw:eventType> 12175 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 12176 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12177 <xdw:previousStatus>OPEN</xdw:previousStatus> 12178 <xdw:actualStatus>OPEN</xdw:actualStatus> 12179 </xdw:documentEvent> 12180 <xdw:documentEvent> 12181 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 12182 <xdw:eventType>create</xdw:eventType> 12183 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 12184 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12185 <xdw:previousStatus>OPEN</xdw:previousStatus> 12186 <xdw:actualStatus>OPEN</xdw:actualStatus> 12187 </xdw:documentEvent> 12188 </xdw:workflowStatusHistory> 12189 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 12190 <xdw:TaskList> 12191 <xdw:XDWTask> 12192 <xdw:taskData> 12193 <ws-ht:taskDetails> 12194 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 12195 <ws-ht:taskType>Requested</ws-ht:taskType> 12196 <ws-ht:name>xdw.creation</ws-ht:name> 12197 <ws-ht:status>COMPLETED</ws-ht:status> 12198 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12199 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 12200 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12201 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 12202 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12203 </ws-ht:taskDetails> 12204 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 12205 <ws-ht:input/> 12206 <ws-ht:output/> 12207 </xdw:taskData> 12208 <xdw:taskEventHistory> 12209 <xdw:taskEvent> 12210 <xdw:id>1</xdw:id> 12211 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 12212 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 12213 <xdw:eventType>complete</xdw:eventType> 12214 <xdw:status>COMPLETED</xdw:status> 12215 <xdw:eventData xsi:nil="true"/> 12216 </xdw:taskEvent> 12217 </xdw:taskEventHistory> 12218 </xdw:XDWTask> 12219 <xdw:XDWTask> 12220 <xdw:taskData> 12221 <ws-ht:taskDetails> 12222 <ws-ht:id>task_0</ws-ht:id> 12223 <ws-ht:taskType>ttype</ws-ht:taskType> 12224 <ws-ht:name>tname_0</ws-ht:name> 12225 <ws-ht:status>COMPLETED</ws-ht:status> 12226 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12227 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 12228 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12229 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 12230 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12231 </ws-ht:taskDetails> 12232 <ws-ht:description>Undocumented task</ws-ht:description> 12233 <ws-ht:input/> 12234 <ws-ht:output> 12235 <ws-ht:part name="documentReference"> 12236 <ws-ht:attachment> 12237 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 12238 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 12239 <ws-ht:accessType>RLUS</ws-ht:accessType> 12240 <ws-ht:contentType>application/xml</ws-ht:contentType> 12241 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12242 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 12243 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12244 </ws-ht:attachment> 12245 </ws-ht:part> 12246 </ws-ht:output> 12247 </xdw:taskData> 12248 <xdw:taskEventHistory> 12249 <xdw:taskEvent> 12250 <xdw:id>1</xdw:id> 12251 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 12252 <xdw:identifier>task_0#1</xdw:identifier> 12253 <xdw:eventType>create</xdw:eventType> 12254 <xdw:status>READY</xdw:status> 12255 <xdw:eventData xsi:nil="true"/> 12256 </xdw:taskEvent> 12257 <xdw:taskEvent> 12258 <xdw:id>2</xdw:id> 12259 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 12260 <xdw:identifier>task_0#2</xdw:identifier> 12261 <xdw:eventType>complete</xdw:eventType> 12262 <xdw:status>COMPLETED</xdw:status> 12263 <xdw:eventData xsi:nil="true"/> 12264 </xdw:taskEvent> 12265 </xdw:taskEventHistory> 12266 </xdw:XDWTask> 12267 <xdw:XDWTask> 12268 <xdw:taskData> 12269 <ws-ht:taskDetails> 12270 <ws-ht:id>task_1</ws-ht:id> 12271 <ws-ht:taskType>ttype</ws-ht:taskType> 12272 <ws-ht:name>tname_1</ws-ht:name> 12273 <ws-ht:status>COMPLETED</ws-ht:status> 12274 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12275 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 12276 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12277 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 12278 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12279 </ws-ht:taskDetails> 12280 <ws-ht:description>Undocumented task</ws-ht:description> 12281 <ws-ht:input/> 12282 <ws-ht:output> 12283 <ws-ht:part name="documentReference"> 12284 <ws-ht:attachment> 12285 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 12286 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 12287 <ws-ht:accessType>RLUS</ws-ht:accessType> 12288 <ws-ht:contentType>application/xml</ws-ht:contentType> 12289 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12290 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 12291 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12292 </ws-ht:attachment> 12293 </ws-ht:part> 12294 </ws-ht:output> 12295 </xdw:taskData> 12296 <xdw:taskEventHistory> 12297 <xdw:taskEvent> 12298 <xdw:id>1</xdw:id> 12299 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 12300 <xdw:identifier>task_1#1</xdw:identifier> 12301 <xdw:eventType>create</xdw:eventType> 12302 <xdw:status>READY</xdw:status> 12303 <xdw:eventData xsi:nil="true"/> 12304 </xdw:taskEvent> 12305 <xdw:taskEvent> 12306 <xdw:id>2</xdw:id> 12307 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 12308 <xdw:identifier>task_1#2</xdw:identifier> 12309 <xdw:eventType>complete</xdw:eventType> 12310 <xdw:status>COMPLETED</xdw:status> 12311 <xdw:eventData xsi:nil="true"/> 12312 </xdw:taskEvent> 12313 </xdw:taskEventHistory> 12314 </xdw:XDWTask> 12315 <xdw:XDWTask> 12316 <xdw:taskData> 12317 <ws-ht:taskDetails> 12318 <ws-ht:id>task_2</ws-ht:id> 12319 <ws-ht:taskType>ttype</ws-ht:taskType> 12320 <ws-ht:name>tname_2</ws-ht:name> 12321 <ws-ht:status>COMPLETED</ws-ht:status> 12322 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12323 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 12324 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12325 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 12326 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12327 </ws-ht:taskDetails> 12328 <ws-ht:description>Undocumented task</ws-ht:description> 12329 <ws-ht:input/> 12330 <ws-ht:output> 12331 <ws-ht:part name="documentReference"> 12332 <ws-ht:attachment> 12333 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 12334 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 12335 <ws-ht:accessType>RLUS</ws-ht:accessType> 12336 <ws-ht:contentType>application/xml</ws-ht:contentType> 12337 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12338 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 12339 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12340 </ws-ht:attachment> 12341 </ws-ht:part> 12342 </ws-ht:output> 12343 </xdw:taskData> 12344 <xdw:taskEventHistory> 12345 <xdw:taskEvent> 12346 <xdw:id>1</xdw:id> 12347 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 12348 <xdw:identifier>task_2#1</xdw:identifier> 12349 <xdw:eventType>create</xdw:eventType> 12350 <xdw:status>READY</xdw:status> 12351 <xdw:eventData xsi:nil="true"/> 12352 </xdw:taskEvent> 12353 <xdw:taskEvent> 12354 <xdw:id>2</xdw:id> 12355 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 12356 <xdw:identifier>task_2#2</xdw:identifier> 12357 <xdw:eventType>complete</xdw:eventType> 12358 <xdw:status>COMPLETED</xdw:status> 12359 <xdw:eventData xsi:nil="true"/> 12360 </xdw:taskEvent> 12361 </xdw:taskEventHistory> 12362 </xdw:XDWTask> 12363 <xdw:XDWTask> 12364 <xdw:taskData> 12365 <ws-ht:taskDetails> 12366 <ws-ht:id>task_3</ws-ht:id> 12367 <ws-ht:taskType>ttype</ws-ht:taskType> 12368 <ws-ht:name>tname_3</ws-ht:name> 12369 <ws-ht:status>COMPLETED</ws-ht:status> 12370 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12371 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 12372 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12373 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 12374 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12375 </ws-ht:taskDetails> 12376 <ws-ht:description>Undocumented task</ws-ht:description> 12377 <ws-ht:input/> 12378 <ws-ht:output> 12379 <ws-ht:part name="documentReference"> 12380 <ws-ht:attachment> 12381 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 12382 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 12383 <ws-ht:accessType>RLUS</ws-ht:accessType> 12384 <ws-ht:contentType>application/xml</ws-ht:contentType> 12385 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12386 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 12387 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12388 </ws-ht:attachment> 12389 </ws-ht:part> 12390 </ws-ht:output> 12391 </xdw:taskData> 12392 <xdw:taskEventHistory> 12393 <xdw:taskEvent> 12394 <xdw:id>1</xdw:id> 12395 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 12396 <xdw:identifier>task_3#1</xdw:identifier> 12397 <xdw:eventType>create</xdw:eventType> 12398 <xdw:status>READY</xdw:status> 12399 <xdw:eventData xsi:nil="true"/> 12400 </xdw:taskEvent> 12401 <xdw:taskEvent> 12402 <xdw:id>2</xdw:id> 12403 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 12404 <xdw:identifier>task_3#2</xdw:identifier> 12405 <xdw:eventType>complete</xdw:eventType> 12406 <xdw:status>COMPLETED</xdw:status> 12407 <xdw:eventData xsi:nil="true"/> 12408 </xdw:taskEvent> 12409 </xdw:taskEventHistory> 12410 </xdw:XDWTask> 12411 <xdw:XDWTask> 12412 <xdw:taskData> 12413 <ws-ht:taskDetails> 12414 <ws-ht:id>task_4</ws-ht:id> 12415 <ws-ht:taskType>ttype</ws-ht:taskType> 12416 <ws-ht:name>tname_4</ws-ht:name> 12417 <ws-ht:status>READY</ws-ht:status> 12418 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12419 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 12420 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12421 <ws-ht:lastModifiedTime>2014-06-13T17:20:25.669+02:00</ws-ht:lastModifiedTime> 12422 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12423 </ws-ht:taskDetails> 12424 <ws-ht:description>Undocumented task</ws-ht:description> 12425 <ws-ht:input/> 12426 <ws-ht:output> 12427 <ws-ht:part name="documentReference"> 12428 <ws-ht:attachment> 12429 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 12430 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 12431 <ws-ht:accessType>RLUS</ws-ht:accessType> 12432 <ws-ht:contentType>application/xml</ws-ht:contentType> 12433 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12434 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 12435 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12436 </ws-ht:attachment> 12437 </ws-ht:part> 12438 </ws-ht:output> 12439 </xdw:taskData> 12440 <xdw:taskEventHistory> 12441 <xdw:taskEvent> 12442 <xdw:id>1</xdw:id> 12443 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 12444 <xdw:identifier>task_4#1</xdw:identifier> 12445 <xdw:eventType>create</xdw:eventType> 12446 <xdw:status>READY</xdw:status> 12447 <xdw:eventData xsi:nil="true"/> 12448 </xdw:taskEvent> 12449 </xdw:taskEventHistory> 12450 </xdw:XDWTask> 12451 </xdw:TaskList> 12452 </xdw:XDW.WorkflowDocument> 12453 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 12454 <rlustypes:success>true</rlustypes:success> 12455 <rlustypes:message>One record fetched</rlustypes:message> 12456 </rlustypes:RLUSStatusCode> 12457 </GetResponse> 12458 </soapenv:Body> 12459 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 12460 <soap:Header/> 12461 <soap:Body> 12462 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 12463 <rlustypes:searchByCriteria> 12464 <rlustypes:FilterCriteria> 12465 <rlustypes:Expression> 12466 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 12467 <rlusexp:Operator type="EqualTo"/> 12468 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 12469 </rlustypes:Expression> 12470 </rlustypes:FilterCriteria> 12471 <rlustypes:SearchAttributes> 12472 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 12473 </rlustypes:SearchAttributes> 12474 </rlustypes:searchByCriteria> 12475 </rlustypes:RLUSSearchStruct> 12476 </soap:Body> 12477 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="18711"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="18711"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 12478 <soapenv:Header/> 12479 <soapenv:Body> 12480 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 12481 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 12482 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="80c880f0-4185-428b-8642-930c9c4ae506"/> 12483 <xdw:effectiveTime value="20140613172029+0200"/> 12484 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 12485 <xdw:patient> 12486 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 12487 </xdw:patient> 12488 <xdw:author> 12489 <xdw:assignedAuthor> 12490 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 12491 <hl7v3:assignedPerson/> 12492 </xdw:assignedAuthor> 12493 </xdw:author> 12494 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 12495 <xdw:workflowDocumentSequenceNumber>15</xdw:workflowDocumentSequenceNumber> 12496 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 12497 <xdw:workflowStatusHistory> 12498 <xdw:documentEvent> 12499 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 12500 <xdw:eventType>complete</xdw:eventType> 12501 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 12502 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12503 <xdw:previousStatus>OPEN</xdw:previousStatus> 12504 <xdw:actualStatus>OPEN</xdw:actualStatus> 12505 </xdw:documentEvent> 12506 <xdw:documentEvent> 12507 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 12508 <xdw:eventType>create</xdw:eventType> 12509 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 12510 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12511 <xdw:previousStatus>OPEN</xdw:previousStatus> 12512 <xdw:actualStatus>OPEN</xdw:actualStatus> 12513 </xdw:documentEvent> 12514 <xdw:documentEvent> 12515 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 12516 <xdw:eventType>create</xdw:eventType> 12517 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 12518 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12519 <xdw:previousStatus>OPEN</xdw:previousStatus> 12520 <xdw:actualStatus>OPEN</xdw:actualStatus> 12521 </xdw:documentEvent> 12522 <xdw:documentEvent> 12523 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 12524 <xdw:eventType>create</xdw:eventType> 12525 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 12526 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12527 <xdw:previousStatus>OPEN</xdw:previousStatus> 12528 <xdw:actualStatus>OPEN</xdw:actualStatus> 12529 </xdw:documentEvent> 12530 <xdw:documentEvent> 12531 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 12532 <xdw:eventType>create</xdw:eventType> 12533 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 12534 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12535 <xdw:previousStatus>OPEN</xdw:previousStatus> 12536 <xdw:actualStatus>OPEN</xdw:actualStatus> 12537 </xdw:documentEvent> 12538 <xdw:documentEvent> 12539 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 12540 <xdw:eventType>create</xdw:eventType> 12541 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 12542 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12543 <xdw:previousStatus>OPEN</xdw:previousStatus> 12544 <xdw:actualStatus>OPEN</xdw:actualStatus> 12545 </xdw:documentEvent> 12546 </xdw:workflowStatusHistory> 12547 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 12548 <xdw:TaskList> 12549 <xdw:XDWTask> 12550 <xdw:taskData> 12551 <ws-ht:taskDetails> 12552 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 12553 <ws-ht:taskType>Requested</ws-ht:taskType> 12554 <ws-ht:name>xdw.creation</ws-ht:name> 12555 <ws-ht:status>COMPLETED</ws-ht:status> 12556 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12557 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 12558 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12559 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 12560 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12561 </ws-ht:taskDetails> 12562 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 12563 <ws-ht:input/> 12564 <ws-ht:output/> 12565 </xdw:taskData> 12566 <xdw:taskEventHistory> 12567 <xdw:taskEvent> 12568 <xdw:id>1</xdw:id> 12569 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 12570 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 12571 <xdw:eventType>complete</xdw:eventType> 12572 <xdw:status>COMPLETED</xdw:status> 12573 <xdw:eventData xsi:nil="true"/> 12574 </xdw:taskEvent> 12575 </xdw:taskEventHistory> 12576 </xdw:XDWTask> 12577 <xdw:XDWTask> 12578 <xdw:taskData> 12579 <ws-ht:taskDetails> 12580 <ws-ht:id>task_0</ws-ht:id> 12581 <ws-ht:taskType>ttype</ws-ht:taskType> 12582 <ws-ht:name>tname_0</ws-ht:name> 12583 <ws-ht:status>COMPLETED</ws-ht:status> 12584 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12585 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 12586 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12587 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 12588 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12589 </ws-ht:taskDetails> 12590 <ws-ht:description>Undocumented task</ws-ht:description> 12591 <ws-ht:input/> 12592 <ws-ht:output> 12593 <ws-ht:part name="documentReference"> 12594 <ws-ht:attachment> 12595 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 12596 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 12597 <ws-ht:accessType>RLUS</ws-ht:accessType> 12598 <ws-ht:contentType>application/xml</ws-ht:contentType> 12599 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12600 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 12601 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12602 </ws-ht:attachment> 12603 </ws-ht:part> 12604 </ws-ht:output> 12605 </xdw:taskData> 12606 <xdw:taskEventHistory> 12607 <xdw:taskEvent> 12608 <xdw:id>1</xdw:id> 12609 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 12610 <xdw:identifier>task_0#1</xdw:identifier> 12611 <xdw:eventType>create</xdw:eventType> 12612 <xdw:status>READY</xdw:status> 12613 <xdw:eventData xsi:nil="true"/> 12614 </xdw:taskEvent> 12615 <xdw:taskEvent> 12616 <xdw:id>2</xdw:id> 12617 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 12618 <xdw:identifier>task_0#2</xdw:identifier> 12619 <xdw:eventType>complete</xdw:eventType> 12620 <xdw:status>COMPLETED</xdw:status> 12621 <xdw:eventData xsi:nil="true"/> 12622 </xdw:taskEvent> 12623 </xdw:taskEventHistory> 12624 </xdw:XDWTask> 12625 <xdw:XDWTask> 12626 <xdw:taskData> 12627 <ws-ht:taskDetails> 12628 <ws-ht:id>task_1</ws-ht:id> 12629 <ws-ht:taskType>ttype</ws-ht:taskType> 12630 <ws-ht:name>tname_1</ws-ht:name> 12631 <ws-ht:status>COMPLETED</ws-ht:status> 12632 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12633 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 12634 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12635 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 12636 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12637 </ws-ht:taskDetails> 12638 <ws-ht:description>Undocumented task</ws-ht:description> 12639 <ws-ht:input/> 12640 <ws-ht:output> 12641 <ws-ht:part name="documentReference"> 12642 <ws-ht:attachment> 12643 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 12644 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 12645 <ws-ht:accessType>RLUS</ws-ht:accessType> 12646 <ws-ht:contentType>application/xml</ws-ht:contentType> 12647 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12648 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 12649 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12650 </ws-ht:attachment> 12651 </ws-ht:part> 12652 </ws-ht:output> 12653 </xdw:taskData> 12654 <xdw:taskEventHistory> 12655 <xdw:taskEvent> 12656 <xdw:id>1</xdw:id> 12657 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 12658 <xdw:identifier>task_1#1</xdw:identifier> 12659 <xdw:eventType>create</xdw:eventType> 12660 <xdw:status>READY</xdw:status> 12661 <xdw:eventData xsi:nil="true"/> 12662 </xdw:taskEvent> 12663 <xdw:taskEvent> 12664 <xdw:id>2</xdw:id> 12665 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 12666 <xdw:identifier>task_1#2</xdw:identifier> 12667 <xdw:eventType>complete</xdw:eventType> 12668 <xdw:status>COMPLETED</xdw:status> 12669 <xdw:eventData xsi:nil="true"/> 12670 </xdw:taskEvent> 12671 </xdw:taskEventHistory> 12672 </xdw:XDWTask> 12673 <xdw:XDWTask> 12674 <xdw:taskData> 12675 <ws-ht:taskDetails> 12676 <ws-ht:id>task_2</ws-ht:id> 12677 <ws-ht:taskType>ttype</ws-ht:taskType> 12678 <ws-ht:name>tname_2</ws-ht:name> 12679 <ws-ht:status>COMPLETED</ws-ht:status> 12680 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12681 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 12682 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12683 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 12684 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12685 </ws-ht:taskDetails> 12686 <ws-ht:description>Undocumented task</ws-ht:description> 12687 <ws-ht:input/> 12688 <ws-ht:output> 12689 <ws-ht:part name="documentReference"> 12690 <ws-ht:attachment> 12691 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 12692 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 12693 <ws-ht:accessType>RLUS</ws-ht:accessType> 12694 <ws-ht:contentType>application/xml</ws-ht:contentType> 12695 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12696 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 12697 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12698 </ws-ht:attachment> 12699 </ws-ht:part> 12700 </ws-ht:output> 12701 </xdw:taskData> 12702 <xdw:taskEventHistory> 12703 <xdw:taskEvent> 12704 <xdw:id>1</xdw:id> 12705 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 12706 <xdw:identifier>task_2#1</xdw:identifier> 12707 <xdw:eventType>create</xdw:eventType> 12708 <xdw:status>READY</xdw:status> 12709 <xdw:eventData xsi:nil="true"/> 12710 </xdw:taskEvent> 12711 <xdw:taskEvent> 12712 <xdw:id>2</xdw:id> 12713 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 12714 <xdw:identifier>task_2#2</xdw:identifier> 12715 <xdw:eventType>complete</xdw:eventType> 12716 <xdw:status>COMPLETED</xdw:status> 12717 <xdw:eventData xsi:nil="true"/> 12718 </xdw:taskEvent> 12719 </xdw:taskEventHistory> 12720 </xdw:XDWTask> 12721 <xdw:XDWTask> 12722 <xdw:taskData> 12723 <ws-ht:taskDetails> 12724 <ws-ht:id>task_3</ws-ht:id> 12725 <ws-ht:taskType>ttype</ws-ht:taskType> 12726 <ws-ht:name>tname_3</ws-ht:name> 12727 <ws-ht:status>COMPLETED</ws-ht:status> 12728 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12729 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 12730 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12731 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 12732 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12733 </ws-ht:taskDetails> 12734 <ws-ht:description>Undocumented task</ws-ht:description> 12735 <ws-ht:input/> 12736 <ws-ht:output> 12737 <ws-ht:part name="documentReference"> 12738 <ws-ht:attachment> 12739 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 12740 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 12741 <ws-ht:accessType>RLUS</ws-ht:accessType> 12742 <ws-ht:contentType>application/xml</ws-ht:contentType> 12743 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12744 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 12745 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12746 </ws-ht:attachment> 12747 </ws-ht:part> 12748 </ws-ht:output> 12749 </xdw:taskData> 12750 <xdw:taskEventHistory> 12751 <xdw:taskEvent> 12752 <xdw:id>1</xdw:id> 12753 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 12754 <xdw:identifier>task_3#1</xdw:identifier> 12755 <xdw:eventType>create</xdw:eventType> 12756 <xdw:status>READY</xdw:status> 12757 <xdw:eventData xsi:nil="true"/> 12758 </xdw:taskEvent> 12759 <xdw:taskEvent> 12760 <xdw:id>2</xdw:id> 12761 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 12762 <xdw:identifier>task_3#2</xdw:identifier> 12763 <xdw:eventType>complete</xdw:eventType> 12764 <xdw:status>COMPLETED</xdw:status> 12765 <xdw:eventData xsi:nil="true"/> 12766 </xdw:taskEvent> 12767 </xdw:taskEventHistory> 12768 </xdw:XDWTask> 12769 <xdw:XDWTask> 12770 <xdw:taskData> 12771 <ws-ht:taskDetails> 12772 <ws-ht:id>task_4</ws-ht:id> 12773 <ws-ht:taskType>ttype</ws-ht:taskType> 12774 <ws-ht:name>tname_4</ws-ht:name> 12775 <ws-ht:status>READY</ws-ht:status> 12776 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12777 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 12778 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12779 <ws-ht:lastModifiedTime>2014-06-13T17:20:25.669+02:00</ws-ht:lastModifiedTime> 12780 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12781 </ws-ht:taskDetails> 12782 <ws-ht:description>Undocumented task</ws-ht:description> 12783 <ws-ht:input/> 12784 <ws-ht:output> 12785 <ws-ht:part name="documentReference"> 12786 <ws-ht:attachment> 12787 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 12788 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 12789 <ws-ht:accessType>RLUS</ws-ht:accessType> 12790 <ws-ht:contentType>application/xml</ws-ht:contentType> 12791 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12792 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 12793 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12794 </ws-ht:attachment> 12795 </ws-ht:part> 12796 </ws-ht:output> 12797 </xdw:taskData> 12798 <xdw:taskEventHistory> 12799 <xdw:taskEvent> 12800 <xdw:id>1</xdw:id> 12801 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 12802 <xdw:identifier>task_4#1</xdw:identifier> 12803 <xdw:eventType>create</xdw:eventType> 12804 <xdw:status>READY</xdw:status> 12805 <xdw:eventData xsi:nil="true"/> 12806 </xdw:taskEvent> 12807 </xdw:taskEventHistory> 12808 </xdw:XDWTask> 12809 </xdw:TaskList> 12810 </xdw:XDW.WorkflowDocument> 12811 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 12812 <rlustypes:success>true</rlustypes:success> 12813 <rlustypes:message>One record fetched</rlustypes:message> 12814 </rlustypes:RLUSStatusCode> 12815 </GetResponse> 12816 </soapenv:Body> 12817 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="19539"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="19539"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 12818 <soap:Header/> 12819 <soap:Body> 12820 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 12821 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 12822 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="923ee984-7aca-4a8e-ad73-e8315a89dc40"/> 12823 <xdw:effectiveTime value="20140613172031+0200"/> 12824 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 12825 <xdw:patient> 12826 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 12827 </xdw:patient> 12828 <xdw:author> 12829 <xdw:assignedAuthor> 12830 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 12831 <hl7v3:assignedPerson/> 12832 </xdw:assignedAuthor> 12833 </xdw:author> 12834 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 12835 <xdw:workflowDocumentSequenceNumber>16</xdw:workflowDocumentSequenceNumber> 12836 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 12837 <xdw:workflowStatusHistory> 12838 <xdw:documentEvent> 12839 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 12840 <xdw:eventType>complete</xdw:eventType> 12841 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 12842 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12843 <xdw:previousStatus>OPEN</xdw:previousStatus> 12844 <xdw:actualStatus>OPEN</xdw:actualStatus> 12845 </xdw:documentEvent> 12846 <xdw:documentEvent> 12847 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 12848 <xdw:eventType>create</xdw:eventType> 12849 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 12850 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12851 <xdw:previousStatus>OPEN</xdw:previousStatus> 12852 <xdw:actualStatus>OPEN</xdw:actualStatus> 12853 </xdw:documentEvent> 12854 <xdw:documentEvent> 12855 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 12856 <xdw:eventType>create</xdw:eventType> 12857 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 12858 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12859 <xdw:previousStatus>OPEN</xdw:previousStatus> 12860 <xdw:actualStatus>OPEN</xdw:actualStatus> 12861 </xdw:documentEvent> 12862 <xdw:documentEvent> 12863 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 12864 <xdw:eventType>create</xdw:eventType> 12865 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 12866 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12867 <xdw:previousStatus>OPEN</xdw:previousStatus> 12868 <xdw:actualStatus>OPEN</xdw:actualStatus> 12869 </xdw:documentEvent> 12870 <xdw:documentEvent> 12871 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 12872 <xdw:eventType>create</xdw:eventType> 12873 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 12874 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12875 <xdw:previousStatus>OPEN</xdw:previousStatus> 12876 <xdw:actualStatus>OPEN</xdw:actualStatus> 12877 </xdw:documentEvent> 12878 <xdw:documentEvent> 12879 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 12880 <xdw:eventType>create</xdw:eventType> 12881 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 12882 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 12883 <xdw:previousStatus>OPEN</xdw:previousStatus> 12884 <xdw:actualStatus>OPEN</xdw:actualStatus> 12885 </xdw:documentEvent> 12886 </xdw:workflowStatusHistory> 12887 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 12888 <xdw:TaskList> 12889 <xdw:XDWTask> 12890 <xdw:taskData> 12891 <ws-ht:taskDetails> 12892 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 12893 <ws-ht:taskType>Requested</ws-ht:taskType> 12894 <ws-ht:name>xdw.creation</ws-ht:name> 12895 <ws-ht:status>COMPLETED</ws-ht:status> 12896 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12897 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 12898 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12899 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 12900 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12901 </ws-ht:taskDetails> 12902 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 12903 <ws-ht:input/> 12904 <ws-ht:output/> 12905 </xdw:taskData> 12906 <xdw:taskEventHistory> 12907 <xdw:taskEvent> 12908 <xdw:id>1</xdw:id> 12909 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 12910 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 12911 <xdw:eventType>complete</xdw:eventType> 12912 <xdw:status>COMPLETED</xdw:status> 12913 <xdw:eventData xsi:nil="true"/> 12914 </xdw:taskEvent> 12915 </xdw:taskEventHistory> 12916 </xdw:XDWTask> 12917 <xdw:XDWTask> 12918 <xdw:taskData> 12919 <ws-ht:taskDetails> 12920 <ws-ht:id>task_0</ws-ht:id> 12921 <ws-ht:taskType>ttype</ws-ht:taskType> 12922 <ws-ht:name>tname_0</ws-ht:name> 12923 <ws-ht:status>COMPLETED</ws-ht:status> 12924 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12925 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 12926 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12927 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 12928 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12929 </ws-ht:taskDetails> 12930 <ws-ht:description>Undocumented task</ws-ht:description> 12931 <ws-ht:input/> 12932 <ws-ht:output> 12933 <ws-ht:part name="documentReference"> 12934 <ws-ht:attachment> 12935 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 12936 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 12937 <ws-ht:accessType>RLUS</ws-ht:accessType> 12938 <ws-ht:contentType>application/xml</ws-ht:contentType> 12939 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12940 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 12941 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12942 </ws-ht:attachment> 12943 </ws-ht:part> 12944 </ws-ht:output> 12945 </xdw:taskData> 12946 <xdw:taskEventHistory> 12947 <xdw:taskEvent> 12948 <xdw:id>1</xdw:id> 12949 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 12950 <xdw:identifier>task_0#1</xdw:identifier> 12951 <xdw:eventType>create</xdw:eventType> 12952 <xdw:status>READY</xdw:status> 12953 <xdw:eventData xsi:nil="true"/> 12954 </xdw:taskEvent> 12955 <xdw:taskEvent> 12956 <xdw:id>2</xdw:id> 12957 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 12958 <xdw:identifier>task_0#2</xdw:identifier> 12959 <xdw:eventType>complete</xdw:eventType> 12960 <xdw:status>COMPLETED</xdw:status> 12961 <xdw:eventData xsi:nil="true"/> 12962 </xdw:taskEvent> 12963 </xdw:taskEventHistory> 12964 </xdw:XDWTask> 12965 <xdw:XDWTask> 12966 <xdw:taskData> 12967 <ws-ht:taskDetails> 12968 <ws-ht:id>task_1</ws-ht:id> 12969 <ws-ht:taskType>ttype</ws-ht:taskType> 12970 <ws-ht:name>tname_1</ws-ht:name> 12971 <ws-ht:status>COMPLETED</ws-ht:status> 12972 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 12973 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 12974 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 12975 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 12976 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 12977 </ws-ht:taskDetails> 12978 <ws-ht:description>Undocumented task</ws-ht:description> 12979 <ws-ht:input/> 12980 <ws-ht:output> 12981 <ws-ht:part name="documentReference"> 12982 <ws-ht:attachment> 12983 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 12984 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 12985 <ws-ht:accessType>RLUS</ws-ht:accessType> 12986 <ws-ht:contentType>application/xml</ws-ht:contentType> 12987 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 12988 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 12989 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 12990 </ws-ht:attachment> 12991 </ws-ht:part> 12992 </ws-ht:output> 12993 </xdw:taskData> 12994 <xdw:taskEventHistory> 12995 <xdw:taskEvent> 12996 <xdw:id>1</xdw:id> 12997 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 12998 <xdw:identifier>task_1#1</xdw:identifier> 12999 <xdw:eventType>create</xdw:eventType> 13000 <xdw:status>READY</xdw:status> 13001 <xdw:eventData xsi:nil="true"/> 13002 </xdw:taskEvent> 13003 <xdw:taskEvent> 13004 <xdw:id>2</xdw:id> 13005 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 13006 <xdw:identifier>task_1#2</xdw:identifier> 13007 <xdw:eventType>complete</xdw:eventType> 13008 <xdw:status>COMPLETED</xdw:status> 13009 <xdw:eventData xsi:nil="true"/> 13010 </xdw:taskEvent> 13011 </xdw:taskEventHistory> 13012 </xdw:XDWTask> 13013 <xdw:XDWTask> 13014 <xdw:taskData> 13015 <ws-ht:taskDetails> 13016 <ws-ht:id>task_2</ws-ht:id> 13017 <ws-ht:taskType>ttype</ws-ht:taskType> 13018 <ws-ht:name>tname_2</ws-ht:name> 13019 <ws-ht:status>COMPLETED</ws-ht:status> 13020 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13021 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 13022 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13023 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 13024 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13025 </ws-ht:taskDetails> 13026 <ws-ht:description>Undocumented task</ws-ht:description> 13027 <ws-ht:input/> 13028 <ws-ht:output> 13029 <ws-ht:part name="documentReference"> 13030 <ws-ht:attachment> 13031 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 13032 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 13033 <ws-ht:accessType>RLUS</ws-ht:accessType> 13034 <ws-ht:contentType>application/xml</ws-ht:contentType> 13035 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13036 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 13037 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13038 </ws-ht:attachment> 13039 </ws-ht:part> 13040 </ws-ht:output> 13041 </xdw:taskData> 13042 <xdw:taskEventHistory> 13043 <xdw:taskEvent> 13044 <xdw:id>1</xdw:id> 13045 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 13046 <xdw:identifier>task_2#1</xdw:identifier> 13047 <xdw:eventType>create</xdw:eventType> 13048 <xdw:status>READY</xdw:status> 13049 <xdw:eventData xsi:nil="true"/> 13050 </xdw:taskEvent> 13051 <xdw:taskEvent> 13052 <xdw:id>2</xdw:id> 13053 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 13054 <xdw:identifier>task_2#2</xdw:identifier> 13055 <xdw:eventType>complete</xdw:eventType> 13056 <xdw:status>COMPLETED</xdw:status> 13057 <xdw:eventData xsi:nil="true"/> 13058 </xdw:taskEvent> 13059 </xdw:taskEventHistory> 13060 </xdw:XDWTask> 13061 <xdw:XDWTask> 13062 <xdw:taskData> 13063 <ws-ht:taskDetails> 13064 <ws-ht:id>task_3</ws-ht:id> 13065 <ws-ht:taskType>ttype</ws-ht:taskType> 13066 <ws-ht:name>tname_3</ws-ht:name> 13067 <ws-ht:status>COMPLETED</ws-ht:status> 13068 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13069 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 13070 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13071 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 13072 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13073 </ws-ht:taskDetails> 13074 <ws-ht:description>Undocumented task</ws-ht:description> 13075 <ws-ht:input/> 13076 <ws-ht:output> 13077 <ws-ht:part name="documentReference"> 13078 <ws-ht:attachment> 13079 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 13080 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 13081 <ws-ht:accessType>RLUS</ws-ht:accessType> 13082 <ws-ht:contentType>application/xml</ws-ht:contentType> 13083 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13084 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 13085 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13086 </ws-ht:attachment> 13087 </ws-ht:part> 13088 </ws-ht:output> 13089 </xdw:taskData> 13090 <xdw:taskEventHistory> 13091 <xdw:taskEvent> 13092 <xdw:id>1</xdw:id> 13093 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 13094 <xdw:identifier>task_3#1</xdw:identifier> 13095 <xdw:eventType>create</xdw:eventType> 13096 <xdw:status>READY</xdw:status> 13097 <xdw:eventData xsi:nil="true"/> 13098 </xdw:taskEvent> 13099 <xdw:taskEvent> 13100 <xdw:id>2</xdw:id> 13101 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 13102 <xdw:identifier>task_3#2</xdw:identifier> 13103 <xdw:eventType>complete</xdw:eventType> 13104 <xdw:status>COMPLETED</xdw:status> 13105 <xdw:eventData xsi:nil="true"/> 13106 </xdw:taskEvent> 13107 </xdw:taskEventHistory> 13108 </xdw:XDWTask> 13109 <xdw:XDWTask> 13110 <xdw:taskData> 13111 <ws-ht:taskDetails> 13112 <ws-ht:id>task_4</ws-ht:id> 13113 <ws-ht:taskType>ttype</ws-ht:taskType> 13114 <ws-ht:name>tname_4</ws-ht:name> 13115 <ws-ht:status>COMPLETED</ws-ht:status> 13116 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13117 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 13118 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13119 <ws-ht:lastModifiedTime>2014-06-13T17:20:31.086+02:00</ws-ht:lastModifiedTime> 13120 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13121 </ws-ht:taskDetails> 13122 <ws-ht:description>Undocumented task</ws-ht:description> 13123 <ws-ht:input/> 13124 <ws-ht:output> 13125 <ws-ht:part name="documentReference"> 13126 <ws-ht:attachment> 13127 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 13128 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 13129 <ws-ht:accessType>RLUS</ws-ht:accessType> 13130 <ws-ht:contentType>application/xml</ws-ht:contentType> 13131 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13132 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 13133 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13134 </ws-ht:attachment> 13135 </ws-ht:part> 13136 </ws-ht:output> 13137 </xdw:taskData> 13138 <xdw:taskEventHistory> 13139 <xdw:taskEvent> 13140 <xdw:id>1</xdw:id> 13141 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 13142 <xdw:identifier>task_4#1</xdw:identifier> 13143 <xdw:eventType>create</xdw:eventType> 13144 <xdw:status>READY</xdw:status> 13145 <xdw:eventData xsi:nil="true"/> 13146 </xdw:taskEvent> 13147 <xdw:taskEvent> 13148 <xdw:id>2</xdw:id> 13149 <xdw:eventTime>2014-06-13T17:20:31.086+02:00</xdw:eventTime> 13150 <xdw:identifier>task_4#2</xdw:identifier> 13151 <xdw:eventType>complete</xdw:eventType> 13152 <xdw:status>COMPLETED</xdw:status> 13153 <xdw:eventData xsi:nil="true"/> 13154 </xdw:taskEvent> 13155 </xdw:taskEventHistory> 13156 </xdw:XDWTask> 13157 </xdw:TaskList> 13158 </xdw:XDW.WorkflowDocument> 13159 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 13160 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 13161 <rlustypes:SecurityContext> 13162 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 13163 </rlustypes:SecurityContext> 13164 <rlustypes:CBRContext> 13165 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 13166 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 13167 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 13168 </rlustypes:CBRContext> 13169 </rlustypes:RLUSPutRequestSrcStruct> 13170 <writeCommandEnum>UPDATE</writeCommandEnum> 13171 </PutRequest> 13172 </soap:Body> 13173 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 13174 <soapenv:Header/> 13175 <soapenv:Body> 13176 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 13177 <rlustypes:success>true</rlustypes:success> 13178 <rlustypes:message/> 13179 </rlustypes:RLUSStatusCode> 13180 </soapenv:Body> 13181 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 13182 <soap:Header/> 13183 <soap:Body> 13184 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 13185 <rlustypes:searchByCriteria> 13186 <rlustypes:FilterCriteria> 13187 <rlustypes:Expression> 13188 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 13189 <rlusexp:Operator type="EqualTo"/> 13190 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 13191 </rlustypes:Expression> 13192 </rlustypes:FilterCriteria> 13193 <rlustypes:SearchAttributes> 13194 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 13195 </rlustypes:SearchAttributes> 13196 </rlustypes:searchByCriteria> 13197 </rlustypes:RLUSSearchStruct> 13198 </soap:Body> 13199 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19101"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19101"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 13200 <soapenv:Header/> 13201 <soapenv:Body> 13202 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 13203 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 13204 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="923ee984-7aca-4a8e-ad73-e8315a89dc40"/> 13205 <xdw:effectiveTime value="20140613172031+0200"/> 13206 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 13207 <xdw:patient> 13208 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 13209 </xdw:patient> 13210 <xdw:author> 13211 <xdw:assignedAuthor> 13212 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 13213 <hl7v3:assignedPerson/> 13214 </xdw:assignedAuthor> 13215 </xdw:author> 13216 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 13217 <xdw:workflowDocumentSequenceNumber>16</xdw:workflowDocumentSequenceNumber> 13218 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 13219 <xdw:workflowStatusHistory> 13220 <xdw:documentEvent> 13221 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 13222 <xdw:eventType>complete</xdw:eventType> 13223 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 13224 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13225 <xdw:previousStatus>OPEN</xdw:previousStatus> 13226 <xdw:actualStatus>OPEN</xdw:actualStatus> 13227 </xdw:documentEvent> 13228 <xdw:documentEvent> 13229 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 13230 <xdw:eventType>create</xdw:eventType> 13231 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 13232 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13233 <xdw:previousStatus>OPEN</xdw:previousStatus> 13234 <xdw:actualStatus>OPEN</xdw:actualStatus> 13235 </xdw:documentEvent> 13236 <xdw:documentEvent> 13237 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 13238 <xdw:eventType>create</xdw:eventType> 13239 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 13240 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13241 <xdw:previousStatus>OPEN</xdw:previousStatus> 13242 <xdw:actualStatus>OPEN</xdw:actualStatus> 13243 </xdw:documentEvent> 13244 <xdw:documentEvent> 13245 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 13246 <xdw:eventType>create</xdw:eventType> 13247 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 13248 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13249 <xdw:previousStatus>OPEN</xdw:previousStatus> 13250 <xdw:actualStatus>OPEN</xdw:actualStatus> 13251 </xdw:documentEvent> 13252 <xdw:documentEvent> 13253 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 13254 <xdw:eventType>create</xdw:eventType> 13255 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 13256 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13257 <xdw:previousStatus>OPEN</xdw:previousStatus> 13258 <xdw:actualStatus>OPEN</xdw:actualStatus> 13259 </xdw:documentEvent> 13260 <xdw:documentEvent> 13261 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 13262 <xdw:eventType>create</xdw:eventType> 13263 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 13264 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13265 <xdw:previousStatus>OPEN</xdw:previousStatus> 13266 <xdw:actualStatus>OPEN</xdw:actualStatus> 13267 </xdw:documentEvent> 13268 </xdw:workflowStatusHistory> 13269 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 13270 <xdw:TaskList> 13271 <xdw:XDWTask> 13272 <xdw:taskData> 13273 <ws-ht:taskDetails> 13274 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 13275 <ws-ht:taskType>Requested</ws-ht:taskType> 13276 <ws-ht:name>xdw.creation</ws-ht:name> 13277 <ws-ht:status>COMPLETED</ws-ht:status> 13278 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13279 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 13280 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13281 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 13282 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13283 </ws-ht:taskDetails> 13284 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 13285 <ws-ht:input/> 13286 <ws-ht:output/> 13287 </xdw:taskData> 13288 <xdw:taskEventHistory> 13289 <xdw:taskEvent> 13290 <xdw:id>1</xdw:id> 13291 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 13292 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 13293 <xdw:eventType>complete</xdw:eventType> 13294 <xdw:status>COMPLETED</xdw:status> 13295 <xdw:eventData xsi:nil="true"/> 13296 </xdw:taskEvent> 13297 </xdw:taskEventHistory> 13298 </xdw:XDWTask> 13299 <xdw:XDWTask> 13300 <xdw:taskData> 13301 <ws-ht:taskDetails> 13302 <ws-ht:id>task_0</ws-ht:id> 13303 <ws-ht:taskType>ttype</ws-ht:taskType> 13304 <ws-ht:name>tname_0</ws-ht:name> 13305 <ws-ht:status>COMPLETED</ws-ht:status> 13306 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13307 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 13308 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13309 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 13310 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13311 </ws-ht:taskDetails> 13312 <ws-ht:description>Undocumented task</ws-ht:description> 13313 <ws-ht:input/> 13314 <ws-ht:output> 13315 <ws-ht:part name="documentReference"> 13316 <ws-ht:attachment> 13317 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 13318 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 13319 <ws-ht:accessType>RLUS</ws-ht:accessType> 13320 <ws-ht:contentType>application/xml</ws-ht:contentType> 13321 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13322 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 13323 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13324 </ws-ht:attachment> 13325 </ws-ht:part> 13326 </ws-ht:output> 13327 </xdw:taskData> 13328 <xdw:taskEventHistory> 13329 <xdw:taskEvent> 13330 <xdw:id>1</xdw:id> 13331 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 13332 <xdw:identifier>task_0#1</xdw:identifier> 13333 <xdw:eventType>create</xdw:eventType> 13334 <xdw:status>READY</xdw:status> 13335 <xdw:eventData xsi:nil="true"/> 13336 </xdw:taskEvent> 13337 <xdw:taskEvent> 13338 <xdw:id>2</xdw:id> 13339 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 13340 <xdw:identifier>task_0#2</xdw:identifier> 13341 <xdw:eventType>complete</xdw:eventType> 13342 <xdw:status>COMPLETED</xdw:status> 13343 <xdw:eventData xsi:nil="true"/> 13344 </xdw:taskEvent> 13345 </xdw:taskEventHistory> 13346 </xdw:XDWTask> 13347 <xdw:XDWTask> 13348 <xdw:taskData> 13349 <ws-ht:taskDetails> 13350 <ws-ht:id>task_1</ws-ht:id> 13351 <ws-ht:taskType>ttype</ws-ht:taskType> 13352 <ws-ht:name>tname_1</ws-ht:name> 13353 <ws-ht:status>COMPLETED</ws-ht:status> 13354 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13355 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 13356 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13357 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 13358 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13359 </ws-ht:taskDetails> 13360 <ws-ht:description>Undocumented task</ws-ht:description> 13361 <ws-ht:input/> 13362 <ws-ht:output> 13363 <ws-ht:part name="documentReference"> 13364 <ws-ht:attachment> 13365 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 13366 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 13367 <ws-ht:accessType>RLUS</ws-ht:accessType> 13368 <ws-ht:contentType>application/xml</ws-ht:contentType> 13369 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13370 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 13371 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13372 </ws-ht:attachment> 13373 </ws-ht:part> 13374 </ws-ht:output> 13375 </xdw:taskData> 13376 <xdw:taskEventHistory> 13377 <xdw:taskEvent> 13378 <xdw:id>1</xdw:id> 13379 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 13380 <xdw:identifier>task_1#1</xdw:identifier> 13381 <xdw:eventType>create</xdw:eventType> 13382 <xdw:status>READY</xdw:status> 13383 <xdw:eventData xsi:nil="true"/> 13384 </xdw:taskEvent> 13385 <xdw:taskEvent> 13386 <xdw:id>2</xdw:id> 13387 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 13388 <xdw:identifier>task_1#2</xdw:identifier> 13389 <xdw:eventType>complete</xdw:eventType> 13390 <xdw:status>COMPLETED</xdw:status> 13391 <xdw:eventData xsi:nil="true"/> 13392 </xdw:taskEvent> 13393 </xdw:taskEventHistory> 13394 </xdw:XDWTask> 13395 <xdw:XDWTask> 13396 <xdw:taskData> 13397 <ws-ht:taskDetails> 13398 <ws-ht:id>task_2</ws-ht:id> 13399 <ws-ht:taskType>ttype</ws-ht:taskType> 13400 <ws-ht:name>tname_2</ws-ht:name> 13401 <ws-ht:status>COMPLETED</ws-ht:status> 13402 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13403 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 13404 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13405 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 13406 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13407 </ws-ht:taskDetails> 13408 <ws-ht:description>Undocumented task</ws-ht:description> 13409 <ws-ht:input/> 13410 <ws-ht:output> 13411 <ws-ht:part name="documentReference"> 13412 <ws-ht:attachment> 13413 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 13414 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 13415 <ws-ht:accessType>RLUS</ws-ht:accessType> 13416 <ws-ht:contentType>application/xml</ws-ht:contentType> 13417 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13418 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 13419 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13420 </ws-ht:attachment> 13421 </ws-ht:part> 13422 </ws-ht:output> 13423 </xdw:taskData> 13424 <xdw:taskEventHistory> 13425 <xdw:taskEvent> 13426 <xdw:id>1</xdw:id> 13427 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 13428 <xdw:identifier>task_2#1</xdw:identifier> 13429 <xdw:eventType>create</xdw:eventType> 13430 <xdw:status>READY</xdw:status> 13431 <xdw:eventData xsi:nil="true"/> 13432 </xdw:taskEvent> 13433 <xdw:taskEvent> 13434 <xdw:id>2</xdw:id> 13435 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 13436 <xdw:identifier>task_2#2</xdw:identifier> 13437 <xdw:eventType>complete</xdw:eventType> 13438 <xdw:status>COMPLETED</xdw:status> 13439 <xdw:eventData xsi:nil="true"/> 13440 </xdw:taskEvent> 13441 </xdw:taskEventHistory> 13442 </xdw:XDWTask> 13443 <xdw:XDWTask> 13444 <xdw:taskData> 13445 <ws-ht:taskDetails> 13446 <ws-ht:id>task_3</ws-ht:id> 13447 <ws-ht:taskType>ttype</ws-ht:taskType> 13448 <ws-ht:name>tname_3</ws-ht:name> 13449 <ws-ht:status>COMPLETED</ws-ht:status> 13450 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13451 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 13452 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13453 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 13454 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13455 </ws-ht:taskDetails> 13456 <ws-ht:description>Undocumented task</ws-ht:description> 13457 <ws-ht:input/> 13458 <ws-ht:output> 13459 <ws-ht:part name="documentReference"> 13460 <ws-ht:attachment> 13461 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 13462 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 13463 <ws-ht:accessType>RLUS</ws-ht:accessType> 13464 <ws-ht:contentType>application/xml</ws-ht:contentType> 13465 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13466 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 13467 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13468 </ws-ht:attachment> 13469 </ws-ht:part> 13470 </ws-ht:output> 13471 </xdw:taskData> 13472 <xdw:taskEventHistory> 13473 <xdw:taskEvent> 13474 <xdw:id>1</xdw:id> 13475 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 13476 <xdw:identifier>task_3#1</xdw:identifier> 13477 <xdw:eventType>create</xdw:eventType> 13478 <xdw:status>READY</xdw:status> 13479 <xdw:eventData xsi:nil="true"/> 13480 </xdw:taskEvent> 13481 <xdw:taskEvent> 13482 <xdw:id>2</xdw:id> 13483 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 13484 <xdw:identifier>task_3#2</xdw:identifier> 13485 <xdw:eventType>complete</xdw:eventType> 13486 <xdw:status>COMPLETED</xdw:status> 13487 <xdw:eventData xsi:nil="true"/> 13488 </xdw:taskEvent> 13489 </xdw:taskEventHistory> 13490 </xdw:XDWTask> 13491 <xdw:XDWTask> 13492 <xdw:taskData> 13493 <ws-ht:taskDetails> 13494 <ws-ht:id>task_4</ws-ht:id> 13495 <ws-ht:taskType>ttype</ws-ht:taskType> 13496 <ws-ht:name>tname_4</ws-ht:name> 13497 <ws-ht:status>COMPLETED</ws-ht:status> 13498 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13499 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 13500 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13501 <ws-ht:lastModifiedTime>2014-06-13T17:20:31.086+02:00</ws-ht:lastModifiedTime> 13502 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13503 </ws-ht:taskDetails> 13504 <ws-ht:description>Undocumented task</ws-ht:description> 13505 <ws-ht:input/> 13506 <ws-ht:output> 13507 <ws-ht:part name="documentReference"> 13508 <ws-ht:attachment> 13509 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 13510 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 13511 <ws-ht:accessType>RLUS</ws-ht:accessType> 13512 <ws-ht:contentType>application/xml</ws-ht:contentType> 13513 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13514 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 13515 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13516 </ws-ht:attachment> 13517 </ws-ht:part> 13518 </ws-ht:output> 13519 </xdw:taskData> 13520 <xdw:taskEventHistory> 13521 <xdw:taskEvent> 13522 <xdw:id>1</xdw:id> 13523 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 13524 <xdw:identifier>task_4#1</xdw:identifier> 13525 <xdw:eventType>create</xdw:eventType> 13526 <xdw:status>READY</xdw:status> 13527 <xdw:eventData xsi:nil="true"/> 13528 </xdw:taskEvent> 13529 <xdw:taskEvent> 13530 <xdw:id>2</xdw:id> 13531 <xdw:eventTime>2014-06-13T17:20:31.086+02:00</xdw:eventTime> 13532 <xdw:identifier>task_4#2</xdw:identifier> 13533 <xdw:eventType>complete</xdw:eventType> 13534 <xdw:status>COMPLETED</xdw:status> 13535 <xdw:eventData xsi:nil="true"/> 13536 </xdw:taskEvent> 13537 </xdw:taskEventHistory> 13538 </xdw:XDWTask> 13539 </xdw:TaskList> 13540 </xdw:XDW.WorkflowDocument> 13541 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 13542 <rlustypes:success>true</rlustypes:success> 13543 <rlustypes:message>One record fetched</rlustypes:message> 13544 </rlustypes:RLUSStatusCode> 13545 </GetResponse> 13546 </soapenv:Body> 13547 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 13548 <soap:Header/> 13549 <soap:Body> 13550 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 13551 <rlustypes:searchByCriteria> 13552 <rlustypes:FilterCriteria> 13553 <rlustypes:Expression> 13554 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 13555 <rlusexp:Operator type="EqualTo"/> 13556 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 13557 </rlustypes:Expression> 13558 </rlustypes:FilterCriteria> 13559 <rlustypes:SearchAttributes> 13560 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 13561 </rlustypes:SearchAttributes> 13562 </rlustypes:searchByCriteria> 13563 </rlustypes:RLUSSearchStruct> 13564 </soap:Body> 13565 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19101"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19101"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 13566 <soapenv:Header/> 13567 <soapenv:Body> 13568 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 13569 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 13570 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="923ee984-7aca-4a8e-ad73-e8315a89dc40"/> 13571 <xdw:effectiveTime value="20140613172031+0200"/> 13572 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 13573 <xdw:patient> 13574 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 13575 </xdw:patient> 13576 <xdw:author> 13577 <xdw:assignedAuthor> 13578 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 13579 <hl7v3:assignedPerson/> 13580 </xdw:assignedAuthor> 13581 </xdw:author> 13582 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 13583 <xdw:workflowDocumentSequenceNumber>16</xdw:workflowDocumentSequenceNumber> 13584 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 13585 <xdw:workflowStatusHistory> 13586 <xdw:documentEvent> 13587 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 13588 <xdw:eventType>complete</xdw:eventType> 13589 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 13590 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13591 <xdw:previousStatus>OPEN</xdw:previousStatus> 13592 <xdw:actualStatus>OPEN</xdw:actualStatus> 13593 </xdw:documentEvent> 13594 <xdw:documentEvent> 13595 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 13596 <xdw:eventType>create</xdw:eventType> 13597 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 13598 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13599 <xdw:previousStatus>OPEN</xdw:previousStatus> 13600 <xdw:actualStatus>OPEN</xdw:actualStatus> 13601 </xdw:documentEvent> 13602 <xdw:documentEvent> 13603 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 13604 <xdw:eventType>create</xdw:eventType> 13605 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 13606 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13607 <xdw:previousStatus>OPEN</xdw:previousStatus> 13608 <xdw:actualStatus>OPEN</xdw:actualStatus> 13609 </xdw:documentEvent> 13610 <xdw:documentEvent> 13611 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 13612 <xdw:eventType>create</xdw:eventType> 13613 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 13614 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13615 <xdw:previousStatus>OPEN</xdw:previousStatus> 13616 <xdw:actualStatus>OPEN</xdw:actualStatus> 13617 </xdw:documentEvent> 13618 <xdw:documentEvent> 13619 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 13620 <xdw:eventType>create</xdw:eventType> 13621 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 13622 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13623 <xdw:previousStatus>OPEN</xdw:previousStatus> 13624 <xdw:actualStatus>OPEN</xdw:actualStatus> 13625 </xdw:documentEvent> 13626 <xdw:documentEvent> 13627 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 13628 <xdw:eventType>create</xdw:eventType> 13629 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 13630 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13631 <xdw:previousStatus>OPEN</xdw:previousStatus> 13632 <xdw:actualStatus>OPEN</xdw:actualStatus> 13633 </xdw:documentEvent> 13634 </xdw:workflowStatusHistory> 13635 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 13636 <xdw:TaskList> 13637 <xdw:XDWTask> 13638 <xdw:taskData> 13639 <ws-ht:taskDetails> 13640 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 13641 <ws-ht:taskType>Requested</ws-ht:taskType> 13642 <ws-ht:name>xdw.creation</ws-ht:name> 13643 <ws-ht:status>COMPLETED</ws-ht:status> 13644 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13645 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 13646 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13647 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 13648 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13649 </ws-ht:taskDetails> 13650 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 13651 <ws-ht:input/> 13652 <ws-ht:output/> 13653 </xdw:taskData> 13654 <xdw:taskEventHistory> 13655 <xdw:taskEvent> 13656 <xdw:id>1</xdw:id> 13657 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 13658 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 13659 <xdw:eventType>complete</xdw:eventType> 13660 <xdw:status>COMPLETED</xdw:status> 13661 <xdw:eventData xsi:nil="true"/> 13662 </xdw:taskEvent> 13663 </xdw:taskEventHistory> 13664 </xdw:XDWTask> 13665 <xdw:XDWTask> 13666 <xdw:taskData> 13667 <ws-ht:taskDetails> 13668 <ws-ht:id>task_0</ws-ht:id> 13669 <ws-ht:taskType>ttype</ws-ht:taskType> 13670 <ws-ht:name>tname_0</ws-ht:name> 13671 <ws-ht:status>COMPLETED</ws-ht:status> 13672 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13673 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 13674 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13675 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 13676 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13677 </ws-ht:taskDetails> 13678 <ws-ht:description>Undocumented task</ws-ht:description> 13679 <ws-ht:input/> 13680 <ws-ht:output> 13681 <ws-ht:part name="documentReference"> 13682 <ws-ht:attachment> 13683 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 13684 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 13685 <ws-ht:accessType>RLUS</ws-ht:accessType> 13686 <ws-ht:contentType>application/xml</ws-ht:contentType> 13687 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13688 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 13689 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13690 </ws-ht:attachment> 13691 </ws-ht:part> 13692 </ws-ht:output> 13693 </xdw:taskData> 13694 <xdw:taskEventHistory> 13695 <xdw:taskEvent> 13696 <xdw:id>1</xdw:id> 13697 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 13698 <xdw:identifier>task_0#1</xdw:identifier> 13699 <xdw:eventType>create</xdw:eventType> 13700 <xdw:status>READY</xdw:status> 13701 <xdw:eventData xsi:nil="true"/> 13702 </xdw:taskEvent> 13703 <xdw:taskEvent> 13704 <xdw:id>2</xdw:id> 13705 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 13706 <xdw:identifier>task_0#2</xdw:identifier> 13707 <xdw:eventType>complete</xdw:eventType> 13708 <xdw:status>COMPLETED</xdw:status> 13709 <xdw:eventData xsi:nil="true"/> 13710 </xdw:taskEvent> 13711 </xdw:taskEventHistory> 13712 </xdw:XDWTask> 13713 <xdw:XDWTask> 13714 <xdw:taskData> 13715 <ws-ht:taskDetails> 13716 <ws-ht:id>task_1</ws-ht:id> 13717 <ws-ht:taskType>ttype</ws-ht:taskType> 13718 <ws-ht:name>tname_1</ws-ht:name> 13719 <ws-ht:status>COMPLETED</ws-ht:status> 13720 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13721 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 13722 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13723 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 13724 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13725 </ws-ht:taskDetails> 13726 <ws-ht:description>Undocumented task</ws-ht:description> 13727 <ws-ht:input/> 13728 <ws-ht:output> 13729 <ws-ht:part name="documentReference"> 13730 <ws-ht:attachment> 13731 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 13732 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 13733 <ws-ht:accessType>RLUS</ws-ht:accessType> 13734 <ws-ht:contentType>application/xml</ws-ht:contentType> 13735 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13736 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 13737 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13738 </ws-ht:attachment> 13739 </ws-ht:part> 13740 </ws-ht:output> 13741 </xdw:taskData> 13742 <xdw:taskEventHistory> 13743 <xdw:taskEvent> 13744 <xdw:id>1</xdw:id> 13745 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 13746 <xdw:identifier>task_1#1</xdw:identifier> 13747 <xdw:eventType>create</xdw:eventType> 13748 <xdw:status>READY</xdw:status> 13749 <xdw:eventData xsi:nil="true"/> 13750 </xdw:taskEvent> 13751 <xdw:taskEvent> 13752 <xdw:id>2</xdw:id> 13753 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 13754 <xdw:identifier>task_1#2</xdw:identifier> 13755 <xdw:eventType>complete</xdw:eventType> 13756 <xdw:status>COMPLETED</xdw:status> 13757 <xdw:eventData xsi:nil="true"/> 13758 </xdw:taskEvent> 13759 </xdw:taskEventHistory> 13760 </xdw:XDWTask> 13761 <xdw:XDWTask> 13762 <xdw:taskData> 13763 <ws-ht:taskDetails> 13764 <ws-ht:id>task_2</ws-ht:id> 13765 <ws-ht:taskType>ttype</ws-ht:taskType> 13766 <ws-ht:name>tname_2</ws-ht:name> 13767 <ws-ht:status>COMPLETED</ws-ht:status> 13768 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13769 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 13770 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13771 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 13772 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13773 </ws-ht:taskDetails> 13774 <ws-ht:description>Undocumented task</ws-ht:description> 13775 <ws-ht:input/> 13776 <ws-ht:output> 13777 <ws-ht:part name="documentReference"> 13778 <ws-ht:attachment> 13779 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 13780 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 13781 <ws-ht:accessType>RLUS</ws-ht:accessType> 13782 <ws-ht:contentType>application/xml</ws-ht:contentType> 13783 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13784 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 13785 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13786 </ws-ht:attachment> 13787 </ws-ht:part> 13788 </ws-ht:output> 13789 </xdw:taskData> 13790 <xdw:taskEventHistory> 13791 <xdw:taskEvent> 13792 <xdw:id>1</xdw:id> 13793 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 13794 <xdw:identifier>task_2#1</xdw:identifier> 13795 <xdw:eventType>create</xdw:eventType> 13796 <xdw:status>READY</xdw:status> 13797 <xdw:eventData xsi:nil="true"/> 13798 </xdw:taskEvent> 13799 <xdw:taskEvent> 13800 <xdw:id>2</xdw:id> 13801 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 13802 <xdw:identifier>task_2#2</xdw:identifier> 13803 <xdw:eventType>complete</xdw:eventType> 13804 <xdw:status>COMPLETED</xdw:status> 13805 <xdw:eventData xsi:nil="true"/> 13806 </xdw:taskEvent> 13807 </xdw:taskEventHistory> 13808 </xdw:XDWTask> 13809 <xdw:XDWTask> 13810 <xdw:taskData> 13811 <ws-ht:taskDetails> 13812 <ws-ht:id>task_3</ws-ht:id> 13813 <ws-ht:taskType>ttype</ws-ht:taskType> 13814 <ws-ht:name>tname_3</ws-ht:name> 13815 <ws-ht:status>COMPLETED</ws-ht:status> 13816 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13817 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 13818 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13819 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 13820 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13821 </ws-ht:taskDetails> 13822 <ws-ht:description>Undocumented task</ws-ht:description> 13823 <ws-ht:input/> 13824 <ws-ht:output> 13825 <ws-ht:part name="documentReference"> 13826 <ws-ht:attachment> 13827 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 13828 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 13829 <ws-ht:accessType>RLUS</ws-ht:accessType> 13830 <ws-ht:contentType>application/xml</ws-ht:contentType> 13831 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13832 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 13833 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13834 </ws-ht:attachment> 13835 </ws-ht:part> 13836 </ws-ht:output> 13837 </xdw:taskData> 13838 <xdw:taskEventHistory> 13839 <xdw:taskEvent> 13840 <xdw:id>1</xdw:id> 13841 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 13842 <xdw:identifier>task_3#1</xdw:identifier> 13843 <xdw:eventType>create</xdw:eventType> 13844 <xdw:status>READY</xdw:status> 13845 <xdw:eventData xsi:nil="true"/> 13846 </xdw:taskEvent> 13847 <xdw:taskEvent> 13848 <xdw:id>2</xdw:id> 13849 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 13850 <xdw:identifier>task_3#2</xdw:identifier> 13851 <xdw:eventType>complete</xdw:eventType> 13852 <xdw:status>COMPLETED</xdw:status> 13853 <xdw:eventData xsi:nil="true"/> 13854 </xdw:taskEvent> 13855 </xdw:taskEventHistory> 13856 </xdw:XDWTask> 13857 <xdw:XDWTask> 13858 <xdw:taskData> 13859 <ws-ht:taskDetails> 13860 <ws-ht:id>task_4</ws-ht:id> 13861 <ws-ht:taskType>ttype</ws-ht:taskType> 13862 <ws-ht:name>tname_4</ws-ht:name> 13863 <ws-ht:status>COMPLETED</ws-ht:status> 13864 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 13865 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 13866 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 13867 <ws-ht:lastModifiedTime>2014-06-13T17:20:31.086+02:00</ws-ht:lastModifiedTime> 13868 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 13869 </ws-ht:taskDetails> 13870 <ws-ht:description>Undocumented task</ws-ht:description> 13871 <ws-ht:input/> 13872 <ws-ht:output> 13873 <ws-ht:part name="documentReference"> 13874 <ws-ht:attachment> 13875 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 13876 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 13877 <ws-ht:accessType>RLUS</ws-ht:accessType> 13878 <ws-ht:contentType>application/xml</ws-ht:contentType> 13879 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 13880 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 13881 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 13882 </ws-ht:attachment> 13883 </ws-ht:part> 13884 </ws-ht:output> 13885 </xdw:taskData> 13886 <xdw:taskEventHistory> 13887 <xdw:taskEvent> 13888 <xdw:id>1</xdw:id> 13889 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 13890 <xdw:identifier>task_4#1</xdw:identifier> 13891 <xdw:eventType>create</xdw:eventType> 13892 <xdw:status>READY</xdw:status> 13893 <xdw:eventData xsi:nil="true"/> 13894 </xdw:taskEvent> 13895 <xdw:taskEvent> 13896 <xdw:id>2</xdw:id> 13897 <xdw:eventTime>2014-06-13T17:20:31.086+02:00</xdw:eventTime> 13898 <xdw:identifier>task_4#2</xdw:identifier> 13899 <xdw:eventType>complete</xdw:eventType> 13900 <xdw:status>COMPLETED</xdw:status> 13901 <xdw:eventData xsi:nil="true"/> 13902 </xdw:taskEvent> 13903 </xdw:taskEventHistory> 13904 </xdw:XDWTask> 13905 </xdw:TaskList> 13906 </xdw:XDW.WorkflowDocument> 13907 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 13908 <rlustypes:success>true</rlustypes:success> 13909 <rlustypes:message>One record fetched</rlustypes:message> 13910 </rlustypes:RLUSStatusCode> 13911 </GetResponse> 13912 </soapenv:Body> 13913 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 13914 <soap:Header/> 13915 <soap:Body> 13916 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 13917 <rlustypes:searchByCriteria> 13918 <rlustypes:FilterCriteria> 13919 <rlustypes:Expression> 13920 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 13921 <rlusexp:Operator type="EqualTo"/> 13922 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 13923 </rlustypes:Expression> 13924 </rlustypes:FilterCriteria> 13925 <rlustypes:SearchAttributes> 13926 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 13927 </rlustypes:SearchAttributes> 13928 </rlustypes:searchByCriteria> 13929 </rlustypes:RLUSSearchStruct> 13930 </soap:Body> 13931 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19101"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19101"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 13932 <soapenv:Header/> 13933 <soapenv:Body> 13934 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 13935 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 13936 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="923ee984-7aca-4a8e-ad73-e8315a89dc40"/> 13937 <xdw:effectiveTime value="20140613172031+0200"/> 13938 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 13939 <xdw:patient> 13940 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 13941 </xdw:patient> 13942 <xdw:author> 13943 <xdw:assignedAuthor> 13944 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 13945 <hl7v3:assignedPerson/> 13946 </xdw:assignedAuthor> 13947 </xdw:author> 13948 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 13949 <xdw:workflowDocumentSequenceNumber>16</xdw:workflowDocumentSequenceNumber> 13950 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 13951 <xdw:workflowStatusHistory> 13952 <xdw:documentEvent> 13953 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 13954 <xdw:eventType>complete</xdw:eventType> 13955 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 13956 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13957 <xdw:previousStatus>OPEN</xdw:previousStatus> 13958 <xdw:actualStatus>OPEN</xdw:actualStatus> 13959 </xdw:documentEvent> 13960 <xdw:documentEvent> 13961 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 13962 <xdw:eventType>create</xdw:eventType> 13963 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 13964 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13965 <xdw:previousStatus>OPEN</xdw:previousStatus> 13966 <xdw:actualStatus>OPEN</xdw:actualStatus> 13967 </xdw:documentEvent> 13968 <xdw:documentEvent> 13969 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 13970 <xdw:eventType>create</xdw:eventType> 13971 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 13972 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13973 <xdw:previousStatus>OPEN</xdw:previousStatus> 13974 <xdw:actualStatus>OPEN</xdw:actualStatus> 13975 </xdw:documentEvent> 13976 <xdw:documentEvent> 13977 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 13978 <xdw:eventType>create</xdw:eventType> 13979 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 13980 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13981 <xdw:previousStatus>OPEN</xdw:previousStatus> 13982 <xdw:actualStatus>OPEN</xdw:actualStatus> 13983 </xdw:documentEvent> 13984 <xdw:documentEvent> 13985 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 13986 <xdw:eventType>create</xdw:eventType> 13987 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 13988 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13989 <xdw:previousStatus>OPEN</xdw:previousStatus> 13990 <xdw:actualStatus>OPEN</xdw:actualStatus> 13991 </xdw:documentEvent> 13992 <xdw:documentEvent> 13993 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 13994 <xdw:eventType>create</xdw:eventType> 13995 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 13996 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 13997 <xdw:previousStatus>OPEN</xdw:previousStatus> 13998 <xdw:actualStatus>OPEN</xdw:actualStatus> 13999 </xdw:documentEvent> 14000 </xdw:workflowStatusHistory> 14001 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 14002 <xdw:TaskList> 14003 <xdw:XDWTask> 14004 <xdw:taskData> 14005 <ws-ht:taskDetails> 14006 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 14007 <ws-ht:taskType>Requested</ws-ht:taskType> 14008 <ws-ht:name>xdw.creation</ws-ht:name> 14009 <ws-ht:status>COMPLETED</ws-ht:status> 14010 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14011 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 14012 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14013 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 14014 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14015 </ws-ht:taskDetails> 14016 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 14017 <ws-ht:input/> 14018 <ws-ht:output/> 14019 </xdw:taskData> 14020 <xdw:taskEventHistory> 14021 <xdw:taskEvent> 14022 <xdw:id>1</xdw:id> 14023 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 14024 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 14025 <xdw:eventType>complete</xdw:eventType> 14026 <xdw:status>COMPLETED</xdw:status> 14027 <xdw:eventData xsi:nil="true"/> 14028 </xdw:taskEvent> 14029 </xdw:taskEventHistory> 14030 </xdw:XDWTask> 14031 <xdw:XDWTask> 14032 <xdw:taskData> 14033 <ws-ht:taskDetails> 14034 <ws-ht:id>task_0</ws-ht:id> 14035 <ws-ht:taskType>ttype</ws-ht:taskType> 14036 <ws-ht:name>tname_0</ws-ht:name> 14037 <ws-ht:status>COMPLETED</ws-ht:status> 14038 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14039 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 14040 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14041 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 14042 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14043 </ws-ht:taskDetails> 14044 <ws-ht:description>Undocumented task</ws-ht:description> 14045 <ws-ht:input/> 14046 <ws-ht:output> 14047 <ws-ht:part name="documentReference"> 14048 <ws-ht:attachment> 14049 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 14050 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 14051 <ws-ht:accessType>RLUS</ws-ht:accessType> 14052 <ws-ht:contentType>application/xml</ws-ht:contentType> 14053 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14054 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 14055 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14056 </ws-ht:attachment> 14057 </ws-ht:part> 14058 </ws-ht:output> 14059 </xdw:taskData> 14060 <xdw:taskEventHistory> 14061 <xdw:taskEvent> 14062 <xdw:id>1</xdw:id> 14063 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 14064 <xdw:identifier>task_0#1</xdw:identifier> 14065 <xdw:eventType>create</xdw:eventType> 14066 <xdw:status>READY</xdw:status> 14067 <xdw:eventData xsi:nil="true"/> 14068 </xdw:taskEvent> 14069 <xdw:taskEvent> 14070 <xdw:id>2</xdw:id> 14071 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 14072 <xdw:identifier>task_0#2</xdw:identifier> 14073 <xdw:eventType>complete</xdw:eventType> 14074 <xdw:status>COMPLETED</xdw:status> 14075 <xdw:eventData xsi:nil="true"/> 14076 </xdw:taskEvent> 14077 </xdw:taskEventHistory> 14078 </xdw:XDWTask> 14079 <xdw:XDWTask> 14080 <xdw:taskData> 14081 <ws-ht:taskDetails> 14082 <ws-ht:id>task_1</ws-ht:id> 14083 <ws-ht:taskType>ttype</ws-ht:taskType> 14084 <ws-ht:name>tname_1</ws-ht:name> 14085 <ws-ht:status>COMPLETED</ws-ht:status> 14086 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14087 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 14088 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14089 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 14090 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14091 </ws-ht:taskDetails> 14092 <ws-ht:description>Undocumented task</ws-ht:description> 14093 <ws-ht:input/> 14094 <ws-ht:output> 14095 <ws-ht:part name="documentReference"> 14096 <ws-ht:attachment> 14097 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 14098 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 14099 <ws-ht:accessType>RLUS</ws-ht:accessType> 14100 <ws-ht:contentType>application/xml</ws-ht:contentType> 14101 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14102 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 14103 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14104 </ws-ht:attachment> 14105 </ws-ht:part> 14106 </ws-ht:output> 14107 </xdw:taskData> 14108 <xdw:taskEventHistory> 14109 <xdw:taskEvent> 14110 <xdw:id>1</xdw:id> 14111 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 14112 <xdw:identifier>task_1#1</xdw:identifier> 14113 <xdw:eventType>create</xdw:eventType> 14114 <xdw:status>READY</xdw:status> 14115 <xdw:eventData xsi:nil="true"/> 14116 </xdw:taskEvent> 14117 <xdw:taskEvent> 14118 <xdw:id>2</xdw:id> 14119 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 14120 <xdw:identifier>task_1#2</xdw:identifier> 14121 <xdw:eventType>complete</xdw:eventType> 14122 <xdw:status>COMPLETED</xdw:status> 14123 <xdw:eventData xsi:nil="true"/> 14124 </xdw:taskEvent> 14125 </xdw:taskEventHistory> 14126 </xdw:XDWTask> 14127 <xdw:XDWTask> 14128 <xdw:taskData> 14129 <ws-ht:taskDetails> 14130 <ws-ht:id>task_2</ws-ht:id> 14131 <ws-ht:taskType>ttype</ws-ht:taskType> 14132 <ws-ht:name>tname_2</ws-ht:name> 14133 <ws-ht:status>COMPLETED</ws-ht:status> 14134 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14135 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 14136 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14137 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 14138 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14139 </ws-ht:taskDetails> 14140 <ws-ht:description>Undocumented task</ws-ht:description> 14141 <ws-ht:input/> 14142 <ws-ht:output> 14143 <ws-ht:part name="documentReference"> 14144 <ws-ht:attachment> 14145 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 14146 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 14147 <ws-ht:accessType>RLUS</ws-ht:accessType> 14148 <ws-ht:contentType>application/xml</ws-ht:contentType> 14149 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14150 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 14151 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14152 </ws-ht:attachment> 14153 </ws-ht:part> 14154 </ws-ht:output> 14155 </xdw:taskData> 14156 <xdw:taskEventHistory> 14157 <xdw:taskEvent> 14158 <xdw:id>1</xdw:id> 14159 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 14160 <xdw:identifier>task_2#1</xdw:identifier> 14161 <xdw:eventType>create</xdw:eventType> 14162 <xdw:status>READY</xdw:status> 14163 <xdw:eventData xsi:nil="true"/> 14164 </xdw:taskEvent> 14165 <xdw:taskEvent> 14166 <xdw:id>2</xdw:id> 14167 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 14168 <xdw:identifier>task_2#2</xdw:identifier> 14169 <xdw:eventType>complete</xdw:eventType> 14170 <xdw:status>COMPLETED</xdw:status> 14171 <xdw:eventData xsi:nil="true"/> 14172 </xdw:taskEvent> 14173 </xdw:taskEventHistory> 14174 </xdw:XDWTask> 14175 <xdw:XDWTask> 14176 <xdw:taskData> 14177 <ws-ht:taskDetails> 14178 <ws-ht:id>task_3</ws-ht:id> 14179 <ws-ht:taskType>ttype</ws-ht:taskType> 14180 <ws-ht:name>tname_3</ws-ht:name> 14181 <ws-ht:status>COMPLETED</ws-ht:status> 14182 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14183 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 14184 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14185 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 14186 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14187 </ws-ht:taskDetails> 14188 <ws-ht:description>Undocumented task</ws-ht:description> 14189 <ws-ht:input/> 14190 <ws-ht:output> 14191 <ws-ht:part name="documentReference"> 14192 <ws-ht:attachment> 14193 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 14194 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 14195 <ws-ht:accessType>RLUS</ws-ht:accessType> 14196 <ws-ht:contentType>application/xml</ws-ht:contentType> 14197 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14198 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 14199 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14200 </ws-ht:attachment> 14201 </ws-ht:part> 14202 </ws-ht:output> 14203 </xdw:taskData> 14204 <xdw:taskEventHistory> 14205 <xdw:taskEvent> 14206 <xdw:id>1</xdw:id> 14207 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 14208 <xdw:identifier>task_3#1</xdw:identifier> 14209 <xdw:eventType>create</xdw:eventType> 14210 <xdw:status>READY</xdw:status> 14211 <xdw:eventData xsi:nil="true"/> 14212 </xdw:taskEvent> 14213 <xdw:taskEvent> 14214 <xdw:id>2</xdw:id> 14215 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 14216 <xdw:identifier>task_3#2</xdw:identifier> 14217 <xdw:eventType>complete</xdw:eventType> 14218 <xdw:status>COMPLETED</xdw:status> 14219 <xdw:eventData xsi:nil="true"/> 14220 </xdw:taskEvent> 14221 </xdw:taskEventHistory> 14222 </xdw:XDWTask> 14223 <xdw:XDWTask> 14224 <xdw:taskData> 14225 <ws-ht:taskDetails> 14226 <ws-ht:id>task_4</ws-ht:id> 14227 <ws-ht:taskType>ttype</ws-ht:taskType> 14228 <ws-ht:name>tname_4</ws-ht:name> 14229 <ws-ht:status>COMPLETED</ws-ht:status> 14230 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14231 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 14232 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14233 <ws-ht:lastModifiedTime>2014-06-13T17:20:31.086+02:00</ws-ht:lastModifiedTime> 14234 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14235 </ws-ht:taskDetails> 14236 <ws-ht:description>Undocumented task</ws-ht:description> 14237 <ws-ht:input/> 14238 <ws-ht:output> 14239 <ws-ht:part name="documentReference"> 14240 <ws-ht:attachment> 14241 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 14242 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 14243 <ws-ht:accessType>RLUS</ws-ht:accessType> 14244 <ws-ht:contentType>application/xml</ws-ht:contentType> 14245 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14246 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 14247 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14248 </ws-ht:attachment> 14249 </ws-ht:part> 14250 </ws-ht:output> 14251 </xdw:taskData> 14252 <xdw:taskEventHistory> 14253 <xdw:taskEvent> 14254 <xdw:id>1</xdw:id> 14255 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 14256 <xdw:identifier>task_4#1</xdw:identifier> 14257 <xdw:eventType>create</xdw:eventType> 14258 <xdw:status>READY</xdw:status> 14259 <xdw:eventData xsi:nil="true"/> 14260 </xdw:taskEvent> 14261 <xdw:taskEvent> 14262 <xdw:id>2</xdw:id> 14263 <xdw:eventTime>2014-06-13T17:20:31.086+02:00</xdw:eventTime> 14264 <xdw:identifier>task_4#2</xdw:identifier> 14265 <xdw:eventType>complete</xdw:eventType> 14266 <xdw:status>COMPLETED</xdw:status> 14267 <xdw:eventData xsi:nil="true"/> 14268 </xdw:taskEvent> 14269 </xdw:taskEventHistory> 14270 </xdw:XDWTask> 14271 </xdw:TaskList> 14272 </xdw:XDW.WorkflowDocument> 14273 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 14274 <rlustypes:success>true</rlustypes:success> 14275 <rlustypes:message>One record fetched</rlustypes:message> 14276 </rlustypes:RLUSStatusCode> 14277 </GetResponse> 14278 </soapenv:Body> 14279 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="3503"/><header key="SOAPAction" value="urn:locate"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="3503"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 14280 <soap:Header/> 14281 <soap:Body> 14282 <LocateRequest xmlns="urn:dedalus:rlus:xdw:types"> 14283 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 14284 <rlustypes:searchByCriteria> 14285 <rlustypes:FilterCriteria> 14286 <rlustypes:Expression> 14287 <rlusexp:BinaryExpression> 14288 <rlusexp:BinaryTerm text="#document.id.root" type="Text"/> 14289 <rlusexp:Operator type="EqualTo"/> 14290 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.4" type="Text"/> 14291 </rlusexp:BinaryExpression> 14292 <rlusexp:Operator type="And"/> 14293 <rlusexp:BinaryExpression> 14294 <rlusexp:BinaryExpression> 14295 <rlusexp:BinaryTerm text="#patient.id" type="Text"/> 14296 <rlusexp:Operator type="EqualTo"/> 14297 <rlusexp:BinaryTerm text="7809c024-8058-4c89-9a71-effd2d53f171" type="Text"/> 14298 </rlusexp:BinaryExpression> 14299 <rlusexp:Operator type="And"/> 14300 <rlusexp:BinaryExpression> 14301 <rlusexp:BinaryExpression> 14302 <rlusexp:BinaryTerm text="#document.status" type="Text"/> 14303 <rlusexp:Operator type="EqualTo"/> 14304 <rlusexp:BinaryTerm text="OPEN" type="Text"/> 14305 </rlusexp:BinaryExpression> 14306 <rlusexp:Operator type="And"/> 14307 <rlusexp:BinaryExpression> 14308 <rlusexp:BinaryExpression> 14309 <rlusexp:BinaryTerm text="#document.author.id.root" type="Text"/> 14310 <rlusexp:Operator type="EqualTo"/> 14311 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.2" type="Text"/> 14312 </rlusexp:BinaryExpression> 14313 <rlusexp:Operator type="And"/> 14314 <rlusexp:BinaryExpression> 14315 <rlusexp:BinaryTerm text="#patient.id.root" type="Text"/> 14316 <rlusexp:Operator type="EqualTo"/> 14317 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.1" type="Text"/> 14318 </rlusexp:BinaryExpression> 14319 </rlusexp:BinaryExpression> 14320 </rlusexp:BinaryExpression> 14321 </rlusexp:BinaryExpression> 14322 </rlustypes:Expression> 14323 </rlustypes:FilterCriteria> 14324 <rlustypes:SearchAttributes> 14325 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:id/@root" qualifier="#document.id.root"/> 14326 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:patient/xdw:id/@extension" qualifier="#patient.id"/> 14327 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowStatus/text()" qualifier="#document.status"/> 14328 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:author/xdw:assignedAuthor/*:id/@root" qualifier="#document.author.id.root"/> 14329 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:patient/xdw:id/@root" qualifier="#patient.id.root"/> 14330 </rlustypes:SearchAttributes> 14331 </rlustypes:searchByCriteria> 14332 </rlustypes:RLUSSearchStruct> 14333 <maxResultStreams>1</maxResultStreams> 14334 <previousResultID>-1</previousResultID> 14335 </LocateRequest> 14336 </soap:Body> 14337 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="1198"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="1198"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 14338 <soapenv:Header/> 14339 <soapenv:Body> 14340 <LocateResponse xmlns="urn:dedalus:rlus:xdw:types"> 14341 <RLUStypes:RLUSsemantic-signifierRecordLocationStruct xmlns:RLUStypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 14342 <RLUStypes:RLUSsemantic-signifierName>xdw</RLUStypes:RLUSsemantic-signifierName> 14343 <RLUStypes:semantic-signifierRecordID root="2.16.840.1.113883.2.9.3.12.4.4" extension="43norno34-4no3na00-workflow-doc-2014"/> 14344 <RLUStypes:CBRContext> 14345 <RLUStypes:CBRName>Dedalus</RLUStypes:CBRName> 14346 <RLUStypes:NetworkName>HSSP SERVICES</RLUStypes:NetworkName> 14347 <RLUStypes:NetworkAddress>hsspservices:8984</RLUStypes:NetworkAddress> 14348 </RLUStypes:CBRContext> 14349 </RLUStypes:RLUSsemantic-signifierRecordLocationStruct> 14350 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 14351 <rlustypes:success>true</rlustypes:success> 14352 <rlustypes:message>One record located</rlustypes:message> 14353 </rlustypes:RLUSStatusCode> 14354 <finishedFlag>0</finishedFlag> 14355 </LocateResponse> 14356 </soapenv:Body> 14357 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 14358 <soap:Header/> 14359 <soap:Body> 14360 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 14361 <rlustypes:searchByCriteria> 14362 <rlustypes:FilterCriteria> 14363 <rlustypes:Expression> 14364 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 14365 <rlusexp:Operator type="EqualTo"/> 14366 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 14367 </rlustypes:Expression> 14368 </rlustypes:FilterCriteria> 14369 <rlustypes:SearchAttributes> 14370 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 14371 </rlustypes:SearchAttributes> 14372 </rlustypes:searchByCriteria> 14373 </rlustypes:RLUSSearchStruct> 14374 </soap:Body> 14375 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19101"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19101"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 14376 <soapenv:Header/> 14377 <soapenv:Body> 14378 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 14379 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 14380 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="923ee984-7aca-4a8e-ad73-e8315a89dc40"/> 14381 <xdw:effectiveTime value="20140613172031+0200"/> 14382 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 14383 <xdw:patient> 14384 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 14385 </xdw:patient> 14386 <xdw:author> 14387 <xdw:assignedAuthor> 14388 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 14389 <hl7v3:assignedPerson/> 14390 </xdw:assignedAuthor> 14391 </xdw:author> 14392 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 14393 <xdw:workflowDocumentSequenceNumber>16</xdw:workflowDocumentSequenceNumber> 14394 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 14395 <xdw:workflowStatusHistory> 14396 <xdw:documentEvent> 14397 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 14398 <xdw:eventType>complete</xdw:eventType> 14399 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 14400 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14401 <xdw:previousStatus>OPEN</xdw:previousStatus> 14402 <xdw:actualStatus>OPEN</xdw:actualStatus> 14403 </xdw:documentEvent> 14404 <xdw:documentEvent> 14405 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 14406 <xdw:eventType>create</xdw:eventType> 14407 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 14408 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14409 <xdw:previousStatus>OPEN</xdw:previousStatus> 14410 <xdw:actualStatus>OPEN</xdw:actualStatus> 14411 </xdw:documentEvent> 14412 <xdw:documentEvent> 14413 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 14414 <xdw:eventType>create</xdw:eventType> 14415 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 14416 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14417 <xdw:previousStatus>OPEN</xdw:previousStatus> 14418 <xdw:actualStatus>OPEN</xdw:actualStatus> 14419 </xdw:documentEvent> 14420 <xdw:documentEvent> 14421 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 14422 <xdw:eventType>create</xdw:eventType> 14423 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 14424 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14425 <xdw:previousStatus>OPEN</xdw:previousStatus> 14426 <xdw:actualStatus>OPEN</xdw:actualStatus> 14427 </xdw:documentEvent> 14428 <xdw:documentEvent> 14429 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 14430 <xdw:eventType>create</xdw:eventType> 14431 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 14432 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14433 <xdw:previousStatus>OPEN</xdw:previousStatus> 14434 <xdw:actualStatus>OPEN</xdw:actualStatus> 14435 </xdw:documentEvent> 14436 <xdw:documentEvent> 14437 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 14438 <xdw:eventType>create</xdw:eventType> 14439 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 14440 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14441 <xdw:previousStatus>OPEN</xdw:previousStatus> 14442 <xdw:actualStatus>OPEN</xdw:actualStatus> 14443 </xdw:documentEvent> 14444 </xdw:workflowStatusHistory> 14445 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 14446 <xdw:TaskList> 14447 <xdw:XDWTask> 14448 <xdw:taskData> 14449 <ws-ht:taskDetails> 14450 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 14451 <ws-ht:taskType>Requested</ws-ht:taskType> 14452 <ws-ht:name>xdw.creation</ws-ht:name> 14453 <ws-ht:status>COMPLETED</ws-ht:status> 14454 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14455 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 14456 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14457 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 14458 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14459 </ws-ht:taskDetails> 14460 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 14461 <ws-ht:input/> 14462 <ws-ht:output/> 14463 </xdw:taskData> 14464 <xdw:taskEventHistory> 14465 <xdw:taskEvent> 14466 <xdw:id>1</xdw:id> 14467 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 14468 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 14469 <xdw:eventType>complete</xdw:eventType> 14470 <xdw:status>COMPLETED</xdw:status> 14471 <xdw:eventData xsi:nil="true"/> 14472 </xdw:taskEvent> 14473 </xdw:taskEventHistory> 14474 </xdw:XDWTask> 14475 <xdw:XDWTask> 14476 <xdw:taskData> 14477 <ws-ht:taskDetails> 14478 <ws-ht:id>task_0</ws-ht:id> 14479 <ws-ht:taskType>ttype</ws-ht:taskType> 14480 <ws-ht:name>tname_0</ws-ht:name> 14481 <ws-ht:status>COMPLETED</ws-ht:status> 14482 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14483 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 14484 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14485 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 14486 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14487 </ws-ht:taskDetails> 14488 <ws-ht:description>Undocumented task</ws-ht:description> 14489 <ws-ht:input/> 14490 <ws-ht:output> 14491 <ws-ht:part name="documentReference"> 14492 <ws-ht:attachment> 14493 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 14494 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 14495 <ws-ht:accessType>RLUS</ws-ht:accessType> 14496 <ws-ht:contentType>application/xml</ws-ht:contentType> 14497 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14498 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 14499 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14500 </ws-ht:attachment> 14501 </ws-ht:part> 14502 </ws-ht:output> 14503 </xdw:taskData> 14504 <xdw:taskEventHistory> 14505 <xdw:taskEvent> 14506 <xdw:id>1</xdw:id> 14507 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 14508 <xdw:identifier>task_0#1</xdw:identifier> 14509 <xdw:eventType>create</xdw:eventType> 14510 <xdw:status>READY</xdw:status> 14511 <xdw:eventData xsi:nil="true"/> 14512 </xdw:taskEvent> 14513 <xdw:taskEvent> 14514 <xdw:id>2</xdw:id> 14515 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 14516 <xdw:identifier>task_0#2</xdw:identifier> 14517 <xdw:eventType>complete</xdw:eventType> 14518 <xdw:status>COMPLETED</xdw:status> 14519 <xdw:eventData xsi:nil="true"/> 14520 </xdw:taskEvent> 14521 </xdw:taskEventHistory> 14522 </xdw:XDWTask> 14523 <xdw:XDWTask> 14524 <xdw:taskData> 14525 <ws-ht:taskDetails> 14526 <ws-ht:id>task_1</ws-ht:id> 14527 <ws-ht:taskType>ttype</ws-ht:taskType> 14528 <ws-ht:name>tname_1</ws-ht:name> 14529 <ws-ht:status>COMPLETED</ws-ht:status> 14530 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14531 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 14532 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14533 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 14534 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14535 </ws-ht:taskDetails> 14536 <ws-ht:description>Undocumented task</ws-ht:description> 14537 <ws-ht:input/> 14538 <ws-ht:output> 14539 <ws-ht:part name="documentReference"> 14540 <ws-ht:attachment> 14541 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 14542 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 14543 <ws-ht:accessType>RLUS</ws-ht:accessType> 14544 <ws-ht:contentType>application/xml</ws-ht:contentType> 14545 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14546 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 14547 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14548 </ws-ht:attachment> 14549 </ws-ht:part> 14550 </ws-ht:output> 14551 </xdw:taskData> 14552 <xdw:taskEventHistory> 14553 <xdw:taskEvent> 14554 <xdw:id>1</xdw:id> 14555 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 14556 <xdw:identifier>task_1#1</xdw:identifier> 14557 <xdw:eventType>create</xdw:eventType> 14558 <xdw:status>READY</xdw:status> 14559 <xdw:eventData xsi:nil="true"/> 14560 </xdw:taskEvent> 14561 <xdw:taskEvent> 14562 <xdw:id>2</xdw:id> 14563 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 14564 <xdw:identifier>task_1#2</xdw:identifier> 14565 <xdw:eventType>complete</xdw:eventType> 14566 <xdw:status>COMPLETED</xdw:status> 14567 <xdw:eventData xsi:nil="true"/> 14568 </xdw:taskEvent> 14569 </xdw:taskEventHistory> 14570 </xdw:XDWTask> 14571 <xdw:XDWTask> 14572 <xdw:taskData> 14573 <ws-ht:taskDetails> 14574 <ws-ht:id>task_2</ws-ht:id> 14575 <ws-ht:taskType>ttype</ws-ht:taskType> 14576 <ws-ht:name>tname_2</ws-ht:name> 14577 <ws-ht:status>COMPLETED</ws-ht:status> 14578 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14579 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 14580 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14581 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 14582 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14583 </ws-ht:taskDetails> 14584 <ws-ht:description>Undocumented task</ws-ht:description> 14585 <ws-ht:input/> 14586 <ws-ht:output> 14587 <ws-ht:part name="documentReference"> 14588 <ws-ht:attachment> 14589 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 14590 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 14591 <ws-ht:accessType>RLUS</ws-ht:accessType> 14592 <ws-ht:contentType>application/xml</ws-ht:contentType> 14593 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14594 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 14595 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14596 </ws-ht:attachment> 14597 </ws-ht:part> 14598 </ws-ht:output> 14599 </xdw:taskData> 14600 <xdw:taskEventHistory> 14601 <xdw:taskEvent> 14602 <xdw:id>1</xdw:id> 14603 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 14604 <xdw:identifier>task_2#1</xdw:identifier> 14605 <xdw:eventType>create</xdw:eventType> 14606 <xdw:status>READY</xdw:status> 14607 <xdw:eventData xsi:nil="true"/> 14608 </xdw:taskEvent> 14609 <xdw:taskEvent> 14610 <xdw:id>2</xdw:id> 14611 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 14612 <xdw:identifier>task_2#2</xdw:identifier> 14613 <xdw:eventType>complete</xdw:eventType> 14614 <xdw:status>COMPLETED</xdw:status> 14615 <xdw:eventData xsi:nil="true"/> 14616 </xdw:taskEvent> 14617 </xdw:taskEventHistory> 14618 </xdw:XDWTask> 14619 <xdw:XDWTask> 14620 <xdw:taskData> 14621 <ws-ht:taskDetails> 14622 <ws-ht:id>task_3</ws-ht:id> 14623 <ws-ht:taskType>ttype</ws-ht:taskType> 14624 <ws-ht:name>tname_3</ws-ht:name> 14625 <ws-ht:status>COMPLETED</ws-ht:status> 14626 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14627 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 14628 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14629 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 14630 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14631 </ws-ht:taskDetails> 14632 <ws-ht:description>Undocumented task</ws-ht:description> 14633 <ws-ht:input/> 14634 <ws-ht:output> 14635 <ws-ht:part name="documentReference"> 14636 <ws-ht:attachment> 14637 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 14638 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 14639 <ws-ht:accessType>RLUS</ws-ht:accessType> 14640 <ws-ht:contentType>application/xml</ws-ht:contentType> 14641 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14642 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 14643 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14644 </ws-ht:attachment> 14645 </ws-ht:part> 14646 </ws-ht:output> 14647 </xdw:taskData> 14648 <xdw:taskEventHistory> 14649 <xdw:taskEvent> 14650 <xdw:id>1</xdw:id> 14651 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 14652 <xdw:identifier>task_3#1</xdw:identifier> 14653 <xdw:eventType>create</xdw:eventType> 14654 <xdw:status>READY</xdw:status> 14655 <xdw:eventData xsi:nil="true"/> 14656 </xdw:taskEvent> 14657 <xdw:taskEvent> 14658 <xdw:id>2</xdw:id> 14659 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 14660 <xdw:identifier>task_3#2</xdw:identifier> 14661 <xdw:eventType>complete</xdw:eventType> 14662 <xdw:status>COMPLETED</xdw:status> 14663 <xdw:eventData xsi:nil="true"/> 14664 </xdw:taskEvent> 14665 </xdw:taskEventHistory> 14666 </xdw:XDWTask> 14667 <xdw:XDWTask> 14668 <xdw:taskData> 14669 <ws-ht:taskDetails> 14670 <ws-ht:id>task_4</ws-ht:id> 14671 <ws-ht:taskType>ttype</ws-ht:taskType> 14672 <ws-ht:name>tname_4</ws-ht:name> 14673 <ws-ht:status>COMPLETED</ws-ht:status> 14674 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14675 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 14676 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14677 <ws-ht:lastModifiedTime>2014-06-13T17:20:31.086+02:00</ws-ht:lastModifiedTime> 14678 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14679 </ws-ht:taskDetails> 14680 <ws-ht:description>Undocumented task</ws-ht:description> 14681 <ws-ht:input/> 14682 <ws-ht:output> 14683 <ws-ht:part name="documentReference"> 14684 <ws-ht:attachment> 14685 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 14686 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 14687 <ws-ht:accessType>RLUS</ws-ht:accessType> 14688 <ws-ht:contentType>application/xml</ws-ht:contentType> 14689 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14690 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 14691 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14692 </ws-ht:attachment> 14693 </ws-ht:part> 14694 </ws-ht:output> 14695 </xdw:taskData> 14696 <xdw:taskEventHistory> 14697 <xdw:taskEvent> 14698 <xdw:id>1</xdw:id> 14699 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 14700 <xdw:identifier>task_4#1</xdw:identifier> 14701 <xdw:eventType>create</xdw:eventType> 14702 <xdw:status>READY</xdw:status> 14703 <xdw:eventData xsi:nil="true"/> 14704 </xdw:taskEvent> 14705 <xdw:taskEvent> 14706 <xdw:id>2</xdw:id> 14707 <xdw:eventTime>2014-06-13T17:20:31.086+02:00</xdw:eventTime> 14708 <xdw:identifier>task_4#2</xdw:identifier> 14709 <xdw:eventType>complete</xdw:eventType> 14710 <xdw:status>COMPLETED</xdw:status> 14711 <xdw:eventData xsi:nil="true"/> 14712 </xdw:taskEvent> 14713 </xdw:taskEventHistory> 14714 </xdw:XDWTask> 14715 </xdw:TaskList> 14716 </xdw:XDW.WorkflowDocument> 14717 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 14718 <rlustypes:success>true</rlustypes:success> 14719 <rlustypes:message>One record fetched</rlustypes:message> 14720 </rlustypes:RLUSStatusCode> 14721 </GetResponse> 14722 </soapenv:Body> 14723 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="19539"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="19539"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 14724 <soap:Header/> 14725 <soap:Body> 14726 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 14727 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 14728 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="1a113a94-49ea-4636-aa22-fcca070220a9"/> 14729 <xdw:effectiveTime value="20140613172035+0200"/> 14730 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="R"/> 14731 <xdw:patient> 14732 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 14733 </xdw:patient> 14734 <xdw:author> 14735 <xdw:assignedAuthor> 14736 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 14737 <hl7v3:assignedPerson/> 14738 </xdw:assignedAuthor> 14739 </xdw:author> 14740 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 14741 <xdw:workflowDocumentSequenceNumber>17</xdw:workflowDocumentSequenceNumber> 14742 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 14743 <xdw:workflowStatusHistory> 14744 <xdw:documentEvent> 14745 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 14746 <xdw:eventType>complete</xdw:eventType> 14747 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 14748 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14749 <xdw:previousStatus>OPEN</xdw:previousStatus> 14750 <xdw:actualStatus>OPEN</xdw:actualStatus> 14751 </xdw:documentEvent> 14752 <xdw:documentEvent> 14753 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 14754 <xdw:eventType>create</xdw:eventType> 14755 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 14756 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14757 <xdw:previousStatus>OPEN</xdw:previousStatus> 14758 <xdw:actualStatus>OPEN</xdw:actualStatus> 14759 </xdw:documentEvent> 14760 <xdw:documentEvent> 14761 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 14762 <xdw:eventType>create</xdw:eventType> 14763 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 14764 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14765 <xdw:previousStatus>OPEN</xdw:previousStatus> 14766 <xdw:actualStatus>OPEN</xdw:actualStatus> 14767 </xdw:documentEvent> 14768 <xdw:documentEvent> 14769 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 14770 <xdw:eventType>create</xdw:eventType> 14771 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 14772 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14773 <xdw:previousStatus>OPEN</xdw:previousStatus> 14774 <xdw:actualStatus>OPEN</xdw:actualStatus> 14775 </xdw:documentEvent> 14776 <xdw:documentEvent> 14777 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 14778 <xdw:eventType>create</xdw:eventType> 14779 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 14780 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14781 <xdw:previousStatus>OPEN</xdw:previousStatus> 14782 <xdw:actualStatus>OPEN</xdw:actualStatus> 14783 </xdw:documentEvent> 14784 <xdw:documentEvent> 14785 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 14786 <xdw:eventType>create</xdw:eventType> 14787 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 14788 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 14789 <xdw:previousStatus>OPEN</xdw:previousStatus> 14790 <xdw:actualStatus>OPEN</xdw:actualStatus> 14791 </xdw:documentEvent> 14792 </xdw:workflowStatusHistory> 14793 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 14794 <xdw:TaskList> 14795 <xdw:XDWTask> 14796 <xdw:taskData> 14797 <ws-ht:taskDetails> 14798 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 14799 <ws-ht:taskType>Requested</ws-ht:taskType> 14800 <ws-ht:name>xdw.creation</ws-ht:name> 14801 <ws-ht:status>COMPLETED</ws-ht:status> 14802 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14803 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 14804 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14805 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 14806 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14807 </ws-ht:taskDetails> 14808 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 14809 <ws-ht:input/> 14810 <ws-ht:output/> 14811 </xdw:taskData> 14812 <xdw:taskEventHistory> 14813 <xdw:taskEvent> 14814 <xdw:id>1</xdw:id> 14815 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 14816 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 14817 <xdw:eventType>complete</xdw:eventType> 14818 <xdw:status>COMPLETED</xdw:status> 14819 <xdw:eventData xsi:nil="true"/> 14820 </xdw:taskEvent> 14821 </xdw:taskEventHistory> 14822 </xdw:XDWTask> 14823 <xdw:XDWTask> 14824 <xdw:taskData> 14825 <ws-ht:taskDetails> 14826 <ws-ht:id>task_0</ws-ht:id> 14827 <ws-ht:taskType>ttype</ws-ht:taskType> 14828 <ws-ht:name>tname_0</ws-ht:name> 14829 <ws-ht:status>COMPLETED</ws-ht:status> 14830 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14831 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 14832 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14833 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 14834 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14835 </ws-ht:taskDetails> 14836 <ws-ht:description>Undocumented task</ws-ht:description> 14837 <ws-ht:input/> 14838 <ws-ht:output> 14839 <ws-ht:part name="documentReference"> 14840 <ws-ht:attachment> 14841 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 14842 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 14843 <ws-ht:accessType>RLUS</ws-ht:accessType> 14844 <ws-ht:contentType>application/xml</ws-ht:contentType> 14845 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14846 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 14847 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14848 </ws-ht:attachment> 14849 </ws-ht:part> 14850 </ws-ht:output> 14851 </xdw:taskData> 14852 <xdw:taskEventHistory> 14853 <xdw:taskEvent> 14854 <xdw:id>1</xdw:id> 14855 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 14856 <xdw:identifier>task_0#1</xdw:identifier> 14857 <xdw:eventType>create</xdw:eventType> 14858 <xdw:status>READY</xdw:status> 14859 <xdw:eventData xsi:nil="true"/> 14860 </xdw:taskEvent> 14861 <xdw:taskEvent> 14862 <xdw:id>2</xdw:id> 14863 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 14864 <xdw:identifier>task_0#2</xdw:identifier> 14865 <xdw:eventType>complete</xdw:eventType> 14866 <xdw:status>COMPLETED</xdw:status> 14867 <xdw:eventData xsi:nil="true"/> 14868 </xdw:taskEvent> 14869 </xdw:taskEventHistory> 14870 </xdw:XDWTask> 14871 <xdw:XDWTask> 14872 <xdw:taskData> 14873 <ws-ht:taskDetails> 14874 <ws-ht:id>task_1</ws-ht:id> 14875 <ws-ht:taskType>ttype</ws-ht:taskType> 14876 <ws-ht:name>tname_1</ws-ht:name> 14877 <ws-ht:status>COMPLETED</ws-ht:status> 14878 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14879 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 14880 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14881 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 14882 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14883 </ws-ht:taskDetails> 14884 <ws-ht:description>Undocumented task</ws-ht:description> 14885 <ws-ht:input/> 14886 <ws-ht:output> 14887 <ws-ht:part name="documentReference"> 14888 <ws-ht:attachment> 14889 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 14890 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 14891 <ws-ht:accessType>RLUS</ws-ht:accessType> 14892 <ws-ht:contentType>application/xml</ws-ht:contentType> 14893 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14894 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 14895 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14896 </ws-ht:attachment> 14897 </ws-ht:part> 14898 </ws-ht:output> 14899 </xdw:taskData> 14900 <xdw:taskEventHistory> 14901 <xdw:taskEvent> 14902 <xdw:id>1</xdw:id> 14903 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 14904 <xdw:identifier>task_1#1</xdw:identifier> 14905 <xdw:eventType>create</xdw:eventType> 14906 <xdw:status>READY</xdw:status> 14907 <xdw:eventData xsi:nil="true"/> 14908 </xdw:taskEvent> 14909 <xdw:taskEvent> 14910 <xdw:id>2</xdw:id> 14911 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 14912 <xdw:identifier>task_1#2</xdw:identifier> 14913 <xdw:eventType>complete</xdw:eventType> 14914 <xdw:status>COMPLETED</xdw:status> 14915 <xdw:eventData xsi:nil="true"/> 14916 </xdw:taskEvent> 14917 </xdw:taskEventHistory> 14918 </xdw:XDWTask> 14919 <xdw:XDWTask> 14920 <xdw:taskData> 14921 <ws-ht:taskDetails> 14922 <ws-ht:id>task_2</ws-ht:id> 14923 <ws-ht:taskType>ttype</ws-ht:taskType> 14924 <ws-ht:name>tname_2</ws-ht:name> 14925 <ws-ht:status>COMPLETED</ws-ht:status> 14926 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14927 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 14928 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14929 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 14930 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14931 </ws-ht:taskDetails> 14932 <ws-ht:description>Undocumented task</ws-ht:description> 14933 <ws-ht:input/> 14934 <ws-ht:output> 14935 <ws-ht:part name="documentReference"> 14936 <ws-ht:attachment> 14937 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 14938 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 14939 <ws-ht:accessType>RLUS</ws-ht:accessType> 14940 <ws-ht:contentType>application/xml</ws-ht:contentType> 14941 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14942 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 14943 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14944 </ws-ht:attachment> 14945 </ws-ht:part> 14946 </ws-ht:output> 14947 </xdw:taskData> 14948 <xdw:taskEventHistory> 14949 <xdw:taskEvent> 14950 <xdw:id>1</xdw:id> 14951 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 14952 <xdw:identifier>task_2#1</xdw:identifier> 14953 <xdw:eventType>create</xdw:eventType> 14954 <xdw:status>READY</xdw:status> 14955 <xdw:eventData xsi:nil="true"/> 14956 </xdw:taskEvent> 14957 <xdw:taskEvent> 14958 <xdw:id>2</xdw:id> 14959 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 14960 <xdw:identifier>task_2#2</xdw:identifier> 14961 <xdw:eventType>complete</xdw:eventType> 14962 <xdw:status>COMPLETED</xdw:status> 14963 <xdw:eventData xsi:nil="true"/> 14964 </xdw:taskEvent> 14965 </xdw:taskEventHistory> 14966 </xdw:XDWTask> 14967 <xdw:XDWTask> 14968 <xdw:taskData> 14969 <ws-ht:taskDetails> 14970 <ws-ht:id>task_3</ws-ht:id> 14971 <ws-ht:taskType>ttype</ws-ht:taskType> 14972 <ws-ht:name>tname_3</ws-ht:name> 14973 <ws-ht:status>COMPLETED</ws-ht:status> 14974 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 14975 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 14976 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 14977 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 14978 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 14979 </ws-ht:taskDetails> 14980 <ws-ht:description>Undocumented task</ws-ht:description> 14981 <ws-ht:input/> 14982 <ws-ht:output> 14983 <ws-ht:part name="documentReference"> 14984 <ws-ht:attachment> 14985 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 14986 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 14987 <ws-ht:accessType>RLUS</ws-ht:accessType> 14988 <ws-ht:contentType>application/xml</ws-ht:contentType> 14989 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 14990 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 14991 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 14992 </ws-ht:attachment> 14993 </ws-ht:part> 14994 </ws-ht:output> 14995 </xdw:taskData> 14996 <xdw:taskEventHistory> 14997 <xdw:taskEvent> 14998 <xdw:id>1</xdw:id> 14999 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 15000 <xdw:identifier>task_3#1</xdw:identifier> 15001 <xdw:eventType>create</xdw:eventType> 15002 <xdw:status>READY</xdw:status> 15003 <xdw:eventData xsi:nil="true"/> 15004 </xdw:taskEvent> 15005 <xdw:taskEvent> 15006 <xdw:id>2</xdw:id> 15007 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 15008 <xdw:identifier>task_3#2</xdw:identifier> 15009 <xdw:eventType>complete</xdw:eventType> 15010 <xdw:status>COMPLETED</xdw:status> 15011 <xdw:eventData xsi:nil="true"/> 15012 </xdw:taskEvent> 15013 </xdw:taskEventHistory> 15014 </xdw:XDWTask> 15015 <xdw:XDWTask> 15016 <xdw:taskData> 15017 <ws-ht:taskDetails> 15018 <ws-ht:id>task_4</ws-ht:id> 15019 <ws-ht:taskType>ttype</ws-ht:taskType> 15020 <ws-ht:name>tname_4</ws-ht:name> 15021 <ws-ht:status>COMPLETED</ws-ht:status> 15022 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15023 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 15024 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15025 <ws-ht:lastModifiedTime>2014-06-13T17:20:31.086+02:00</ws-ht:lastModifiedTime> 15026 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15027 </ws-ht:taskDetails> 15028 <ws-ht:description>Undocumented task</ws-ht:description> 15029 <ws-ht:input/> 15030 <ws-ht:output> 15031 <ws-ht:part name="documentReference"> 15032 <ws-ht:attachment> 15033 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 15034 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 15035 <ws-ht:accessType>RLUS</ws-ht:accessType> 15036 <ws-ht:contentType>application/xml</ws-ht:contentType> 15037 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15038 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 15039 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15040 </ws-ht:attachment> 15041 </ws-ht:part> 15042 </ws-ht:output> 15043 </xdw:taskData> 15044 <xdw:taskEventHistory> 15045 <xdw:taskEvent> 15046 <xdw:id>1</xdw:id> 15047 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 15048 <xdw:identifier>task_4#1</xdw:identifier> 15049 <xdw:eventType>create</xdw:eventType> 15050 <xdw:status>READY</xdw:status> 15051 <xdw:eventData xsi:nil="true"/> 15052 </xdw:taskEvent> 15053 <xdw:taskEvent> 15054 <xdw:id>2</xdw:id> 15055 <xdw:eventTime>2014-06-13T17:20:31.086+02:00</xdw:eventTime> 15056 <xdw:identifier>task_4#2</xdw:identifier> 15057 <xdw:eventType>complete</xdw:eventType> 15058 <xdw:status>COMPLETED</xdw:status> 15059 <xdw:eventData xsi:nil="true"/> 15060 </xdw:taskEvent> 15061 </xdw:taskEventHistory> 15062 </xdw:XDWTask> 15063 </xdw:TaskList> 15064 </xdw:XDW.WorkflowDocument> 15065 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 15066 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 15067 <rlustypes:SecurityContext> 15068 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 15069 </rlustypes:SecurityContext> 15070 <rlustypes:CBRContext> 15071 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 15072 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 15073 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 15074 </rlustypes:CBRContext> 15075 </rlustypes:RLUSPutRequestSrcStruct> 15076 <writeCommandEnum>UPDATE</writeCommandEnum> 15077 </PutRequest> 15078 </soap:Body> 15079 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 15080 <soapenv:Header/> 15081 <soapenv:Body> 15082 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 15083 <rlustypes:success>true</rlustypes:success> 15084 <rlustypes:message/> 15085 </rlustypes:RLUSStatusCode> 15086 </soapenv:Body> 15087 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 15088 <soap:Header/> 15089 <soap:Body> 15090 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 15091 <rlustypes:searchByCriteria> 15092 <rlustypes:FilterCriteria> 15093 <rlustypes:Expression> 15094 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 15095 <rlusexp:Operator type="EqualTo"/> 15096 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 15097 </rlustypes:Expression> 15098 </rlustypes:FilterCriteria> 15099 <rlustypes:SearchAttributes> 15100 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 15101 </rlustypes:SearchAttributes> 15102 </rlustypes:searchByCriteria> 15103 </rlustypes:RLUSSearchStruct> 15104 </soap:Body> 15105 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19101"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19101"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 15106 <soapenv:Header/> 15107 <soapenv:Body> 15108 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 15109 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 15110 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="1a113a94-49ea-4636-aa22-fcca070220a9"/> 15111 <xdw:effectiveTime value="20140613172035+0200"/> 15112 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="R"/> 15113 <xdw:patient> 15114 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 15115 </xdw:patient> 15116 <xdw:author> 15117 <xdw:assignedAuthor> 15118 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 15119 <hl7v3:assignedPerson/> 15120 </xdw:assignedAuthor> 15121 </xdw:author> 15122 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 15123 <xdw:workflowDocumentSequenceNumber>17</xdw:workflowDocumentSequenceNumber> 15124 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 15125 <xdw:workflowStatusHistory> 15126 <xdw:documentEvent> 15127 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 15128 <xdw:eventType>complete</xdw:eventType> 15129 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 15130 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15131 <xdw:previousStatus>OPEN</xdw:previousStatus> 15132 <xdw:actualStatus>OPEN</xdw:actualStatus> 15133 </xdw:documentEvent> 15134 <xdw:documentEvent> 15135 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 15136 <xdw:eventType>create</xdw:eventType> 15137 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 15138 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15139 <xdw:previousStatus>OPEN</xdw:previousStatus> 15140 <xdw:actualStatus>OPEN</xdw:actualStatus> 15141 </xdw:documentEvent> 15142 <xdw:documentEvent> 15143 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 15144 <xdw:eventType>create</xdw:eventType> 15145 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 15146 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15147 <xdw:previousStatus>OPEN</xdw:previousStatus> 15148 <xdw:actualStatus>OPEN</xdw:actualStatus> 15149 </xdw:documentEvent> 15150 <xdw:documentEvent> 15151 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 15152 <xdw:eventType>create</xdw:eventType> 15153 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 15154 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15155 <xdw:previousStatus>OPEN</xdw:previousStatus> 15156 <xdw:actualStatus>OPEN</xdw:actualStatus> 15157 </xdw:documentEvent> 15158 <xdw:documentEvent> 15159 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 15160 <xdw:eventType>create</xdw:eventType> 15161 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 15162 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15163 <xdw:previousStatus>OPEN</xdw:previousStatus> 15164 <xdw:actualStatus>OPEN</xdw:actualStatus> 15165 </xdw:documentEvent> 15166 <xdw:documentEvent> 15167 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 15168 <xdw:eventType>create</xdw:eventType> 15169 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 15170 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15171 <xdw:previousStatus>OPEN</xdw:previousStatus> 15172 <xdw:actualStatus>OPEN</xdw:actualStatus> 15173 </xdw:documentEvent> 15174 </xdw:workflowStatusHistory> 15175 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 15176 <xdw:TaskList> 15177 <xdw:XDWTask> 15178 <xdw:taskData> 15179 <ws-ht:taskDetails> 15180 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 15181 <ws-ht:taskType>Requested</ws-ht:taskType> 15182 <ws-ht:name>xdw.creation</ws-ht:name> 15183 <ws-ht:status>COMPLETED</ws-ht:status> 15184 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15185 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 15186 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15187 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 15188 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15189 </ws-ht:taskDetails> 15190 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 15191 <ws-ht:input/> 15192 <ws-ht:output/> 15193 </xdw:taskData> 15194 <xdw:taskEventHistory> 15195 <xdw:taskEvent> 15196 <xdw:id>1</xdw:id> 15197 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 15198 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 15199 <xdw:eventType>complete</xdw:eventType> 15200 <xdw:status>COMPLETED</xdw:status> 15201 <xdw:eventData xsi:nil="true"/> 15202 </xdw:taskEvent> 15203 </xdw:taskEventHistory> 15204 </xdw:XDWTask> 15205 <xdw:XDWTask> 15206 <xdw:taskData> 15207 <ws-ht:taskDetails> 15208 <ws-ht:id>task_0</ws-ht:id> 15209 <ws-ht:taskType>ttype</ws-ht:taskType> 15210 <ws-ht:name>tname_0</ws-ht:name> 15211 <ws-ht:status>COMPLETED</ws-ht:status> 15212 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15213 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 15214 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15215 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 15216 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15217 </ws-ht:taskDetails> 15218 <ws-ht:description>Undocumented task</ws-ht:description> 15219 <ws-ht:input/> 15220 <ws-ht:output> 15221 <ws-ht:part name="documentReference"> 15222 <ws-ht:attachment> 15223 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 15224 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 15225 <ws-ht:accessType>RLUS</ws-ht:accessType> 15226 <ws-ht:contentType>application/xml</ws-ht:contentType> 15227 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15228 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 15229 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15230 </ws-ht:attachment> 15231 </ws-ht:part> 15232 </ws-ht:output> 15233 </xdw:taskData> 15234 <xdw:taskEventHistory> 15235 <xdw:taskEvent> 15236 <xdw:id>1</xdw:id> 15237 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 15238 <xdw:identifier>task_0#1</xdw:identifier> 15239 <xdw:eventType>create</xdw:eventType> 15240 <xdw:status>READY</xdw:status> 15241 <xdw:eventData xsi:nil="true"/> 15242 </xdw:taskEvent> 15243 <xdw:taskEvent> 15244 <xdw:id>2</xdw:id> 15245 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 15246 <xdw:identifier>task_0#2</xdw:identifier> 15247 <xdw:eventType>complete</xdw:eventType> 15248 <xdw:status>COMPLETED</xdw:status> 15249 <xdw:eventData xsi:nil="true"/> 15250 </xdw:taskEvent> 15251 </xdw:taskEventHistory> 15252 </xdw:XDWTask> 15253 <xdw:XDWTask> 15254 <xdw:taskData> 15255 <ws-ht:taskDetails> 15256 <ws-ht:id>task_1</ws-ht:id> 15257 <ws-ht:taskType>ttype</ws-ht:taskType> 15258 <ws-ht:name>tname_1</ws-ht:name> 15259 <ws-ht:status>COMPLETED</ws-ht:status> 15260 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15261 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 15262 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15263 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 15264 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15265 </ws-ht:taskDetails> 15266 <ws-ht:description>Undocumented task</ws-ht:description> 15267 <ws-ht:input/> 15268 <ws-ht:output> 15269 <ws-ht:part name="documentReference"> 15270 <ws-ht:attachment> 15271 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 15272 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 15273 <ws-ht:accessType>RLUS</ws-ht:accessType> 15274 <ws-ht:contentType>application/xml</ws-ht:contentType> 15275 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15276 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 15277 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15278 </ws-ht:attachment> 15279 </ws-ht:part> 15280 </ws-ht:output> 15281 </xdw:taskData> 15282 <xdw:taskEventHistory> 15283 <xdw:taskEvent> 15284 <xdw:id>1</xdw:id> 15285 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 15286 <xdw:identifier>task_1#1</xdw:identifier> 15287 <xdw:eventType>create</xdw:eventType> 15288 <xdw:status>READY</xdw:status> 15289 <xdw:eventData xsi:nil="true"/> 15290 </xdw:taskEvent> 15291 <xdw:taskEvent> 15292 <xdw:id>2</xdw:id> 15293 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 15294 <xdw:identifier>task_1#2</xdw:identifier> 15295 <xdw:eventType>complete</xdw:eventType> 15296 <xdw:status>COMPLETED</xdw:status> 15297 <xdw:eventData xsi:nil="true"/> 15298 </xdw:taskEvent> 15299 </xdw:taskEventHistory> 15300 </xdw:XDWTask> 15301 <xdw:XDWTask> 15302 <xdw:taskData> 15303 <ws-ht:taskDetails> 15304 <ws-ht:id>task_2</ws-ht:id> 15305 <ws-ht:taskType>ttype</ws-ht:taskType> 15306 <ws-ht:name>tname_2</ws-ht:name> 15307 <ws-ht:status>COMPLETED</ws-ht:status> 15308 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15309 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 15310 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15311 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 15312 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15313 </ws-ht:taskDetails> 15314 <ws-ht:description>Undocumented task</ws-ht:description> 15315 <ws-ht:input/> 15316 <ws-ht:output> 15317 <ws-ht:part name="documentReference"> 15318 <ws-ht:attachment> 15319 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 15320 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 15321 <ws-ht:accessType>RLUS</ws-ht:accessType> 15322 <ws-ht:contentType>application/xml</ws-ht:contentType> 15323 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15324 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 15325 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15326 </ws-ht:attachment> 15327 </ws-ht:part> 15328 </ws-ht:output> 15329 </xdw:taskData> 15330 <xdw:taskEventHistory> 15331 <xdw:taskEvent> 15332 <xdw:id>1</xdw:id> 15333 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 15334 <xdw:identifier>task_2#1</xdw:identifier> 15335 <xdw:eventType>create</xdw:eventType> 15336 <xdw:status>READY</xdw:status> 15337 <xdw:eventData xsi:nil="true"/> 15338 </xdw:taskEvent> 15339 <xdw:taskEvent> 15340 <xdw:id>2</xdw:id> 15341 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 15342 <xdw:identifier>task_2#2</xdw:identifier> 15343 <xdw:eventType>complete</xdw:eventType> 15344 <xdw:status>COMPLETED</xdw:status> 15345 <xdw:eventData xsi:nil="true"/> 15346 </xdw:taskEvent> 15347 </xdw:taskEventHistory> 15348 </xdw:XDWTask> 15349 <xdw:XDWTask> 15350 <xdw:taskData> 15351 <ws-ht:taskDetails> 15352 <ws-ht:id>task_3</ws-ht:id> 15353 <ws-ht:taskType>ttype</ws-ht:taskType> 15354 <ws-ht:name>tname_3</ws-ht:name> 15355 <ws-ht:status>COMPLETED</ws-ht:status> 15356 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15357 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 15358 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15359 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 15360 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15361 </ws-ht:taskDetails> 15362 <ws-ht:description>Undocumented task</ws-ht:description> 15363 <ws-ht:input/> 15364 <ws-ht:output> 15365 <ws-ht:part name="documentReference"> 15366 <ws-ht:attachment> 15367 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 15368 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 15369 <ws-ht:accessType>RLUS</ws-ht:accessType> 15370 <ws-ht:contentType>application/xml</ws-ht:contentType> 15371 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15372 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 15373 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15374 </ws-ht:attachment> 15375 </ws-ht:part> 15376 </ws-ht:output> 15377 </xdw:taskData> 15378 <xdw:taskEventHistory> 15379 <xdw:taskEvent> 15380 <xdw:id>1</xdw:id> 15381 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 15382 <xdw:identifier>task_3#1</xdw:identifier> 15383 <xdw:eventType>create</xdw:eventType> 15384 <xdw:status>READY</xdw:status> 15385 <xdw:eventData xsi:nil="true"/> 15386 </xdw:taskEvent> 15387 <xdw:taskEvent> 15388 <xdw:id>2</xdw:id> 15389 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 15390 <xdw:identifier>task_3#2</xdw:identifier> 15391 <xdw:eventType>complete</xdw:eventType> 15392 <xdw:status>COMPLETED</xdw:status> 15393 <xdw:eventData xsi:nil="true"/> 15394 </xdw:taskEvent> 15395 </xdw:taskEventHistory> 15396 </xdw:XDWTask> 15397 <xdw:XDWTask> 15398 <xdw:taskData> 15399 <ws-ht:taskDetails> 15400 <ws-ht:id>task_4</ws-ht:id> 15401 <ws-ht:taskType>ttype</ws-ht:taskType> 15402 <ws-ht:name>tname_4</ws-ht:name> 15403 <ws-ht:status>COMPLETED</ws-ht:status> 15404 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15405 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 15406 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15407 <ws-ht:lastModifiedTime>2014-06-13T17:20:31.086+02:00</ws-ht:lastModifiedTime> 15408 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15409 </ws-ht:taskDetails> 15410 <ws-ht:description>Undocumented task</ws-ht:description> 15411 <ws-ht:input/> 15412 <ws-ht:output> 15413 <ws-ht:part name="documentReference"> 15414 <ws-ht:attachment> 15415 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 15416 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 15417 <ws-ht:accessType>RLUS</ws-ht:accessType> 15418 <ws-ht:contentType>application/xml</ws-ht:contentType> 15419 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15420 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 15421 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15422 </ws-ht:attachment> 15423 </ws-ht:part> 15424 </ws-ht:output> 15425 </xdw:taskData> 15426 <xdw:taskEventHistory> 15427 <xdw:taskEvent> 15428 <xdw:id>1</xdw:id> 15429 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 15430 <xdw:identifier>task_4#1</xdw:identifier> 15431 <xdw:eventType>create</xdw:eventType> 15432 <xdw:status>READY</xdw:status> 15433 <xdw:eventData xsi:nil="true"/> 15434 </xdw:taskEvent> 15435 <xdw:taskEvent> 15436 <xdw:id>2</xdw:id> 15437 <xdw:eventTime>2014-06-13T17:20:31.086+02:00</xdw:eventTime> 15438 <xdw:identifier>task_4#2</xdw:identifier> 15439 <xdw:eventType>complete</xdw:eventType> 15440 <xdw:status>COMPLETED</xdw:status> 15441 <xdw:eventData xsi:nil="true"/> 15442 </xdw:taskEvent> 15443 </xdw:taskEventHistory> 15444 </xdw:XDWTask> 15445 </xdw:TaskList> 15446 </xdw:XDW.WorkflowDocument> 15447 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 15448 <rlustypes:success>true</rlustypes:success> 15449 <rlustypes:message>One record fetched</rlustypes:message> 15450 </rlustypes:RLUSStatusCode> 15451 </GetResponse> 15452 </soapenv:Body> 15453 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1029"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1029"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 15454 <soap:Header/> 15455 <soap:Body> 15456 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 15457 <rlustypes:searchByCriteria> 15458 <rlustypes:FilterCriteria> 15459 <rlustypes:Expression> 15460 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 15461 <rlusexp:Operator type="EqualTo"/> 15462 <rlusexp:BinaryTerm text="43norno34-4no3na00-workflow-doc-2014" type="Text"/> 15463 </rlustypes:Expression> 15464 </rlustypes:FilterCriteria> 15465 <rlustypes:SearchAttributes> 15466 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 15467 </rlustypes:SearchAttributes> 15468 </rlustypes:searchByCriteria> 15469 </rlustypes:RLUSSearchStruct> 15470 </soap:Body> 15471 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19101"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19101"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 15472 <soapenv:Header/> 15473 <soapenv:Body> 15474 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 15475 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 15476 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="1a113a94-49ea-4636-aa22-fcca070220a9"/> 15477 <xdw:effectiveTime value="20140613172035+0200"/> 15478 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="R"/> 15479 <xdw:patient> 15480 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 15481 </xdw:patient> 15482 <xdw:author> 15483 <xdw:assignedAuthor> 15484 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 15485 <hl7v3:assignedPerson/> 15486 </xdw:assignedAuthor> 15487 </xdw:author> 15488 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 15489 <xdw:workflowDocumentSequenceNumber>17</xdw:workflowDocumentSequenceNumber> 15490 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 15491 <xdw:workflowStatusHistory> 15492 <xdw:documentEvent> 15493 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 15494 <xdw:eventType>complete</xdw:eventType> 15495 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 15496 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15497 <xdw:previousStatus>OPEN</xdw:previousStatus> 15498 <xdw:actualStatus>OPEN</xdw:actualStatus> 15499 </xdw:documentEvent> 15500 <xdw:documentEvent> 15501 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 15502 <xdw:eventType>create</xdw:eventType> 15503 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 15504 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15505 <xdw:previousStatus>OPEN</xdw:previousStatus> 15506 <xdw:actualStatus>OPEN</xdw:actualStatus> 15507 </xdw:documentEvent> 15508 <xdw:documentEvent> 15509 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 15510 <xdw:eventType>create</xdw:eventType> 15511 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 15512 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15513 <xdw:previousStatus>OPEN</xdw:previousStatus> 15514 <xdw:actualStatus>OPEN</xdw:actualStatus> 15515 </xdw:documentEvent> 15516 <xdw:documentEvent> 15517 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 15518 <xdw:eventType>create</xdw:eventType> 15519 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 15520 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15521 <xdw:previousStatus>OPEN</xdw:previousStatus> 15522 <xdw:actualStatus>OPEN</xdw:actualStatus> 15523 </xdw:documentEvent> 15524 <xdw:documentEvent> 15525 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 15526 <xdw:eventType>create</xdw:eventType> 15527 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 15528 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15529 <xdw:previousStatus>OPEN</xdw:previousStatus> 15530 <xdw:actualStatus>OPEN</xdw:actualStatus> 15531 </xdw:documentEvent> 15532 <xdw:documentEvent> 15533 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 15534 <xdw:eventType>create</xdw:eventType> 15535 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 15536 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15537 <xdw:previousStatus>OPEN</xdw:previousStatus> 15538 <xdw:actualStatus>OPEN</xdw:actualStatus> 15539 </xdw:documentEvent> 15540 </xdw:workflowStatusHistory> 15541 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 15542 <xdw:TaskList> 15543 <xdw:XDWTask> 15544 <xdw:taskData> 15545 <ws-ht:taskDetails> 15546 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 15547 <ws-ht:taskType>Requested</ws-ht:taskType> 15548 <ws-ht:name>xdw.creation</ws-ht:name> 15549 <ws-ht:status>COMPLETED</ws-ht:status> 15550 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15551 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 15552 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15553 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 15554 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15555 </ws-ht:taskDetails> 15556 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 15557 <ws-ht:input/> 15558 <ws-ht:output/> 15559 </xdw:taskData> 15560 <xdw:taskEventHistory> 15561 <xdw:taskEvent> 15562 <xdw:id>1</xdw:id> 15563 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 15564 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 15565 <xdw:eventType>complete</xdw:eventType> 15566 <xdw:status>COMPLETED</xdw:status> 15567 <xdw:eventData xsi:nil="true"/> 15568 </xdw:taskEvent> 15569 </xdw:taskEventHistory> 15570 </xdw:XDWTask> 15571 <xdw:XDWTask> 15572 <xdw:taskData> 15573 <ws-ht:taskDetails> 15574 <ws-ht:id>task_0</ws-ht:id> 15575 <ws-ht:taskType>ttype</ws-ht:taskType> 15576 <ws-ht:name>tname_0</ws-ht:name> 15577 <ws-ht:status>COMPLETED</ws-ht:status> 15578 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15579 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 15580 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15581 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 15582 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15583 </ws-ht:taskDetails> 15584 <ws-ht:description>Undocumented task</ws-ht:description> 15585 <ws-ht:input/> 15586 <ws-ht:output> 15587 <ws-ht:part name="documentReference"> 15588 <ws-ht:attachment> 15589 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 15590 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 15591 <ws-ht:accessType>RLUS</ws-ht:accessType> 15592 <ws-ht:contentType>application/xml</ws-ht:contentType> 15593 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15594 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 15595 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15596 </ws-ht:attachment> 15597 </ws-ht:part> 15598 </ws-ht:output> 15599 </xdw:taskData> 15600 <xdw:taskEventHistory> 15601 <xdw:taskEvent> 15602 <xdw:id>1</xdw:id> 15603 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 15604 <xdw:identifier>task_0#1</xdw:identifier> 15605 <xdw:eventType>create</xdw:eventType> 15606 <xdw:status>READY</xdw:status> 15607 <xdw:eventData xsi:nil="true"/> 15608 </xdw:taskEvent> 15609 <xdw:taskEvent> 15610 <xdw:id>2</xdw:id> 15611 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 15612 <xdw:identifier>task_0#2</xdw:identifier> 15613 <xdw:eventType>complete</xdw:eventType> 15614 <xdw:status>COMPLETED</xdw:status> 15615 <xdw:eventData xsi:nil="true"/> 15616 </xdw:taskEvent> 15617 </xdw:taskEventHistory> 15618 </xdw:XDWTask> 15619 <xdw:XDWTask> 15620 <xdw:taskData> 15621 <ws-ht:taskDetails> 15622 <ws-ht:id>task_1</ws-ht:id> 15623 <ws-ht:taskType>ttype</ws-ht:taskType> 15624 <ws-ht:name>tname_1</ws-ht:name> 15625 <ws-ht:status>COMPLETED</ws-ht:status> 15626 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15627 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 15628 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15629 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 15630 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15631 </ws-ht:taskDetails> 15632 <ws-ht:description>Undocumented task</ws-ht:description> 15633 <ws-ht:input/> 15634 <ws-ht:output> 15635 <ws-ht:part name="documentReference"> 15636 <ws-ht:attachment> 15637 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 15638 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 15639 <ws-ht:accessType>RLUS</ws-ht:accessType> 15640 <ws-ht:contentType>application/xml</ws-ht:contentType> 15641 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15642 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 15643 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15644 </ws-ht:attachment> 15645 </ws-ht:part> 15646 </ws-ht:output> 15647 </xdw:taskData> 15648 <xdw:taskEventHistory> 15649 <xdw:taskEvent> 15650 <xdw:id>1</xdw:id> 15651 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 15652 <xdw:identifier>task_1#1</xdw:identifier> 15653 <xdw:eventType>create</xdw:eventType> 15654 <xdw:status>READY</xdw:status> 15655 <xdw:eventData xsi:nil="true"/> 15656 </xdw:taskEvent> 15657 <xdw:taskEvent> 15658 <xdw:id>2</xdw:id> 15659 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 15660 <xdw:identifier>task_1#2</xdw:identifier> 15661 <xdw:eventType>complete</xdw:eventType> 15662 <xdw:status>COMPLETED</xdw:status> 15663 <xdw:eventData xsi:nil="true"/> 15664 </xdw:taskEvent> 15665 </xdw:taskEventHistory> 15666 </xdw:XDWTask> 15667 <xdw:XDWTask> 15668 <xdw:taskData> 15669 <ws-ht:taskDetails> 15670 <ws-ht:id>task_2</ws-ht:id> 15671 <ws-ht:taskType>ttype</ws-ht:taskType> 15672 <ws-ht:name>tname_2</ws-ht:name> 15673 <ws-ht:status>COMPLETED</ws-ht:status> 15674 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15675 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 15676 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15677 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 15678 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15679 </ws-ht:taskDetails> 15680 <ws-ht:description>Undocumented task</ws-ht:description> 15681 <ws-ht:input/> 15682 <ws-ht:output> 15683 <ws-ht:part name="documentReference"> 15684 <ws-ht:attachment> 15685 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 15686 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 15687 <ws-ht:accessType>RLUS</ws-ht:accessType> 15688 <ws-ht:contentType>application/xml</ws-ht:contentType> 15689 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15690 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 15691 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15692 </ws-ht:attachment> 15693 </ws-ht:part> 15694 </ws-ht:output> 15695 </xdw:taskData> 15696 <xdw:taskEventHistory> 15697 <xdw:taskEvent> 15698 <xdw:id>1</xdw:id> 15699 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 15700 <xdw:identifier>task_2#1</xdw:identifier> 15701 <xdw:eventType>create</xdw:eventType> 15702 <xdw:status>READY</xdw:status> 15703 <xdw:eventData xsi:nil="true"/> 15704 </xdw:taskEvent> 15705 <xdw:taskEvent> 15706 <xdw:id>2</xdw:id> 15707 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 15708 <xdw:identifier>task_2#2</xdw:identifier> 15709 <xdw:eventType>complete</xdw:eventType> 15710 <xdw:status>COMPLETED</xdw:status> 15711 <xdw:eventData xsi:nil="true"/> 15712 </xdw:taskEvent> 15713 </xdw:taskEventHistory> 15714 </xdw:XDWTask> 15715 <xdw:XDWTask> 15716 <xdw:taskData> 15717 <ws-ht:taskDetails> 15718 <ws-ht:id>task_3</ws-ht:id> 15719 <ws-ht:taskType>ttype</ws-ht:taskType> 15720 <ws-ht:name>tname_3</ws-ht:name> 15721 <ws-ht:status>COMPLETED</ws-ht:status> 15722 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15723 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 15724 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15725 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 15726 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15727 </ws-ht:taskDetails> 15728 <ws-ht:description>Undocumented task</ws-ht:description> 15729 <ws-ht:input/> 15730 <ws-ht:output> 15731 <ws-ht:part name="documentReference"> 15732 <ws-ht:attachment> 15733 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 15734 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 15735 <ws-ht:accessType>RLUS</ws-ht:accessType> 15736 <ws-ht:contentType>application/xml</ws-ht:contentType> 15737 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15738 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 15739 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15740 </ws-ht:attachment> 15741 </ws-ht:part> 15742 </ws-ht:output> 15743 </xdw:taskData> 15744 <xdw:taskEventHistory> 15745 <xdw:taskEvent> 15746 <xdw:id>1</xdw:id> 15747 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 15748 <xdw:identifier>task_3#1</xdw:identifier> 15749 <xdw:eventType>create</xdw:eventType> 15750 <xdw:status>READY</xdw:status> 15751 <xdw:eventData xsi:nil="true"/> 15752 </xdw:taskEvent> 15753 <xdw:taskEvent> 15754 <xdw:id>2</xdw:id> 15755 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 15756 <xdw:identifier>task_3#2</xdw:identifier> 15757 <xdw:eventType>complete</xdw:eventType> 15758 <xdw:status>COMPLETED</xdw:status> 15759 <xdw:eventData xsi:nil="true"/> 15760 </xdw:taskEvent> 15761 </xdw:taskEventHistory> 15762 </xdw:XDWTask> 15763 <xdw:XDWTask> 15764 <xdw:taskData> 15765 <ws-ht:taskDetails> 15766 <ws-ht:id>task_4</ws-ht:id> 15767 <ws-ht:taskType>ttype</ws-ht:taskType> 15768 <ws-ht:name>tname_4</ws-ht:name> 15769 <ws-ht:status>COMPLETED</ws-ht:status> 15770 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15771 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 15772 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15773 <ws-ht:lastModifiedTime>2014-06-13T17:20:31.086+02:00</ws-ht:lastModifiedTime> 15774 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15775 </ws-ht:taskDetails> 15776 <ws-ht:description>Undocumented task</ws-ht:description> 15777 <ws-ht:input/> 15778 <ws-ht:output> 15779 <ws-ht:part name="documentReference"> 15780 <ws-ht:attachment> 15781 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 15782 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 15783 <ws-ht:accessType>RLUS</ws-ht:accessType> 15784 <ws-ht:contentType>application/xml</ws-ht:contentType> 15785 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15786 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 15787 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15788 </ws-ht:attachment> 15789 </ws-ht:part> 15790 </ws-ht:output> 15791 </xdw:taskData> 15792 <xdw:taskEventHistory> 15793 <xdw:taskEvent> 15794 <xdw:id>1</xdw:id> 15795 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 15796 <xdw:identifier>task_4#1</xdw:identifier> 15797 <xdw:eventType>create</xdw:eventType> 15798 <xdw:status>READY</xdw:status> 15799 <xdw:eventData xsi:nil="true"/> 15800 </xdw:taskEvent> 15801 <xdw:taskEvent> 15802 <xdw:id>2</xdw:id> 15803 <xdw:eventTime>2014-06-13T17:20:31.086+02:00</xdw:eventTime> 15804 <xdw:identifier>task_4#2</xdw:identifier> 15805 <xdw:eventType>complete</xdw:eventType> 15806 <xdw:status>COMPLETED</xdw:status> 15807 <xdw:eventData xsi:nil="true"/> 15808 </xdw:taskEvent> 15809 </xdw:taskEventHistory> 15810 </xdw:XDWTask> 15811 </xdw:TaskList> 15812 </xdw:XDW.WorkflowDocument> 15813 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 15814 <rlustypes:success>true</rlustypes:success> 15815 <rlustypes:message>One record fetched</rlustypes:message> 15816 </rlustypes:RLUSStatusCode> 15817 </GetResponse> 15818 </soapenv:Body> 15819 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="21391"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="21391"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 15820 <soap:Header/> 15821 <soap:Body> 15822 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 15823 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 15824 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="59e77feb-881d-4b1b-8733-fcc8e3413a6c"/> 15825 <xdw:effectiveTime value="20140613172036+0200"/> 15826 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="R"/> 15827 <xdw:patient> 15828 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="7809c024-8058-4c89-9a71-effd2d53f171" assigningAuthorityName="Dedalus"/> 15829 </xdw:patient> 15830 <xdw:author> 15831 <xdw:assignedAuthor> 15832 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 15833 <hl7v3:assignedPerson/> 15834 </xdw:assignedAuthor> 15835 </xdw:author> 15836 <xdw:workflowInstanceID>43norno34-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 15837 <xdw:workflowDocumentSequenceNumber>18</xdw:workflowDocumentSequenceNumber> 15838 <xdw:workflowStatus>CLOSED</xdw:workflowStatus> 15839 <xdw:workflowStatusHistory> 15840 <xdw:documentEvent> 15841 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 15842 <xdw:eventType>complete</xdw:eventType> 15843 <xdw:taskEventIdentifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:taskEventIdentifier> 15844 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15845 <xdw:previousStatus>OPEN</xdw:previousStatus> 15846 <xdw:actualStatus>OPEN</xdw:actualStatus> 15847 </xdw:documentEvent> 15848 <xdw:documentEvent> 15849 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 15850 <xdw:eventType>create</xdw:eventType> 15851 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 15852 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15853 <xdw:previousStatus>OPEN</xdw:previousStatus> 15854 <xdw:actualStatus>OPEN</xdw:actualStatus> 15855 </xdw:documentEvent> 15856 <xdw:documentEvent> 15857 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 15858 <xdw:eventType>create</xdw:eventType> 15859 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 15860 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15861 <xdw:previousStatus>OPEN</xdw:previousStatus> 15862 <xdw:actualStatus>OPEN</xdw:actualStatus> 15863 </xdw:documentEvent> 15864 <xdw:documentEvent> 15865 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 15866 <xdw:eventType>create</xdw:eventType> 15867 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 15868 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15869 <xdw:previousStatus>OPEN</xdw:previousStatus> 15870 <xdw:actualStatus>OPEN</xdw:actualStatus> 15871 </xdw:documentEvent> 15872 <xdw:documentEvent> 15873 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 15874 <xdw:eventType>create</xdw:eventType> 15875 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 15876 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15877 <xdw:previousStatus>OPEN</xdw:previousStatus> 15878 <xdw:actualStatus>OPEN</xdw:actualStatus> 15879 </xdw:documentEvent> 15880 <xdw:documentEvent> 15881 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 15882 <xdw:eventType>create</xdw:eventType> 15883 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 15884 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15885 <xdw:previousStatus>OPEN</xdw:previousStatus> 15886 <xdw:actualStatus>OPEN</xdw:actualStatus> 15887 </xdw:documentEvent> 15888 <xdw:documentEvent> 15889 <xdw:eventTime>2014-06-13T17:20:36.536+02:00</xdw:eventTime> 15890 <xdw:eventType>complete</xdw:eventType> 15891 <xdw:taskEventIdentifier>task_5#1</xdw:taskEventIdentifier> 15892 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 15893 <xdw:previousStatus>OPEN</xdw:previousStatus> 15894 <xdw:actualStatus>CLOSED</xdw:actualStatus> 15895 </xdw:documentEvent> 15896 </xdw:workflowStatusHistory> 15897 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 15898 <xdw:TaskList> 15899 <xdw:XDWTask> 15900 <xdw:taskData> 15901 <ws-ht:taskDetails> 15902 <ws-ht:id>54d8a213-386e-46d1-b6b7-2b10c7ff6b30</ws-ht:id> 15903 <ws-ht:taskType>Requested</ws-ht:taskType> 15904 <ws-ht:name>xdw.creation</ws-ht:name> 15905 <ws-ht:status>COMPLETED</ws-ht:status> 15906 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15907 <ws-ht:createdTime>2014-06-13T17:19:51.924+02:00</ws-ht:createdTime> 15908 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15909 <ws-ht:lastModifiedTime>2014-06-13T17:19:51.924+02:00</ws-ht:lastModifiedTime> 15910 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15911 </ws-ht:taskDetails> 15912 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 15913 <ws-ht:input/> 15914 <ws-ht:output/> 15915 </xdw:taskData> 15916 <xdw:taskEventHistory> 15917 <xdw:taskEvent> 15918 <xdw:id>1</xdw:id> 15919 <xdw:eventTime>2014-06-13T17:19:51.924+02:00</xdw:eventTime> 15920 <xdw:identifier>54d8a213-386e-46d1-b6b7-2b10c7ff6b30#1</xdw:identifier> 15921 <xdw:eventType>complete</xdw:eventType> 15922 <xdw:status>COMPLETED</xdw:status> 15923 <xdw:eventData xsi:nil="true"/> 15924 </xdw:taskEvent> 15925 </xdw:taskEventHistory> 15926 </xdw:XDWTask> 15927 <xdw:XDWTask> 15928 <xdw:taskData> 15929 <ws-ht:taskDetails> 15930 <ws-ht:id>task_0</ws-ht:id> 15931 <ws-ht:taskType>ttype</ws-ht:taskType> 15932 <ws-ht:name>tname_0</ws-ht:name> 15933 <ws-ht:status>COMPLETED</ws-ht:status> 15934 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15935 <ws-ht:createdTime>2014-06-13T17:19:54.67+02:00</ws-ht:createdTime> 15936 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15937 <ws-ht:lastModifiedTime>2014-06-13T17:20:01.128+02:00</ws-ht:lastModifiedTime> 15938 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15939 </ws-ht:taskDetails> 15940 <ws-ht:description>Undocumented task</ws-ht:description> 15941 <ws-ht:input/> 15942 <ws-ht:output> 15943 <ws-ht:part name="documentReference"> 15944 <ws-ht:attachment> 15945 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 15946 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 15947 <ws-ht:accessType>RLUS</ws-ht:accessType> 15948 <ws-ht:contentType>application/xml</ws-ht:contentType> 15949 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15950 <ws-ht:attachedTime>2014-06-13T17:19:59.677+02:00</ws-ht:attachedTime> 15951 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 15952 </ws-ht:attachment> 15953 </ws-ht:part> 15954 </ws-ht:output> 15955 </xdw:taskData> 15956 <xdw:taskEventHistory> 15957 <xdw:taskEvent> 15958 <xdw:id>1</xdw:id> 15959 <xdw:eventTime>2014-06-13T17:19:54.67+02:00</xdw:eventTime> 15960 <xdw:identifier>task_0#1</xdw:identifier> 15961 <xdw:eventType>create</xdw:eventType> 15962 <xdw:status>READY</xdw:status> 15963 <xdw:eventData xsi:nil="true"/> 15964 </xdw:taskEvent> 15965 <xdw:taskEvent> 15966 <xdw:id>2</xdw:id> 15967 <xdw:eventTime>2014-06-13T17:20:01.128+02:00</xdw:eventTime> 15968 <xdw:identifier>task_0#2</xdw:identifier> 15969 <xdw:eventType>complete</xdw:eventType> 15970 <xdw:status>COMPLETED</xdw:status> 15971 <xdw:eventData xsi:nil="true"/> 15972 </xdw:taskEvent> 15973 </xdw:taskEventHistory> 15974 </xdw:XDWTask> 15975 <xdw:XDWTask> 15976 <xdw:taskData> 15977 <ws-ht:taskDetails> 15978 <ws-ht:id>task_1</ws-ht:id> 15979 <ws-ht:taskType>ttype</ws-ht:taskType> 15980 <ws-ht:name>tname_1</ws-ht:name> 15981 <ws-ht:status>COMPLETED</ws-ht:status> 15982 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 15983 <ws-ht:createdTime>2014-06-13T17:20:02.893+02:00</ws-ht:createdTime> 15984 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 15985 <ws-ht:lastModifiedTime>2014-06-13T17:20:08.144+02:00</ws-ht:lastModifiedTime> 15986 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 15987 </ws-ht:taskDetails> 15988 <ws-ht:description>Undocumented task</ws-ht:description> 15989 <ws-ht:input/> 15990 <ws-ht:output> 15991 <ws-ht:part name="documentReference"> 15992 <ws-ht:attachment> 15993 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 15994 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 15995 <ws-ht:accessType>RLUS</ws-ht:accessType> 15996 <ws-ht:contentType>application/xml</ws-ht:contentType> 15997 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 15998 <ws-ht:attachedTime>2014-06-13T17:20:06.792+02:00</ws-ht:attachedTime> 15999 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 16000 </ws-ht:attachment> 16001 </ws-ht:part> 16002 </ws-ht:output> 16003 </xdw:taskData> 16004 <xdw:taskEventHistory> 16005 <xdw:taskEvent> 16006 <xdw:id>1</xdw:id> 16007 <xdw:eventTime>2014-06-13T17:20:02.893+02:00</xdw:eventTime> 16008 <xdw:identifier>task_1#1</xdw:identifier> 16009 <xdw:eventType>create</xdw:eventType> 16010 <xdw:status>READY</xdw:status> 16011 <xdw:eventData xsi:nil="true"/> 16012 </xdw:taskEvent> 16013 <xdw:taskEvent> 16014 <xdw:id>2</xdw:id> 16015 <xdw:eventTime>2014-06-13T17:20:08.144+02:00</xdw:eventTime> 16016 <xdw:identifier>task_1#2</xdw:identifier> 16017 <xdw:eventType>complete</xdw:eventType> 16018 <xdw:status>COMPLETED</xdw:status> 16019 <xdw:eventData xsi:nil="true"/> 16020 </xdw:taskEvent> 16021 </xdw:taskEventHistory> 16022 </xdw:XDWTask> 16023 <xdw:XDWTask> 16024 <xdw:taskData> 16025 <ws-ht:taskDetails> 16026 <ws-ht:id>task_2</ws-ht:id> 16027 <ws-ht:taskType>ttype</ws-ht:taskType> 16028 <ws-ht:name>tname_2</ws-ht:name> 16029 <ws-ht:status>COMPLETED</ws-ht:status> 16030 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 16031 <ws-ht:createdTime>2014-06-13T17:20:09.656+02:00</ws-ht:createdTime> 16032 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 16033 <ws-ht:lastModifiedTime>2014-06-13T17:20:15.292+02:00</ws-ht:lastModifiedTime> 16034 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 16035 </ws-ht:taskDetails> 16036 <ws-ht:description>Undocumented task</ws-ht:description> 16037 <ws-ht:input/> 16038 <ws-ht:output> 16039 <ws-ht:part name="documentReference"> 16040 <ws-ht:attachment> 16041 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 16042 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 16043 <ws-ht:accessType>RLUS</ws-ht:accessType> 16044 <ws-ht:contentType>application/xml</ws-ht:contentType> 16045 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 16046 <ws-ht:attachedTime>2014-06-13T17:20:13.667+02:00</ws-ht:attachedTime> 16047 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 16048 </ws-ht:attachment> 16049 </ws-ht:part> 16050 </ws-ht:output> 16051 </xdw:taskData> 16052 <xdw:taskEventHistory> 16053 <xdw:taskEvent> 16054 <xdw:id>1</xdw:id> 16055 <xdw:eventTime>2014-06-13T17:20:09.656+02:00</xdw:eventTime> 16056 <xdw:identifier>task_2#1</xdw:identifier> 16057 <xdw:eventType>create</xdw:eventType> 16058 <xdw:status>READY</xdw:status> 16059 <xdw:eventData xsi:nil="true"/> 16060 </xdw:taskEvent> 16061 <xdw:taskEvent> 16062 <xdw:id>2</xdw:id> 16063 <xdw:eventTime>2014-06-13T17:20:15.292+02:00</xdw:eventTime> 16064 <xdw:identifier>task_2#2</xdw:identifier> 16065 <xdw:eventType>complete</xdw:eventType> 16066 <xdw:status>COMPLETED</xdw:status> 16067 <xdw:eventData xsi:nil="true"/> 16068 </xdw:taskEvent> 16069 </xdw:taskEventHistory> 16070 </xdw:XDWTask> 16071 <xdw:XDWTask> 16072 <xdw:taskData> 16073 <ws-ht:taskDetails> 16074 <ws-ht:id>task_3</ws-ht:id> 16075 <ws-ht:taskType>ttype</ws-ht:taskType> 16076 <ws-ht:name>tname_3</ws-ht:name> 16077 <ws-ht:status>COMPLETED</ws-ht:status> 16078 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 16079 <ws-ht:createdTime>2014-06-13T17:20:18.029+02:00</ws-ht:createdTime> 16080 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 16081 <ws-ht:lastModifiedTime>2014-06-13T17:20:23.675+02:00</ws-ht:lastModifiedTime> 16082 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 16083 </ws-ht:taskDetails> 16084 <ws-ht:description>Undocumented task</ws-ht:description> 16085 <ws-ht:input/> 16086 <ws-ht:output> 16087 <ws-ht:part name="documentReference"> 16088 <ws-ht:attachment> 16089 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 16090 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 16091 <ws-ht:accessType>RLUS</ws-ht:accessType> 16092 <ws-ht:contentType>application/xml</ws-ht:contentType> 16093 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 16094 <ws-ht:attachedTime>2014-06-13T17:20:22.13+02:00</ws-ht:attachedTime> 16095 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 16096 </ws-ht:attachment> 16097 </ws-ht:part> 16098 </ws-ht:output> 16099 </xdw:taskData> 16100 <xdw:taskEventHistory> 16101 <xdw:taskEvent> 16102 <xdw:id>1</xdw:id> 16103 <xdw:eventTime>2014-06-13T17:20:18.029+02:00</xdw:eventTime> 16104 <xdw:identifier>task_3#1</xdw:identifier> 16105 <xdw:eventType>create</xdw:eventType> 16106 <xdw:status>READY</xdw:status> 16107 <xdw:eventData xsi:nil="true"/> 16108 </xdw:taskEvent> 16109 <xdw:taskEvent> 16110 <xdw:id>2</xdw:id> 16111 <xdw:eventTime>2014-06-13T17:20:23.675+02:00</xdw:eventTime> 16112 <xdw:identifier>task_3#2</xdw:identifier> 16113 <xdw:eventType>complete</xdw:eventType> 16114 <xdw:status>COMPLETED</xdw:status> 16115 <xdw:eventData xsi:nil="true"/> 16116 </xdw:taskEvent> 16117 </xdw:taskEventHistory> 16118 </xdw:XDWTask> 16119 <xdw:XDWTask> 16120 <xdw:taskData> 16121 <ws-ht:taskDetails> 16122 <ws-ht:id>task_4</ws-ht:id> 16123 <ws-ht:taskType>ttype</ws-ht:taskType> 16124 <ws-ht:name>tname_4</ws-ht:name> 16125 <ws-ht:status>COMPLETED</ws-ht:status> 16126 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 16127 <ws-ht:createdTime>2014-06-13T17:20:25.669+02:00</ws-ht:createdTime> 16128 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 16129 <ws-ht:lastModifiedTime>2014-06-13T17:20:31.086+02:00</ws-ht:lastModifiedTime> 16130 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 16131 </ws-ht:taskDetails> 16132 <ws-ht:description>Undocumented task</ws-ht:description> 16133 <ws-ht:input/> 16134 <ws-ht:output> 16135 <ws-ht:part name="documentReference"> 16136 <ws-ht:attachment> 16137 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 16138 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 16139 <ws-ht:accessType>RLUS</ws-ht:accessType> 16140 <ws-ht:contentType>application/xml</ws-ht:contentType> 16141 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 16142 <ws-ht:attachedTime>2014-06-13T17:20:29.705+02:00</ws-ht:attachedTime> 16143 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 16144 </ws-ht:attachment> 16145 </ws-ht:part> 16146 </ws-ht:output> 16147 </xdw:taskData> 16148 <xdw:taskEventHistory> 16149 <xdw:taskEvent> 16150 <xdw:id>1</xdw:id> 16151 <xdw:eventTime>2014-06-13T17:20:25.669+02:00</xdw:eventTime> 16152 <xdw:identifier>task_4#1</xdw:identifier> 16153 <xdw:eventType>create</xdw:eventType> 16154 <xdw:status>READY</xdw:status> 16155 <xdw:eventData xsi:nil="true"/> 16156 </xdw:taskEvent> 16157 <xdw:taskEvent> 16158 <xdw:id>2</xdw:id> 16159 <xdw:eventTime>2014-06-13T17:20:31.086+02:00</xdw:eventTime> 16160 <xdw:identifier>task_4#2</xdw:identifier> 16161 <xdw:eventType>complete</xdw:eventType> 16162 <xdw:status>COMPLETED</xdw:status> 16163 <xdw:eventData xsi:nil="true"/> 16164 </xdw:taskEvent> 16165 </xdw:taskEventHistory> 16166 </xdw:XDWTask> 16167 <xdw:XDWTask> 16168 <xdw:taskData> 16169 <ws-ht:taskDetails> 16170 <ws-ht:id>task_5</ws-ht:id> 16171 <ws-ht:taskType>ttype</ws-ht:taskType> 16172 <ws-ht:name>tname_5</ws-ht:name> 16173 <ws-ht:status>COMPLETED</ws-ht:status> 16174 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 16175 <ws-ht:createdTime>2014-06-13T17:20:36.536+02:00</ws-ht:createdTime> 16176 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 16177 <ws-ht:lastModifiedTime>2014-06-13T17:20:36.536+02:00</ws-ht:lastModifiedTime> 16178 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 16179 </ws-ht:taskDetails> 16180 <ws-ht:description>Undocumented task</ws-ht:description> 16181 <ws-ht:input/> 16182 <ws-ht:output/> 16183 </xdw:taskData> 16184 <xdw:taskEventHistory> 16185 <xdw:taskEvent> 16186 <xdw:id>1</xdw:id> 16187 <xdw:eventTime>2014-06-13T17:20:36.536+02:00</xdw:eventTime> 16188 <xdw:identifier>task_5#1</xdw:identifier> 16189 <xdw:eventType>complete</xdw:eventType> 16190 <xdw:status>COMPLETED</xdw:status> 16191 <xdw:eventData xsi:nil="true"/> 16192 </xdw:taskEvent> 16193 </xdw:taskEventHistory> 16194 </xdw:XDWTask> 16195 </xdw:TaskList> 16196 </xdw:XDW.WorkflowDocument> 16197 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16198 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 16199 <rlustypes:SecurityContext> 16200 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 16201 </rlustypes:SecurityContext> 16202 <rlustypes:CBRContext> 16203 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 16204 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 16205 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 16206 </rlustypes:CBRContext> 16207 </rlustypes:RLUSPutRequestSrcStruct> 16208 <writeCommandEnum>UPDATE</writeCommandEnum> 16209 </PutRequest> 16210 </soap:Body> 16211 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16212 <soapenv:Header/> 16213 <soapenv:Body> 16214 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16215 <rlustypes:success>true</rlustypes:success> 16216 <rlustypes:message/> 16217 </rlustypes:RLUSStatusCode> 16218 </soapenv:Body> 16219 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33411</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="3499"/><header key="SOAPAction" value="urn:list"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="3499"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 16220 <soap:Header/> 16221 <soap:Body> 16222 <ListRequest xmlns="urn:dedalus:rlus:xdw:types"> 16223 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 16224 <rlustypes:searchByCriteria> 16225 <rlustypes:FilterCriteria> 16226 <rlustypes:Expression> 16227 <rlusexp:BinaryExpression> 16228 <rlusexp:BinaryTerm text="#document.id.root" type="Text"/> 16229 <rlusexp:Operator type="EqualTo"/> 16230 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.4" type="Text"/> 16231 </rlusexp:BinaryExpression> 16232 <rlusexp:Operator type="And"/> 16233 <rlusexp:BinaryExpression> 16234 <rlusexp:BinaryExpression> 16235 <rlusexp:BinaryTerm text="#patient.id" type="Text"/> 16236 <rlusexp:Operator type="EqualTo"/> 16237 <rlusexp:BinaryTerm text="7809c024-8058-4c89-9a71-effd2d53f171" type="Text"/> 16238 </rlusexp:BinaryExpression> 16239 <rlusexp:Operator type="And"/> 16240 <rlusexp:BinaryExpression> 16241 <rlusexp:BinaryExpression> 16242 <rlusexp:BinaryTerm text="#document.status" type="Text"/> 16243 <rlusexp:Operator type="EqualTo"/> 16244 <rlusexp:BinaryTerm text="OPEN" type="Text"/> 16245 </rlusexp:BinaryExpression> 16246 <rlusexp:Operator type="And"/> 16247 <rlusexp:BinaryExpression> 16248 <rlusexp:BinaryExpression> 16249 <rlusexp:BinaryTerm text="#document.author.id.root" type="Text"/> 16250 <rlusexp:Operator type="EqualTo"/> 16251 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.2" type="Text"/> 16252 </rlusexp:BinaryExpression> 16253 <rlusexp:Operator type="And"/> 16254 <rlusexp:BinaryExpression> 16255 <rlusexp:BinaryTerm text="#patient.id.root" type="Text"/> 16256 <rlusexp:Operator type="EqualTo"/> 16257 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.1" type="Text"/> 16258 </rlusexp:BinaryExpression> 16259 </rlusexp:BinaryExpression> 16260 </rlusexp:BinaryExpression> 16261 </rlusexp:BinaryExpression> 16262 </rlustypes:Expression> 16263 </rlustypes:FilterCriteria> 16264 <rlustypes:SearchAttributes> 16265 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:id/@root" qualifier="#document.id.root"/> 16266 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:patient/xdw:id/@extension" qualifier="#patient.id"/> 16267 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowStatus/text()" qualifier="#document.status"/> 16268 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:author/xdw:assignedAuthor/*:id/@root" qualifier="#document.author.id.root"/> 16269 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:patient/xdw:id/@root" qualifier="#patient.id.root"/> 16270 </rlustypes:SearchAttributes> 16271 </rlustypes:searchByCriteria> 16272 </rlustypes:RLUSSearchStruct> 16273 <maxResultStreams>1</maxResultStreams> 16274 <previousResultID>-1</previousResultID> 16275 </ListRequest> 16276 </soap:Body> 16277 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="511"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="511"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16278 <soapenv:Header/> 16279 <soapenv:Body> 16280 <ListResponse xmlns="urn:dedalus:rlus:xdw:types"> 16281 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16282 <rlustypes:success>false</rlustypes:success> 16283 <rlustypes:message>No results found!</rlustypes:message> 16284 </rlustypes:RLUSStatusCode> 16285 <finishedFlag>0</finishedFlag> 16286 </ListResponse> 16287 </soapenv:Body> 16288 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41796</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/ixsmq/update/pocdpatient"><headers><header key="Authorization" value="Basic YWRtaW46YWRtaW4="/><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:registerEntityWithIdentity""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 16289 <soap:Header></soap:Header> 16290 <soap:Body> 16291 <ixs:registerEntityWithIdentity xmlns:ixs="http://www.omg.org/spec/IXS/201212"> 16292 <ixs:entityId>PZNGCM69L29D925F</ixs:entityId> 16293 <ixs:sourceId>HealthSoaf</ixs:sourceId> 16294 <ixs:semanticSignifierName>pocdpatient</ixs:semanticSignifierName> 16295 <ixs:traits xmlns:hl7v3="urn:hl7-org:v3"> 16296 <hl7v3:id root="2.16.840.1.113883.2.9.4.3.2" extension="PZNGCM69L29D925F"></hl7v3:id> 16297 <hl7v3:patient> 16298 <hl7v3:name> 16299 <hl7v3:given>Giacomo</hl7v3:given> 16300 <hl7v3:family>Paziente</hl7v3:family> 16301 </hl7v3:name> 16302 <hl7v3:administrativeGenderCode code="M" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 16303 <hl7v3:birthTime value="19690729173000+0100"></hl7v3:birthTime> 16304 </hl7v3:patient> 16305 </ixs:traits> 16306 </ixs:registerEntityWithIdentity> 16307 </soap:Body> 16308 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="1273"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="1273"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16309 <soapenv:Header/> 16310 <soapenv:Body> 16311 <registerEntityWithIdentityResponse xmlns="http://www.omg.org/spec/IXS/201212"> 6 <findIdentitiesByTraitsResponse xmlns="http://www.omg.org/spec/IXS/201212"> 16312 7 <return> 16313 8 <statusSuccess>true</statusSuccess> 16314 9 <statusConditions> 16315 <statusCode>100 2</statusCode>16316 <detail >fb85477d-b682-4a21-a496-cfb9c497c050</detail>16317 <statusMessage> Entity has been successfully registered with IXS ID '%1' in the IXS.</statusMessage>16318 <name> registerEntityWithIdentityResponse</name>10 <statusCode>1006</statusCode> 11 <detail/> 12 <statusMessage>%1 Entities successfully retrieved.</statusMessage> 13 <name>findidentities</name> 16319 14 <statusSeverity>INFO</statusSeverity> 16320 15 </statusConditions> 16321 16 </return> 16322 <ixsId>fb85477d-b682-4a21-a496-cfb9c497c050</ixsId> 16323 <ixsState> 16324 <ixsMediatingIdStartState>false</ixsMediatingIdStartState> 16325 <inputSourceIdStartState>false</inputSourceIdStartState> 16326 <inputSourceOtherIdStartState>false</inputSourceOtherIdStartState> 16327 <otherSourceAnyIdStartState>false</otherSourceAnyIdStartState> 16328 <ixsMediatingIdEndState>true</ixsMediatingIdEndState> 16329 <inputSourceIdEndState>true</inputSourceIdEndState> 16330 <duplicateDetected>false</duplicateDetected> 16331 </ixsState> 16332 </registerEntityWithIdentityResponse> 17 <matchingResultSet> 18 <name/> 19 <matchingResultSetElement> 20 <semanticSignifierName>pocdassignedentity</semanticSignifierName> 21 <sourceId xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">HealthSoaf</sourceId> 22 <entityId xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">LBRNTN65R16D086U</entityId> 23 <ixsId>26b49f72-6792-4a7b-b44d-cb4de5760e79</ixsId> 24 <traits xmlns:hl7v3="urn:hl7-org:v3" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 25 <hl7v3:id root="2.16.840.1.113883.2.9.4.3.2" extension="LBRNTN65R16D086U" assigningAuthorityName="Ministero Economia e Finanze"/> 26 <hl7v3:code code="MMG" codeSystemName="SSN"/> 27 <hl7v3:addr> 28 <hl7v3:city>Cosenza</hl7v3:city> 29 <hl7v3:country>Cosenza</hl7v3:country> 30 <hl7v3:unitID>078045</hl7v3:unitID> 31 </hl7v3:addr> 32 <hl7v3:telecom/> 33 <hl7v3:assignedPerson> 34 <hl7v3:name> 35 <hl7v3:given>Antonio</hl7v3:given> 36 <hl7v3:family>Alberti</hl7v3:family> 37 </hl7v3:name> 38 </hl7v3:assignedPerson> 39 </traits> 40 </matchingResultSetElement> 41 </matchingResultSet> 42 </findIdentitiesByTraitsResponse> 16333 43 </soapenv:Body> 16334 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41796</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/ixsmq/update/pocdpatient"><headers><header key="Authorization" value="Basic YWRtaW46YWRtaW4="/><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:registerEntityWithIdentity""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 16335 <soap:Header></soap:Header> 16336 <soap:Body> 16337 <ixs:registerEntityWithIdentity xmlns:ixs="http://www.omg.org/spec/IXS/201212"> 16338 <ixs:entityId>PZNGNN61C24L483Y</ixs:entityId> 16339 <ixs:sourceId>HealthSoaf</ixs:sourceId> 16340 <ixs:semanticSignifierName>pocdpatient</ixs:semanticSignifierName> 16341 <ixs:traits xmlns:hl7v3="urn:hl7-org:v3"> 16342 <hl7v3:id root="2.16.840.1.113883.2.9.4.3.2" extension="PZNGNN61C24L483Y"></hl7v3:id> 16343 <hl7v3:patient> 16344 <hl7v3:name> 16345 <hl7v3:given>Giovanni</hl7v3:given> 16346 <hl7v3:family>Paziente</hl7v3:family> 16347 </hl7v3:name> 16348 <hl7v3:administrativeGenderCode code="M" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 16349 <hl7v3:birthTime value="19610324093000+0100"></hl7v3:birthTime> 16350 </hl7v3:patient> 16351 </ixs:traits> 16352 </ixs:registerEntityWithIdentity> 16353 </soap:Body> 16354 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="1273"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="1273"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 44 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41170</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/hspilot/ixsmq/query/pocdhealthcarefacility"><headers><header key="Host" value="10.0.0.9:6000"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/><header key="Pragma" value="no-cache"/><header key="Cache-Control" value="no-cache"/><header key="Max-Forwards" value="10"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:findIdentitiesByTraits""/><header key="X-Forwarded-For" value="151.22.5.34"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="-1"><data><?xml version="1.0" encoding="utf-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><findIdentitiesByTraits xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"><semanticSignifierName>pocdhealthcarefacility</semanticSignifierName><entityId>201078091001</entityId><sourceId>HealthSoaf</sourceId><ixsId></ixsId><traits><ns2:id root="flake"></ns2:id></traits><searchQualifiers><maxResultSetSize>0</maxResultSetSize><raiseErrorIfLimitReached>false</raiseErrorIfLimitReached><searchConfidenceLevel>0.0</searchConfidenceLevel></searchQualifiers></findIdentitiesByTraits></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="1584"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="1584"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16355 45 <soapenv:Header/> 16356 46 <soapenv:Body> 16357 < registerEntityWithIdentityResponse xmlns="http://www.omg.org/spec/IXS/201212">47 <findIdentitiesByTraitsResponse xmlns="http://www.omg.org/spec/IXS/201212"> 16358 48 <return> 16359 49 <statusSuccess>true</statusSuccess> 16360 50 <statusConditions> 16361 <statusCode>100 2</statusCode>16362 <detail >8d1ddf03-817a-4a95-8845-e9caa4ba0348</detail>16363 <statusMessage> Entity has been successfully registered with IXS ID '%1' in the IXS.</statusMessage>16364 <name> registerEntityWithIdentityResponse</name>51 <statusCode>1006</statusCode> 52 <detail/> 53 <statusMessage>%1 Entities successfully retrieved.</statusMessage> 54 <name>findidentities</name> 16365 55 <statusSeverity>INFO</statusSeverity> 16366 56 </statusConditions> 16367 57 </return> 16368 <ixsId>8d1ddf03-817a-4a95-8845-e9caa4ba0348</ixsId> 16369 <ixsState> 16370 <ixsMediatingIdStartState>false</ixsMediatingIdStartState> 16371 <inputSourceIdStartState>false</inputSourceIdStartState> 16372 <inputSourceOtherIdStartState>false</inputSourceOtherIdStartState> 16373 <otherSourceAnyIdStartState>false</otherSourceAnyIdStartState> 16374 <ixsMediatingIdEndState>true</ixsMediatingIdEndState> 16375 <inputSourceIdEndState>true</inputSourceIdEndState> 16376 <duplicateDetected>false</duplicateDetected> 16377 </ixsState> 16378 </registerEntityWithIdentityResponse> 58 <matchingResultSet> 59 <name/> 60 <matchingResultSetElement> 61 <semanticSignifierName>pocdhealthcarefacility</semanticSignifierName> 62 <sourceId xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">HealthSoaf</sourceId> 63 <entityId xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">201078091001</entityId> 64 <ixsId>63972948-6eab-4950-b53f-cc188799ee78</ixsId> 65 <traits xmlns:hl7v3="urn:hl7-org:v3" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 66 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="201078091001" assigningAuthorityName="Dedalus SPA"/> 67 <hl7v3:location> 68 <hl7v3:name> 69 <hl7v3:given>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</hl7v3:given> 70 </hl7v3:name> 71 <hl7v3:addr/> 72 </hl7v3:location> 73 </traits> 74 </matchingResultSetElement> 75 </matchingResultSet> 76 </findIdentitiesByTraitsResponse> 16379 77 </soapenv:Body> 16380 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41796</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/ixsmq/query/pocdpatient"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:findIdentitiesByTraits""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 16381 <soap:Header></soap:Header> 16382 <soap:Body> 16383 <findIdentitiesByTraits xmlns="http://www.omg.org/spec/IXS/201212"> 16384 <semanticSignifierName>pocdpatient</semanticSignifierName> 16385 <entityId></entityId> 16386 <sourceId></sourceId> 16387 <ixsId></ixsId> 16388 <traits xmlns:hl7v3="urn:hl7-org:v3"> 16389 <hl7v3:id root="2.16.840.1.113883.2.9.4.3.2" extension="PZNG"></hl7v3:id> 16390 <hl7v3:patient> 16391 <hl7v3:name> 16392 <hl7v3:given></hl7v3:given> 16393 <hl7v3:family></hl7v3:family> 16394 </hl7v3:name> 16395 <hl7v3:administrativeGenderCode code="U" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 16396 </hl7v3:patient> 16397 </traits> 16398 <!-- optional --> 16399 <searchQualifiers> 16400 <matchingModuleName>starts-with</matchingModuleName> 16401 <maxResultSetSize>10</maxResultSetSize> 16402 <raiseErrorIfLimitReached>false</raiseErrorIfLimitReached> 16403 <searchConfidenceLevel>0.7</searchConfidenceLevel> 16404 <!-- sourceConstraintSet></sourceConstraintSet--> 16405 </searchQualifiers> 16406 </findIdentitiesByTraits> 16407 </soap:Body> 16408 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="4002"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="4002"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 78 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41171</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/hspilot/ixsmq/query/pocdpatient"><headers><header key="Host" value="10.0.0.9:6000"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/><header key="Pragma" value="no-cache"/><header key="Cache-Control" value="no-cache"/><header key="Max-Forwards" value="10"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:findIdentitiesByTraits""/><header key="X-Forwarded-For" value="151.22.5.34"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="-1"><data><?xml version="1.0" encoding="utf-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><findIdentitiesByTraits xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"><semanticSignifierName>pocdpatient</semanticSignifierName><entityId></entityId><sourceId></sourceId><ixsId></ixsId><traits><ns2:id root="2.16.840.1.113883.2.9.4.3.2" extension="MZZCML64A41G722V"></ns2:id></traits></findIdentitiesByTraits></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="2057"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2057"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16409 79 <soapenv:Header/> 16410 80 <soapenv:Body> … … 16424 94 <matchingResultSetElement> 16425 95 <semanticSignifierName>pocdpatient</semanticSignifierName> 16426 <ixs:sourceId xmlns:ixs="http://www.omg.org/spec/IXS/201212" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://expath.org/ns/http-client" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="urn:dedalus:xtest" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">HealthSoaf</ixs:sourceId> 16427 <ixs:entityId xmlns:ixs="http://www.omg.org/spec/IXS/201212" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://expath.org/ns/http-client" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="urn:dedalus:xtest" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">PZNGCM69L29D925F</ixs:entityId> 16428 <ixsId>fb85477d-b682-4a21-a496-cfb9c497c050</ixsId> 16429 <ixs:traits xmlns:ixs="http://www.omg.org/spec/IXS/201212" xmlns:hl7v3="urn:hl7-org:v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://expath.org/ns/http-client" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="urn:dedalus:xtest" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 16430 <hl7v3:id root="2.16.840.1.113883.2.9.4.3.2" extension="PZNGCM69L29D925F"/> 16431 <hl7v3:patient> 16432 <hl7v3:name> 16433 <hl7v3:given>Giacomo</hl7v3:given> 16434 <hl7v3:family>Paziente</hl7v3:family> 16435 </hl7v3:name> 16436 <hl7v3:administrativeGenderCode code="M" codeSystem="2.16.840.1.113883.5.1"/> 16437 <hl7v3:birthTime value="19690729173000+0100"/> 16438 </hl7v3:patient> 16439 </ixs:traits> 16440 </matchingResultSetElement> 16441 <matchingResultSetElement> 16442 <semanticSignifierName>pocdpatient</semanticSignifierName> 16443 <ixs:sourceId xmlns:ixs="http://www.omg.org/spec/IXS/201212" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://expath.org/ns/http-client" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="urn:dedalus:xtest" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">HealthSoaf</ixs:sourceId> 16444 <ixs:entityId xmlns:ixs="http://www.omg.org/spec/IXS/201212" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://expath.org/ns/http-client" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="urn:dedalus:xtest" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">PZNGNN61C24L483Y</ixs:entityId> 16445 <ixsId>8d1ddf03-817a-4a95-8845-e9caa4ba0348</ixsId> 16446 <ixs:traits xmlns:ixs="http://www.omg.org/spec/IXS/201212" xmlns:hl7v3="urn:hl7-org:v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://expath.org/ns/http-client" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="urn:dedalus:xtest" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 16447 <hl7v3:id root="2.16.840.1.113883.2.9.4.3.2" extension="PZNGNN61C24L483Y"/> 16448 <hl7v3:patient> 16449 <hl7v3:name> 16450 <hl7v3:given>Giovanni</hl7v3:given> 16451 <hl7v3:family>Paziente</hl7v3:family> 16452 </hl7v3:name> 16453 <hl7v3:administrativeGenderCode code="M" codeSystem="2.16.840.1.113883.5.1"/> 16454 <hl7v3:birthTime value="19610324093000+0100"/> 16455 </hl7v3:patient> 16456 </ixs:traits> 96 <sourceId xmlns:ns2="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">HealthSoaf</sourceId> 97 <entityId xmlns:ns2="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">MZZCML64A41G722V</entityId> 98 <ixsId>78b8437e-0bc8-430f-90dc-ef28604579e3</ixsId> 99 <traits xmlns:ns2="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> 100 <ns2:id root="2.16.840.1.113883.2.9.4.3.2" extension="MZZCML64A41G722V"/> 101 <ns2:addr> 102 <ns2:city>078091</ns2:city> 103 </ns2:addr> 104 <ns2:telecom use="HP" value="09843084483"/> 105 <ns2:patient> 106 <ns2:name> 107 <ns2:family>Mazza</ns2:family> 108 <ns2:given>Carmela</ns2:given> 109 </ns2:name> 110 <ns2:administrativeGenderCode code="F" codeSystemName="2.16.840.1.113883.5.1"/> 111 <ns2:birthTime value="19640101"/> 112 <ns2:birthplace> 113 <ns2:place> 114 <ns2:addr> 115 <ns2:city>102027</ns2:city> 116 </ns2:addr> 117 </ns2:place> 118 </ns2:birthplace> 119 </ns2:patient> 120 </traits> 16457 121 </matchingResultSetElement> 16458 122 </matchingResultSet> 16459 123 </findIdentitiesByTraitsResponse> 16460 124 </soapenv:Body> 16461 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41796</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/ixsmq/query/pocdpatient"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:findIdentitiesByTraits""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 16462 <soap:Header></soap:Header> 16463 <soap:Body> 16464 <findIdentitiesByTraits xmlns="http://www.omg.org/spec/IXS/201212"> 16465 <semanticSignifierName>pocdpatient</semanticSignifierName> 16466 <entityId></entityId> 16467 <sourceId></sourceId> 16468 <ixsId></ixsId> 16469 <traits xmlns:hl7v3="urn:hl7-org:v3"> 16470 <hl7v3:id root="2.16.840.1.113883.2.9.4.3.2" extension="PZNGN"></hl7v3:id> 16471 <hl7v3:patient> 16472 <hl7v3:name> 16473 <hl7v3:given></hl7v3:given> 16474 <hl7v3:family></hl7v3:family> 16475 </hl7v3:name> 16476 <hl7v3:administrativeGenderCode code="U" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 16477 </hl7v3:patient> 16478 </traits> 16479 <!-- optional --> 16480 <searchQualifiers> 16481 <matchingModuleName>starts-with</matchingModuleName> 16482 <maxResultSetSize>10</maxResultSetSize> 16483 <raiseErrorIfLimitReached>false</raiseErrorIfLimitReached> 16484 <searchConfidenceLevel>0.7</searchConfidenceLevel> 16485 <!-- sourceConstraintSet></sourceConstraintSet--> 16486 </searchQualifiers> 16487 </findIdentitiesByTraits> 16488 </soap:Body> 16489 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="2347"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2347"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16490 <soapenv:Header/> 16491 <soapenv:Body> 16492 <findIdentitiesByTraitsResponse xmlns="http://www.omg.org/spec/IXS/201212"> 16493 <return> 16494 <statusSuccess>true</statusSuccess> 16495 <statusConditions> 16496 <statusCode>1006</statusCode> 16497 <detail/> 16498 <statusMessage>%1 Entities successfully retrieved.</statusMessage> 16499 <name>findidentities</name> 16500 <statusSeverity>INFO</statusSeverity> 16501 </statusConditions> 16502 </return> 16503 <matchingResultSet> 16504 <name/> 16505 <matchingResultSetElement> 16506 <semanticSignifierName>pocdpatient</semanticSignifierName> 16507 <ixs:sourceId xmlns:ixs="http://www.omg.org/spec/IXS/201212" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://expath.org/ns/http-client" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="urn:dedalus:xtest" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">HealthSoaf</ixs:sourceId> 16508 <ixs:entityId xmlns:ixs="http://www.omg.org/spec/IXS/201212" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://expath.org/ns/http-client" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="urn:dedalus:xtest" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">PZNGNN61C24L483Y</ixs:entityId> 16509 <ixsId>8d1ddf03-817a-4a95-8845-e9caa4ba0348</ixsId> 16510 <ixs:traits xmlns:ixs="http://www.omg.org/spec/IXS/201212" xmlns:hl7v3="urn:hl7-org:v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://expath.org/ns/http-client" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="urn:dedalus:xtest" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 16511 <hl7v3:id root="2.16.840.1.113883.2.9.4.3.2" extension="PZNGNN61C24L483Y"/> 16512 <hl7v3:patient> 16513 <hl7v3:name> 16514 <hl7v3:given>Giovanni</hl7v3:given> 16515 <hl7v3:family>Paziente</hl7v3:family> 16516 </hl7v3:name> 16517 <hl7v3:administrativeGenderCode code="M" codeSystem="2.16.840.1.113883.5.1"/> 16518 <hl7v3:birthTime value="19610324093000+0100"/> 16519 </hl7v3:patient> 16520 </ixs:traits> 16521 </matchingResultSetElement> 16522 </matchingResultSet> 16523 </findIdentitiesByTraitsResponse> 16524 </soapenv:Body> 16525 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41798</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="PUT" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/hdata/midasrlus/8d1ddf03-817a-4a95-8845-e9caa4ba0348"><headers><header key="Authorization" value="Basic YWRtaW46YWRtaW4="/><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="application/x-www-form-urlencoded; charset=UTF-8"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers></request><response status="201"><headers><header key="Content-Type" value="text/plain; charset=UTF-8"/><header key="Content-Length" value="14"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="DBG" value="Record created"/></headers><content encoding="UTF-8" type="text/plain;charset=UTF-8" length="14"><data>Record created</data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41798</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/hdata/midasrlus/8d1ddf03-817a-4a95-8845-e9caa4ba0348"><headers><header key="Authorization" value="Basic YWRtaW46YWRtaW4="/><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="application/x-www-form-urlencoded"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="application/x-www-form-urlencoded" length="-1"><data>extensionID=xdw&path=xdw&name=xdw</data></content></request><response status="201"><headers><header key="Content-Type" value="text/plain; charset=UTF-8"/><header key="Content-Length" value="15"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="DBG" value="Section Created"/></headers><content encoding="UTF-8" type="text/plain;charset=UTF-8" length="15"><data>Section Created</data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41798</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/hdata/midasrlus/8d1ddf03-817a-4a95-8845-e9caa4ba0348"><headers><header key="Authorization" value="Basic YWRtaW46YWRtaW4="/><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="application/x-www-form-urlencoded"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="application/x-www-form-urlencoded" length="-1"><data>extensionID=cda2report&path=cda2report&name=cda2report</data></content></request><response status="201"><headers><header key="Content-Type" value="text/plain; charset=UTF-8"/><header key="Content-Length" value="15"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="DBG" value="Section Created"/></headers><content encoding="UTF-8" type="text/plain;charset=UTF-8" length="15"><data>Section Created</data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="4513"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="4513"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 16526 <soap:Header/> 16527 <soap:Body> 16528 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 16529 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 16530 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="afd07091-e449-4da1-8ea9-77d76000900b"/> 16531 <xdw:effectiveTime value="20140613172635+0200"/> 16532 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 16533 <xdw:patient> 16534 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 16535 </xdw:patient> 16536 <xdw:author> 16537 <xdw:assignedAuthor> 16538 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 16539 <hl7v3:assignedPerson/> 16540 </xdw:assignedAuthor> 16541 </xdw:author> 16542 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 16543 <xdw:workflowDocumentSequenceNumber>1</xdw:workflowDocumentSequenceNumber> 16544 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 16545 <xdw:workflowStatusHistory> 16546 <xdw:documentEvent> 16547 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 16548 <xdw:eventType>complete</xdw:eventType> 16549 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 16550 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 16551 <xdw:previousStatus>OPEN</xdw:previousStatus> 16552 <xdw:actualStatus>OPEN</xdw:actualStatus> 16553 </xdw:documentEvent> 16554 </xdw:workflowStatusHistory> 16555 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 16556 <xdw:TaskList> 16557 <xdw:XDWTask> 16558 <xdw:taskData> 16559 <ws-ht:taskDetails> 16560 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 16561 <ws-ht:taskType>Requested</ws-ht:taskType> 16562 <ws-ht:name>xdw.creation</ws-ht:name> 16563 <ws-ht:status>COMPLETED</ws-ht:status> 16564 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 16565 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 16566 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 16567 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 16568 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 16569 </ws-ht:taskDetails> 16570 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 16571 <ws-ht:input/> 16572 <ws-ht:output/> 16573 </xdw:taskData> 16574 <xdw:taskEventHistory> 16575 <xdw:taskEvent> 16576 <xdw:id>1</xdw:id> 16577 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 16578 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 16579 <xdw:eventType>complete</xdw:eventType> 16580 <xdw:status>COMPLETED</xdw:status> 16581 <xdw:eventData xsi:nil="true"/> 16582 </xdw:taskEvent> 16583 </xdw:taskEventHistory> 16584 </xdw:XDWTask> 16585 </xdw:TaskList> 16586 </xdw:XDW.WorkflowDocument> 16587 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16588 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 16589 <rlustypes:SecurityContext> 16590 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 16591 </rlustypes:SecurityContext> 16592 <rlustypes:CBRContext> 16593 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 16594 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 16595 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 16596 </rlustypes:CBRContext> 16597 </rlustypes:RLUSPutRequestSrcStruct> 16598 <writeCommandEnum>INSERT</writeCommandEnum> 16599 </PutRequest> 16600 </soap:Body> 16601 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 125 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41173</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/hspilot/rlus/update/cda2report"><headers><header key="Host" value="10.0.0.9:6000"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/><header key="Pragma" value="no-cache"/><header key="Cache-Control" value="no-cache"/><header key="Max-Forwards" value="10"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="5.175.49.1"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="-1"><data><?xml version="1.0" encoding="utf-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><PutRequest xmlns="urn:dedalus:rlus:cda2report:types" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes"><ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"><ns6:realmCode code="IT"></ns6:realmCode><ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"></ns6:typeId><ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"></ns6:templateId><ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104842.4ef3f155-0e88-483f-ad5d-7f2e311d9131" root="2.16.840.1.113883.2.9.3.12.4.4"></ns6:id><ns6:code code="67804-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="History of health-related conditions"></ns6:code><ns6:effectiveTime value="20140927104842+0100"></ns6:effectiveTime><ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></ns6:confidentialityCode><ns6:languageCode code="it-IT"></ns6:languageCode><ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104842.4ef3f155-0e88-483f-ad5d-7f2e311d9131" root="2.16.840.1.113883.2.9.3.12.4.4"></ns6:setId><ns6:versionNumber value="1"></ns6:versionNumber><ns6:recordTarget><ns6:patientRole><ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"></ns6:id></ns6:patientRole></ns6:recordTarget><ns6:author><ns6:time value="20140927104842+0100"></ns6:time><ns6:assignedAuthor><ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"></ns6:id><ns6:assignedPerson><ns6:name><ns6:given>Antonio</ns6:given><ns6:family>Alberti</ns6:family><ns6:prefix>MMG</ns6:prefix></ns6:name></ns6:assignedPerson><ns6:representedOrganization><ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"></ns6:id><ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name><ns6:addr></ns6:addr></ns6:representedOrganization></ns6:assignedAuthor></ns6:author><ns6:custodian><ns6:assignedCustodian><ns6:representedCustodianOrganization><ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"></ns6:id><ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name></ns6:representedCustodianOrganization></ns6:assignedCustodian></ns6:custodian><ns6:legalAuthenticator><ns6:time value="20140927104842+0100"></ns6:time><ns6:signatureCode code="S"></ns6:signatureCode><ns6:assignedEntity><ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"></ns6:id></ns6:assignedEntity></ns6:legalAuthenticator><ns6:component><ns6:structuredBody><ns6:component><ns6:section><ns6:code code="67441-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Serious health problems"></ns6:code><ns6:title>Anamnesi</ns6:title><ns6:text><ns6:list><ns6:caption>Sintomi di Allarme</ns6:caption><ns6:item><ns6:caption>Insorgenza improvvisa dopo i 50 anni</ns6:caption><ns6:content>insorgenzaImprovvisa<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Improvviso cambiamento delle caratteristiche (intensita&amp;apos;, frequenza, durata) della cefalea</ns6:caption><ns6:content>cambiamentoCaratteristicheCefalea<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Associazione con sforzo fisico (colpi di tosse, starnuti)</ns6:caption><ns6:content>associazioneConSforzoFisico<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Paziente in terapia con anticoagulanti</ns6:caption><ns6:content>terapiaConAnticoagulanti<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Trauma cranico nei 2-3 mesi precedenti</ns6:caption><ns6:content>traumaCranico<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Parestesia arto inferiore</ns6:caption><ns6:content>parestesiaArtoInferiore<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Cefalea accompagnata da segni neurologici (focali o di vigilanza) diversi dai sintomi dell'aura</ns6:caption><ns6:list><ns6:item><ns6:caption>Segni focali</ns6:caption><ns6:list><ns6:item><ns6:caption>Deficit Forza Arti</ns6:caption><ns6:content>deficitForza<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Deficit Sensitivi</ns6:caption><ns6:content>deficitSensitivi<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Disturbi della Coscienza</ns6:caption><ns6:content>disturbiCoscienza<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Disturbi della Parola</ns6:caption><ns6:content>disturbiParola<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Disturbi Visivi</ns6:caption><ns6:content>disturbiVisivi<ns6:content>NO</ns6:content></ns6:content></ns6:item></ns6:list></ns6:item><ns6:item><ns6:caption>Disturbi di vigilanza</ns6:caption><ns6:content>disturbiVigilanza<ns6:content>NO</ns6:content></ns6:content></ns6:item></ns6:list></ns6:item><ns6:item><ns6:caption>Cefalea inusuale e grave, associata a febbre ed a rigor nucalis</ns6:caption><ns6:content>cefaleaInusuale<ns6:content>NO</ns6:content></ns6:content></ns6:item><ns6:item><ns6:caption>Non sono presenti sintomi di allarme</ns6:caption><ns6:content>assenzaSintomiAllarme<ns6:content>SI</ns6:content></ns6:content></ns6:item></ns6:list></ns6:text></ns6:section></ns6:component></ns6:structuredBody></ns6:component></ns6:ClinicalDocument><ns3:RLUSPutRequestSrcStruct xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns6="urn:hl7-org:v3" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"><ns3:RLUSsemantic-signifierName>cda2report</ns3:RLUSsemantic-signifierName><ns3:SecurityContext><ns3:SourceIdentity identityName="admin"></ns3:SourceIdentity></ns3:SecurityContext><ns3:CBRContext><ns3:CBRName>Testing App</ns3:CBRName><ns3:NetworkName>localhost</ns3:NetworkName><ns3:NetworkAddress>127.0.0.1</ns3:NetworkAddress></ns3:CBRContext></ns3:RLUSPutRequestSrcStruct><ns4:writeCommandEnum xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns6="urn:hl7-org:v3" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">INSERT</ns4:writeCommandEnum></PutRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="381"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16602 126 <soapenv:Header/> 16603 127 <soapenv:Body> 16604 128 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16605 129 <rlustypes:success>true</rlustypes:success> 16606 <rlustypes:message />130 <rlustypes:message>Created</rlustypes:message> 16607 131 </rlustypes:RLUSStatusCode> 16608 132 </soapenv:Body> 16609 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1228"/><header key="SOAPAction" value="urn:locate"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1228"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 16610 <soap:Header/> 16611 <soap:Body> 16612 <LocateRequest xmlns="urn:dedalus:rlus:xdw:types"> 16613 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 16614 <rlustypes:searchByCriteria> 16615 <rlustypes:FilterCriteria> 16616 <rlustypes:Expression> 16617 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 16618 <rlusexp:Operator type="EqualTo"/> 16619 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 16620 </rlustypes:Expression> 16621 </rlustypes:FilterCriteria> 16622 <rlustypes:SearchAttributes> 16623 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 16624 </rlustypes:SearchAttributes> 16625 </rlustypes:searchByCriteria> 16626 </rlustypes:RLUSSearchStruct> 16627 <maxResultStreams>1</maxResultStreams> 16628 <previousResultID>-1</previousResultID> 16629 </LocateRequest> 16630 </soap:Body> 16631 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="1202"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="1202"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 133 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41173</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/hspilot/rlus/query/cda2report"><headers><header key="Host" value="10.0.0.9:6000"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/><header key="Pragma" value="no-cache"/><header key="Cache-Control" value="no-cache"/><header key="Max-Forwards" value="10"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:get""/><header key="X-Forwarded-For" value="5.175.49.1"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="-1"><data><?xml version="1.0" encoding="utf-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:RLUSSearchStruct xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns="urn:dedalus:rlus:cda2report:types" semantic-signifiername="cda2report"><ns3:searchByCriteria xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns6="urn:hl7-org:v3" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"><ns3:FilterCriteria><ns3:Expression><ns5:BinaryTerm text="#docid0" type="Text"></ns5:BinaryTerm><ns5:Operator type="EqualTo"></ns5:Operator><ns5:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104842.4ef3f155-0e88-483f-ad5d-7f2e311d9131" type="Text"></ns5:BinaryTerm></ns3:Expression></ns3:FilterCriteria><ns3:SearchAttributes><ns3:Field name="cda2report/cda:ClinicalDocument/cda:id/@extension" qualifier="#docid0"></ns3:Field></ns3:SearchAttributes></ns3:searchByCriteria></ns2:RLUSSearchStruct></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="9279"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="9279"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16632 134 <soapenv:Header/> 16633 135 <soapenv:Body> 16634 <LocateResponse xmlns="urn:dedalus:rlus:xdw:types"> 16635 <RLUStypes:RLUSsemantic-signifierRecordLocationStruct xmlns:RLUStypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16636 <RLUStypes:RLUSsemantic-signifierName>xdw</RLUStypes:RLUSsemantic-signifierName> 16637 <RLUStypes:semantic-signifierRecordID root="2.16.840.1.113883.2.9.3.12.4.4" extension="89duier8943hw-4no3na00-workflow-doc-2014"/> 16638 <RLUStypes:CBRContext> 16639 <RLUStypes:CBRName>Dedalus</RLUStypes:CBRName> 16640 <RLUStypes:NetworkName>HSSP SERVICES</RLUStypes:NetworkName> 16641 <RLUStypes:NetworkAddress>hsspservices:8984</RLUStypes:NetworkAddress> 16642 </RLUStypes:CBRContext> 16643 </RLUStypes:RLUSsemantic-signifierRecordLocationStruct> 16644 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16645 <rlustypes:success>true</rlustypes:success> 16646 <rlustypes:message>One record located</rlustypes:message> 16647 </rlustypes:RLUSStatusCode> 16648 <finishedFlag>0</finishedFlag> 16649 </LocateResponse> 16650 </soapenv:Body> 16651 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 16652 <soap:Header/> 16653 <soap:Body> 16654 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 16655 <rlustypes:searchByCriteria> 16656 <rlustypes:FilterCriteria> 16657 <rlustypes:Expression> 16658 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 16659 <rlusexp:Operator type="EqualTo"/> 16660 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 16661 </rlustypes:Expression> 16662 </rlustypes:FilterCriteria> 16663 <rlustypes:SearchAttributes> 16664 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 16665 </rlustypes:SearchAttributes> 16666 </rlustypes:searchByCriteria> 16667 </rlustypes:RLUSSearchStruct> 16668 </soap:Body> 16669 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="4133"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="4133"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16670 <soapenv:Header/> 16671 <soapenv:Body> 16672 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 16673 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 16674 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="afd07091-e449-4da1-8ea9-77d76000900b"/> 16675 <xdw:effectiveTime value="20140613172635+0200"/> 16676 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 16677 <xdw:patient> 16678 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 16679 </xdw:patient> 16680 <xdw:author> 16681 <xdw:assignedAuthor> 16682 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 16683 <hl7v3:assignedPerson/> 16684 </xdw:assignedAuthor> 16685 </xdw:author> 16686 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 16687 <xdw:workflowDocumentSequenceNumber>1</xdw:workflowDocumentSequenceNumber> 16688 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 16689 <xdw:workflowStatusHistory> 16690 <xdw:documentEvent> 16691 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 16692 <xdw:eventType>complete</xdw:eventType> 16693 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 16694 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 16695 <xdw:previousStatus>OPEN</xdw:previousStatus> 16696 <xdw:actualStatus>OPEN</xdw:actualStatus> 16697 </xdw:documentEvent> 16698 </xdw:workflowStatusHistory> 16699 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 16700 <xdw:TaskList> 16701 <xdw:XDWTask> 16702 <xdw:taskData> 16703 <ws-ht:taskDetails> 16704 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 16705 <ws-ht:taskType>Requested</ws-ht:taskType> 16706 <ws-ht:name>xdw.creation</ws-ht:name> 16707 <ws-ht:status>COMPLETED</ws-ht:status> 16708 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 16709 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 16710 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 16711 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 16712 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 16713 </ws-ht:taskDetails> 16714 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 16715 <ws-ht:input/> 16716 <ws-ht:output/> 16717 </xdw:taskData> 16718 <xdw:taskEventHistory> 16719 <xdw:taskEvent> 16720 <xdw:id>1</xdw:id> 16721 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 16722 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 16723 <xdw:eventType>complete</xdw:eventType> 16724 <xdw:status>COMPLETED</xdw:status> 16725 <xdw:eventData xsi:nil="true"/> 16726 </xdw:taskEvent> 16727 </xdw:taskEventHistory> 16728 </xdw:XDWTask> 16729 </xdw:TaskList> 16730 </xdw:XDW.WorkflowDocument> 136 <GetResponse xmlns="urn:dedalus:rlus:cda2report:types"> 137 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 138 <ns6:realmCode code="IT"/> 139 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 140 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 141 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104842.4ef3f155-0e88-483f-ad5d-7f2e311d9131" root="2.16.840.1.113883.2.9.3.12.4.4"/> 142 <ns6:code code="67804-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="History of health-related conditions"/> 143 <ns6:effectiveTime value="20140927104842+0100"/> 144 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 145 <ns6:languageCode code="it-IT"/> 146 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104842.4ef3f155-0e88-483f-ad5d-7f2e311d9131" root="2.16.840.1.113883.2.9.3.12.4.4"/> 147 <ns6:versionNumber value="1"/> 148 <ns6:recordTarget> 149 <ns6:patientRole> 150 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 151 </ns6:patientRole> 152 </ns6:recordTarget> 153 <ns6:author> 154 <ns6:time value="20140927104842+0100"/> 155 <ns6:assignedAuthor> 156 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 157 <ns6:assignedPerson> 158 <ns6:name> 159 <ns6:given>Antonio</ns6:given> 160 <ns6:family>Alberti</ns6:family> 161 <ns6:prefix>MMG</ns6:prefix> 162 </ns6:name> 163 </ns6:assignedPerson> 164 <ns6:representedOrganization> 165 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 166 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 167 <ns6:addr/> 168 </ns6:representedOrganization> 169 </ns6:assignedAuthor> 170 </ns6:author> 171 <ns6:custodian> 172 <ns6:assignedCustodian> 173 <ns6:representedCustodianOrganization> 174 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 175 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 176 </ns6:representedCustodianOrganization> 177 </ns6:assignedCustodian> 178 </ns6:custodian> 179 <ns6:legalAuthenticator> 180 <ns6:time value="20140927104842+0100"/> 181 <ns6:signatureCode code="S"/> 182 <ns6:assignedEntity> 183 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 184 </ns6:assignedEntity> 185 </ns6:legalAuthenticator> 186 <ns6:component> 187 <ns6:structuredBody> 188 <ns6:component> 189 <ns6:section> 190 <ns6:code code="67441-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Serious health problems"/> 191 <ns6:title>Anamnesi</ns6:title> 192 <ns6:text> 193 <ns6:list> 194 <ns6:caption>Sintomi di Allarme</ns6:caption> 195 <ns6:item> 196 <ns6:caption>Insorgenza improvvisa dopo i 50 anni</ns6:caption> 197 <ns6:content>insorgenzaImprovvisa<ns6:content>NO</ns6:content> 198 </ns6:content> 199 </ns6:item> 200 <ns6:item> 201 <ns6:caption>Improvviso cambiamento delle caratteristiche (intensita&amp;apos;, frequenza, durata) della cefalea</ns6:caption> 202 <ns6:content>cambiamentoCaratteristicheCefalea<ns6:content>NO</ns6:content> 203 </ns6:content> 204 </ns6:item> 205 <ns6:item> 206 <ns6:caption>Associazione con sforzo fisico (colpi di tosse, starnuti)</ns6:caption> 207 <ns6:content>associazioneConSforzoFisico<ns6:content>NO</ns6:content> 208 </ns6:content> 209 </ns6:item> 210 <ns6:item> 211 <ns6:caption>Paziente in terapia con anticoagulanti</ns6:caption> 212 <ns6:content>terapiaConAnticoagulanti<ns6:content>NO</ns6:content> 213 </ns6:content> 214 </ns6:item> 215 <ns6:item> 216 <ns6:caption>Trauma cranico nei 2-3 mesi precedenti</ns6:caption> 217 <ns6:content>traumaCranico<ns6:content>NO</ns6:content> 218 </ns6:content> 219 </ns6:item> 220 <ns6:item> 221 <ns6:caption>Parestesia arto inferiore</ns6:caption> 222 <ns6:content>parestesiaArtoInferiore<ns6:content>NO</ns6:content> 223 </ns6:content> 224 </ns6:item> 225 <ns6:item> 226 <ns6:caption>Cefalea accompagnata da segni neurologici (focali o di vigilanza) diversi dai sintomi dell'aura</ns6:caption> 227 <ns6:list> 228 <ns6:item> 229 <ns6:caption>Segni focali</ns6:caption> 230 <ns6:list> 231 <ns6:item> 232 <ns6:caption>Deficit Forza Arti</ns6:caption> 233 <ns6:content>deficitForza<ns6:content>NO</ns6:content> 234 </ns6:content> 235 </ns6:item> 236 <ns6:item> 237 <ns6:caption>Deficit Sensitivi</ns6:caption> 238 <ns6:content>deficitSensitivi<ns6:content>NO</ns6:content> 239 </ns6:content> 240 </ns6:item> 241 <ns6:item> 242 <ns6:caption>Disturbi della Coscienza</ns6:caption> 243 <ns6:content>disturbiCoscienza<ns6:content>NO</ns6:content> 244 </ns6:content> 245 </ns6:item> 246 <ns6:item> 247 <ns6:caption>Disturbi della Parola</ns6:caption> 248 <ns6:content>disturbiParola<ns6:content>NO</ns6:content> 249 </ns6:content> 250 </ns6:item> 251 <ns6:item> 252 <ns6:caption>Disturbi Visivi</ns6:caption> 253 <ns6:content>disturbiVisivi<ns6:content>NO</ns6:content> 254 </ns6:content> 255 </ns6:item> 256 </ns6:list> 257 </ns6:item> 258 <ns6:item> 259 <ns6:caption>Disturbi di vigilanza</ns6:caption> 260 <ns6:content>disturbiVigilanza<ns6:content>NO</ns6:content> 261 </ns6:content> 262 </ns6:item> 263 </ns6:list> 264 </ns6:item> 265 <ns6:item> 266 <ns6:caption>Cefalea inusuale e grave, associata a febbre ed a rigor nucalis</ns6:caption> 267 <ns6:content>cefaleaInusuale<ns6:content>NO</ns6:content> 268 </ns6:content> 269 </ns6:item> 270 <ns6:item> 271 <ns6:caption>Non sono presenti sintomi di allarme</ns6:caption> 272 <ns6:content>assenzaSintomiAllarme<ns6:content>SI</ns6:content> 273 </ns6:content> 274 </ns6:item> 275 </ns6:list> 276 </ns6:text> 277 </ns6:section> 278 </ns6:component> 279 </ns6:structuredBody> 280 </ns6:component> 281 </ns6:ClinicalDocument> 16731 282 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16732 283 <rlustypes:success>true</rlustypes:success> … … 16735 286 </GetResponse> 16736 287 </soapenv:Body> 16737 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 16738 <soap:Header/> 16739 <soap:Body> 16740 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 16741 <rlustypes:searchByCriteria> 16742 <rlustypes:FilterCriteria> 16743 <rlustypes:Expression> 16744 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 16745 <rlusexp:Operator type="EqualTo"/> 16746 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 16747 </rlustypes:Expression> 16748 </rlustypes:FilterCriteria> 16749 <rlustypes:SearchAttributes> 16750 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 16751 </rlustypes:SearchAttributes> 16752 </rlustypes:searchByCriteria> 16753 </rlustypes:RLUSSearchStruct> 16754 </soap:Body> 16755 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="4133"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="4133"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16756 <soapenv:Header/> 16757 <soapenv:Body> 16758 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 16759 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 16760 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="afd07091-e449-4da1-8ea9-77d76000900b"/> 16761 <xdw:effectiveTime value="20140613172635+0200"/> 16762 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 16763 <xdw:patient> 16764 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 16765 </xdw:patient> 16766 <xdw:author> 16767 <xdw:assignedAuthor> 16768 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 16769 <hl7v3:assignedPerson/> 16770 </xdw:assignedAuthor> 16771 </xdw:author> 16772 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 16773 <xdw:workflowDocumentSequenceNumber>1</xdw:workflowDocumentSequenceNumber> 16774 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 16775 <xdw:workflowStatusHistory> 16776 <xdw:documentEvent> 16777 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 16778 <xdw:eventType>complete</xdw:eventType> 16779 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 16780 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 16781 <xdw:previousStatus>OPEN</xdw:previousStatus> 16782 <xdw:actualStatus>OPEN</xdw:actualStatus> 16783 </xdw:documentEvent> 16784 </xdw:workflowStatusHistory> 16785 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 16786 <xdw:TaskList> 16787 <xdw:XDWTask> 16788 <xdw:taskData> 16789 <ws-ht:taskDetails> 16790 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 16791 <ws-ht:taskType>Requested</ws-ht:taskType> 16792 <ws-ht:name>xdw.creation</ws-ht:name> 16793 <ws-ht:status>COMPLETED</ws-ht:status> 16794 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 16795 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 16796 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 16797 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 16798 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 16799 </ws-ht:taskDetails> 16800 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 16801 <ws-ht:input/> 16802 <ws-ht:output/> 16803 </xdw:taskData> 16804 <xdw:taskEventHistory> 16805 <xdw:taskEvent> 16806 <xdw:id>1</xdw:id> 16807 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 16808 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 16809 <xdw:eventType>complete</xdw:eventType> 16810 <xdw:status>COMPLETED</xdw:status> 16811 <xdw:eventData xsi:nil="true"/> 16812 </xdw:taskEvent> 16813 </xdw:taskEventHistory> 16814 </xdw:XDWTask> 16815 </xdw:TaskList> 16816 </xdw:XDW.WorkflowDocument> 16817 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16818 <rlustypes:success>true</rlustypes:success> 16819 <rlustypes:message>One record fetched</rlustypes:message> 16820 </rlustypes:RLUSStatusCode> 16821 </GetResponse> 16822 </soapenv:Body> 16823 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="6407"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="6407"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 16824 <soap:Header/> 16825 <soap:Body> 16826 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 16827 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16828 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="28aab402-f678-472b-95a3-1ba1b243d4dd"/> 16829 <xdw:effectiveTime value="20140613172637+0200"/> 16830 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 16831 <xdw:patient> 16832 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 16833 </xdw:patient> 16834 <xdw:author> 16835 <xdw:assignedAuthor> 16836 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 16837 <hl7v3:assignedPerson/> 16838 </xdw:assignedAuthor> 16839 </xdw:author> 16840 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 16841 <xdw:workflowDocumentSequenceNumber>2</xdw:workflowDocumentSequenceNumber> 16842 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 16843 <xdw:workflowStatusHistory> 16844 <xdw:documentEvent> 16845 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 16846 <xdw:eventType>complete</xdw:eventType> 16847 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 16848 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 16849 <xdw:previousStatus>OPEN</xdw:previousStatus> 16850 <xdw:actualStatus>OPEN</xdw:actualStatus> 16851 </xdw:documentEvent> 16852 <xdw:documentEvent> 16853 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 16854 <xdw:eventType>create</xdw:eventType> 16855 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 16856 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 16857 <xdw:previousStatus>OPEN</xdw:previousStatus> 16858 <xdw:actualStatus>OPEN</xdw:actualStatus> 16859 </xdw:documentEvent> 16860 </xdw:workflowStatusHistory> 16861 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 16862 <xdw:TaskList> 16863 <xdw:XDWTask> 16864 <xdw:taskData> 16865 <ws-ht:taskDetails> 16866 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 16867 <ws-ht:taskType>Requested</ws-ht:taskType> 16868 <ws-ht:name>xdw.creation</ws-ht:name> 16869 <ws-ht:status>COMPLETED</ws-ht:status> 16870 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 16871 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 16872 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 16873 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 16874 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 16875 </ws-ht:taskDetails> 16876 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 16877 <ws-ht:input/> 16878 <ws-ht:output/> 16879 </xdw:taskData> 16880 <xdw:taskEventHistory> 16881 <xdw:taskEvent> 16882 <xdw:id>1</xdw:id> 16883 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 16884 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 16885 <xdw:eventType>complete</xdw:eventType> 16886 <xdw:status>COMPLETED</xdw:status> 16887 <xdw:eventData xsi:nil="true"/> 16888 </xdw:taskEvent> 16889 </xdw:taskEventHistory> 16890 </xdw:XDWTask> 16891 <xdw:XDWTask> 16892 <xdw:taskData> 16893 <ws-ht:taskDetails> 16894 <ws-ht:id>task_0</ws-ht:id> 16895 <ws-ht:taskType>ttype</ws-ht:taskType> 16896 <ws-ht:name>tname_0</ws-ht:name> 16897 <ws-ht:status>READY</ws-ht:status> 16898 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 16899 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 16900 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 16901 <ws-ht:lastModifiedTime>2014-06-13T17:26:37.211+02:00</ws-ht:lastModifiedTime> 16902 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 16903 </ws-ht:taskDetails> 16904 <ws-ht:description>Undocumented task</ws-ht:description> 16905 <ws-ht:input/> 16906 <ws-ht:output/> 16907 </xdw:taskData> 16908 <xdw:taskEventHistory> 16909 <xdw:taskEvent> 16910 <xdw:id>1</xdw:id> 16911 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 16912 <xdw:identifier>task_0#1</xdw:identifier> 16913 <xdw:eventType>create</xdw:eventType> 16914 <xdw:status>READY</xdw:status> 16915 <xdw:eventData xsi:nil="true"/> 16916 </xdw:taskEvent> 16917 </xdw:taskEventHistory> 16918 </xdw:XDWTask> 16919 </xdw:TaskList> 16920 </xdw:XDW.WorkflowDocument> 16921 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16922 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 16923 <rlustypes:SecurityContext> 16924 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 16925 </rlustypes:SecurityContext> 16926 <rlustypes:CBRContext> 16927 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 16928 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 16929 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 16930 </rlustypes:CBRContext> 16931 </rlustypes:RLUSPutRequestSrcStruct> 16932 <writeCommandEnum>UPDATE</writeCommandEnum> 16933 </PutRequest> 16934 </soap:Body> 16935 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 288 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41173</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/hspilot/rlus/update/cda2report"><headers><header key="Host" value="10.0.0.9:6000"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/><header key="Pragma" value="no-cache"/><header key="Cache-Control" value="no-cache"/><header key="Max-Forwards" value="10"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="5.175.49.1"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="-1"><data><?xml version="1.0" encoding="utf-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><PutRequest xmlns="urn:dedalus:rlus:cda2report:types" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes"><ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"><ns6:realmCode code="IT"></ns6:realmCode><ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"></ns6:typeId><ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"></ns6:templateId><ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104848.7eeab084-f0df-4393-99a3-861db02ce482" root="2.16.840.1.113883.2.9.3.12.4.4"></ns6:id><ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"></ns6:code><ns6:effectiveTime value="20140927104848+0100"></ns6:effectiveTime><ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></ns6:confidentialityCode><ns6:languageCode code="it-IT"></ns6:languageCode><ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104848.7eeab084-f0df-4393-99a3-861db02ce482" root="2.16.840.1.113883.2.9.3.12.4.4"></ns6:setId><ns6:versionNumber value="1"></ns6:versionNumber><ns6:recordTarget><ns6:patientRole><ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"></ns6:id></ns6:patientRole></ns6:recordTarget><ns6:author><ns6:time value="20140927104848+0100"></ns6:time><ns6:assignedAuthor><ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"></ns6:id><ns6:assignedPerson><ns6:name><ns6:given>Antonio</ns6:given><ns6:family>Alberti</ns6:family><ns6:prefix>MMG</ns6:prefix></ns6:name></ns6:assignedPerson><ns6:representedOrganization><ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"></ns6:id><ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name><ns6:addr></ns6:addr></ns6:representedOrganization></ns6:assignedAuthor></ns6:author><ns6:custodian><ns6:assignedCustodian><ns6:representedCustodianOrganization><ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"></ns6:id><ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name></ns6:representedCustodianOrganization></ns6:assignedCustodian></ns6:custodian><ns6:legalAuthenticator><ns6:time value="20140927104848+0100"></ns6:time><ns6:signatureCode code="S"></ns6:signatureCode><ns6:assignedEntity><ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"></ns6:id></ns6:assignedEntity></ns6:legalAuthenticator><ns6:componentOf typeCode="COMP"><ns6:encompassingEncounter><ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104842.4ef3f155-0e88-483f-ad5d-7f2e311d9131" root="2.16.840.1.113883.2.9.3.12.4.4"></ns6:id><ns6:effectiveTime value="20140927104842+0100"></ns6:effectiveTime></ns6:encompassingEncounter></ns6:componentOf><ns6:component><ns6:structuredBody><ns6:component><ns6:section><ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"></ns6:code><ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title><ns6:text><ns6:list><ns6:item><ns6:caption>Codice Diagnosi</ns6:caption><ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content></ns6:content></ns6:item></ns6:list><ns6:list><ns6:item><ns6:caption>Descrizione Diagnosi</ns6:caption><ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content></ns6:content></ns6:item></ns6:list><ns6:list><ns6:item><ns6:caption>Codice Percorso</ns6:caption><ns6:content>codicePercorso<ns6:content>P5</ns6:content></ns6:content></ns6:item></ns6:list><ns6:list><ns6:item><ns6:caption>Descrizione Percorso</ns6:caption><ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content></ns6:content></ns6:item></ns6:list></ns6:text></ns6:section></ns6:component></ns6:structuredBody></ns6:component></ns6:ClinicalDocument><ns3:RLUSPutRequestSrcStruct xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns6="urn:hl7-org:v3" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"><ns3:RLUSsemantic-signifierName>cda2report</ns3:RLUSsemantic-signifierName><ns3:SecurityContext><ns3:SourceIdentity identityName="admin"></ns3:SourceIdentity></ns3:SecurityContext><ns3:CBRContext><ns3:CBRName>Testing App</ns3:CBRName><ns3:NetworkName>localhost</ns3:NetworkName><ns3:NetworkAddress>127.0.0.1</ns3:NetworkAddress></ns3:CBRContext></ns3:RLUSPutRequestSrcStruct><ns4:writeCommandEnum xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns6="urn:hl7-org:v3" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">INSERT</ns4:writeCommandEnum></PutRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="381"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16936 289 <soapenv:Header/> 16937 290 <soapenv:Body> 16938 291 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 16939 292 <rlustypes:success>true</rlustypes:success> 16940 <rlustypes:message />293 <rlustypes:message>Created</rlustypes:message> 16941 294 </rlustypes:RLUSStatusCode> 16942 295 </soapenv:Body> 16943 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 16944 <soap:Header/> 16945 <soap:Body> 16946 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 16947 <rlustypes:searchByCriteria> 16948 <rlustypes:FilterCriteria> 16949 <rlustypes:Expression> 16950 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 16951 <rlusexp:Operator type="EqualTo"/> 16952 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 16953 </rlustypes:Expression> 16954 </rlustypes:FilterCriteria> 16955 <rlustypes:SearchAttributes> 16956 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 16957 </rlustypes:SearchAttributes> 16958 </rlustypes:searchByCriteria> 16959 </rlustypes:RLUSSearchStruct> 16960 </soap:Body> 16961 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="5969"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5969"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 296 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41173</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/hspilot/rlus/query/cda2report"><headers><header key="Host" value="10.0.0.9:6000"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/><header key="Pragma" value="no-cache"/><header key="Cache-Control" value="no-cache"/><header key="Max-Forwards" value="10"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:list""/><header key="X-Forwarded-For" value="5.175.49.1"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="-1"><data><?xml version="1.0" encoding="utf-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ListRequest xmlns="urn:dedalus:rlus:cda2report:types" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes"><ns2:RLUSSearchStruct semantic-signifiername="cda2report"><ns3:searchByCriteria xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns6="urn:hl7-org:v3" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"><ns3:FilterCriteria><ns3:Expression><ns5:BinaryExpression><ns5:BinaryExpression><ns5:BinaryTerm text="#idIXS_Paziente" type="Text"></ns5:BinaryTerm><ns5:Operator type="EqualTo"></ns5:Operator><ns5:BinaryTerm text="78b8437e-0bc8-430f-90dc-ef28604579e3" type="Text"></ns5:BinaryTerm></ns5:BinaryExpression><ns5:Operator type="And"></ns5:Operator><ns5:BinaryExpression><ns5:BinaryTerm text="#idIXS_Author" type="Text"></ns5:BinaryTerm><ns5:Operator type="EqualTo"></ns5:Operator><ns5:BinaryTerm text="26b49f72-6792-4a7b-b44d-cb4de5760e79" type="Text"></ns5:BinaryTerm></ns5:BinaryExpression></ns5:BinaryExpression><ns5:Operator type="And"></ns5:Operator><ns5:BinaryExpression><ns5:BinaryExpression><ns5:BinaryTerm text="#Genere_Documento" type="Text"></ns5:BinaryTerm><ns5:Operator type="EqualTo"></ns5:Operator><ns5:BinaryTerm text="44833-2" type="Text"></ns5:BinaryTerm></ns5:BinaryExpression><ns5:Operator type="Or"></ns5:Operator><ns5:BinaryExpression><ns5:BinaryExpression><ns5:BinaryTerm text="#Genere_Documento" type="Text"></ns5:BinaryTerm><ns5:Operator type="EqualTo"></ns5:Operator><ns5:BinaryTerm text="52534-5" type="Text"></ns5:BinaryTerm></ns5:BinaryExpression><ns5:Operator type="Or"></ns5:Operator><ns5:BinaryExpression><ns5:BinaryTerm text="#Genere_Documento" type="Text"></ns5:BinaryTerm><ns5:Operator type="EqualTo"></ns5:Operator><ns5:BinaryTerm text="68687-3" type="Text"></ns5:BinaryTerm></ns5:BinaryExpression></ns5:BinaryExpression></ns5:BinaryExpression></ns3:Expression></ns3:FilterCriteria><ns3:SearchAttributes><ns3:Field name="cda2report/cda:ClinicalDocument/cda:recordTarget/cda:patientRole/cda:id[@root='2.16.840.1.113883.2.9.3.12.4.1']/data(@extension)" qualifier="#idIXS_Paziente"></ns3:Field><ns3:Field name="cda2report/cda:ClinicalDocument/cda:author/cda:assignedAuthor/cda:assignedPerson/cda:name/cda:prefix" qualifier="#Ruolo"></ns3:Field><ns3:Field name="cda2report/cda:ClinicalDocument/cda:author/cda:assignedAuthor/cda:id[@root='2.16.840.1.113883.2.9.3.12.4.2']/data(@extension)" qualifier="#idIXS_Author"></ns3:Field><ns3:Field name="cda2report/cda:ClinicalDocument/cda:author/cda:assignedAuthor/cda:representedOrganization/cda:id[@root='2.16.840.1.113883.2.9.3.12.4']/data(@extension)" qualifier="#idIXS_Struttura"></ns3:Field><ns3:Field name="cda2report/cda:ClinicalDocument/cda:effectiveTime/data(@value)" qualifier="#Data"></ns3:Field><ns3:Field name="cda2report/cda:ClinicalDocument/cda:code/data(@code)" qualifier="#Tipo_Documento"></ns3:Field><ns3:Field name="cda2report/cda:ClinicalDocument/cda:component/cda:structuredBody/cda:component/cda:section/cda:code/data(@code)" qualifier="#Genere_Documento"></ns3:Field></ns3:SearchAttributes></ns3:searchByCriteria></ns2:RLUSSearchStruct><ns4:maxResultStreams xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns6="urn:hl7-org:v3" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">1</ns4:maxResultStreams><ns4:previousResultID xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns6="urn:hl7-org:v3" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">1</ns4:previousResultID></ListRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="746665"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 16962 297 <soapenv:Header/> 16963 298 <soapenv:Body> 16964 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 16965 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 16966 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="28aab402-f678-472b-95a3-1ba1b243d4dd"/> 16967 <xdw:effectiveTime value="20140613172637+0200"/> 16968 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 16969 <xdw:patient> 16970 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 16971 </xdw:patient> 16972 <xdw:author> 16973 <xdw:assignedAuthor> 16974 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 16975 <hl7v3:assignedPerson/> 16976 </xdw:assignedAuthor> 16977 </xdw:author> 16978 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 16979 <xdw:workflowDocumentSequenceNumber>2</xdw:workflowDocumentSequenceNumber> 16980 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 16981 <xdw:workflowStatusHistory> 16982 <xdw:documentEvent> 16983 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 16984 <xdw:eventType>complete</xdw:eventType> 16985 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 16986 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 16987 <xdw:previousStatus>OPEN</xdw:previousStatus> 16988 <xdw:actualStatus>OPEN</xdw:actualStatus> 16989 </xdw:documentEvent> 16990 <xdw:documentEvent> 16991 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 16992 <xdw:eventType>create</xdw:eventType> 16993 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 16994 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 16995 <xdw:previousStatus>OPEN</xdw:previousStatus> 16996 <xdw:actualStatus>OPEN</xdw:actualStatus> 16997 </xdw:documentEvent> 16998 </xdw:workflowStatusHistory> 16999 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 17000 <xdw:TaskList> 17001 <xdw:XDWTask> 17002 <xdw:taskData> 17003 <ws-ht:taskDetails> 17004 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 17005 <ws-ht:taskType>Requested</ws-ht:taskType> 17006 <ws-ht:name>xdw.creation</ws-ht:name> 17007 <ws-ht:status>COMPLETED</ws-ht:status> 17008 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17009 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 17010 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17011 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 17012 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17013 </ws-ht:taskDetails> 17014 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 17015 <ws-ht:input/> 17016 <ws-ht:output/> 17017 </xdw:taskData> 17018 <xdw:taskEventHistory> 17019 <xdw:taskEvent> 17020 <xdw:id>1</xdw:id> 17021 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17022 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 17023 <xdw:eventType>complete</xdw:eventType> 17024 <xdw:status>COMPLETED</xdw:status> 17025 <xdw:eventData xsi:nil="true"/> 17026 </xdw:taskEvent> 17027 </xdw:taskEventHistory> 17028 </xdw:XDWTask> 17029 <xdw:XDWTask> 17030 <xdw:taskData> 17031 <ws-ht:taskDetails> 17032 <ws-ht:id>task_0</ws-ht:id> 17033 <ws-ht:taskType>ttype</ws-ht:taskType> 17034 <ws-ht:name>tname_0</ws-ht:name> 17035 <ws-ht:status>READY</ws-ht:status> 17036 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17037 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 17038 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17039 <ws-ht:lastModifiedTime>2014-06-13T17:26:37.211+02:00</ws-ht:lastModifiedTime> 17040 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17041 </ws-ht:taskDetails> 17042 <ws-ht:description>Undocumented task</ws-ht:description> 17043 <ws-ht:input/> 17044 <ws-ht:output/> 17045 </xdw:taskData> 17046 <xdw:taskEventHistory> 17047 <xdw:taskEvent> 17048 <xdw:id>1</xdw:id> 17049 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17050 <xdw:identifier>task_0#1</xdw:identifier> 17051 <xdw:eventType>create</xdw:eventType> 17052 <xdw:status>READY</xdw:status> 17053 <xdw:eventData xsi:nil="true"/> 17054 </xdw:taskEvent> 17055 </xdw:taskEventHistory> 17056 </xdw:XDWTask> 17057 </xdw:TaskList> 17058 </xdw:XDW.WorkflowDocument> 299 <ListResponse xmlns="urn:dedalus:rlus:cda2report:types"> 300 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 301 <ns6:realmCode code="IT"/> 302 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 303 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 304 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140722184550.45409b6e-de70-4620-a281-efda3cf73fe5" root="2.16.840.1.113883.2.9.3.12.4.4"/> 305 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 306 <ns6:effectiveTime value="20140722184550+0100"/> 307 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 308 <ns6:languageCode code="it-IT"/> 309 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140722184550.45409b6e-de70-4620-a281-efda3cf73fe5" root="2.16.840.1.113883.2.9.3.12.4.4"/> 310 <ns6:versionNumber value="1"/> 311 <ns6:recordTarget> 312 <ns6:patientRole> 313 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 314 </ns6:patientRole> 315 </ns6:recordTarget> 316 <ns6:author> 317 <ns6:time value="20140722184550+0100"/> 318 <ns6:assignedAuthor> 319 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 320 <ns6:assignedPerson> 321 <ns6:name> 322 <ns6:given>Antonio</ns6:given> 323 <ns6:family>Alberti</ns6:family> 324 <ns6:prefix>MMG</ns6:prefix> 325 </ns6:name> 326 </ns6:assignedPerson> 327 <ns6:representedOrganization> 328 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 329 <ns6:name>Studio Medico</ns6:name> 330 <ns6:addr>VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:addr> 331 </ns6:representedOrganization> 332 </ns6:assignedAuthor> 333 </ns6:author> 334 <ns6:custodian> 335 <ns6:assignedCustodian> 336 <ns6:representedCustodianOrganization> 337 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 338 <ns6:name>Studio Medico</ns6:name> 339 </ns6:representedCustodianOrganization> 340 </ns6:assignedCustodian> 341 </ns6:custodian> 342 <ns6:legalAuthenticator> 343 <ns6:time value="20140722184550+0100"/> 344 <ns6:signatureCode code="S"/> 345 <ns6:assignedEntity> 346 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 347 </ns6:assignedEntity> 348 </ns6:legalAuthenticator> 349 <ns6:componentOf typeCode="COMP"> 350 <ns6:encompassingEncounter> 351 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140722184542.fd9e1fca-a661-4051-9d97-1cfa5e39411d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 352 <ns6:effectiveTime value="20140722184542+0100"/> 353 </ns6:encompassingEncounter> 354 </ns6:componentOf> 355 <ns6:component> 356 <ns6:structuredBody> 357 <ns6:component> 358 <ns6:section> 359 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 360 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 361 <ns6:text> 362 <ns6:list> 363 <ns6:item> 364 <ns6:caption>Codice Diagnosi</ns6:caption> 365 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 366 </ns6:content> 367 </ns6:item> 368 </ns6:list> 369 <ns6:list> 370 <ns6:item> 371 <ns6:caption>Descrizione Diagnosi</ns6:caption> 372 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 373 </ns6:content> 374 </ns6:item> 375 </ns6:list> 376 <ns6:list> 377 <ns6:item> 378 <ns6:caption>Codice Percorso</ns6:caption> 379 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 380 </ns6:content> 381 </ns6:item> 382 </ns6:list> 383 <ns6:list> 384 <ns6:item> 385 <ns6:caption>Descrizione Percorso</ns6:caption> 386 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 387 </ns6:content> 388 </ns6:item> 389 </ns6:list> 390 </ns6:text> 391 </ns6:section> 392 </ns6:component> 393 </ns6:structuredBody> 394 </ns6:component> 395 </ns6:ClinicalDocument> 396 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 397 <ns6:realmCode code="IT"/> 398 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 399 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 400 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140722202827.4393c903-6a7b-4f62-94e8-93008413a84b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 401 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 402 <ns6:effectiveTime value="20140722202827+0100"/> 403 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 404 <ns6:languageCode code="it-IT"/> 405 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140722202827.4393c903-6a7b-4f62-94e8-93008413a84b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 406 <ns6:versionNumber value="1"/> 407 <ns6:recordTarget> 408 <ns6:patientRole> 409 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 410 </ns6:patientRole> 411 </ns6:recordTarget> 412 <ns6:author> 413 <ns6:time value="20140722202827+0100"/> 414 <ns6:assignedAuthor> 415 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 416 <ns6:assignedPerson> 417 <ns6:name> 418 <ns6:given>Antonio</ns6:given> 419 <ns6:family>Alberti</ns6:family> 420 <ns6:prefix>MMG</ns6:prefix> 421 </ns6:name> 422 </ns6:assignedPerson> 423 <ns6:representedOrganization> 424 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 425 <ns6:name>Studio Medico</ns6:name> 426 <ns6:addr>VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:addr> 427 </ns6:representedOrganization> 428 </ns6:assignedAuthor> 429 </ns6:author> 430 <ns6:custodian> 431 <ns6:assignedCustodian> 432 <ns6:representedCustodianOrganization> 433 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 434 <ns6:name>Studio Medico</ns6:name> 435 </ns6:representedCustodianOrganization> 436 </ns6:assignedCustodian> 437 </ns6:custodian> 438 <ns6:legalAuthenticator> 439 <ns6:time value="20140722202827+0100"/> 440 <ns6:signatureCode code="S"/> 441 <ns6:assignedEntity> 442 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 443 </ns6:assignedEntity> 444 </ns6:legalAuthenticator> 445 <ns6:componentOf typeCode="COMP"> 446 <ns6:encompassingEncounter> 447 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140722202823.1864ced7-e344-4d94-8023-25797e498cc2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 448 <ns6:effectiveTime value="20140722202823+0100"/> 449 </ns6:encompassingEncounter> 450 </ns6:componentOf> 451 <ns6:component> 452 <ns6:structuredBody> 453 <ns6:component> 454 <ns6:section> 455 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 456 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 457 <ns6:text> 458 <ns6:list> 459 <ns6:item> 460 <ns6:caption>Codice Diagnosi</ns6:caption> 461 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 462 </ns6:content> 463 </ns6:item> 464 </ns6:list> 465 <ns6:list> 466 <ns6:item> 467 <ns6:caption>Descrizione Diagnosi</ns6:caption> 468 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 469 </ns6:content> 470 </ns6:item> 471 </ns6:list> 472 <ns6:list> 473 <ns6:item> 474 <ns6:caption>Codice Percorso</ns6:caption> 475 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 476 </ns6:content> 477 </ns6:item> 478 </ns6:list> 479 <ns6:list> 480 <ns6:item> 481 <ns6:caption>Descrizione Percorso</ns6:caption> 482 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 483 </ns6:content> 484 </ns6:item> 485 </ns6:list> 486 </ns6:text> 487 </ns6:section> 488 </ns6:component> 489 </ns6:structuredBody> 490 </ns6:component> 491 </ns6:ClinicalDocument> 492 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 493 <ns6:realmCode code="IT"/> 494 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 495 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 496 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140722203128.92c3cedb-ce41-49e1-8c17-89fb9e869621" root="2.16.840.1.113883.2.9.3.12.4.4"/> 497 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 498 <ns6:effectiveTime value="20140722203128+0100"/> 499 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 500 <ns6:languageCode code="it-IT"/> 501 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140722203128.92c3cedb-ce41-49e1-8c17-89fb9e869621" root="2.16.840.1.113883.2.9.3.12.4.4"/> 502 <ns6:versionNumber value="1"/> 503 <ns6:recordTarget> 504 <ns6:patientRole> 505 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 506 </ns6:patientRole> 507 </ns6:recordTarget> 508 <ns6:author> 509 <ns6:time value="20140722203128+0100"/> 510 <ns6:assignedAuthor> 511 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 512 <ns6:assignedPerson> 513 <ns6:name> 514 <ns6:given>Antonio</ns6:given> 515 <ns6:family>Alberti</ns6:family> 516 <ns6:prefix>MMG</ns6:prefix> 517 </ns6:name> 518 </ns6:assignedPerson> 519 <ns6:representedOrganization> 520 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 521 <ns6:name>Studio Medico</ns6:name> 522 <ns6:addr>VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:addr> 523 </ns6:representedOrganization> 524 </ns6:assignedAuthor> 525 </ns6:author> 526 <ns6:custodian> 527 <ns6:assignedCustodian> 528 <ns6:representedCustodianOrganization> 529 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 530 <ns6:name>Studio Medico</ns6:name> 531 </ns6:representedCustodianOrganization> 532 </ns6:assignedCustodian> 533 </ns6:custodian> 534 <ns6:legalAuthenticator> 535 <ns6:time value="20140722203128+0100"/> 536 <ns6:signatureCode code="S"/> 537 <ns6:assignedEntity> 538 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 539 </ns6:assignedEntity> 540 </ns6:legalAuthenticator> 541 <ns6:componentOf typeCode="COMP"> 542 <ns6:encompassingEncounter> 543 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140722203124.c0400bdc-4729-4fa2-a970-3c2f9f01d4f8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 544 <ns6:effectiveTime value="20140722203124+0100"/> 545 </ns6:encompassingEncounter> 546 </ns6:componentOf> 547 <ns6:component> 548 <ns6:structuredBody> 549 <ns6:component> 550 <ns6:section> 551 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 552 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 553 <ns6:text> 554 <ns6:list> 555 <ns6:item> 556 <ns6:caption>Codice Diagnosi</ns6:caption> 557 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 558 </ns6:content> 559 </ns6:item> 560 </ns6:list> 561 <ns6:list> 562 <ns6:item> 563 <ns6:caption>Descrizione Diagnosi</ns6:caption> 564 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 565 </ns6:content> 566 </ns6:item> 567 </ns6:list> 568 <ns6:list> 569 <ns6:item> 570 <ns6:caption>Codice Percorso</ns6:caption> 571 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 572 </ns6:content> 573 </ns6:item> 574 </ns6:list> 575 <ns6:list> 576 <ns6:item> 577 <ns6:caption>Descrizione Percorso</ns6:caption> 578 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 579 </ns6:content> 580 </ns6:item> 581 </ns6:list> 582 </ns6:text> 583 </ns6:section> 584 </ns6:component> 585 </ns6:structuredBody> 586 </ns6:component> 587 </ns6:ClinicalDocument> 588 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 589 <ns6:realmCode code="IT"/> 590 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 591 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 592 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140723110656.b2c09e2a-adf8-44e4-8a88-0af72fc8e84b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 593 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 594 <ns6:effectiveTime value="20140723110656+0100"/> 595 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 596 <ns6:languageCode code="it-IT"/> 597 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140723110656.b2c09e2a-adf8-44e4-8a88-0af72fc8e84b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 598 <ns6:versionNumber value="1"/> 599 <ns6:recordTarget> 600 <ns6:patientRole> 601 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 602 </ns6:patientRole> 603 </ns6:recordTarget> 604 <ns6:author> 605 <ns6:time value="20140723110656+0100"/> 606 <ns6:assignedAuthor> 607 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 608 <ns6:assignedPerson> 609 <ns6:name> 610 <ns6:given>Antonio</ns6:given> 611 <ns6:family>Alberti</ns6:family> 612 <ns6:prefix>MMG</ns6:prefix> 613 </ns6:name> 614 </ns6:assignedPerson> 615 <ns6:representedOrganization> 616 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 617 <ns6:name>Studio Medico</ns6:name> 618 <ns6:addr>VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:addr> 619 </ns6:representedOrganization> 620 </ns6:assignedAuthor> 621 </ns6:author> 622 <ns6:custodian> 623 <ns6:assignedCustodian> 624 <ns6:representedCustodianOrganization> 625 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 626 <ns6:name>Studio Medico</ns6:name> 627 </ns6:representedCustodianOrganization> 628 </ns6:assignedCustodian> 629 </ns6:custodian> 630 <ns6:legalAuthenticator> 631 <ns6:time value="20140723110656+0100"/> 632 <ns6:signatureCode code="S"/> 633 <ns6:assignedEntity> 634 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 635 </ns6:assignedEntity> 636 </ns6:legalAuthenticator> 637 <ns6:componentOf typeCode="COMP"> 638 <ns6:encompassingEncounter> 639 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140723110652.be333203-2ce3-4d12-b934-563e62f328dc" root="2.16.840.1.113883.2.9.3.12.4.4"/> 640 <ns6:effectiveTime value="20140723110652+0100"/> 641 </ns6:encompassingEncounter> 642 </ns6:componentOf> 643 <ns6:component> 644 <ns6:structuredBody> 645 <ns6:component> 646 <ns6:section> 647 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 648 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 649 <ns6:text> 650 <ns6:list> 651 <ns6:item> 652 <ns6:caption>Codice Diagnosi</ns6:caption> 653 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 654 </ns6:content> 655 </ns6:item> 656 </ns6:list> 657 <ns6:list> 658 <ns6:item> 659 <ns6:caption>Descrizione Diagnosi</ns6:caption> 660 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 661 </ns6:content> 662 </ns6:item> 663 </ns6:list> 664 <ns6:list> 665 <ns6:item> 666 <ns6:caption>Codice Percorso</ns6:caption> 667 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 668 </ns6:content> 669 </ns6:item> 670 </ns6:list> 671 <ns6:list> 672 <ns6:item> 673 <ns6:caption>Descrizione Percorso</ns6:caption> 674 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 675 </ns6:content> 676 </ns6:item> 677 </ns6:list> 678 </ns6:text> 679 </ns6:section> 680 </ns6:component> 681 </ns6:structuredBody> 682 </ns6:component> 683 </ns6:ClinicalDocument> 684 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 685 <ns6:realmCode code="IT"/> 686 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 687 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 688 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121336.87445562-b11c-4c65-b6f3-fb3a27d850f2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 689 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 690 <ns6:effectiveTime value="20140724121336+0100"/> 691 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 692 <ns6:languageCode code="it-IT"/> 693 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121336.87445562-b11c-4c65-b6f3-fb3a27d850f2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 694 <ns6:versionNumber value="1"/> 695 <ns6:recordTarget> 696 <ns6:patientRole> 697 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 698 </ns6:patientRole> 699 </ns6:recordTarget> 700 <ns6:author> 701 <ns6:time value="20140724121336+0100"/> 702 <ns6:assignedAuthor> 703 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 704 <ns6:assignedPerson> 705 <ns6:name> 706 <ns6:given>Antonio</ns6:given> 707 <ns6:family>Alberti</ns6:family> 708 <ns6:prefix>MMG</ns6:prefix> 709 </ns6:name> 710 </ns6:assignedPerson> 711 <ns6:representedOrganization> 712 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 713 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 714 <ns6:addr/> 715 </ns6:representedOrganization> 716 </ns6:assignedAuthor> 717 </ns6:author> 718 <ns6:custodian> 719 <ns6:assignedCustodian> 720 <ns6:representedCustodianOrganization> 721 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 722 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 723 </ns6:representedCustodianOrganization> 724 </ns6:assignedCustodian> 725 </ns6:custodian> 726 <ns6:legalAuthenticator> 727 <ns6:time value="20140724121336+0100"/> 728 <ns6:signatureCode code="S"/> 729 <ns6:assignedEntity> 730 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 731 </ns6:assignedEntity> 732 </ns6:legalAuthenticator> 733 <ns6:componentOf typeCode="COMP"> 734 <ns6:encompassingEncounter> 735 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121332.3eb88d0e-1692-4884-aa8f-b2892d0c1536" root="2.16.840.1.113883.2.9.3.12.4.4"/> 736 <ns6:effectiveTime value="20140724121332+0100"/> 737 </ns6:encompassingEncounter> 738 </ns6:componentOf> 739 <ns6:component> 740 <ns6:structuredBody> 741 <ns6:component> 742 <ns6:section> 743 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 744 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 745 <ns6:text> 746 <ns6:list> 747 <ns6:item> 748 <ns6:caption>Codice Diagnosi</ns6:caption> 749 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 750 </ns6:content> 751 </ns6:item> 752 </ns6:list> 753 <ns6:list> 754 <ns6:item> 755 <ns6:caption>Descrizione Diagnosi</ns6:caption> 756 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 757 </ns6:content> 758 </ns6:item> 759 </ns6:list> 760 <ns6:list> 761 <ns6:item> 762 <ns6:caption>Codice Percorso</ns6:caption> 763 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 764 </ns6:content> 765 </ns6:item> 766 </ns6:list> 767 <ns6:list> 768 <ns6:item> 769 <ns6:caption>Descrizione Percorso</ns6:caption> 770 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 771 </ns6:content> 772 </ns6:item> 773 </ns6:list> 774 </ns6:text> 775 </ns6:section> 776 </ns6:component> 777 </ns6:structuredBody> 778 </ns6:component> 779 </ns6:ClinicalDocument> 780 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 781 <ns6:realmCode code="IT"/> 782 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 783 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 784 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121424.5103004d-1f4e-4e63-812b-7927e65166cf" root="2.16.840.1.113883.2.9.3.12.4.4"/> 785 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 786 <ns6:effectiveTime value="20140724121424+0100"/> 787 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 788 <ns6:languageCode code="it-IT"/> 789 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121424.5103004d-1f4e-4e63-812b-7927e65166cf" root="2.16.840.1.113883.2.9.3.12.4.4"/> 790 <ns6:versionNumber value="1"/> 791 <ns6:recordTarget> 792 <ns6:patientRole> 793 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 794 </ns6:patientRole> 795 </ns6:recordTarget> 796 <ns6:author> 797 <ns6:time value="20140724121424+0100"/> 798 <ns6:assignedAuthor> 799 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 800 <ns6:assignedPerson> 801 <ns6:name> 802 <ns6:given>Antonio</ns6:given> 803 <ns6:family>Alberti</ns6:family> 804 <ns6:prefix>MMG</ns6:prefix> 805 </ns6:name> 806 </ns6:assignedPerson> 807 <ns6:representedOrganization> 808 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 809 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 810 <ns6:addr/> 811 </ns6:representedOrganization> 812 </ns6:assignedAuthor> 813 </ns6:author> 814 <ns6:custodian> 815 <ns6:assignedCustodian> 816 <ns6:representedCustodianOrganization> 817 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 818 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 819 </ns6:representedCustodianOrganization> 820 </ns6:assignedCustodian> 821 </ns6:custodian> 822 <ns6:legalAuthenticator> 823 <ns6:time value="20140724121424+0100"/> 824 <ns6:signatureCode code="S"/> 825 <ns6:assignedEntity> 826 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 827 </ns6:assignedEntity> 828 </ns6:legalAuthenticator> 829 <ns6:componentOf typeCode="COMP"> 830 <ns6:encompassingEncounter> 831 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121420.7d52ca31-0ee0-49b0-b5c6-ea37b921c19f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 832 <ns6:effectiveTime value="20140724121420+0100"/> 833 </ns6:encompassingEncounter> 834 </ns6:componentOf> 835 <ns6:component> 836 <ns6:structuredBody> 837 <ns6:component> 838 <ns6:section> 839 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 840 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 841 <ns6:text> 842 <ns6:list> 843 <ns6:item> 844 <ns6:caption>Codice Diagnosi</ns6:caption> 845 <ns6:content>codiceDiagnosi<ns6:content>COD_0.3</ns6:content> 846 </ns6:content> 847 </ns6:item> 848 </ns6:list> 849 <ns6:list> 850 <ns6:item> 851 <ns6:caption>Descrizione Diagnosi</ns6:caption> 852 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA</ns6:content> 853 </ns6:content> 854 </ns6:item> 855 </ns6:list> 856 <ns6:list> 857 <ns6:item> 858 <ns6:caption>Codice Percorso</ns6:caption> 859 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 860 </ns6:content> 861 </ns6:item> 862 </ns6:list> 863 <ns6:list> 864 <ns6:item> 865 <ns6:caption>Descrizione Percorso</ns6:caption> 866 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 867 </ns6:content> 868 </ns6:item> 869 </ns6:list> 870 </ns6:text> 871 </ns6:section> 872 </ns6:component> 873 </ns6:structuredBody> 874 </ns6:component> 875 </ns6:ClinicalDocument> 876 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 877 <ns6:realmCode code="IT"/> 878 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 879 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 880 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121523.45153d8b-f8e7-42a2-b209-ebfec0a79f0c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 881 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 882 <ns6:effectiveTime value="20140724121523+0100"/> 883 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 884 <ns6:languageCode code="it-IT"/> 885 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121523.45153d8b-f8e7-42a2-b209-ebfec0a79f0c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 886 <ns6:versionNumber value="1"/> 887 <ns6:recordTarget> 888 <ns6:patientRole> 889 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 890 </ns6:patientRole> 891 </ns6:recordTarget> 892 <ns6:author> 893 <ns6:time value="20140724121523+0100"/> 894 <ns6:assignedAuthor> 895 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 896 <ns6:assignedPerson> 897 <ns6:name> 898 <ns6:given>Antonio</ns6:given> 899 <ns6:family>Alberti</ns6:family> 900 <ns6:prefix>MMG</ns6:prefix> 901 </ns6:name> 902 </ns6:assignedPerson> 903 <ns6:representedOrganization> 904 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 905 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 906 <ns6:addr/> 907 </ns6:representedOrganization> 908 </ns6:assignedAuthor> 909 </ns6:author> 910 <ns6:custodian> 911 <ns6:assignedCustodian> 912 <ns6:representedCustodianOrganization> 913 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 914 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 915 </ns6:representedCustodianOrganization> 916 </ns6:assignedCustodian> 917 </ns6:custodian> 918 <ns6:legalAuthenticator> 919 <ns6:time value="20140724121523+0100"/> 920 <ns6:signatureCode code="S"/> 921 <ns6:assignedEntity> 922 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 923 </ns6:assignedEntity> 924 </ns6:legalAuthenticator> 925 <ns6:componentOf typeCode="COMP"> 926 <ns6:encompassingEncounter> 927 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121519.ac41cb55-0a0c-489e-9175-a2b2b7f957a6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 928 <ns6:effectiveTime value="20140724121519+0100"/> 929 </ns6:encompassingEncounter> 930 </ns6:componentOf> 931 <ns6:component> 932 <ns6:structuredBody> 933 <ns6:component> 934 <ns6:section> 935 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 936 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 937 <ns6:text> 938 <ns6:list> 939 <ns6:item> 940 <ns6:caption>Codice Diagnosi</ns6:caption> 941 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 942 </ns6:content> 943 </ns6:item> 944 </ns6:list> 945 <ns6:list> 946 <ns6:item> 947 <ns6:caption>Descrizione Diagnosi</ns6:caption> 948 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 949 </ns6:content> 950 </ns6:item> 951 </ns6:list> 952 <ns6:list> 953 <ns6:item> 954 <ns6:caption>Codice Percorso</ns6:caption> 955 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 956 </ns6:content> 957 </ns6:item> 958 </ns6:list> 959 <ns6:list> 960 <ns6:item> 961 <ns6:caption>Descrizione Percorso</ns6:caption> 962 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 963 </ns6:content> 964 </ns6:item> 965 </ns6:list> 966 </ns6:text> 967 </ns6:section> 968 </ns6:component> 969 </ns6:structuredBody> 970 </ns6:component> 971 </ns6:ClinicalDocument> 972 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 973 <ns6:realmCode code="IT"/> 974 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 975 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 976 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121637.95c775af-72fc-495d-b74c-7f8a5b88743d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 977 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 978 <ns6:effectiveTime value="20140724121637+0100"/> 979 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 980 <ns6:languageCode code="it-IT"/> 981 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121637.95c775af-72fc-495d-b74c-7f8a5b88743d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 982 <ns6:versionNumber value="1"/> 983 <ns6:recordTarget> 984 <ns6:patientRole> 985 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 986 </ns6:patientRole> 987 </ns6:recordTarget> 988 <ns6:author> 989 <ns6:time value="20140724121637+0100"/> 990 <ns6:assignedAuthor> 991 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 992 <ns6:assignedPerson> 993 <ns6:name> 994 <ns6:given>Antonio</ns6:given> 995 <ns6:family>Alberti</ns6:family> 996 <ns6:prefix>MMG</ns6:prefix> 997 </ns6:name> 998 </ns6:assignedPerson> 999 <ns6:representedOrganization> 1000 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1001 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1002 <ns6:addr/> 1003 </ns6:representedOrganization> 1004 </ns6:assignedAuthor> 1005 </ns6:author> 1006 <ns6:custodian> 1007 <ns6:assignedCustodian> 1008 <ns6:representedCustodianOrganization> 1009 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1010 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1011 </ns6:representedCustodianOrganization> 1012 </ns6:assignedCustodian> 1013 </ns6:custodian> 1014 <ns6:legalAuthenticator> 1015 <ns6:time value="20140724121637+0100"/> 1016 <ns6:signatureCode code="S"/> 1017 <ns6:assignedEntity> 1018 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1019 </ns6:assignedEntity> 1020 </ns6:legalAuthenticator> 1021 <ns6:componentOf typeCode="COMP"> 1022 <ns6:encompassingEncounter> 1023 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121633.0cff0bea-8d94-459c-977b-e99ca3b9b23c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1024 <ns6:effectiveTime value="20140724121633+0100"/> 1025 </ns6:encompassingEncounter> 1026 </ns6:componentOf> 1027 <ns6:component> 1028 <ns6:structuredBody> 1029 <ns6:component> 1030 <ns6:section> 1031 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 1032 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1033 <ns6:text> 1034 <ns6:list> 1035 <ns6:item> 1036 <ns6:caption>Codice Diagnosi</ns6:caption> 1037 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 1038 </ns6:content> 1039 </ns6:item> 1040 </ns6:list> 1041 <ns6:list> 1042 <ns6:item> 1043 <ns6:caption>Descrizione Diagnosi</ns6:caption> 1044 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 1045 </ns6:content> 1046 </ns6:item> 1047 </ns6:list> 1048 <ns6:list> 1049 <ns6:item> 1050 <ns6:caption>Codice Percorso</ns6:caption> 1051 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 1052 </ns6:content> 1053 </ns6:item> 1054 </ns6:list> 1055 <ns6:list> 1056 <ns6:item> 1057 <ns6:caption>Descrizione Percorso</ns6:caption> 1058 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 1059 </ns6:content> 1060 </ns6:item> 1061 </ns6:list> 1062 </ns6:text> 1063 </ns6:section> 1064 </ns6:component> 1065 </ns6:structuredBody> 1066 </ns6:component> 1067 </ns6:ClinicalDocument> 1068 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 1069 <ns6:realmCode code="IT"/> 1070 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 1071 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 1072 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121859.6dc9416b-f5bf-4d56-bdaa-d531d433fa8b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1073 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 1074 <ns6:effectiveTime value="20140724121859+0100"/> 1075 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 1076 <ns6:languageCode code="it-IT"/> 1077 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121859.6dc9416b-f5bf-4d56-bdaa-d531d433fa8b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1078 <ns6:versionNumber value="1"/> 1079 <ns6:recordTarget> 1080 <ns6:patientRole> 1081 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 1082 </ns6:patientRole> 1083 </ns6:recordTarget> 1084 <ns6:author> 1085 <ns6:time value="20140724121859+0100"/> 1086 <ns6:assignedAuthor> 1087 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1088 <ns6:assignedPerson> 1089 <ns6:name> 1090 <ns6:given>Antonio</ns6:given> 1091 <ns6:family>Alberti</ns6:family> 1092 <ns6:prefix>MMG</ns6:prefix> 1093 </ns6:name> 1094 </ns6:assignedPerson> 1095 <ns6:representedOrganization> 1096 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1097 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1098 <ns6:addr/> 1099 </ns6:representedOrganization> 1100 </ns6:assignedAuthor> 1101 </ns6:author> 1102 <ns6:custodian> 1103 <ns6:assignedCustodian> 1104 <ns6:representedCustodianOrganization> 1105 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1106 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1107 </ns6:representedCustodianOrganization> 1108 </ns6:assignedCustodian> 1109 </ns6:custodian> 1110 <ns6:legalAuthenticator> 1111 <ns6:time value="20140724121859+0100"/> 1112 <ns6:signatureCode code="S"/> 1113 <ns6:assignedEntity> 1114 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1115 </ns6:assignedEntity> 1116 </ns6:legalAuthenticator> 1117 <ns6:componentOf typeCode="COMP"> 1118 <ns6:encompassingEncounter> 1119 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724121855.77d9951a-1d53-4406-bdd4-ee66b58d0940" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1120 <ns6:effectiveTime value="20140724121855+0100"/> 1121 </ns6:encompassingEncounter> 1122 </ns6:componentOf> 1123 <ns6:component> 1124 <ns6:structuredBody> 1125 <ns6:component> 1126 <ns6:section> 1127 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 1128 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1129 <ns6:text> 1130 <ns6:list> 1131 <ns6:item> 1132 <ns6:caption>Codice Diagnosi</ns6:caption> 1133 <ns6:content>codiceDiagnosi<ns6:content>COD_3.1</ns6:content> 1134 </ns6:content> 1135 </ns6:item> 1136 </ns6:list> 1137 <ns6:list> 1138 <ns6:item> 1139 <ns6:caption>Descrizione Diagnosi</ns6:caption> 1140 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA A GRAPPOLO</ns6:content> 1141 </ns6:content> 1142 </ns6:item> 1143 </ns6:list> 1144 <ns6:list> 1145 <ns6:item> 1146 <ns6:caption>Codice Percorso</ns6:caption> 1147 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 1148 </ns6:content> 1149 </ns6:item> 1150 </ns6:list> 1151 <ns6:list> 1152 <ns6:item> 1153 <ns6:caption>Descrizione Percorso</ns6:caption> 1154 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 1155 </ns6:content> 1156 </ns6:item> 1157 </ns6:list> 1158 </ns6:text> 1159 </ns6:section> 1160 </ns6:component> 1161 </ns6:structuredBody> 1162 </ns6:component> 1163 </ns6:ClinicalDocument> 1164 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 1165 <ns6:realmCode code="IT"/> 1166 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 1167 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 1168 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724122301.8a169444-4390-400f-9ef0-0f730ccf57d0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1169 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 1170 <ns6:effectiveTime value="20140724122301+0100"/> 1171 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 1172 <ns6:languageCode code="it-IT"/> 1173 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724122301.8a169444-4390-400f-9ef0-0f730ccf57d0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1174 <ns6:versionNumber value="1"/> 1175 <ns6:recordTarget> 1176 <ns6:patientRole> 1177 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 1178 </ns6:patientRole> 1179 </ns6:recordTarget> 1180 <ns6:author> 1181 <ns6:time value="20140724122301+0100"/> 1182 <ns6:assignedAuthor> 1183 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1184 <ns6:assignedPerson> 1185 <ns6:name> 1186 <ns6:given>Antonio</ns6:given> 1187 <ns6:family>Alberti</ns6:family> 1188 <ns6:prefix>MMG</ns6:prefix> 1189 </ns6:name> 1190 </ns6:assignedPerson> 1191 <ns6:representedOrganization> 1192 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1193 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1194 <ns6:addr/> 1195 </ns6:representedOrganization> 1196 </ns6:assignedAuthor> 1197 </ns6:author> 1198 <ns6:custodian> 1199 <ns6:assignedCustodian> 1200 <ns6:representedCustodianOrganization> 1201 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1202 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1203 </ns6:representedCustodianOrganization> 1204 </ns6:assignedCustodian> 1205 </ns6:custodian> 1206 <ns6:legalAuthenticator> 1207 <ns6:time value="20140724122301+0100"/> 1208 <ns6:signatureCode code="S"/> 1209 <ns6:assignedEntity> 1210 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1211 </ns6:assignedEntity> 1212 </ns6:legalAuthenticator> 1213 <ns6:componentOf typeCode="COMP"> 1214 <ns6:encompassingEncounter> 1215 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724122255.796f9763-94d6-4b50-89cb-3ae87e4a6724" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1216 <ns6:effectiveTime value="20140724122255+0100"/> 1217 </ns6:encompassingEncounter> 1218 </ns6:componentOf> 1219 <ns6:component> 1220 <ns6:structuredBody> 1221 <ns6:component> 1222 <ns6:section> 1223 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 1224 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1225 <ns6:text> 1226 <ns6:list> 1227 <ns6:item> 1228 <ns6:caption>Codice Diagnosi</ns6:caption> 1229 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 1230 </ns6:content> 1231 </ns6:item> 1232 </ns6:list> 1233 <ns6:list> 1234 <ns6:item> 1235 <ns6:caption>Descrizione Diagnosi</ns6:caption> 1236 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 1237 </ns6:content> 1238 </ns6:item> 1239 </ns6:list> 1240 <ns6:list> 1241 <ns6:item> 1242 <ns6:caption>Codice Percorso</ns6:caption> 1243 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 1244 </ns6:content> 1245 </ns6:item> 1246 </ns6:list> 1247 <ns6:list> 1248 <ns6:item> 1249 <ns6:caption>Descrizione Percorso</ns6:caption> 1250 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 1251 </ns6:content> 1252 </ns6:item> 1253 </ns6:list> 1254 </ns6:text> 1255 </ns6:section> 1256 </ns6:component> 1257 </ns6:structuredBody> 1258 </ns6:component> 1259 </ns6:ClinicalDocument> 1260 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 1261 <ns6:realmCode code="IT"/> 1262 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 1263 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 1264 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724122319.72e6e1c8-1821-4f6d-8fe2-bf3cb2901c53" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1265 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 1266 <ns6:effectiveTime value="20140724122319+0100"/> 1267 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 1268 <ns6:languageCode code="it-IT"/> 1269 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724122319.72e6e1c8-1821-4f6d-8fe2-bf3cb2901c53" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1270 <ns6:versionNumber value="1"/> 1271 <ns6:recordTarget> 1272 <ns6:patientRole> 1273 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 1274 </ns6:patientRole> 1275 </ns6:recordTarget> 1276 <ns6:author> 1277 <ns6:time value="20140724122319+0100"/> 1278 <ns6:assignedAuthor> 1279 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1280 <ns6:assignedPerson> 1281 <ns6:name> 1282 <ns6:given>Antonio</ns6:given> 1283 <ns6:family>Alberti</ns6:family> 1284 <ns6:prefix>MMG</ns6:prefix> 1285 </ns6:name> 1286 </ns6:assignedPerson> 1287 <ns6:representedOrganization> 1288 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1289 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1290 <ns6:addr/> 1291 </ns6:representedOrganization> 1292 </ns6:assignedAuthor> 1293 </ns6:author> 1294 <ns6:custodian> 1295 <ns6:assignedCustodian> 1296 <ns6:representedCustodianOrganization> 1297 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1298 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1299 </ns6:representedCustodianOrganization> 1300 </ns6:assignedCustodian> 1301 </ns6:custodian> 1302 <ns6:legalAuthenticator> 1303 <ns6:time value="20140724122319+0100"/> 1304 <ns6:signatureCode code="S"/> 1305 <ns6:assignedEntity> 1306 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1307 </ns6:assignedEntity> 1308 </ns6:legalAuthenticator> 1309 <ns6:componentOf typeCode="COMP"> 1310 <ns6:encompassingEncounter> 1311 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724122315.689463bb-2b04-4838-b20c-427632fcf6a9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1312 <ns6:effectiveTime value="20140724122315+0100"/> 1313 </ns6:encompassingEncounter> 1314 </ns6:componentOf> 1315 <ns6:component> 1316 <ns6:structuredBody> 1317 <ns6:component> 1318 <ns6:section> 1319 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 1320 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1321 <ns6:text> 1322 <ns6:list> 1323 <ns6:item> 1324 <ns6:caption>Codice Diagnosi</ns6:caption> 1325 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 1326 </ns6:content> 1327 </ns6:item> 1328 </ns6:list> 1329 <ns6:list> 1330 <ns6:item> 1331 <ns6:caption>Descrizione Diagnosi</ns6:caption> 1332 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 1333 </ns6:content> 1334 </ns6:item> 1335 </ns6:list> 1336 <ns6:list> 1337 <ns6:item> 1338 <ns6:caption>Codice Percorso</ns6:caption> 1339 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 1340 </ns6:content> 1341 </ns6:item> 1342 </ns6:list> 1343 <ns6:list> 1344 <ns6:item> 1345 <ns6:caption>Descrizione Percorso</ns6:caption> 1346 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 1347 </ns6:content> 1348 </ns6:item> 1349 </ns6:list> 1350 </ns6:text> 1351 </ns6:section> 1352 </ns6:component> 1353 </ns6:structuredBody> 1354 </ns6:component> 1355 </ns6:ClinicalDocument> 1356 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 1357 <ns6:realmCode code="IT"/> 1358 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 1359 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 1360 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724122429.11887d7c-7b6e-4c0b-9c54-e10f6e9b85c7" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1361 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 1362 <ns6:effectiveTime value="20140724122429+0100"/> 1363 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 1364 <ns6:languageCode code="it-IT"/> 1365 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724122429.11887d7c-7b6e-4c0b-9c54-e10f6e9b85c7" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1366 <ns6:versionNumber value="1"/> 1367 <ns6:recordTarget> 1368 <ns6:patientRole> 1369 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 1370 </ns6:patientRole> 1371 </ns6:recordTarget> 1372 <ns6:author> 1373 <ns6:time value="20140724122429+0100"/> 1374 <ns6:assignedAuthor> 1375 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1376 <ns6:assignedPerson> 1377 <ns6:name> 1378 <ns6:given>Antonio</ns6:given> 1379 <ns6:family>Alberti</ns6:family> 1380 <ns6:prefix>MMG</ns6:prefix> 1381 </ns6:name> 1382 </ns6:assignedPerson> 1383 <ns6:representedOrganization> 1384 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1385 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1386 <ns6:addr/> 1387 </ns6:representedOrganization> 1388 </ns6:assignedAuthor> 1389 </ns6:author> 1390 <ns6:custodian> 1391 <ns6:assignedCustodian> 1392 <ns6:representedCustodianOrganization> 1393 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1394 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1395 </ns6:representedCustodianOrganization> 1396 </ns6:assignedCustodian> 1397 </ns6:custodian> 1398 <ns6:legalAuthenticator> 1399 <ns6:time value="20140724122429+0100"/> 1400 <ns6:signatureCode code="S"/> 1401 <ns6:assignedEntity> 1402 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1403 </ns6:assignedEntity> 1404 </ns6:legalAuthenticator> 1405 <ns6:componentOf typeCode="COMP"> 1406 <ns6:encompassingEncounter> 1407 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724122425.0d49b298-9278-4a7f-92eb-cc98b3e9e808" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1408 <ns6:effectiveTime value="20140724122425+0100"/> 1409 </ns6:encompassingEncounter> 1410 </ns6:componentOf> 1411 <ns6:component> 1412 <ns6:structuredBody> 1413 <ns6:component> 1414 <ns6:section> 1415 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 1416 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1417 <ns6:text> 1418 <ns6:list> 1419 <ns6:item> 1420 <ns6:caption>Codice Diagnosi</ns6:caption> 1421 <ns6:content>codiceDiagnosi<ns6:content>COD_1.1</ns6:content> 1422 </ns6:content> 1423 </ns6:item> 1424 </ns6:list> 1425 <ns6:list> 1426 <ns6:item> 1427 <ns6:caption>Descrizione Diagnosi</ns6:caption> 1428 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE EMICRANIA SENZA AURA</ns6:content> 1429 </ns6:content> 1430 </ns6:item> 1431 </ns6:list> 1432 <ns6:list> 1433 <ns6:item> 1434 <ns6:caption>Codice Percorso</ns6:caption> 1435 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 1436 </ns6:content> 1437 </ns6:item> 1438 </ns6:list> 1439 <ns6:list> 1440 <ns6:item> 1441 <ns6:caption>Descrizione Percorso</ns6:caption> 1442 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 1443 </ns6:content> 1444 </ns6:item> 1445 </ns6:list> 1446 </ns6:text> 1447 </ns6:section> 1448 </ns6:component> 1449 </ns6:structuredBody> 1450 </ns6:component> 1451 </ns6:ClinicalDocument> 1452 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 1453 <ns6:realmCode code="IT"/> 1454 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 1455 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 1456 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724152642.a637f0cc-9fdd-47a8-bf21-72be56a2770b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1457 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 1458 <ns6:effectiveTime value="20140724152642+0100"/> 1459 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 1460 <ns6:languageCode code="it-IT"/> 1461 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724152642.a637f0cc-9fdd-47a8-bf21-72be56a2770b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1462 <ns6:versionNumber value="1"/> 1463 <ns6:recordTarget> 1464 <ns6:patientRole> 1465 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 1466 </ns6:patientRole> 1467 </ns6:recordTarget> 1468 <ns6:author> 1469 <ns6:time value="20140724152642+0100"/> 1470 <ns6:assignedAuthor> 1471 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1472 <ns6:assignedPerson> 1473 <ns6:name> 1474 <ns6:given>Antonio</ns6:given> 1475 <ns6:family>Alberti</ns6:family> 1476 <ns6:prefix>MMG</ns6:prefix> 1477 </ns6:name> 1478 </ns6:assignedPerson> 1479 <ns6:representedOrganization> 1480 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1481 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1482 <ns6:addr/> 1483 </ns6:representedOrganization> 1484 </ns6:assignedAuthor> 1485 </ns6:author> 1486 <ns6:custodian> 1487 <ns6:assignedCustodian> 1488 <ns6:representedCustodianOrganization> 1489 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1490 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1491 </ns6:representedCustodianOrganization> 1492 </ns6:assignedCustodian> 1493 </ns6:custodian> 1494 <ns6:legalAuthenticator> 1495 <ns6:time value="20140724152642+0100"/> 1496 <ns6:signatureCode code="S"/> 1497 <ns6:assignedEntity> 1498 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1499 </ns6:assignedEntity> 1500 </ns6:legalAuthenticator> 1501 <ns6:componentOf typeCode="COMP"> 1502 <ns6:encompassingEncounter> 1503 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724152638.310922cd-0720-4b92-a351-e6be886158dc" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1504 <ns6:effectiveTime value="20140724152638+0100"/> 1505 </ns6:encompassingEncounter> 1506 </ns6:componentOf> 1507 <ns6:component> 1508 <ns6:structuredBody> 1509 <ns6:component> 1510 <ns6:section> 1511 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 1512 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1513 <ns6:text> 1514 <ns6:list> 1515 <ns6:item> 1516 <ns6:caption>Codice Diagnosi</ns6:caption> 1517 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 1518 </ns6:content> 1519 </ns6:item> 1520 </ns6:list> 1521 <ns6:list> 1522 <ns6:item> 1523 <ns6:caption>Descrizione Diagnosi</ns6:caption> 1524 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 1525 </ns6:content> 1526 </ns6:item> 1527 </ns6:list> 1528 <ns6:list> 1529 <ns6:item> 1530 <ns6:caption>Codice Percorso</ns6:caption> 1531 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 1532 </ns6:content> 1533 </ns6:item> 1534 </ns6:list> 1535 <ns6:list> 1536 <ns6:item> 1537 <ns6:caption>Descrizione Percorso</ns6:caption> 1538 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 1539 </ns6:content> 1540 </ns6:item> 1541 </ns6:list> 1542 </ns6:text> 1543 </ns6:section> 1544 </ns6:component> 1545 </ns6:structuredBody> 1546 </ns6:component> 1547 </ns6:ClinicalDocument> 1548 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 1549 <ns6:realmCode code="IT"/> 1550 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 1551 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 1552 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724152658.80d49ecc-43e9-4c68-bd48-f57427d0d549" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1553 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 1554 <ns6:effectiveTime value="20140724152658+0100"/> 1555 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 1556 <ns6:languageCode code="it-IT"/> 1557 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724152658.80d49ecc-43e9-4c68-bd48-f57427d0d549" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1558 <ns6:versionNumber value="1"/> 1559 <ns6:recordTarget> 1560 <ns6:patientRole> 1561 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 1562 </ns6:patientRole> 1563 </ns6:recordTarget> 1564 <ns6:author> 1565 <ns6:time value="20140724152658+0100"/> 1566 <ns6:assignedAuthor> 1567 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1568 <ns6:assignedPerson> 1569 <ns6:name> 1570 <ns6:given>Antonio</ns6:given> 1571 <ns6:family>Alberti</ns6:family> 1572 <ns6:prefix>MMG</ns6:prefix> 1573 </ns6:name> 1574 </ns6:assignedPerson> 1575 <ns6:representedOrganization> 1576 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1577 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1578 <ns6:addr/> 1579 </ns6:representedOrganization> 1580 </ns6:assignedAuthor> 1581 </ns6:author> 1582 <ns6:custodian> 1583 <ns6:assignedCustodian> 1584 <ns6:representedCustodianOrganization> 1585 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1586 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1587 </ns6:representedCustodianOrganization> 1588 </ns6:assignedCustodian> 1589 </ns6:custodian> 1590 <ns6:legalAuthenticator> 1591 <ns6:time value="20140724152658+0100"/> 1592 <ns6:signatureCode code="S"/> 1593 <ns6:assignedEntity> 1594 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1595 </ns6:assignedEntity> 1596 </ns6:legalAuthenticator> 1597 <ns6:componentOf typeCode="COMP"> 1598 <ns6:encompassingEncounter> 1599 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724152654.89c582eb-3f1b-4e6e-be81-d625596fe74b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1600 <ns6:effectiveTime value="20140724152654+0100"/> 1601 </ns6:encompassingEncounter> 1602 </ns6:componentOf> 1603 <ns6:component> 1604 <ns6:structuredBody> 1605 <ns6:component> 1606 <ns6:section> 1607 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 1608 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1609 <ns6:text> 1610 <ns6:list> 1611 <ns6:item> 1612 <ns6:caption>Codice Diagnosi</ns6:caption> 1613 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 1614 </ns6:content> 1615 </ns6:item> 1616 </ns6:list> 1617 <ns6:list> 1618 <ns6:item> 1619 <ns6:caption>Descrizione Diagnosi</ns6:caption> 1620 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 1621 </ns6:content> 1622 </ns6:item> 1623 </ns6:list> 1624 <ns6:list> 1625 <ns6:item> 1626 <ns6:caption>Codice Percorso</ns6:caption> 1627 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 1628 </ns6:content> 1629 </ns6:item> 1630 </ns6:list> 1631 <ns6:list> 1632 <ns6:item> 1633 <ns6:caption>Descrizione Percorso</ns6:caption> 1634 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 1635 </ns6:content> 1636 </ns6:item> 1637 </ns6:list> 1638 </ns6:text> 1639 </ns6:section> 1640 </ns6:component> 1641 </ns6:structuredBody> 1642 </ns6:component> 1643 </ns6:ClinicalDocument> 1644 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 1645 <ns6:realmCode code="IT"/> 1646 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 1647 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 1648 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724152859.4882673e-8015-46b0-868b-d84a2e98080f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1649 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 1650 <ns6:effectiveTime value="20140724152859+0100"/> 1651 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 1652 <ns6:languageCode code="it-IT"/> 1653 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724152859.4882673e-8015-46b0-868b-d84a2e98080f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1654 <ns6:versionNumber value="1"/> 1655 <ns6:recordTarget> 1656 <ns6:patientRole> 1657 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 1658 </ns6:patientRole> 1659 </ns6:recordTarget> 1660 <ns6:author> 1661 <ns6:time value="20140724152859+0100"/> 1662 <ns6:assignedAuthor> 1663 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1664 <ns6:assignedPerson> 1665 <ns6:name> 1666 <ns6:given>Antonio</ns6:given> 1667 <ns6:family>Alberti</ns6:family> 1668 <ns6:prefix>MMG</ns6:prefix> 1669 </ns6:name> 1670 </ns6:assignedPerson> 1671 <ns6:representedOrganization> 1672 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1673 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1674 <ns6:addr/> 1675 </ns6:representedOrganization> 1676 </ns6:assignedAuthor> 1677 </ns6:author> 1678 <ns6:custodian> 1679 <ns6:assignedCustodian> 1680 <ns6:representedCustodianOrganization> 1681 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1682 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1683 </ns6:representedCustodianOrganization> 1684 </ns6:assignedCustodian> 1685 </ns6:custodian> 1686 <ns6:legalAuthenticator> 1687 <ns6:time value="20140724152859+0100"/> 1688 <ns6:signatureCode code="S"/> 1689 <ns6:assignedEntity> 1690 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1691 </ns6:assignedEntity> 1692 </ns6:legalAuthenticator> 1693 <ns6:componentOf typeCode="COMP"> 1694 <ns6:encompassingEncounter> 1695 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724152856.ee3446d2-03d3-4dfe-8ed5-3266e948a7d5" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1696 <ns6:effectiveTime value="20140724152856+0100"/> 1697 </ns6:encompassingEncounter> 1698 </ns6:componentOf> 1699 <ns6:component> 1700 <ns6:structuredBody> 1701 <ns6:component> 1702 <ns6:section> 1703 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 1704 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1705 <ns6:text> 1706 <ns6:list> 1707 <ns6:item> 1708 <ns6:caption>Codice Diagnosi</ns6:caption> 1709 <ns6:content>codiceDiagnosi<ns6:content>COD_2</ns6:content> 1710 </ns6:content> 1711 </ns6:item> 1712 </ns6:list> 1713 <ns6:list> 1714 <ns6:item> 1715 <ns6:caption>Descrizione Diagnosi</ns6:caption> 1716 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA DI TIPO TENSIVO</ns6:content> 1717 </ns6:content> 1718 </ns6:item> 1719 </ns6:list> 1720 <ns6:list> 1721 <ns6:item> 1722 <ns6:caption>Codice Percorso</ns6:caption> 1723 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 1724 </ns6:content> 1725 </ns6:item> 1726 </ns6:list> 1727 <ns6:list> 1728 <ns6:item> 1729 <ns6:caption>Descrizione Percorso</ns6:caption> 1730 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 1731 </ns6:content> 1732 </ns6:item> 1733 </ns6:list> 1734 </ns6:text> 1735 </ns6:section> 1736 </ns6:component> 1737 </ns6:structuredBody> 1738 </ns6:component> 1739 </ns6:ClinicalDocument> 1740 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 1741 <ns6:realmCode code="IT"/> 1742 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 1743 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 1744 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153007.1fd4b00e-5a9c-478e-ba4d-a22535c5cde8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1745 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 1746 <ns6:effectiveTime value="20140724153007+0100"/> 1747 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 1748 <ns6:languageCode code="it-IT"/> 1749 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153007.1fd4b00e-5a9c-478e-ba4d-a22535c5cde8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1750 <ns6:versionNumber value="1"/> 1751 <ns6:recordTarget> 1752 <ns6:patientRole> 1753 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 1754 </ns6:patientRole> 1755 </ns6:recordTarget> 1756 <ns6:author> 1757 <ns6:time value="20140724153007+0100"/> 1758 <ns6:assignedAuthor> 1759 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1760 <ns6:assignedPerson> 1761 <ns6:name> 1762 <ns6:given>Antonio</ns6:given> 1763 <ns6:family>Alberti</ns6:family> 1764 <ns6:prefix>MMG</ns6:prefix> 1765 </ns6:name> 1766 </ns6:assignedPerson> 1767 <ns6:representedOrganization> 1768 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1769 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1770 <ns6:addr/> 1771 </ns6:representedOrganization> 1772 </ns6:assignedAuthor> 1773 </ns6:author> 1774 <ns6:custodian> 1775 <ns6:assignedCustodian> 1776 <ns6:representedCustodianOrganization> 1777 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1778 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1779 </ns6:representedCustodianOrganization> 1780 </ns6:assignedCustodian> 1781 </ns6:custodian> 1782 <ns6:legalAuthenticator> 1783 <ns6:time value="20140724153007+0100"/> 1784 <ns6:signatureCode code="S"/> 1785 <ns6:assignedEntity> 1786 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1787 </ns6:assignedEntity> 1788 </ns6:legalAuthenticator> 1789 <ns6:componentOf typeCode="COMP"> 1790 <ns6:encompassingEncounter> 1791 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153003.7db27218-c0e7-4cda-9a89-2d48a9e0091b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1792 <ns6:effectiveTime value="20140724153003+0100"/> 1793 </ns6:encompassingEncounter> 1794 </ns6:componentOf> 1795 <ns6:component> 1796 <ns6:structuredBody> 1797 <ns6:component> 1798 <ns6:section> 1799 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 1800 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1801 <ns6:text> 1802 <ns6:list> 1803 <ns6:item> 1804 <ns6:caption>Codice Diagnosi</ns6:caption> 1805 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 1806 </ns6:content> 1807 </ns6:item> 1808 </ns6:list> 1809 <ns6:list> 1810 <ns6:item> 1811 <ns6:caption>Descrizione Diagnosi</ns6:caption> 1812 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 1813 </ns6:content> 1814 </ns6:item> 1815 </ns6:list> 1816 <ns6:list> 1817 <ns6:item> 1818 <ns6:caption>Codice Percorso</ns6:caption> 1819 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 1820 </ns6:content> 1821 </ns6:item> 1822 </ns6:list> 1823 <ns6:list> 1824 <ns6:item> 1825 <ns6:caption>Descrizione Percorso</ns6:caption> 1826 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 1827 </ns6:content> 1828 </ns6:item> 1829 </ns6:list> 1830 </ns6:text> 1831 </ns6:section> 1832 </ns6:component> 1833 </ns6:structuredBody> 1834 </ns6:component> 1835 </ns6:ClinicalDocument> 1836 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 1837 <ns6:realmCode code="IT"/> 1838 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 1839 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 1840 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153023.1cae090d-5b2d-471c-abb6-fc693505f10a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1841 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 1842 <ns6:effectiveTime value="20140724153023+0100"/> 1843 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 1844 <ns6:languageCode code="it-IT"/> 1845 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153023.1cae090d-5b2d-471c-abb6-fc693505f10a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1846 <ns6:versionNumber value="1"/> 1847 <ns6:recordTarget> 1848 <ns6:patientRole> 1849 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 1850 </ns6:patientRole> 1851 </ns6:recordTarget> 1852 <ns6:author> 1853 <ns6:time value="20140724153023+0100"/> 1854 <ns6:assignedAuthor> 1855 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1856 <ns6:assignedPerson> 1857 <ns6:name> 1858 <ns6:given>Antonio</ns6:given> 1859 <ns6:family>Alberti</ns6:family> 1860 <ns6:prefix>MMG</ns6:prefix> 1861 </ns6:name> 1862 </ns6:assignedPerson> 1863 <ns6:representedOrganization> 1864 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1865 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1866 <ns6:addr/> 1867 </ns6:representedOrganization> 1868 </ns6:assignedAuthor> 1869 </ns6:author> 1870 <ns6:custodian> 1871 <ns6:assignedCustodian> 1872 <ns6:representedCustodianOrganization> 1873 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1874 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1875 </ns6:representedCustodianOrganization> 1876 </ns6:assignedCustodian> 1877 </ns6:custodian> 1878 <ns6:legalAuthenticator> 1879 <ns6:time value="20140724153023+0100"/> 1880 <ns6:signatureCode code="S"/> 1881 <ns6:assignedEntity> 1882 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1883 </ns6:assignedEntity> 1884 </ns6:legalAuthenticator> 1885 <ns6:componentOf typeCode="COMP"> 1886 <ns6:encompassingEncounter> 1887 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153019.6daa1bbc-9026-492b-a7b8-41468fa2155c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1888 <ns6:effectiveTime value="20140724153019+0100"/> 1889 </ns6:encompassingEncounter> 1890 </ns6:componentOf> 1891 <ns6:component> 1892 <ns6:structuredBody> 1893 <ns6:component> 1894 <ns6:section> 1895 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 1896 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1897 <ns6:text> 1898 <ns6:list> 1899 <ns6:item> 1900 <ns6:caption>Codice Diagnosi</ns6:caption> 1901 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 1902 </ns6:content> 1903 </ns6:item> 1904 </ns6:list> 1905 <ns6:list> 1906 <ns6:item> 1907 <ns6:caption>Descrizione Diagnosi</ns6:caption> 1908 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 1909 </ns6:content> 1910 </ns6:item> 1911 </ns6:list> 1912 <ns6:list> 1913 <ns6:item> 1914 <ns6:caption>Codice Percorso</ns6:caption> 1915 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 1916 </ns6:content> 1917 </ns6:item> 1918 </ns6:list> 1919 <ns6:list> 1920 <ns6:item> 1921 <ns6:caption>Descrizione Percorso</ns6:caption> 1922 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 1923 </ns6:content> 1924 </ns6:item> 1925 </ns6:list> 1926 </ns6:text> 1927 </ns6:section> 1928 </ns6:component> 1929 </ns6:structuredBody> 1930 </ns6:component> 1931 </ns6:ClinicalDocument> 1932 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 1933 <ns6:realmCode code="IT"/> 1934 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 1935 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 1936 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153125.a2718a10-e9fb-4a9d-ab36-5b359572d5ac" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1937 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 1938 <ns6:effectiveTime value="20140724153125+0100"/> 1939 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 1940 <ns6:languageCode code="it-IT"/> 1941 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153125.a2718a10-e9fb-4a9d-ab36-5b359572d5ac" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1942 <ns6:versionNumber value="1"/> 1943 <ns6:recordTarget> 1944 <ns6:patientRole> 1945 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 1946 </ns6:patientRole> 1947 </ns6:recordTarget> 1948 <ns6:author> 1949 <ns6:time value="20140724153125+0100"/> 1950 <ns6:assignedAuthor> 1951 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1952 <ns6:assignedPerson> 1953 <ns6:name> 1954 <ns6:given>Antonio</ns6:given> 1955 <ns6:family>Alberti</ns6:family> 1956 <ns6:prefix>MMG</ns6:prefix> 1957 </ns6:name> 1958 </ns6:assignedPerson> 1959 <ns6:representedOrganization> 1960 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1961 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1962 <ns6:addr/> 1963 </ns6:representedOrganization> 1964 </ns6:assignedAuthor> 1965 </ns6:author> 1966 <ns6:custodian> 1967 <ns6:assignedCustodian> 1968 <ns6:representedCustodianOrganization> 1969 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 1970 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 1971 </ns6:representedCustodianOrganization> 1972 </ns6:assignedCustodian> 1973 </ns6:custodian> 1974 <ns6:legalAuthenticator> 1975 <ns6:time value="20140724153125+0100"/> 1976 <ns6:signatureCode code="S"/> 1977 <ns6:assignedEntity> 1978 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 1979 </ns6:assignedEntity> 1980 </ns6:legalAuthenticator> 1981 <ns6:componentOf typeCode="COMP"> 1982 <ns6:encompassingEncounter> 1983 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153121.626de6df-8856-4700-b1e4-76576110fcd2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 1984 <ns6:effectiveTime value="20140724153121+0100"/> 1985 </ns6:encompassingEncounter> 1986 </ns6:componentOf> 1987 <ns6:component> 1988 <ns6:structuredBody> 1989 <ns6:component> 1990 <ns6:section> 1991 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 1992 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 1993 <ns6:text> 1994 <ns6:list> 1995 <ns6:item> 1996 <ns6:caption>Codice Diagnosi</ns6:caption> 1997 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 1998 </ns6:content> 1999 </ns6:item> 2000 </ns6:list> 2001 <ns6:list> 2002 <ns6:item> 2003 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2004 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 2005 </ns6:content> 2006 </ns6:item> 2007 </ns6:list> 2008 <ns6:list> 2009 <ns6:item> 2010 <ns6:caption>Codice Percorso</ns6:caption> 2011 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 2012 </ns6:content> 2013 </ns6:item> 2014 </ns6:list> 2015 <ns6:list> 2016 <ns6:item> 2017 <ns6:caption>Descrizione Percorso</ns6:caption> 2018 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 2019 </ns6:content> 2020 </ns6:item> 2021 </ns6:list> 2022 </ns6:text> 2023 </ns6:section> 2024 </ns6:component> 2025 </ns6:structuredBody> 2026 </ns6:component> 2027 </ns6:ClinicalDocument> 2028 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2029 <ns6:realmCode code="IT"/> 2030 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2031 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2032 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153147.c19625d7-3e62-421a-8de5-b012cb2ec038" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2033 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2034 <ns6:effectiveTime value="20140724153147+0100"/> 2035 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2036 <ns6:languageCode code="it-IT"/> 2037 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153147.c19625d7-3e62-421a-8de5-b012cb2ec038" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2038 <ns6:versionNumber value="1"/> 2039 <ns6:recordTarget> 2040 <ns6:patientRole> 2041 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 2042 </ns6:patientRole> 2043 </ns6:recordTarget> 2044 <ns6:author> 2045 <ns6:time value="20140724153147+0100"/> 2046 <ns6:assignedAuthor> 2047 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2048 <ns6:assignedPerson> 2049 <ns6:name> 2050 <ns6:given>Antonio</ns6:given> 2051 <ns6:family>Alberti</ns6:family> 2052 <ns6:prefix>MMG</ns6:prefix> 2053 </ns6:name> 2054 </ns6:assignedPerson> 2055 <ns6:representedOrganization> 2056 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2057 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2058 <ns6:addr/> 2059 </ns6:representedOrganization> 2060 </ns6:assignedAuthor> 2061 </ns6:author> 2062 <ns6:custodian> 2063 <ns6:assignedCustodian> 2064 <ns6:representedCustodianOrganization> 2065 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2066 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2067 </ns6:representedCustodianOrganization> 2068 </ns6:assignedCustodian> 2069 </ns6:custodian> 2070 <ns6:legalAuthenticator> 2071 <ns6:time value="20140724153147+0100"/> 2072 <ns6:signatureCode code="S"/> 2073 <ns6:assignedEntity> 2074 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2075 </ns6:assignedEntity> 2076 </ns6:legalAuthenticator> 2077 <ns6:componentOf typeCode="COMP"> 2078 <ns6:encompassingEncounter> 2079 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724153143.eaa0fac5-c484-427e-9f1a-b4da11e1e10c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2080 <ns6:effectiveTime value="20140724153143+0100"/> 2081 </ns6:encompassingEncounter> 2082 </ns6:componentOf> 2083 <ns6:component> 2084 <ns6:structuredBody> 2085 <ns6:component> 2086 <ns6:section> 2087 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 2088 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 2089 <ns6:text> 2090 <ns6:list> 2091 <ns6:item> 2092 <ns6:caption>Codice Diagnosi</ns6:caption> 2093 <ns6:content>codiceDiagnosi<ns6:content>COD_2</ns6:content> 2094 </ns6:content> 2095 </ns6:item> 2096 </ns6:list> 2097 <ns6:list> 2098 <ns6:item> 2099 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2100 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA DI TIPO TENSIVO</ns6:content> 2101 </ns6:content> 2102 </ns6:item> 2103 </ns6:list> 2104 <ns6:list> 2105 <ns6:item> 2106 <ns6:caption>Codice Percorso</ns6:caption> 2107 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 2108 </ns6:content> 2109 </ns6:item> 2110 </ns6:list> 2111 <ns6:list> 2112 <ns6:item> 2113 <ns6:caption>Descrizione Percorso</ns6:caption> 2114 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 2115 </ns6:content> 2116 </ns6:item> 2117 </ns6:list> 2118 </ns6:text> 2119 </ns6:section> 2120 </ns6:component> 2121 </ns6:structuredBody> 2122 </ns6:component> 2123 </ns6:ClinicalDocument> 2124 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2125 <ns6:realmCode code="IT"/> 2126 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2127 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2128 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724154402.d553c124-25eb-4014-a4d6-90d2e73580a8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2129 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2130 <ns6:effectiveTime value="20140724154402+0100"/> 2131 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2132 <ns6:languageCode code="it-IT"/> 2133 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724154402.d553c124-25eb-4014-a4d6-90d2e73580a8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2134 <ns6:versionNumber value="1"/> 2135 <ns6:recordTarget> 2136 <ns6:patientRole> 2137 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 2138 </ns6:patientRole> 2139 </ns6:recordTarget> 2140 <ns6:author> 2141 <ns6:time value="20140724154402+0100"/> 2142 <ns6:assignedAuthor> 2143 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2144 <ns6:assignedPerson> 2145 <ns6:name> 2146 <ns6:given>Antonio</ns6:given> 2147 <ns6:family>Alberti</ns6:family> 2148 <ns6:prefix>MMG</ns6:prefix> 2149 </ns6:name> 2150 </ns6:assignedPerson> 2151 <ns6:representedOrganization> 2152 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2153 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2154 <ns6:addr/> 2155 </ns6:representedOrganization> 2156 </ns6:assignedAuthor> 2157 </ns6:author> 2158 <ns6:custodian> 2159 <ns6:assignedCustodian> 2160 <ns6:representedCustodianOrganization> 2161 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2162 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2163 </ns6:representedCustodianOrganization> 2164 </ns6:assignedCustodian> 2165 </ns6:custodian> 2166 <ns6:legalAuthenticator> 2167 <ns6:time value="20140724154402+0100"/> 2168 <ns6:signatureCode code="S"/> 2169 <ns6:assignedEntity> 2170 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2171 </ns6:assignedEntity> 2172 </ns6:legalAuthenticator> 2173 <ns6:componentOf typeCode="COMP"> 2174 <ns6:encompassingEncounter> 2175 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724154359.6aee69f1-01eb-4dda-8316-bbc043b9ee4b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2176 <ns6:effectiveTime value="20140724154359+0100"/> 2177 </ns6:encompassingEncounter> 2178 </ns6:componentOf> 2179 <ns6:component> 2180 <ns6:structuredBody> 2181 <ns6:component> 2182 <ns6:section> 2183 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 2184 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 2185 <ns6:text> 2186 <ns6:list> 2187 <ns6:item> 2188 <ns6:caption>Codice Diagnosi</ns6:caption> 2189 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 2190 </ns6:content> 2191 </ns6:item> 2192 </ns6:list> 2193 <ns6:list> 2194 <ns6:item> 2195 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2196 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 2197 </ns6:content> 2198 </ns6:item> 2199 </ns6:list> 2200 <ns6:list> 2201 <ns6:item> 2202 <ns6:caption>Codice Percorso</ns6:caption> 2203 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 2204 </ns6:content> 2205 </ns6:item> 2206 </ns6:list> 2207 <ns6:list> 2208 <ns6:item> 2209 <ns6:caption>Descrizione Percorso</ns6:caption> 2210 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 2211 </ns6:content> 2212 </ns6:item> 2213 </ns6:list> 2214 </ns6:text> 2215 </ns6:section> 2216 </ns6:component> 2217 </ns6:structuredBody> 2218 </ns6:component> 2219 </ns6:ClinicalDocument> 2220 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2221 <ns6:realmCode code="IT"/> 2222 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2223 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2224 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724154419.7602af12-6e1a-4e18-92e3-cc6695de6ee6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2225 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2226 <ns6:effectiveTime value="20140724154419+0100"/> 2227 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2228 <ns6:languageCode code="it-IT"/> 2229 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724154419.7602af12-6e1a-4e18-92e3-cc6695de6ee6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2230 <ns6:versionNumber value="1"/> 2231 <ns6:recordTarget> 2232 <ns6:patientRole> 2233 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 2234 </ns6:patientRole> 2235 </ns6:recordTarget> 2236 <ns6:author> 2237 <ns6:time value="20140724154419+0100"/> 2238 <ns6:assignedAuthor> 2239 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2240 <ns6:assignedPerson> 2241 <ns6:name> 2242 <ns6:given>Antonio</ns6:given> 2243 <ns6:family>Alberti</ns6:family> 2244 <ns6:prefix>MMG</ns6:prefix> 2245 </ns6:name> 2246 </ns6:assignedPerson> 2247 <ns6:representedOrganization> 2248 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2249 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2250 <ns6:addr/> 2251 </ns6:representedOrganization> 2252 </ns6:assignedAuthor> 2253 </ns6:author> 2254 <ns6:custodian> 2255 <ns6:assignedCustodian> 2256 <ns6:representedCustodianOrganization> 2257 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2258 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2259 </ns6:representedCustodianOrganization> 2260 </ns6:assignedCustodian> 2261 </ns6:custodian> 2262 <ns6:legalAuthenticator> 2263 <ns6:time value="20140724154419+0100"/> 2264 <ns6:signatureCode code="S"/> 2265 <ns6:assignedEntity> 2266 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2267 </ns6:assignedEntity> 2268 </ns6:legalAuthenticator> 2269 <ns6:componentOf typeCode="COMP"> 2270 <ns6:encompassingEncounter> 2271 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724154414.3515ea3d-37cb-4c07-86ab-d1a8483d374e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2272 <ns6:effectiveTime value="20140724154414+0100"/> 2273 </ns6:encompassingEncounter> 2274 </ns6:componentOf> 2275 <ns6:component> 2276 <ns6:structuredBody> 2277 <ns6:component> 2278 <ns6:section> 2279 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 2280 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 2281 <ns6:text> 2282 <ns6:list> 2283 <ns6:item> 2284 <ns6:caption>Codice Diagnosi</ns6:caption> 2285 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 2286 </ns6:content> 2287 </ns6:item> 2288 </ns6:list> 2289 <ns6:list> 2290 <ns6:item> 2291 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2292 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 2293 </ns6:content> 2294 </ns6:item> 2295 </ns6:list> 2296 <ns6:list> 2297 <ns6:item> 2298 <ns6:caption>Codice Percorso</ns6:caption> 2299 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 2300 </ns6:content> 2301 </ns6:item> 2302 </ns6:list> 2303 <ns6:list> 2304 <ns6:item> 2305 <ns6:caption>Descrizione Percorso</ns6:caption> 2306 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 2307 </ns6:content> 2308 </ns6:item> 2309 </ns6:list> 2310 </ns6:text> 2311 </ns6:section> 2312 </ns6:component> 2313 </ns6:structuredBody> 2314 </ns6:component> 2315 </ns6:ClinicalDocument> 2316 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2317 <ns6:realmCode code="IT"/> 2318 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2319 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2320 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724154539.fdfd5168-aa17-4396-b8ef-f96bb7f590dd" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2321 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2322 <ns6:effectiveTime value="20140724154539+0100"/> 2323 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2324 <ns6:languageCode code="it-IT"/> 2325 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724154539.fdfd5168-aa17-4396-b8ef-f96bb7f590dd" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2326 <ns6:versionNumber value="1"/> 2327 <ns6:recordTarget> 2328 <ns6:patientRole> 2329 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 2330 </ns6:patientRole> 2331 </ns6:recordTarget> 2332 <ns6:author> 2333 <ns6:time value="20140724154539+0100"/> 2334 <ns6:assignedAuthor> 2335 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2336 <ns6:assignedPerson> 2337 <ns6:name> 2338 <ns6:given>Antonio</ns6:given> 2339 <ns6:family>Alberti</ns6:family> 2340 <ns6:prefix>MMG</ns6:prefix> 2341 </ns6:name> 2342 </ns6:assignedPerson> 2343 <ns6:representedOrganization> 2344 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2345 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2346 <ns6:addr/> 2347 </ns6:representedOrganization> 2348 </ns6:assignedAuthor> 2349 </ns6:author> 2350 <ns6:custodian> 2351 <ns6:assignedCustodian> 2352 <ns6:representedCustodianOrganization> 2353 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2354 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2355 </ns6:representedCustodianOrganization> 2356 </ns6:assignedCustodian> 2357 </ns6:custodian> 2358 <ns6:legalAuthenticator> 2359 <ns6:time value="20140724154539+0100"/> 2360 <ns6:signatureCode code="S"/> 2361 <ns6:assignedEntity> 2362 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2363 </ns6:assignedEntity> 2364 </ns6:legalAuthenticator> 2365 <ns6:componentOf typeCode="COMP"> 2366 <ns6:encompassingEncounter> 2367 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724154536.4ce0ef63-eb8b-4d39-b627-e013c2782fd9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2368 <ns6:effectiveTime value="20140724154536+0100"/> 2369 </ns6:encompassingEncounter> 2370 </ns6:componentOf> 2371 <ns6:component> 2372 <ns6:structuredBody> 2373 <ns6:component> 2374 <ns6:section> 2375 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 2376 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 2377 <ns6:text> 2378 <ns6:list> 2379 <ns6:item> 2380 <ns6:caption>Codice Diagnosi</ns6:caption> 2381 <ns6:content>codiceDiagnosi<ns6:content>COD_2</ns6:content> 2382 </ns6:content> 2383 </ns6:item> 2384 </ns6:list> 2385 <ns6:list> 2386 <ns6:item> 2387 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2388 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA DI TIPO TENSIVO</ns6:content> 2389 </ns6:content> 2390 </ns6:item> 2391 </ns6:list> 2392 <ns6:list> 2393 <ns6:item> 2394 <ns6:caption>Codice Percorso</ns6:caption> 2395 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 2396 </ns6:content> 2397 </ns6:item> 2398 </ns6:list> 2399 <ns6:list> 2400 <ns6:item> 2401 <ns6:caption>Descrizione Percorso</ns6:caption> 2402 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 2403 </ns6:content> 2404 </ns6:item> 2405 </ns6:list> 2406 </ns6:text> 2407 </ns6:section> 2408 </ns6:component> 2409 </ns6:structuredBody> 2410 </ns6:component> 2411 </ns6:ClinicalDocument> 2412 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2413 <ns6:realmCode code="IT"/> 2414 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2415 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2416 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163816.f0732d1c-1eb2-45a4-8c7b-ae7507cb16c8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2417 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2418 <ns6:effectiveTime value="20140724163816+0100"/> 2419 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2420 <ns6:languageCode code="it-IT"/> 2421 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163816.f0732d1c-1eb2-45a4-8c7b-ae7507cb16c8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2422 <ns6:versionNumber value="1"/> 2423 <ns6:recordTarget> 2424 <ns6:patientRole> 2425 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 2426 </ns6:patientRole> 2427 </ns6:recordTarget> 2428 <ns6:author> 2429 <ns6:time value="20140724163816+0100"/> 2430 <ns6:assignedAuthor> 2431 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2432 <ns6:assignedPerson> 2433 <ns6:name> 2434 <ns6:given>Antonio</ns6:given> 2435 <ns6:family>Alberti</ns6:family> 2436 <ns6:prefix>MMG</ns6:prefix> 2437 </ns6:name> 2438 </ns6:assignedPerson> 2439 <ns6:representedOrganization> 2440 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2441 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2442 <ns6:addr/> 2443 </ns6:representedOrganization> 2444 </ns6:assignedAuthor> 2445 </ns6:author> 2446 <ns6:custodian> 2447 <ns6:assignedCustodian> 2448 <ns6:representedCustodianOrganization> 2449 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2450 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2451 </ns6:representedCustodianOrganization> 2452 </ns6:assignedCustodian> 2453 </ns6:custodian> 2454 <ns6:legalAuthenticator> 2455 <ns6:time value="20140724163816+0100"/> 2456 <ns6:signatureCode code="S"/> 2457 <ns6:assignedEntity> 2458 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2459 </ns6:assignedEntity> 2460 </ns6:legalAuthenticator> 2461 <ns6:componentOf typeCode="COMP"> 2462 <ns6:encompassingEncounter> 2463 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163812.35f1c6dc-ae24-4db7-a48a-fafb20004596" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2464 <ns6:effectiveTime value="20140724163812+0100"/> 2465 </ns6:encompassingEncounter> 2466 </ns6:componentOf> 2467 <ns6:component> 2468 <ns6:structuredBody> 2469 <ns6:component> 2470 <ns6:section> 2471 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 2472 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 2473 <ns6:text> 2474 <ns6:list> 2475 <ns6:item> 2476 <ns6:caption>Codice Diagnosi</ns6:caption> 2477 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 2478 </ns6:content> 2479 </ns6:item> 2480 </ns6:list> 2481 <ns6:list> 2482 <ns6:item> 2483 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2484 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 2485 </ns6:content> 2486 </ns6:item> 2487 </ns6:list> 2488 <ns6:list> 2489 <ns6:item> 2490 <ns6:caption>Codice Percorso</ns6:caption> 2491 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 2492 </ns6:content> 2493 </ns6:item> 2494 </ns6:list> 2495 <ns6:list> 2496 <ns6:item> 2497 <ns6:caption>Descrizione Percorso</ns6:caption> 2498 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 2499 </ns6:content> 2500 </ns6:item> 2501 </ns6:list> 2502 </ns6:text> 2503 </ns6:section> 2504 </ns6:component> 2505 </ns6:structuredBody> 2506 </ns6:component> 2507 </ns6:ClinicalDocument> 2508 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2509 <ns6:realmCode code="IT"/> 2510 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2511 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2512 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163854.a5bdb09f-af1c-4a2c-bdf7-da8f60a291a0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2513 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2514 <ns6:effectiveTime value="20140724163854+0100"/> 2515 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2516 <ns6:languageCode code="it-IT"/> 2517 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163854.a5bdb09f-af1c-4a2c-bdf7-da8f60a291a0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2518 <ns6:versionNumber value="1"/> 2519 <ns6:recordTarget> 2520 <ns6:patientRole> 2521 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 2522 </ns6:patientRole> 2523 </ns6:recordTarget> 2524 <ns6:author> 2525 <ns6:time value="20140724163854+0100"/> 2526 <ns6:assignedAuthor> 2527 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2528 <ns6:assignedPerson> 2529 <ns6:name> 2530 <ns6:given>Antonio</ns6:given> 2531 <ns6:family>Alberti</ns6:family> 2532 <ns6:prefix>MMG</ns6:prefix> 2533 </ns6:name> 2534 </ns6:assignedPerson> 2535 <ns6:representedOrganization> 2536 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2537 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2538 <ns6:addr/> 2539 </ns6:representedOrganization> 2540 </ns6:assignedAuthor> 2541 </ns6:author> 2542 <ns6:custodian> 2543 <ns6:assignedCustodian> 2544 <ns6:representedCustodianOrganization> 2545 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2546 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2547 </ns6:representedCustodianOrganization> 2548 </ns6:assignedCustodian> 2549 </ns6:custodian> 2550 <ns6:legalAuthenticator> 2551 <ns6:time value="20140724163854+0100"/> 2552 <ns6:signatureCode code="S"/> 2553 <ns6:assignedEntity> 2554 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2555 </ns6:assignedEntity> 2556 </ns6:legalAuthenticator> 2557 <ns6:componentOf typeCode="COMP"> 2558 <ns6:encompassingEncounter> 2559 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163850.aabebe7b-ef64-4af2-aadd-891a5a47ac12" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2560 <ns6:effectiveTime value="20140724163850+0100"/> 2561 </ns6:encompassingEncounter> 2562 </ns6:componentOf> 2563 <ns6:component> 2564 <ns6:structuredBody> 2565 <ns6:component> 2566 <ns6:section> 2567 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 2568 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 2569 <ns6:text> 2570 <ns6:list> 2571 <ns6:item> 2572 <ns6:caption>Codice Diagnosi</ns6:caption> 2573 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 2574 </ns6:content> 2575 </ns6:item> 2576 </ns6:list> 2577 <ns6:list> 2578 <ns6:item> 2579 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2580 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 2581 </ns6:content> 2582 </ns6:item> 2583 </ns6:list> 2584 <ns6:list> 2585 <ns6:item> 2586 <ns6:caption>Codice Percorso</ns6:caption> 2587 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 2588 </ns6:content> 2589 </ns6:item> 2590 </ns6:list> 2591 <ns6:list> 2592 <ns6:item> 2593 <ns6:caption>Descrizione Percorso</ns6:caption> 2594 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 2595 </ns6:content> 2596 </ns6:item> 2597 </ns6:list> 2598 </ns6:text> 2599 </ns6:section> 2600 </ns6:component> 2601 </ns6:structuredBody> 2602 </ns6:component> 2603 </ns6:ClinicalDocument> 2604 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2605 <ns6:realmCode code="IT"/> 2606 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2607 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2608 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163900.0602c4c3-df94-4607-96e2-fd1dc38fb53d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2609 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2610 <ns6:effectiveTime value="20140724163900+0100"/> 2611 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2612 <ns6:languageCode code="it-IT"/> 2613 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163900.0602c4c3-df94-4607-96e2-fd1dc38fb53d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2614 <ns6:versionNumber value="1"/> 2615 <ns6:recordTarget> 2616 <ns6:patientRole> 2617 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 2618 </ns6:patientRole> 2619 </ns6:recordTarget> 2620 <ns6:author> 2621 <ns6:time value="20140724163900+0100"/> 2622 <ns6:assignedAuthor> 2623 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2624 <ns6:assignedPerson> 2625 <ns6:name> 2626 <ns6:given>Antonio</ns6:given> 2627 <ns6:family>Alberti</ns6:family> 2628 <ns6:prefix>MMG</ns6:prefix> 2629 </ns6:name> 2630 </ns6:assignedPerson> 2631 <ns6:representedOrganization> 2632 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2633 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2634 <ns6:addr/> 2635 </ns6:representedOrganization> 2636 </ns6:assignedAuthor> 2637 </ns6:author> 2638 <ns6:custodian> 2639 <ns6:assignedCustodian> 2640 <ns6:representedCustodianOrganization> 2641 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2642 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2643 </ns6:representedCustodianOrganization> 2644 </ns6:assignedCustodian> 2645 </ns6:custodian> 2646 <ns6:legalAuthenticator> 2647 <ns6:time value="20140724163900+0100"/> 2648 <ns6:signatureCode code="S"/> 2649 <ns6:assignedEntity> 2650 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2651 </ns6:assignedEntity> 2652 </ns6:legalAuthenticator> 2653 <ns6:componentOf typeCode="COMP"> 2654 <ns6:encompassingEncounter> 2655 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163856.1d3bde3a-e3d0-45eb-affd-19e7ebde3def" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2656 <ns6:effectiveTime value="20140724163856+0100"/> 2657 </ns6:encompassingEncounter> 2658 </ns6:componentOf> 2659 <ns6:component> 2660 <ns6:structuredBody> 2661 <ns6:component> 2662 <ns6:section> 2663 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 2664 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 2665 <ns6:text> 2666 <ns6:list> 2667 <ns6:item> 2668 <ns6:caption>Codice Diagnosi</ns6:caption> 2669 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 2670 </ns6:content> 2671 </ns6:item> 2672 </ns6:list> 2673 <ns6:list> 2674 <ns6:item> 2675 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2676 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 2677 </ns6:content> 2678 </ns6:item> 2679 </ns6:list> 2680 <ns6:list> 2681 <ns6:item> 2682 <ns6:caption>Codice Percorso</ns6:caption> 2683 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 2684 </ns6:content> 2685 </ns6:item> 2686 </ns6:list> 2687 <ns6:list> 2688 <ns6:item> 2689 <ns6:caption>Descrizione Percorso</ns6:caption> 2690 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 2691 </ns6:content> 2692 </ns6:item> 2693 </ns6:list> 2694 </ns6:text> 2695 </ns6:section> 2696 </ns6:component> 2697 </ns6:structuredBody> 2698 </ns6:component> 2699 </ns6:ClinicalDocument> 2700 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2701 <ns6:realmCode code="IT"/> 2702 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2703 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2704 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163939.edacc9b1-ff6e-40e9-8943-d67e996332d0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2705 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2706 <ns6:effectiveTime value="20140724163939+0100"/> 2707 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2708 <ns6:languageCode code="it-IT"/> 2709 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163939.edacc9b1-ff6e-40e9-8943-d67e996332d0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2710 <ns6:versionNumber value="1"/> 2711 <ns6:recordTarget> 2712 <ns6:patientRole> 2713 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 2714 </ns6:patientRole> 2715 </ns6:recordTarget> 2716 <ns6:author> 2717 <ns6:time value="20140724163939+0100"/> 2718 <ns6:assignedAuthor> 2719 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2720 <ns6:assignedPerson> 2721 <ns6:name> 2722 <ns6:given>Antonio</ns6:given> 2723 <ns6:family>Alberti</ns6:family> 2724 <ns6:prefix>MMG</ns6:prefix> 2725 </ns6:name> 2726 </ns6:assignedPerson> 2727 <ns6:representedOrganization> 2728 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2729 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2730 <ns6:addr/> 2731 </ns6:representedOrganization> 2732 </ns6:assignedAuthor> 2733 </ns6:author> 2734 <ns6:custodian> 2735 <ns6:assignedCustodian> 2736 <ns6:representedCustodianOrganization> 2737 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2738 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2739 </ns6:representedCustodianOrganization> 2740 </ns6:assignedCustodian> 2741 </ns6:custodian> 2742 <ns6:legalAuthenticator> 2743 <ns6:time value="20140724163939+0100"/> 2744 <ns6:signatureCode code="S"/> 2745 <ns6:assignedEntity> 2746 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2747 </ns6:assignedEntity> 2748 </ns6:legalAuthenticator> 2749 <ns6:componentOf typeCode="COMP"> 2750 <ns6:encompassingEncounter> 2751 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724163935.dd1faf6b-b7bb-41ca-bd80-269cc3974fe1" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2752 <ns6:effectiveTime value="20140724163935+0100"/> 2753 </ns6:encompassingEncounter> 2754 </ns6:componentOf> 2755 <ns6:component> 2756 <ns6:structuredBody> 2757 <ns6:component> 2758 <ns6:section> 2759 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 2760 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 2761 <ns6:text> 2762 <ns6:list> 2763 <ns6:item> 2764 <ns6:caption>Codice Diagnosi</ns6:caption> 2765 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 2766 </ns6:content> 2767 </ns6:item> 2768 </ns6:list> 2769 <ns6:list> 2770 <ns6:item> 2771 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2772 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 2773 </ns6:content> 2774 </ns6:item> 2775 </ns6:list> 2776 <ns6:list> 2777 <ns6:item> 2778 <ns6:caption>Codice Percorso</ns6:caption> 2779 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 2780 </ns6:content> 2781 </ns6:item> 2782 </ns6:list> 2783 <ns6:list> 2784 <ns6:item> 2785 <ns6:caption>Descrizione Percorso</ns6:caption> 2786 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 2787 </ns6:content> 2788 </ns6:item> 2789 </ns6:list> 2790 </ns6:text> 2791 </ns6:section> 2792 </ns6:component> 2793 </ns6:structuredBody> 2794 </ns6:component> 2795 </ns6:ClinicalDocument> 2796 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2797 <ns6:realmCode code="IT"/> 2798 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2799 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2800 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724164033.60b341c3-fb1d-4f35-a6cd-1eda9147a834" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2801 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2802 <ns6:effectiveTime value="20140724164033+0100"/> 2803 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2804 <ns6:languageCode code="it-IT"/> 2805 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724164033.60b341c3-fb1d-4f35-a6cd-1eda9147a834" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2806 <ns6:versionNumber value="1"/> 2807 <ns6:recordTarget> 2808 <ns6:patientRole> 2809 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 2810 </ns6:patientRole> 2811 </ns6:recordTarget> 2812 <ns6:author> 2813 <ns6:time value="20140724164033+0100"/> 2814 <ns6:assignedAuthor> 2815 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2816 <ns6:assignedPerson> 2817 <ns6:name> 2818 <ns6:given>Antonio</ns6:given> 2819 <ns6:family>Alberti</ns6:family> 2820 <ns6:prefix>MMG</ns6:prefix> 2821 </ns6:name> 2822 </ns6:assignedPerson> 2823 <ns6:representedOrganization> 2824 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2825 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2826 <ns6:addr/> 2827 </ns6:representedOrganization> 2828 </ns6:assignedAuthor> 2829 </ns6:author> 2830 <ns6:custodian> 2831 <ns6:assignedCustodian> 2832 <ns6:representedCustodianOrganization> 2833 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2834 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2835 </ns6:representedCustodianOrganization> 2836 </ns6:assignedCustodian> 2837 </ns6:custodian> 2838 <ns6:legalAuthenticator> 2839 <ns6:time value="20140724164033+0100"/> 2840 <ns6:signatureCode code="S"/> 2841 <ns6:assignedEntity> 2842 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2843 </ns6:assignedEntity> 2844 </ns6:legalAuthenticator> 2845 <ns6:componentOf typeCode="COMP"> 2846 <ns6:encompassingEncounter> 2847 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140724164029.59391789-1de8-4734-ade3-bde70ade2c56" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2848 <ns6:effectiveTime value="20140724164029+0100"/> 2849 </ns6:encompassingEncounter> 2850 </ns6:componentOf> 2851 <ns6:component> 2852 <ns6:structuredBody> 2853 <ns6:component> 2854 <ns6:section> 2855 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 2856 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 2857 <ns6:text> 2858 <ns6:list> 2859 <ns6:item> 2860 <ns6:caption>Codice Diagnosi</ns6:caption> 2861 <ns6:content>codiceDiagnosi<ns6:content>COD_1.1</ns6:content> 2862 </ns6:content> 2863 </ns6:item> 2864 </ns6:list> 2865 <ns6:list> 2866 <ns6:item> 2867 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2868 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE EMICRANIA SENZA AURA</ns6:content> 2869 </ns6:content> 2870 </ns6:item> 2871 </ns6:list> 2872 <ns6:list> 2873 <ns6:item> 2874 <ns6:caption>Codice Percorso</ns6:caption> 2875 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 2876 </ns6:content> 2877 </ns6:item> 2878 </ns6:list> 2879 <ns6:list> 2880 <ns6:item> 2881 <ns6:caption>Descrizione Percorso</ns6:caption> 2882 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 2883 </ns6:content> 2884 </ns6:item> 2885 </ns6:list> 2886 </ns6:text> 2887 </ns6:section> 2888 </ns6:component> 2889 </ns6:structuredBody> 2890 </ns6:component> 2891 </ns6:ClinicalDocument> 2892 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2893 <ns6:realmCode code="IT"/> 2894 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2895 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2896 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725095855.7408a4fe-0548-4331-a368-3eccd5ff3852" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2897 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2898 <ns6:effectiveTime value="20140725095855+0100"/> 2899 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2900 <ns6:languageCode code="it-IT"/> 2901 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725095855.7408a4fe-0548-4331-a368-3eccd5ff3852" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2902 <ns6:versionNumber value="1"/> 2903 <ns6:recordTarget> 2904 <ns6:patientRole> 2905 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 2906 </ns6:patientRole> 2907 </ns6:recordTarget> 2908 <ns6:author> 2909 <ns6:time value="20140725095855+0100"/> 2910 <ns6:assignedAuthor> 2911 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2912 <ns6:assignedPerson> 2913 <ns6:name> 2914 <ns6:given>Antonio</ns6:given> 2915 <ns6:family>Alberti</ns6:family> 2916 <ns6:prefix>MMG</ns6:prefix> 2917 </ns6:name> 2918 </ns6:assignedPerson> 2919 <ns6:representedOrganization> 2920 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2921 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2922 <ns6:addr/> 2923 </ns6:representedOrganization> 2924 </ns6:assignedAuthor> 2925 </ns6:author> 2926 <ns6:custodian> 2927 <ns6:assignedCustodian> 2928 <ns6:representedCustodianOrganization> 2929 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 2930 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 2931 </ns6:representedCustodianOrganization> 2932 </ns6:assignedCustodian> 2933 </ns6:custodian> 2934 <ns6:legalAuthenticator> 2935 <ns6:time value="20140725095855+0100"/> 2936 <ns6:signatureCode code="S"/> 2937 <ns6:assignedEntity> 2938 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 2939 </ns6:assignedEntity> 2940 </ns6:legalAuthenticator> 2941 <ns6:componentOf typeCode="COMP"> 2942 <ns6:encompassingEncounter> 2943 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725095851.414436dd-5252-43cd-ae29-b7c01beddd6c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2944 <ns6:effectiveTime value="20140725095851+0100"/> 2945 </ns6:encompassingEncounter> 2946 </ns6:componentOf> 2947 <ns6:component> 2948 <ns6:structuredBody> 2949 <ns6:component> 2950 <ns6:section> 2951 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 2952 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 2953 <ns6:text> 2954 <ns6:list> 2955 <ns6:item> 2956 <ns6:caption>Codice Diagnosi</ns6:caption> 2957 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 2958 </ns6:content> 2959 </ns6:item> 2960 </ns6:list> 2961 <ns6:list> 2962 <ns6:item> 2963 <ns6:caption>Descrizione Diagnosi</ns6:caption> 2964 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 2965 </ns6:content> 2966 </ns6:item> 2967 </ns6:list> 2968 <ns6:list> 2969 <ns6:item> 2970 <ns6:caption>Codice Percorso</ns6:caption> 2971 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 2972 </ns6:content> 2973 </ns6:item> 2974 </ns6:list> 2975 <ns6:list> 2976 <ns6:item> 2977 <ns6:caption>Descrizione Percorso</ns6:caption> 2978 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 2979 </ns6:content> 2980 </ns6:item> 2981 </ns6:list> 2982 </ns6:text> 2983 </ns6:section> 2984 </ns6:component> 2985 </ns6:structuredBody> 2986 </ns6:component> 2987 </ns6:ClinicalDocument> 2988 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 2989 <ns6:realmCode code="IT"/> 2990 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 2991 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 2992 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725100009.99bdea37-a197-4add-a300-d41663e522de" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2993 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 2994 <ns6:effectiveTime value="20140725100009+0100"/> 2995 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 2996 <ns6:languageCode code="it-IT"/> 2997 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725100009.99bdea37-a197-4add-a300-d41663e522de" root="2.16.840.1.113883.2.9.3.12.4.4"/> 2998 <ns6:versionNumber value="1"/> 2999 <ns6:recordTarget> 3000 <ns6:patientRole> 3001 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3002 </ns6:patientRole> 3003 </ns6:recordTarget> 3004 <ns6:author> 3005 <ns6:time value="20140725100009+0100"/> 3006 <ns6:assignedAuthor> 3007 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3008 <ns6:assignedPerson> 3009 <ns6:name> 3010 <ns6:given>Antonio</ns6:given> 3011 <ns6:family>Alberti</ns6:family> 3012 <ns6:prefix>MMG</ns6:prefix> 3013 </ns6:name> 3014 </ns6:assignedPerson> 3015 <ns6:representedOrganization> 3016 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3017 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3018 <ns6:addr/> 3019 </ns6:representedOrganization> 3020 </ns6:assignedAuthor> 3021 </ns6:author> 3022 <ns6:custodian> 3023 <ns6:assignedCustodian> 3024 <ns6:representedCustodianOrganization> 3025 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3026 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3027 </ns6:representedCustodianOrganization> 3028 </ns6:assignedCustodian> 3029 </ns6:custodian> 3030 <ns6:legalAuthenticator> 3031 <ns6:time value="20140725100009+0100"/> 3032 <ns6:signatureCode code="S"/> 3033 <ns6:assignedEntity> 3034 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3035 </ns6:assignedEntity> 3036 </ns6:legalAuthenticator> 3037 <ns6:componentOf typeCode="COMP"> 3038 <ns6:encompassingEncounter> 3039 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725100005.ae0095f2-d2b3-4b75-9823-e292d15d4e43" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3040 <ns6:effectiveTime value="20140725100005+0100"/> 3041 </ns6:encompassingEncounter> 3042 </ns6:componentOf> 3043 <ns6:component> 3044 <ns6:structuredBody> 3045 <ns6:component> 3046 <ns6:section> 3047 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 3048 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 3049 <ns6:text> 3050 <ns6:list> 3051 <ns6:item> 3052 <ns6:caption>Codice Diagnosi</ns6:caption> 3053 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 3054 </ns6:content> 3055 </ns6:item> 3056 </ns6:list> 3057 <ns6:list> 3058 <ns6:item> 3059 <ns6:caption>Descrizione Diagnosi</ns6:caption> 3060 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 3061 </ns6:content> 3062 </ns6:item> 3063 </ns6:list> 3064 <ns6:list> 3065 <ns6:item> 3066 <ns6:caption>Codice Percorso</ns6:caption> 3067 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 3068 </ns6:content> 3069 </ns6:item> 3070 </ns6:list> 3071 <ns6:list> 3072 <ns6:item> 3073 <ns6:caption>Descrizione Percorso</ns6:caption> 3074 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 3075 </ns6:content> 3076 </ns6:item> 3077 </ns6:list> 3078 </ns6:text> 3079 </ns6:section> 3080 </ns6:component> 3081 </ns6:structuredBody> 3082 </ns6:component> 3083 </ns6:ClinicalDocument> 3084 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3085 <ns6:realmCode code="IT"/> 3086 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 3087 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 3088 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725100041.29fb742b-5d82-4306-a127-303a6404141f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3089 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 3090 <ns6:effectiveTime value="20140725100041+0100"/> 3091 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 3092 <ns6:languageCode code="it-IT"/> 3093 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725100041.29fb742b-5d82-4306-a127-303a6404141f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3094 <ns6:versionNumber value="1"/> 3095 <ns6:recordTarget> 3096 <ns6:patientRole> 3097 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3098 </ns6:patientRole> 3099 </ns6:recordTarget> 3100 <ns6:author> 3101 <ns6:time value="20140725100041+0100"/> 3102 <ns6:assignedAuthor> 3103 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3104 <ns6:assignedPerson> 3105 <ns6:name> 3106 <ns6:given>Antonio</ns6:given> 3107 <ns6:family>Alberti</ns6:family> 3108 <ns6:prefix>MMG</ns6:prefix> 3109 </ns6:name> 3110 </ns6:assignedPerson> 3111 <ns6:representedOrganization> 3112 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3113 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3114 <ns6:addr/> 3115 </ns6:representedOrganization> 3116 </ns6:assignedAuthor> 3117 </ns6:author> 3118 <ns6:custodian> 3119 <ns6:assignedCustodian> 3120 <ns6:representedCustodianOrganization> 3121 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3122 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3123 </ns6:representedCustodianOrganization> 3124 </ns6:assignedCustodian> 3125 </ns6:custodian> 3126 <ns6:legalAuthenticator> 3127 <ns6:time value="20140725100041+0100"/> 3128 <ns6:signatureCode code="S"/> 3129 <ns6:assignedEntity> 3130 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3131 </ns6:assignedEntity> 3132 </ns6:legalAuthenticator> 3133 <ns6:componentOf typeCode="COMP"> 3134 <ns6:encompassingEncounter> 3135 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725100037.49a63668-aba7-4c50-9b72-2b899949714a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3136 <ns6:effectiveTime value="20140725100037+0100"/> 3137 </ns6:encompassingEncounter> 3138 </ns6:componentOf> 3139 <ns6:component> 3140 <ns6:structuredBody> 3141 <ns6:component> 3142 <ns6:section> 3143 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 3144 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 3145 <ns6:text> 3146 <ns6:list> 3147 <ns6:item> 3148 <ns6:caption>Codice Diagnosi</ns6:caption> 3149 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 3150 </ns6:content> 3151 </ns6:item> 3152 </ns6:list> 3153 <ns6:list> 3154 <ns6:item> 3155 <ns6:caption>Descrizione Diagnosi</ns6:caption> 3156 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 3157 </ns6:content> 3158 </ns6:item> 3159 </ns6:list> 3160 <ns6:list> 3161 <ns6:item> 3162 <ns6:caption>Codice Percorso</ns6:caption> 3163 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 3164 </ns6:content> 3165 </ns6:item> 3166 </ns6:list> 3167 <ns6:list> 3168 <ns6:item> 3169 <ns6:caption>Descrizione Percorso</ns6:caption> 3170 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 3171 </ns6:content> 3172 </ns6:item> 3173 </ns6:list> 3174 </ns6:text> 3175 </ns6:section> 3176 </ns6:component> 3177 </ns6:structuredBody> 3178 </ns6:component> 3179 </ns6:ClinicalDocument> 3180 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3181 <ns6:realmCode code="IT"/> 3182 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 3183 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 3184 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725100202.c08faa69-6c82-4575-ba72-5dc0a135963b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3185 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 3186 <ns6:effectiveTime value="20140725100202+0100"/> 3187 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 3188 <ns6:languageCode code="it-IT"/> 3189 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725100202.c08faa69-6c82-4575-ba72-5dc0a135963b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3190 <ns6:versionNumber value="1"/> 3191 <ns6:recordTarget> 3192 <ns6:patientRole> 3193 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3194 </ns6:patientRole> 3195 </ns6:recordTarget> 3196 <ns6:author> 3197 <ns6:time value="20140725100202+0100"/> 3198 <ns6:assignedAuthor> 3199 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3200 <ns6:assignedPerson> 3201 <ns6:name> 3202 <ns6:given>Antonio</ns6:given> 3203 <ns6:family>Alberti</ns6:family> 3204 <ns6:prefix>MMG</ns6:prefix> 3205 </ns6:name> 3206 </ns6:assignedPerson> 3207 <ns6:representedOrganization> 3208 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3209 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3210 <ns6:addr/> 3211 </ns6:representedOrganization> 3212 </ns6:assignedAuthor> 3213 </ns6:author> 3214 <ns6:custodian> 3215 <ns6:assignedCustodian> 3216 <ns6:representedCustodianOrganization> 3217 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3218 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3219 </ns6:representedCustodianOrganization> 3220 </ns6:assignedCustodian> 3221 </ns6:custodian> 3222 <ns6:legalAuthenticator> 3223 <ns6:time value="20140725100202+0100"/> 3224 <ns6:signatureCode code="S"/> 3225 <ns6:assignedEntity> 3226 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3227 </ns6:assignedEntity> 3228 </ns6:legalAuthenticator> 3229 <ns6:componentOf typeCode="COMP"> 3230 <ns6:encompassingEncounter> 3231 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725100158.4c032a6a-413e-4f5e-aa25-93f9356b7a9b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3232 <ns6:effectiveTime value="20140725100158+0100"/> 3233 </ns6:encompassingEncounter> 3234 </ns6:componentOf> 3235 <ns6:component> 3236 <ns6:structuredBody> 3237 <ns6:component> 3238 <ns6:section> 3239 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 3240 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 3241 <ns6:text> 3242 <ns6:list> 3243 <ns6:item> 3244 <ns6:caption>Codice Diagnosi</ns6:caption> 3245 <ns6:content>codiceDiagnosi<ns6:content>COD_0.3</ns6:content> 3246 </ns6:content> 3247 </ns6:item> 3248 </ns6:list> 3249 <ns6:list> 3250 <ns6:item> 3251 <ns6:caption>Descrizione Diagnosi</ns6:caption> 3252 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA</ns6:content> 3253 </ns6:content> 3254 </ns6:item> 3255 </ns6:list> 3256 <ns6:list> 3257 <ns6:item> 3258 <ns6:caption>Codice Percorso</ns6:caption> 3259 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 3260 </ns6:content> 3261 </ns6:item> 3262 </ns6:list> 3263 <ns6:list> 3264 <ns6:item> 3265 <ns6:caption>Descrizione Percorso</ns6:caption> 3266 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 3267 </ns6:content> 3268 </ns6:item> 3269 </ns6:list> 3270 </ns6:text> 3271 </ns6:section> 3272 </ns6:component> 3273 </ns6:structuredBody> 3274 </ns6:component> 3275 </ns6:ClinicalDocument> 3276 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3277 <ns6:realmCode code="IT"/> 3278 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 3279 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 3280 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725101432.239515c5-b46f-47d2-a184-6a5086a0526a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3281 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 3282 <ns6:effectiveTime value="20140725101432+0100"/> 3283 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 3284 <ns6:languageCode code="it-IT"/> 3285 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725101432.239515c5-b46f-47d2-a184-6a5086a0526a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3286 <ns6:versionNumber value="1"/> 3287 <ns6:recordTarget> 3288 <ns6:patientRole> 3289 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3290 </ns6:patientRole> 3291 </ns6:recordTarget> 3292 <ns6:author> 3293 <ns6:time value="20140725101432+0100"/> 3294 <ns6:assignedAuthor> 3295 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3296 <ns6:assignedPerson> 3297 <ns6:name> 3298 <ns6:given>Antonio</ns6:given> 3299 <ns6:family>Alberti</ns6:family> 3300 <ns6:prefix>MMG</ns6:prefix> 3301 </ns6:name> 3302 </ns6:assignedPerson> 3303 <ns6:representedOrganization> 3304 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3305 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3306 <ns6:addr/> 3307 </ns6:representedOrganization> 3308 </ns6:assignedAuthor> 3309 </ns6:author> 3310 <ns6:custodian> 3311 <ns6:assignedCustodian> 3312 <ns6:representedCustodianOrganization> 3313 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3314 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3315 </ns6:representedCustodianOrganization> 3316 </ns6:assignedCustodian> 3317 </ns6:custodian> 3318 <ns6:legalAuthenticator> 3319 <ns6:time value="20140725101432+0100"/> 3320 <ns6:signatureCode code="S"/> 3321 <ns6:assignedEntity> 3322 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3323 </ns6:assignedEntity> 3324 </ns6:legalAuthenticator> 3325 <ns6:componentOf typeCode="COMP"> 3326 <ns6:encompassingEncounter> 3327 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725101426.b37b2a45-1244-49a0-bb1a-7e9410aa8e3f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3328 <ns6:effectiveTime value="20140725101426+0100"/> 3329 </ns6:encompassingEncounter> 3330 </ns6:componentOf> 3331 <ns6:component> 3332 <ns6:structuredBody> 3333 <ns6:component> 3334 <ns6:section> 3335 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 3336 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 3337 <ns6:text> 3338 <ns6:list> 3339 <ns6:item> 3340 <ns6:caption>Codice Diagnosi</ns6:caption> 3341 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 3342 </ns6:content> 3343 </ns6:item> 3344 </ns6:list> 3345 <ns6:list> 3346 <ns6:item> 3347 <ns6:caption>Descrizione Diagnosi</ns6:caption> 3348 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 3349 </ns6:content> 3350 </ns6:item> 3351 </ns6:list> 3352 <ns6:list> 3353 <ns6:item> 3354 <ns6:caption>Codice Percorso</ns6:caption> 3355 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 3356 </ns6:content> 3357 </ns6:item> 3358 </ns6:list> 3359 <ns6:list> 3360 <ns6:item> 3361 <ns6:caption>Descrizione Percorso</ns6:caption> 3362 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 3363 </ns6:content> 3364 </ns6:item> 3365 </ns6:list> 3366 </ns6:text> 3367 </ns6:section> 3368 </ns6:component> 3369 </ns6:structuredBody> 3370 </ns6:component> 3371 </ns6:ClinicalDocument> 3372 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3373 <ns6:realmCode code="IT"/> 3374 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 3375 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 3376 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725101524.0a06245e-cabb-4c32-b93e-500662b48205" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3377 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 3378 <ns6:effectiveTime value="20140725101524+0100"/> 3379 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 3380 <ns6:languageCode code="it-IT"/> 3381 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725101524.0a06245e-cabb-4c32-b93e-500662b48205" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3382 <ns6:versionNumber value="1"/> 3383 <ns6:recordTarget> 3384 <ns6:patientRole> 3385 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3386 </ns6:patientRole> 3387 </ns6:recordTarget> 3388 <ns6:author> 3389 <ns6:time value="20140725101524+0100"/> 3390 <ns6:assignedAuthor> 3391 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3392 <ns6:assignedPerson> 3393 <ns6:name> 3394 <ns6:given>Antonio</ns6:given> 3395 <ns6:family>Alberti</ns6:family> 3396 <ns6:prefix>MMG</ns6:prefix> 3397 </ns6:name> 3398 </ns6:assignedPerson> 3399 <ns6:representedOrganization> 3400 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3401 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3402 <ns6:addr/> 3403 </ns6:representedOrganization> 3404 </ns6:assignedAuthor> 3405 </ns6:author> 3406 <ns6:custodian> 3407 <ns6:assignedCustodian> 3408 <ns6:representedCustodianOrganization> 3409 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3410 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3411 </ns6:representedCustodianOrganization> 3412 </ns6:assignedCustodian> 3413 </ns6:custodian> 3414 <ns6:legalAuthenticator> 3415 <ns6:time value="20140725101524+0100"/> 3416 <ns6:signatureCode code="S"/> 3417 <ns6:assignedEntity> 3418 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3419 </ns6:assignedEntity> 3420 </ns6:legalAuthenticator> 3421 <ns6:componentOf typeCode="COMP"> 3422 <ns6:encompassingEncounter> 3423 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725101520.d4af04f3-b72c-4b71-9dd2-2a220d03b8bc" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3424 <ns6:effectiveTime value="20140725101520+0100"/> 3425 </ns6:encompassingEncounter> 3426 </ns6:componentOf> 3427 <ns6:component> 3428 <ns6:structuredBody> 3429 <ns6:component> 3430 <ns6:section> 3431 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 3432 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 3433 <ns6:text> 3434 <ns6:list> 3435 <ns6:item> 3436 <ns6:caption>Codice Diagnosi</ns6:caption> 3437 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 3438 </ns6:content> 3439 </ns6:item> 3440 </ns6:list> 3441 <ns6:list> 3442 <ns6:item> 3443 <ns6:caption>Descrizione Diagnosi</ns6:caption> 3444 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 3445 </ns6:content> 3446 </ns6:item> 3447 </ns6:list> 3448 <ns6:list> 3449 <ns6:item> 3450 <ns6:caption>Codice Percorso</ns6:caption> 3451 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 3452 </ns6:content> 3453 </ns6:item> 3454 </ns6:list> 3455 <ns6:list> 3456 <ns6:item> 3457 <ns6:caption>Descrizione Percorso</ns6:caption> 3458 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 3459 </ns6:content> 3460 </ns6:item> 3461 </ns6:list> 3462 </ns6:text> 3463 </ns6:section> 3464 </ns6:component> 3465 </ns6:structuredBody> 3466 </ns6:component> 3467 </ns6:ClinicalDocument> 3468 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3469 <ns6:realmCode code="IT"/> 3470 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 3471 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 3472 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725101753.30d955ba-c003-4370-87e4-ae45278a40fe" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3473 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 3474 <ns6:effectiveTime value="20140725101753+0100"/> 3475 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 3476 <ns6:languageCode code="it-IT"/> 3477 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725101753.30d955ba-c003-4370-87e4-ae45278a40fe" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3478 <ns6:versionNumber value="1"/> 3479 <ns6:recordTarget> 3480 <ns6:patientRole> 3481 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3482 </ns6:patientRole> 3483 </ns6:recordTarget> 3484 <ns6:author> 3485 <ns6:time value="20140725101753+0100"/> 3486 <ns6:assignedAuthor> 3487 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3488 <ns6:assignedPerson> 3489 <ns6:name> 3490 <ns6:given>Antonio</ns6:given> 3491 <ns6:family>Alberti</ns6:family> 3492 <ns6:prefix>MMG</ns6:prefix> 3493 </ns6:name> 3494 </ns6:assignedPerson> 3495 <ns6:representedOrganization> 3496 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3497 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3498 <ns6:addr/> 3499 </ns6:representedOrganization> 3500 </ns6:assignedAuthor> 3501 </ns6:author> 3502 <ns6:custodian> 3503 <ns6:assignedCustodian> 3504 <ns6:representedCustodianOrganization> 3505 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3506 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3507 </ns6:representedCustodianOrganization> 3508 </ns6:assignedCustodian> 3509 </ns6:custodian> 3510 <ns6:legalAuthenticator> 3511 <ns6:time value="20140725101753+0100"/> 3512 <ns6:signatureCode code="S"/> 3513 <ns6:assignedEntity> 3514 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3515 </ns6:assignedEntity> 3516 </ns6:legalAuthenticator> 3517 <ns6:componentOf typeCode="COMP"> 3518 <ns6:encompassingEncounter> 3519 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725101749.76912fab-593a-4efe-bbab-4467aecae8a9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3520 <ns6:effectiveTime value="20140725101749+0100"/> 3521 </ns6:encompassingEncounter> 3522 </ns6:componentOf> 3523 <ns6:component> 3524 <ns6:structuredBody> 3525 <ns6:component> 3526 <ns6:section> 3527 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 3528 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 3529 <ns6:text> 3530 <ns6:list> 3531 <ns6:item> 3532 <ns6:caption>Codice Diagnosi</ns6:caption> 3533 <ns6:content>codiceDiagnosi<ns6:content>COD_2</ns6:content> 3534 </ns6:content> 3535 </ns6:item> 3536 </ns6:list> 3537 <ns6:list> 3538 <ns6:item> 3539 <ns6:caption>Descrizione Diagnosi</ns6:caption> 3540 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA DI TIPO TENSIVO</ns6:content> 3541 </ns6:content> 3542 </ns6:item> 3543 </ns6:list> 3544 <ns6:list> 3545 <ns6:item> 3546 <ns6:caption>Codice Percorso</ns6:caption> 3547 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 3548 </ns6:content> 3549 </ns6:item> 3550 </ns6:list> 3551 <ns6:list> 3552 <ns6:item> 3553 <ns6:caption>Descrizione Percorso</ns6:caption> 3554 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 3555 </ns6:content> 3556 </ns6:item> 3557 </ns6:list> 3558 </ns6:text> 3559 </ns6:section> 3560 </ns6:component> 3561 </ns6:structuredBody> 3562 </ns6:component> 3563 </ns6:ClinicalDocument> 3564 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3565 <ns6:realmCode code="IT"/> 3566 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 3567 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 3568 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725102656.ceb3f1f4-fe48-4e1b-a7a0-07ce62851f9b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3569 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 3570 <ns6:effectiveTime value="20140725102656+0100"/> 3571 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 3572 <ns6:languageCode code="it-IT"/> 3573 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725102656.ceb3f1f4-fe48-4e1b-a7a0-07ce62851f9b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3574 <ns6:versionNumber value="1"/> 3575 <ns6:recordTarget> 3576 <ns6:patientRole> 3577 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3578 </ns6:patientRole> 3579 </ns6:recordTarget> 3580 <ns6:author> 3581 <ns6:time value="20140725102656+0100"/> 3582 <ns6:assignedAuthor> 3583 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3584 <ns6:assignedPerson> 3585 <ns6:name> 3586 <ns6:given>Antonio</ns6:given> 3587 <ns6:family>Alberti</ns6:family> 3588 <ns6:prefix>MMG</ns6:prefix> 3589 </ns6:name> 3590 </ns6:assignedPerson> 3591 <ns6:representedOrganization> 3592 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3593 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3594 <ns6:addr/> 3595 </ns6:representedOrganization> 3596 </ns6:assignedAuthor> 3597 </ns6:author> 3598 <ns6:custodian> 3599 <ns6:assignedCustodian> 3600 <ns6:representedCustodianOrganization> 3601 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3602 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3603 </ns6:representedCustodianOrganization> 3604 </ns6:assignedCustodian> 3605 </ns6:custodian> 3606 <ns6:legalAuthenticator> 3607 <ns6:time value="20140725102656+0100"/> 3608 <ns6:signatureCode code="S"/> 3609 <ns6:assignedEntity> 3610 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3611 </ns6:assignedEntity> 3612 </ns6:legalAuthenticator> 3613 <ns6:componentOf typeCode="COMP"> 3614 <ns6:encompassingEncounter> 3615 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725102652.c2e9db1f-2575-4d7d-ac0a-934d5584515d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3616 <ns6:effectiveTime value="20140725102652+0100"/> 3617 </ns6:encompassingEncounter> 3618 </ns6:componentOf> 3619 <ns6:component> 3620 <ns6:structuredBody> 3621 <ns6:component> 3622 <ns6:section> 3623 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 3624 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 3625 <ns6:text> 3626 <ns6:list> 3627 <ns6:item> 3628 <ns6:caption>Codice Diagnosi</ns6:caption> 3629 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 3630 </ns6:content> 3631 </ns6:item> 3632 </ns6:list> 3633 <ns6:list> 3634 <ns6:item> 3635 <ns6:caption>Descrizione Diagnosi</ns6:caption> 3636 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 3637 </ns6:content> 3638 </ns6:item> 3639 </ns6:list> 3640 <ns6:list> 3641 <ns6:item> 3642 <ns6:caption>Codice Percorso</ns6:caption> 3643 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 3644 </ns6:content> 3645 </ns6:item> 3646 </ns6:list> 3647 <ns6:list> 3648 <ns6:item> 3649 <ns6:caption>Descrizione Percorso</ns6:caption> 3650 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 3651 </ns6:content> 3652 </ns6:item> 3653 </ns6:list> 3654 </ns6:text> 3655 </ns6:section> 3656 </ns6:component> 3657 </ns6:structuredBody> 3658 </ns6:component> 3659 </ns6:ClinicalDocument> 3660 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3661 <ns6:realmCode code="IT"/> 3662 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 3663 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 3664 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725102755.007f41b7-9cf5-4fc9-a2a3-a2a336298a9d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3665 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 3666 <ns6:effectiveTime value="20140725102755+0100"/> 3667 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 3668 <ns6:languageCode code="it-IT"/> 3669 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725102755.007f41b7-9cf5-4fc9-a2a3-a2a336298a9d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3670 <ns6:versionNumber value="1"/> 3671 <ns6:recordTarget> 3672 <ns6:patientRole> 3673 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3674 </ns6:patientRole> 3675 </ns6:recordTarget> 3676 <ns6:author> 3677 <ns6:time value="20140725102755+0100"/> 3678 <ns6:assignedAuthor> 3679 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3680 <ns6:assignedPerson> 3681 <ns6:name> 3682 <ns6:given>Antonio</ns6:given> 3683 <ns6:family>Alberti</ns6:family> 3684 <ns6:prefix>MMG</ns6:prefix> 3685 </ns6:name> 3686 </ns6:assignedPerson> 3687 <ns6:representedOrganization> 3688 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3689 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3690 <ns6:addr/> 3691 </ns6:representedOrganization> 3692 </ns6:assignedAuthor> 3693 </ns6:author> 3694 <ns6:custodian> 3695 <ns6:assignedCustodian> 3696 <ns6:representedCustodianOrganization> 3697 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3698 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3699 </ns6:representedCustodianOrganization> 3700 </ns6:assignedCustodian> 3701 </ns6:custodian> 3702 <ns6:legalAuthenticator> 3703 <ns6:time value="20140725102755+0100"/> 3704 <ns6:signatureCode code="S"/> 3705 <ns6:assignedEntity> 3706 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3707 </ns6:assignedEntity> 3708 </ns6:legalAuthenticator> 3709 <ns6:componentOf typeCode="COMP"> 3710 <ns6:encompassingEncounter> 3711 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725102751.5ea94f96-84c8-4e42-a1e9-674ea4766813" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3712 <ns6:effectiveTime value="20140725102751+0100"/> 3713 </ns6:encompassingEncounter> 3714 </ns6:componentOf> 3715 <ns6:component> 3716 <ns6:structuredBody> 3717 <ns6:component> 3718 <ns6:section> 3719 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 3720 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 3721 <ns6:text> 3722 <ns6:list> 3723 <ns6:item> 3724 <ns6:caption>Codice Diagnosi</ns6:caption> 3725 <ns6:content>codiceDiagnosi<ns6:content>COD_0.34</ns6:content> 3726 </ns6:content> 3727 </ns6:item> 3728 </ns6:list> 3729 <ns6:list> 3730 <ns6:item> 3731 <ns6:caption>Descrizione Diagnosi</ns6:caption> 3732 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA ASSOCIATA A POSSIBILI COMORBIDITA</ns6:content> 3733 </ns6:content> 3734 </ns6:item> 3735 </ns6:list> 3736 <ns6:list> 3737 <ns6:item> 3738 <ns6:caption>Codice Percorso</ns6:caption> 3739 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 3740 </ns6:content> 3741 </ns6:item> 3742 </ns6:list> 3743 <ns6:list> 3744 <ns6:item> 3745 <ns6:caption>Descrizione Percorso</ns6:caption> 3746 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 3747 </ns6:content> 3748 </ns6:item> 3749 </ns6:list> 3750 </ns6:text> 3751 </ns6:section> 3752 </ns6:component> 3753 </ns6:structuredBody> 3754 </ns6:component> 3755 </ns6:ClinicalDocument> 3756 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3757 <ns6:realmCode code="IT"/> 3758 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 3759 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 3760 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725105322.9e0ceb90-4b4c-4682-ba98-bc1879ed90f7" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3761 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 3762 <ns6:effectiveTime value="20140725105322+0100"/> 3763 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 3764 <ns6:languageCode code="it-IT"/> 3765 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725105322.9e0ceb90-4b4c-4682-ba98-bc1879ed90f7" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3766 <ns6:versionNumber value="1"/> 3767 <ns6:recordTarget> 3768 <ns6:patientRole> 3769 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3770 </ns6:patientRole> 3771 </ns6:recordTarget> 3772 <ns6:author> 3773 <ns6:time value="20140725105322+0100"/> 3774 <ns6:assignedAuthor> 3775 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3776 <ns6:assignedPerson> 3777 <ns6:name> 3778 <ns6:given>Antonio</ns6:given> 3779 <ns6:family>Alberti</ns6:family> 3780 <ns6:prefix>MMG</ns6:prefix> 3781 </ns6:name> 3782 </ns6:assignedPerson> 3783 <ns6:representedOrganization> 3784 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3785 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3786 <ns6:addr/> 3787 </ns6:representedOrganization> 3788 </ns6:assignedAuthor> 3789 </ns6:author> 3790 <ns6:custodian> 3791 <ns6:assignedCustodian> 3792 <ns6:representedCustodianOrganization> 3793 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3794 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3795 </ns6:representedCustodianOrganization> 3796 </ns6:assignedCustodian> 3797 </ns6:custodian> 3798 <ns6:legalAuthenticator> 3799 <ns6:time value="20140725105322+0100"/> 3800 <ns6:signatureCode code="S"/> 3801 <ns6:assignedEntity> 3802 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3803 </ns6:assignedEntity> 3804 </ns6:legalAuthenticator> 3805 <ns6:componentOf typeCode="COMP"> 3806 <ns6:encompassingEncounter> 3807 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725105318.d6e93f5a-025c-48a8-9a59-4fb720350032" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3808 <ns6:effectiveTime value="20140725105318+0100"/> 3809 </ns6:encompassingEncounter> 3810 </ns6:componentOf> 3811 <ns6:component> 3812 <ns6:structuredBody> 3813 <ns6:component> 3814 <ns6:section> 3815 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 3816 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 3817 <ns6:text> 3818 <ns6:list> 3819 <ns6:item> 3820 <ns6:caption>Codice Diagnosi</ns6:caption> 3821 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 3822 </ns6:content> 3823 </ns6:item> 3824 </ns6:list> 3825 <ns6:list> 3826 <ns6:item> 3827 <ns6:caption>Descrizione Diagnosi</ns6:caption> 3828 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 3829 </ns6:content> 3830 </ns6:item> 3831 </ns6:list> 3832 <ns6:list> 3833 <ns6:item> 3834 <ns6:caption>Codice Percorso</ns6:caption> 3835 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 3836 </ns6:content> 3837 </ns6:item> 3838 </ns6:list> 3839 <ns6:list> 3840 <ns6:item> 3841 <ns6:caption>Descrizione Percorso</ns6:caption> 3842 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 3843 </ns6:content> 3844 </ns6:item> 3845 </ns6:list> 3846 </ns6:text> 3847 </ns6:section> 3848 </ns6:component> 3849 </ns6:structuredBody> 3850 </ns6:component> 3851 </ns6:ClinicalDocument> 3852 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3853 <ns6:realmCode code="IT"/> 3854 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 3855 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 3856 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725105453.747b622d-a81e-48de-8d50-b7d9477c201e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3857 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 3858 <ns6:effectiveTime value="20140725105453+0100"/> 3859 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 3860 <ns6:languageCode code="it-IT"/> 3861 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725105453.747b622d-a81e-48de-8d50-b7d9477c201e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3862 <ns6:versionNumber value="1"/> 3863 <ns6:recordTarget> 3864 <ns6:patientRole> 3865 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3866 </ns6:patientRole> 3867 </ns6:recordTarget> 3868 <ns6:author> 3869 <ns6:time value="20140725105453+0100"/> 3870 <ns6:assignedAuthor> 3871 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3872 <ns6:assignedPerson> 3873 <ns6:name> 3874 <ns6:given>Antonio</ns6:given> 3875 <ns6:family>Alberti</ns6:family> 3876 <ns6:prefix>MMG</ns6:prefix> 3877 </ns6:name> 3878 </ns6:assignedPerson> 3879 <ns6:representedOrganization> 3880 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3881 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3882 <ns6:addr/> 3883 </ns6:representedOrganization> 3884 </ns6:assignedAuthor> 3885 </ns6:author> 3886 <ns6:custodian> 3887 <ns6:assignedCustodian> 3888 <ns6:representedCustodianOrganization> 3889 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3890 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3891 </ns6:representedCustodianOrganization> 3892 </ns6:assignedCustodian> 3893 </ns6:custodian> 3894 <ns6:legalAuthenticator> 3895 <ns6:time value="20140725105453+0100"/> 3896 <ns6:signatureCode code="S"/> 3897 <ns6:assignedEntity> 3898 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3899 </ns6:assignedEntity> 3900 </ns6:legalAuthenticator> 3901 <ns6:componentOf typeCode="COMP"> 3902 <ns6:encompassingEncounter> 3903 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725105449.f88c7ed9-b5ee-4f9d-8b6b-332f47f0f507" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3904 <ns6:effectiveTime value="20140725105449+0100"/> 3905 </ns6:encompassingEncounter> 3906 </ns6:componentOf> 3907 <ns6:component> 3908 <ns6:structuredBody> 3909 <ns6:component> 3910 <ns6:section> 3911 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 3912 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 3913 <ns6:text> 3914 <ns6:list> 3915 <ns6:item> 3916 <ns6:caption>Codice Diagnosi</ns6:caption> 3917 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 3918 </ns6:content> 3919 </ns6:item> 3920 </ns6:list> 3921 <ns6:list> 3922 <ns6:item> 3923 <ns6:caption>Descrizione Diagnosi</ns6:caption> 3924 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 3925 </ns6:content> 3926 </ns6:item> 3927 </ns6:list> 3928 <ns6:list> 3929 <ns6:item> 3930 <ns6:caption>Codice Percorso</ns6:caption> 3931 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 3932 </ns6:content> 3933 </ns6:item> 3934 </ns6:list> 3935 <ns6:list> 3936 <ns6:item> 3937 <ns6:caption>Descrizione Percorso</ns6:caption> 3938 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 3939 </ns6:content> 3940 </ns6:item> 3941 </ns6:list> 3942 </ns6:text> 3943 </ns6:section> 3944 </ns6:component> 3945 </ns6:structuredBody> 3946 </ns6:component> 3947 </ns6:ClinicalDocument> 3948 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3949 <ns6:realmCode code="IT"/> 3950 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 3951 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 3952 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725105555.e30080fc-f974-45c2-91d1-61189acb296b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3953 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 3954 <ns6:effectiveTime value="20140725105555+0100"/> 3955 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 3956 <ns6:languageCode code="it-IT"/> 3957 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725105555.e30080fc-f974-45c2-91d1-61189acb296b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 3958 <ns6:versionNumber value="1"/> 3959 <ns6:recordTarget> 3960 <ns6:patientRole> 3961 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 3962 </ns6:patientRole> 3963 </ns6:recordTarget> 3964 <ns6:author> 3965 <ns6:time value="20140725105555+0100"/> 3966 <ns6:assignedAuthor> 3967 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3968 <ns6:assignedPerson> 3969 <ns6:name> 3970 <ns6:given>Antonio</ns6:given> 3971 <ns6:family>Alberti</ns6:family> 3972 <ns6:prefix>MMG</ns6:prefix> 3973 </ns6:name> 3974 </ns6:assignedPerson> 3975 <ns6:representedOrganization> 3976 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3977 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3978 <ns6:addr/> 3979 </ns6:representedOrganization> 3980 </ns6:assignedAuthor> 3981 </ns6:author> 3982 <ns6:custodian> 3983 <ns6:assignedCustodian> 3984 <ns6:representedCustodianOrganization> 3985 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 3986 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 3987 </ns6:representedCustodianOrganization> 3988 </ns6:assignedCustodian> 3989 </ns6:custodian> 3990 <ns6:legalAuthenticator> 3991 <ns6:time value="20140725105555+0100"/> 3992 <ns6:signatureCode code="S"/> 3993 <ns6:assignedEntity> 3994 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 3995 </ns6:assignedEntity> 3996 </ns6:legalAuthenticator> 3997 <ns6:componentOf typeCode="COMP"> 3998 <ns6:encompassingEncounter> 3999 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725105551.b8d3f0f7-c7ac-450b-8857-9c0c42dc3019" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4000 <ns6:effectiveTime value="20140725105551+0100"/> 4001 </ns6:encompassingEncounter> 4002 </ns6:componentOf> 4003 <ns6:component> 4004 <ns6:structuredBody> 4005 <ns6:component> 4006 <ns6:section> 4007 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 4008 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4009 <ns6:text> 4010 <ns6:list> 4011 <ns6:item> 4012 <ns6:caption>Codice Diagnosi</ns6:caption> 4013 <ns6:content>codiceDiagnosi<ns6:content>COD_0.34</ns6:content> 4014 </ns6:content> 4015 </ns6:item> 4016 </ns6:list> 4017 <ns6:list> 4018 <ns6:item> 4019 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4020 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA ASSOCIATA A POSSIBILI COMORBIDITA</ns6:content> 4021 </ns6:content> 4022 </ns6:item> 4023 </ns6:list> 4024 <ns6:list> 4025 <ns6:item> 4026 <ns6:caption>Codice Percorso</ns6:caption> 4027 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 4028 </ns6:content> 4029 </ns6:item> 4030 </ns6:list> 4031 <ns6:list> 4032 <ns6:item> 4033 <ns6:caption>Descrizione Percorso</ns6:caption> 4034 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 4035 </ns6:content> 4036 </ns6:item> 4037 </ns6:list> 4038 </ns6:text> 4039 </ns6:section> 4040 </ns6:component> 4041 </ns6:structuredBody> 4042 </ns6:component> 4043 </ns6:ClinicalDocument> 4044 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4045 <ns6:realmCode code="IT"/> 4046 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 4047 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 4048 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110239.f7be3476-152f-408c-aded-55d78dcc7006" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4049 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 4050 <ns6:effectiveTime value="20140725110239+0100"/> 4051 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 4052 <ns6:languageCode code="it-IT"/> 4053 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110239.f7be3476-152f-408c-aded-55d78dcc7006" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4054 <ns6:versionNumber value="1"/> 4055 <ns6:recordTarget> 4056 <ns6:patientRole> 4057 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 4058 </ns6:patientRole> 4059 </ns6:recordTarget> 4060 <ns6:author> 4061 <ns6:time value="20140725110239+0100"/> 4062 <ns6:assignedAuthor> 4063 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4064 <ns6:assignedPerson> 4065 <ns6:name> 4066 <ns6:given>Antonio</ns6:given> 4067 <ns6:family>Alberti</ns6:family> 4068 <ns6:prefix>MMG</ns6:prefix> 4069 </ns6:name> 4070 </ns6:assignedPerson> 4071 <ns6:representedOrganization> 4072 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4073 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4074 <ns6:addr/> 4075 </ns6:representedOrganization> 4076 </ns6:assignedAuthor> 4077 </ns6:author> 4078 <ns6:custodian> 4079 <ns6:assignedCustodian> 4080 <ns6:representedCustodianOrganization> 4081 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4082 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4083 </ns6:representedCustodianOrganization> 4084 </ns6:assignedCustodian> 4085 </ns6:custodian> 4086 <ns6:legalAuthenticator> 4087 <ns6:time value="20140725110239+0100"/> 4088 <ns6:signatureCode code="S"/> 4089 <ns6:assignedEntity> 4090 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4091 </ns6:assignedEntity> 4092 </ns6:legalAuthenticator> 4093 <ns6:componentOf typeCode="COMP"> 4094 <ns6:encompassingEncounter> 4095 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110235.151e95fb-1b2c-421b-a7bb-759772079181" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4096 <ns6:effectiveTime value="20140725110235+0100"/> 4097 </ns6:encompassingEncounter> 4098 </ns6:componentOf> 4099 <ns6:component> 4100 <ns6:structuredBody> 4101 <ns6:component> 4102 <ns6:section> 4103 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 4104 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4105 <ns6:text> 4106 <ns6:list> 4107 <ns6:item> 4108 <ns6:caption>Codice Diagnosi</ns6:caption> 4109 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 4110 </ns6:content> 4111 </ns6:item> 4112 </ns6:list> 4113 <ns6:list> 4114 <ns6:item> 4115 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4116 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 4117 </ns6:content> 4118 </ns6:item> 4119 </ns6:list> 4120 <ns6:list> 4121 <ns6:item> 4122 <ns6:caption>Codice Percorso</ns6:caption> 4123 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 4124 </ns6:content> 4125 </ns6:item> 4126 </ns6:list> 4127 <ns6:list> 4128 <ns6:item> 4129 <ns6:caption>Descrizione Percorso</ns6:caption> 4130 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 4131 </ns6:content> 4132 </ns6:item> 4133 </ns6:list> 4134 </ns6:text> 4135 </ns6:section> 4136 </ns6:component> 4137 </ns6:structuredBody> 4138 </ns6:component> 4139 </ns6:ClinicalDocument> 4140 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4141 <ns6:realmCode code="IT"/> 4142 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 4143 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 4144 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110258.de750182-bef0-4075-b322-85fdc201acb2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4145 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 4146 <ns6:effectiveTime value="20140725110258+0100"/> 4147 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 4148 <ns6:languageCode code="it-IT"/> 4149 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110258.de750182-bef0-4075-b322-85fdc201acb2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4150 <ns6:versionNumber value="1"/> 4151 <ns6:recordTarget> 4152 <ns6:patientRole> 4153 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 4154 </ns6:patientRole> 4155 </ns6:recordTarget> 4156 <ns6:author> 4157 <ns6:time value="20140725110258+0100"/> 4158 <ns6:assignedAuthor> 4159 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4160 <ns6:assignedPerson> 4161 <ns6:name> 4162 <ns6:given>Antonio</ns6:given> 4163 <ns6:family>Alberti</ns6:family> 4164 <ns6:prefix>MMG</ns6:prefix> 4165 </ns6:name> 4166 </ns6:assignedPerson> 4167 <ns6:representedOrganization> 4168 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4169 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4170 <ns6:addr/> 4171 </ns6:representedOrganization> 4172 </ns6:assignedAuthor> 4173 </ns6:author> 4174 <ns6:custodian> 4175 <ns6:assignedCustodian> 4176 <ns6:representedCustodianOrganization> 4177 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4178 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4179 </ns6:representedCustodianOrganization> 4180 </ns6:assignedCustodian> 4181 </ns6:custodian> 4182 <ns6:legalAuthenticator> 4183 <ns6:time value="20140725110258+0100"/> 4184 <ns6:signatureCode code="S"/> 4185 <ns6:assignedEntity> 4186 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4187 </ns6:assignedEntity> 4188 </ns6:legalAuthenticator> 4189 <ns6:componentOf typeCode="COMP"> 4190 <ns6:encompassingEncounter> 4191 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110255.c007cf0b-9c5f-41a0-81f8-27999191c8d9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4192 <ns6:effectiveTime value="20140725110255+0100"/> 4193 </ns6:encompassingEncounter> 4194 </ns6:componentOf> 4195 <ns6:component> 4196 <ns6:structuredBody> 4197 <ns6:component> 4198 <ns6:section> 4199 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 4200 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4201 <ns6:text> 4202 <ns6:list> 4203 <ns6:item> 4204 <ns6:caption>Codice Diagnosi</ns6:caption> 4205 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 4206 </ns6:content> 4207 </ns6:item> 4208 </ns6:list> 4209 <ns6:list> 4210 <ns6:item> 4211 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4212 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 4213 </ns6:content> 4214 </ns6:item> 4215 </ns6:list> 4216 <ns6:list> 4217 <ns6:item> 4218 <ns6:caption>Codice Percorso</ns6:caption> 4219 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 4220 </ns6:content> 4221 </ns6:item> 4222 </ns6:list> 4223 <ns6:list> 4224 <ns6:item> 4225 <ns6:caption>Descrizione Percorso</ns6:caption> 4226 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 4227 </ns6:content> 4228 </ns6:item> 4229 </ns6:list> 4230 </ns6:text> 4231 </ns6:section> 4232 </ns6:component> 4233 </ns6:structuredBody> 4234 </ns6:component> 4235 </ns6:ClinicalDocument> 4236 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4237 <ns6:realmCode code="IT"/> 4238 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 4239 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 4240 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110623.5fc866f1-9113-4350-bed1-188d6c6c925e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4241 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 4242 <ns6:effectiveTime value="20140725110623+0100"/> 4243 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 4244 <ns6:languageCode code="it-IT"/> 4245 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110623.5fc866f1-9113-4350-bed1-188d6c6c925e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4246 <ns6:versionNumber value="1"/> 4247 <ns6:recordTarget> 4248 <ns6:patientRole> 4249 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 4250 </ns6:patientRole> 4251 </ns6:recordTarget> 4252 <ns6:author> 4253 <ns6:time value="20140725110623+0100"/> 4254 <ns6:assignedAuthor> 4255 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4256 <ns6:assignedPerson> 4257 <ns6:name> 4258 <ns6:given>Antonio</ns6:given> 4259 <ns6:family>Alberti</ns6:family> 4260 <ns6:prefix>MMG</ns6:prefix> 4261 </ns6:name> 4262 </ns6:assignedPerson> 4263 <ns6:representedOrganization> 4264 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4265 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4266 <ns6:addr/> 4267 </ns6:representedOrganization> 4268 </ns6:assignedAuthor> 4269 </ns6:author> 4270 <ns6:custodian> 4271 <ns6:assignedCustodian> 4272 <ns6:representedCustodianOrganization> 4273 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4274 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4275 </ns6:representedCustodianOrganization> 4276 </ns6:assignedCustodian> 4277 </ns6:custodian> 4278 <ns6:legalAuthenticator> 4279 <ns6:time value="20140725110623+0100"/> 4280 <ns6:signatureCode code="S"/> 4281 <ns6:assignedEntity> 4282 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4283 </ns6:assignedEntity> 4284 </ns6:legalAuthenticator> 4285 <ns6:componentOf typeCode="COMP"> 4286 <ns6:encompassingEncounter> 4287 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110619.b3da6f39-11a3-4d5d-9081-e6ffbce36413" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4288 <ns6:effectiveTime value="20140725110619+0100"/> 4289 </ns6:encompassingEncounter> 4290 </ns6:componentOf> 4291 <ns6:component> 4292 <ns6:structuredBody> 4293 <ns6:component> 4294 <ns6:section> 4295 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 4296 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4297 <ns6:text> 4298 <ns6:list> 4299 <ns6:item> 4300 <ns6:caption>Codice Diagnosi</ns6:caption> 4301 <ns6:content>codiceDiagnosi<ns6:content>COD_0.1</ns6:content> 4302 </ns6:content> 4303 </ns6:item> 4304 </ns6:list> 4305 <ns6:list> 4306 <ns6:item> 4307 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4308 <ns6:content>descrizioneDiagnosi<ns6:content>INCERTEZZA DIAGNOSTICA</ns6:content> 4309 </ns6:content> 4310 </ns6:item> 4311 </ns6:list> 4312 <ns6:list> 4313 <ns6:item> 4314 <ns6:caption>Codice Percorso</ns6:caption> 4315 <ns6:content>codicePercorso<ns6:content>P2/P3</ns6:content> 4316 </ns6:content> 4317 </ns6:item> 4318 </ns6:list> 4319 <ns6:list> 4320 <ns6:item> 4321 <ns6:caption>Descrizione Percorso</ns6:caption> 4322 <ns6:content>descrizionePercorso<ns6:content>SE SONO PRESENTI ALGIE FACCIALI INVIO AL CRR ALTRIMENTI INVIO ALLO SPOKE</ns6:content> 4323 </ns6:content> 4324 </ns6:item> 4325 </ns6:list> 4326 </ns6:text> 4327 </ns6:section> 4328 </ns6:component> 4329 </ns6:structuredBody> 4330 </ns6:component> 4331 </ns6:ClinicalDocument> 4332 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4333 <ns6:realmCode code="IT"/> 4334 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 4335 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 4336 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110813.46d3b511-6a59-4ecc-8081-cebde6aa290c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4337 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 4338 <ns6:effectiveTime value="20140725110813+0100"/> 4339 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 4340 <ns6:languageCode code="it-IT"/> 4341 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110813.46d3b511-6a59-4ecc-8081-cebde6aa290c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4342 <ns6:versionNumber value="1"/> 4343 <ns6:recordTarget> 4344 <ns6:patientRole> 4345 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 4346 </ns6:patientRole> 4347 </ns6:recordTarget> 4348 <ns6:author> 4349 <ns6:time value="20140725110813+0100"/> 4350 <ns6:assignedAuthor> 4351 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4352 <ns6:assignedPerson> 4353 <ns6:name> 4354 <ns6:given>Antonio</ns6:given> 4355 <ns6:family>Alberti</ns6:family> 4356 <ns6:prefix>MMG</ns6:prefix> 4357 </ns6:name> 4358 </ns6:assignedPerson> 4359 <ns6:representedOrganization> 4360 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4361 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4362 <ns6:addr/> 4363 </ns6:representedOrganization> 4364 </ns6:assignedAuthor> 4365 </ns6:author> 4366 <ns6:custodian> 4367 <ns6:assignedCustodian> 4368 <ns6:representedCustodianOrganization> 4369 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4370 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4371 </ns6:representedCustodianOrganization> 4372 </ns6:assignedCustodian> 4373 </ns6:custodian> 4374 <ns6:legalAuthenticator> 4375 <ns6:time value="20140725110813+0100"/> 4376 <ns6:signatureCode code="S"/> 4377 <ns6:assignedEntity> 4378 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4379 </ns6:assignedEntity> 4380 </ns6:legalAuthenticator> 4381 <ns6:componentOf typeCode="COMP"> 4382 <ns6:encompassingEncounter> 4383 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725110809.d01e905f-85da-41c7-90f8-e2dfa200674b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4384 <ns6:effectiveTime value="20140725110809+0100"/> 4385 </ns6:encompassingEncounter> 4386 </ns6:componentOf> 4387 <ns6:component> 4388 <ns6:structuredBody> 4389 <ns6:component> 4390 <ns6:section> 4391 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 4392 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4393 <ns6:text> 4394 <ns6:list> 4395 <ns6:item> 4396 <ns6:caption>Codice Diagnosi</ns6:caption> 4397 <ns6:content>codiceDiagnosi<ns6:content>COD_3.1</ns6:content> 4398 </ns6:content> 4399 </ns6:item> 4400 </ns6:list> 4401 <ns6:list> 4402 <ns6:item> 4403 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4404 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA A GRAPPOLO</ns6:content> 4405 </ns6:content> 4406 </ns6:item> 4407 </ns6:list> 4408 <ns6:list> 4409 <ns6:item> 4410 <ns6:caption>Codice Percorso</ns6:caption> 4411 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 4412 </ns6:content> 4413 </ns6:item> 4414 </ns6:list> 4415 <ns6:list> 4416 <ns6:item> 4417 <ns6:caption>Descrizione Percorso</ns6:caption> 4418 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 4419 </ns6:content> 4420 </ns6:item> 4421 </ns6:list> 4422 </ns6:text> 4423 </ns6:section> 4424 </ns6:component> 4425 </ns6:structuredBody> 4426 </ns6:component> 4427 </ns6:ClinicalDocument> 4428 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4429 <ns6:realmCode code="IT"/> 4430 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 4431 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 4432 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725111133.92af5248-9253-4848-a814-9da016ee74fb" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4433 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 4434 <ns6:effectiveTime value="20140725111133+0100"/> 4435 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 4436 <ns6:languageCode code="it-IT"/> 4437 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725111133.92af5248-9253-4848-a814-9da016ee74fb" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4438 <ns6:versionNumber value="1"/> 4439 <ns6:recordTarget> 4440 <ns6:patientRole> 4441 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 4442 </ns6:patientRole> 4443 </ns6:recordTarget> 4444 <ns6:author> 4445 <ns6:time value="20140725111133+0100"/> 4446 <ns6:assignedAuthor> 4447 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4448 <ns6:assignedPerson> 4449 <ns6:name> 4450 <ns6:given>Antonio</ns6:given> 4451 <ns6:family>Alberti</ns6:family> 4452 <ns6:prefix>MMG</ns6:prefix> 4453 </ns6:name> 4454 </ns6:assignedPerson> 4455 <ns6:representedOrganization> 4456 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4457 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4458 <ns6:addr/> 4459 </ns6:representedOrganization> 4460 </ns6:assignedAuthor> 4461 </ns6:author> 4462 <ns6:custodian> 4463 <ns6:assignedCustodian> 4464 <ns6:representedCustodianOrganization> 4465 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4466 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4467 </ns6:representedCustodianOrganization> 4468 </ns6:assignedCustodian> 4469 </ns6:custodian> 4470 <ns6:legalAuthenticator> 4471 <ns6:time value="20140725111133+0100"/> 4472 <ns6:signatureCode code="S"/> 4473 <ns6:assignedEntity> 4474 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4475 </ns6:assignedEntity> 4476 </ns6:legalAuthenticator> 4477 <ns6:componentOf typeCode="COMP"> 4478 <ns6:encompassingEncounter> 4479 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725111130.93537e3c-0c09-43fb-9d7a-124d5fe411d4" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4480 <ns6:effectiveTime value="20140725111130+0100"/> 4481 </ns6:encompassingEncounter> 4482 </ns6:componentOf> 4483 <ns6:component> 4484 <ns6:structuredBody> 4485 <ns6:component> 4486 <ns6:section> 4487 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 4488 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4489 <ns6:text> 4490 <ns6:list> 4491 <ns6:item> 4492 <ns6:caption>Codice Diagnosi</ns6:caption> 4493 <ns6:content>codiceDiagnosi<ns6:content>COD_1.1</ns6:content> 4494 </ns6:content> 4495 </ns6:item> 4496 </ns6:list> 4497 <ns6:list> 4498 <ns6:item> 4499 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4500 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE EMICRANIA SENZA AURA</ns6:content> 4501 </ns6:content> 4502 </ns6:item> 4503 </ns6:list> 4504 <ns6:list> 4505 <ns6:item> 4506 <ns6:caption>Codice Percorso</ns6:caption> 4507 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 4508 </ns6:content> 4509 </ns6:item> 4510 </ns6:list> 4511 <ns6:list> 4512 <ns6:item> 4513 <ns6:caption>Descrizione Percorso</ns6:caption> 4514 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 4515 </ns6:content> 4516 </ns6:item> 4517 </ns6:list> 4518 </ns6:text> 4519 </ns6:section> 4520 </ns6:component> 4521 </ns6:structuredBody> 4522 </ns6:component> 4523 </ns6:ClinicalDocument> 4524 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4525 <ns6:realmCode code="IT"/> 4526 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 4527 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 4528 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725121320.d93cacfd-7331-424d-bfb9-5e3fd1481a1d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4529 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 4530 <ns6:effectiveTime value="20140725121320+0100"/> 4531 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 4532 <ns6:languageCode code="it-IT"/> 4533 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725121320.d93cacfd-7331-424d-bfb9-5e3fd1481a1d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4534 <ns6:versionNumber value="1"/> 4535 <ns6:recordTarget> 4536 <ns6:patientRole> 4537 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 4538 </ns6:patientRole> 4539 </ns6:recordTarget> 4540 <ns6:author> 4541 <ns6:time value="20140725121320+0100"/> 4542 <ns6:assignedAuthor> 4543 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4544 <ns6:assignedPerson> 4545 <ns6:name> 4546 <ns6:given>Antonio</ns6:given> 4547 <ns6:family>Alberti</ns6:family> 4548 <ns6:prefix>MMG</ns6:prefix> 4549 </ns6:name> 4550 </ns6:assignedPerson> 4551 <ns6:representedOrganization> 4552 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4553 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4554 <ns6:addr/> 4555 </ns6:representedOrganization> 4556 </ns6:assignedAuthor> 4557 </ns6:author> 4558 <ns6:custodian> 4559 <ns6:assignedCustodian> 4560 <ns6:representedCustodianOrganization> 4561 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4562 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4563 </ns6:representedCustodianOrganization> 4564 </ns6:assignedCustodian> 4565 </ns6:custodian> 4566 <ns6:legalAuthenticator> 4567 <ns6:time value="20140725121320+0100"/> 4568 <ns6:signatureCode code="S"/> 4569 <ns6:assignedEntity> 4570 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4571 </ns6:assignedEntity> 4572 </ns6:legalAuthenticator> 4573 <ns6:componentOf typeCode="COMP"> 4574 <ns6:encompassingEncounter> 4575 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725121316.4af550c8-c983-457d-b40c-d0cff6377136" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4576 <ns6:effectiveTime value="20140725121316+0100"/> 4577 </ns6:encompassingEncounter> 4578 </ns6:componentOf> 4579 <ns6:component> 4580 <ns6:structuredBody> 4581 <ns6:component> 4582 <ns6:section> 4583 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 4584 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4585 <ns6:text> 4586 <ns6:list> 4587 <ns6:item> 4588 <ns6:caption>Codice Diagnosi</ns6:caption> 4589 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 4590 </ns6:content> 4591 </ns6:item> 4592 </ns6:list> 4593 <ns6:list> 4594 <ns6:item> 4595 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4596 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 4597 </ns6:content> 4598 </ns6:item> 4599 </ns6:list> 4600 <ns6:list> 4601 <ns6:item> 4602 <ns6:caption>Codice Percorso</ns6:caption> 4603 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 4604 </ns6:content> 4605 </ns6:item> 4606 </ns6:list> 4607 <ns6:list> 4608 <ns6:item> 4609 <ns6:caption>Descrizione Percorso</ns6:caption> 4610 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 4611 </ns6:content> 4612 </ns6:item> 4613 </ns6:list> 4614 </ns6:text> 4615 </ns6:section> 4616 </ns6:component> 4617 </ns6:structuredBody> 4618 </ns6:component> 4619 </ns6:ClinicalDocument> 4620 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4621 <ns6:realmCode code="IT"/> 4622 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 4623 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 4624 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140140.712123f1-6d54-4128-b047-13964cf7d376" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4625 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 4626 <ns6:effectiveTime value="20140725140140+0100"/> 4627 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 4628 <ns6:languageCode code="it-IT"/> 4629 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140140.712123f1-6d54-4128-b047-13964cf7d376" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4630 <ns6:versionNumber value="1"/> 4631 <ns6:recordTarget> 4632 <ns6:patientRole> 4633 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 4634 </ns6:patientRole> 4635 </ns6:recordTarget> 4636 <ns6:author> 4637 <ns6:time value="20140725140140+0100"/> 4638 <ns6:assignedAuthor> 4639 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4640 <ns6:assignedPerson> 4641 <ns6:name> 4642 <ns6:given>Antonio</ns6:given> 4643 <ns6:family>Alberti</ns6:family> 4644 <ns6:prefix>MMG</ns6:prefix> 4645 </ns6:name> 4646 </ns6:assignedPerson> 4647 <ns6:representedOrganization> 4648 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4649 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4650 <ns6:addr/> 4651 </ns6:representedOrganization> 4652 </ns6:assignedAuthor> 4653 </ns6:author> 4654 <ns6:custodian> 4655 <ns6:assignedCustodian> 4656 <ns6:representedCustodianOrganization> 4657 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4658 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4659 </ns6:representedCustodianOrganization> 4660 </ns6:assignedCustodian> 4661 </ns6:custodian> 4662 <ns6:legalAuthenticator> 4663 <ns6:time value="20140725140140+0100"/> 4664 <ns6:signatureCode code="S"/> 4665 <ns6:assignedEntity> 4666 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4667 </ns6:assignedEntity> 4668 </ns6:legalAuthenticator> 4669 <ns6:componentOf typeCode="COMP"> 4670 <ns6:encompassingEncounter> 4671 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140136.6c7c3f96-b11b-4f50-9829-ccc09e2768d1" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4672 <ns6:effectiveTime value="20140725140136+0100"/> 4673 </ns6:encompassingEncounter> 4674 </ns6:componentOf> 4675 <ns6:component> 4676 <ns6:structuredBody> 4677 <ns6:component> 4678 <ns6:section> 4679 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 4680 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4681 <ns6:text> 4682 <ns6:list> 4683 <ns6:item> 4684 <ns6:caption>Codice Diagnosi</ns6:caption> 4685 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 4686 </ns6:content> 4687 </ns6:item> 4688 </ns6:list> 4689 <ns6:list> 4690 <ns6:item> 4691 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4692 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 4693 </ns6:content> 4694 </ns6:item> 4695 </ns6:list> 4696 <ns6:list> 4697 <ns6:item> 4698 <ns6:caption>Codice Percorso</ns6:caption> 4699 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 4700 </ns6:content> 4701 </ns6:item> 4702 </ns6:list> 4703 <ns6:list> 4704 <ns6:item> 4705 <ns6:caption>Descrizione Percorso</ns6:caption> 4706 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 4707 </ns6:content> 4708 </ns6:item> 4709 </ns6:list> 4710 </ns6:text> 4711 </ns6:section> 4712 </ns6:component> 4713 </ns6:structuredBody> 4714 </ns6:component> 4715 </ns6:ClinicalDocument> 4716 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4717 <ns6:realmCode code="IT"/> 4718 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 4719 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 4720 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140216.ec14e0a9-c09c-4278-a06c-fe90441168ae" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4721 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 4722 <ns6:effectiveTime value="20140725140216+0100"/> 4723 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 4724 <ns6:languageCode code="it-IT"/> 4725 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140216.ec14e0a9-c09c-4278-a06c-fe90441168ae" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4726 <ns6:versionNumber value="1"/> 4727 <ns6:recordTarget> 4728 <ns6:patientRole> 4729 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 4730 </ns6:patientRole> 4731 </ns6:recordTarget> 4732 <ns6:author> 4733 <ns6:time value="20140725140216+0100"/> 4734 <ns6:assignedAuthor> 4735 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4736 <ns6:assignedPerson> 4737 <ns6:name> 4738 <ns6:given>Antonio</ns6:given> 4739 <ns6:family>Alberti</ns6:family> 4740 <ns6:prefix>MMG</ns6:prefix> 4741 </ns6:name> 4742 </ns6:assignedPerson> 4743 <ns6:representedOrganization> 4744 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4745 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4746 <ns6:addr/> 4747 </ns6:representedOrganization> 4748 </ns6:assignedAuthor> 4749 </ns6:author> 4750 <ns6:custodian> 4751 <ns6:assignedCustodian> 4752 <ns6:representedCustodianOrganization> 4753 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4754 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4755 </ns6:representedCustodianOrganization> 4756 </ns6:assignedCustodian> 4757 </ns6:custodian> 4758 <ns6:legalAuthenticator> 4759 <ns6:time value="20140725140216+0100"/> 4760 <ns6:signatureCode code="S"/> 4761 <ns6:assignedEntity> 4762 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4763 </ns6:assignedEntity> 4764 </ns6:legalAuthenticator> 4765 <ns6:componentOf typeCode="COMP"> 4766 <ns6:encompassingEncounter> 4767 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140212.f7cf15e4-0409-47c4-97e2-1d9f7f27567d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4768 <ns6:effectiveTime value="20140725140212+0100"/> 4769 </ns6:encompassingEncounter> 4770 </ns6:componentOf> 4771 <ns6:component> 4772 <ns6:structuredBody> 4773 <ns6:component> 4774 <ns6:section> 4775 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 4776 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4777 <ns6:text> 4778 <ns6:list> 4779 <ns6:item> 4780 <ns6:caption>Codice Diagnosi</ns6:caption> 4781 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 4782 </ns6:content> 4783 </ns6:item> 4784 </ns6:list> 4785 <ns6:list> 4786 <ns6:item> 4787 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4788 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 4789 </ns6:content> 4790 </ns6:item> 4791 </ns6:list> 4792 <ns6:list> 4793 <ns6:item> 4794 <ns6:caption>Codice Percorso</ns6:caption> 4795 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 4796 </ns6:content> 4797 </ns6:item> 4798 </ns6:list> 4799 <ns6:list> 4800 <ns6:item> 4801 <ns6:caption>Descrizione Percorso</ns6:caption> 4802 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 4803 </ns6:content> 4804 </ns6:item> 4805 </ns6:list> 4806 </ns6:text> 4807 </ns6:section> 4808 </ns6:component> 4809 </ns6:structuredBody> 4810 </ns6:component> 4811 </ns6:ClinicalDocument> 4812 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4813 <ns6:realmCode code="IT"/> 4814 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 4815 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 4816 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140312.8ef11e1c-ba98-4750-92c0-5125de01f062" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4817 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 4818 <ns6:effectiveTime value="20140725140312+0100"/> 4819 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 4820 <ns6:languageCode code="it-IT"/> 4821 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140312.8ef11e1c-ba98-4750-92c0-5125de01f062" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4822 <ns6:versionNumber value="1"/> 4823 <ns6:recordTarget> 4824 <ns6:patientRole> 4825 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 4826 </ns6:patientRole> 4827 </ns6:recordTarget> 4828 <ns6:author> 4829 <ns6:time value="20140725140312+0100"/> 4830 <ns6:assignedAuthor> 4831 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4832 <ns6:assignedPerson> 4833 <ns6:name> 4834 <ns6:given>Antonio</ns6:given> 4835 <ns6:family>Alberti</ns6:family> 4836 <ns6:prefix>MMG</ns6:prefix> 4837 </ns6:name> 4838 </ns6:assignedPerson> 4839 <ns6:representedOrganization> 4840 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4841 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4842 <ns6:addr/> 4843 </ns6:representedOrganization> 4844 </ns6:assignedAuthor> 4845 </ns6:author> 4846 <ns6:custodian> 4847 <ns6:assignedCustodian> 4848 <ns6:representedCustodianOrganization> 4849 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4850 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4851 </ns6:representedCustodianOrganization> 4852 </ns6:assignedCustodian> 4853 </ns6:custodian> 4854 <ns6:legalAuthenticator> 4855 <ns6:time value="20140725140312+0100"/> 4856 <ns6:signatureCode code="S"/> 4857 <ns6:assignedEntity> 4858 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4859 </ns6:assignedEntity> 4860 </ns6:legalAuthenticator> 4861 <ns6:componentOf typeCode="COMP"> 4862 <ns6:encompassingEncounter> 4863 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140308.7f713ab5-fbc2-4e7e-8f18-3350640fe2e4" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4864 <ns6:effectiveTime value="20140725140308+0100"/> 4865 </ns6:encompassingEncounter> 4866 </ns6:componentOf> 4867 <ns6:component> 4868 <ns6:structuredBody> 4869 <ns6:component> 4870 <ns6:section> 4871 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 4872 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4873 <ns6:text> 4874 <ns6:list> 4875 <ns6:item> 4876 <ns6:caption>Codice Diagnosi</ns6:caption> 4877 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 4878 </ns6:content> 4879 </ns6:item> 4880 </ns6:list> 4881 <ns6:list> 4882 <ns6:item> 4883 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4884 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 4885 </ns6:content> 4886 </ns6:item> 4887 </ns6:list> 4888 <ns6:list> 4889 <ns6:item> 4890 <ns6:caption>Codice Percorso</ns6:caption> 4891 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 4892 </ns6:content> 4893 </ns6:item> 4894 </ns6:list> 4895 <ns6:list> 4896 <ns6:item> 4897 <ns6:caption>Descrizione Percorso</ns6:caption> 4898 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 4899 </ns6:content> 4900 </ns6:item> 4901 </ns6:list> 4902 </ns6:text> 4903 </ns6:section> 4904 </ns6:component> 4905 </ns6:structuredBody> 4906 </ns6:component> 4907 </ns6:ClinicalDocument> 4908 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4909 <ns6:realmCode code="IT"/> 4910 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 4911 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 4912 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140333.d4e5821a-fb20-40a0-a5f1-38af49872e11" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4913 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 4914 <ns6:effectiveTime value="20140725140333+0100"/> 4915 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 4916 <ns6:languageCode code="it-IT"/> 4917 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140333.d4e5821a-fb20-40a0-a5f1-38af49872e11" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4918 <ns6:versionNumber value="1"/> 4919 <ns6:recordTarget> 4920 <ns6:patientRole> 4921 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 4922 </ns6:patientRole> 4923 </ns6:recordTarget> 4924 <ns6:author> 4925 <ns6:time value="20140725140333+0100"/> 4926 <ns6:assignedAuthor> 4927 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4928 <ns6:assignedPerson> 4929 <ns6:name> 4930 <ns6:given>Antonio</ns6:given> 4931 <ns6:family>Alberti</ns6:family> 4932 <ns6:prefix>MMG</ns6:prefix> 4933 </ns6:name> 4934 </ns6:assignedPerson> 4935 <ns6:representedOrganization> 4936 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4937 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4938 <ns6:addr/> 4939 </ns6:representedOrganization> 4940 </ns6:assignedAuthor> 4941 </ns6:author> 4942 <ns6:custodian> 4943 <ns6:assignedCustodian> 4944 <ns6:representedCustodianOrganization> 4945 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 4946 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 4947 </ns6:representedCustodianOrganization> 4948 </ns6:assignedCustodian> 4949 </ns6:custodian> 4950 <ns6:legalAuthenticator> 4951 <ns6:time value="20140725140333+0100"/> 4952 <ns6:signatureCode code="S"/> 4953 <ns6:assignedEntity> 4954 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 4955 </ns6:assignedEntity> 4956 </ns6:legalAuthenticator> 4957 <ns6:componentOf typeCode="COMP"> 4958 <ns6:encompassingEncounter> 4959 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140329.8d4e5f53-b0a2-40fe-b86b-c9fb43b7daf1" root="2.16.840.1.113883.2.9.3.12.4.4"/> 4960 <ns6:effectiveTime value="20140725140329+0100"/> 4961 </ns6:encompassingEncounter> 4962 </ns6:componentOf> 4963 <ns6:component> 4964 <ns6:structuredBody> 4965 <ns6:component> 4966 <ns6:section> 4967 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 4968 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 4969 <ns6:text> 4970 <ns6:list> 4971 <ns6:item> 4972 <ns6:caption>Codice Diagnosi</ns6:caption> 4973 <ns6:content>codiceDiagnosi<ns6:content>COD_0.34</ns6:content> 4974 </ns6:content> 4975 </ns6:item> 4976 </ns6:list> 4977 <ns6:list> 4978 <ns6:item> 4979 <ns6:caption>Descrizione Diagnosi</ns6:caption> 4980 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA ASSOCIATA A POSSIBILI COMORBIDITA</ns6:content> 4981 </ns6:content> 4982 </ns6:item> 4983 </ns6:list> 4984 <ns6:list> 4985 <ns6:item> 4986 <ns6:caption>Codice Percorso</ns6:caption> 4987 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 4988 </ns6:content> 4989 </ns6:item> 4990 </ns6:list> 4991 <ns6:list> 4992 <ns6:item> 4993 <ns6:caption>Descrizione Percorso</ns6:caption> 4994 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 4995 </ns6:content> 4996 </ns6:item> 4997 </ns6:list> 4998 </ns6:text> 4999 </ns6:section> 5000 </ns6:component> 5001 </ns6:structuredBody> 5002 </ns6:component> 5003 </ns6:ClinicalDocument> 5004 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5005 <ns6:realmCode code="IT"/> 5006 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5007 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5008 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140506.999d228b-0e06-45e6-920d-48b6a2674c1c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5009 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5010 <ns6:effectiveTime value="20140725140506+0100"/> 5011 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5012 <ns6:languageCode code="it-IT"/> 5013 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140506.999d228b-0e06-45e6-920d-48b6a2674c1c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5014 <ns6:versionNumber value="1"/> 5015 <ns6:recordTarget> 5016 <ns6:patientRole> 5017 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5018 </ns6:patientRole> 5019 </ns6:recordTarget> 5020 <ns6:author> 5021 <ns6:time value="20140725140506+0100"/> 5022 <ns6:assignedAuthor> 5023 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5024 <ns6:assignedPerson> 5025 <ns6:name> 5026 <ns6:given>Antonio</ns6:given> 5027 <ns6:family>Alberti</ns6:family> 5028 <ns6:prefix>MMG</ns6:prefix> 5029 </ns6:name> 5030 </ns6:assignedPerson> 5031 <ns6:representedOrganization> 5032 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5033 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5034 <ns6:addr/> 5035 </ns6:representedOrganization> 5036 </ns6:assignedAuthor> 5037 </ns6:author> 5038 <ns6:custodian> 5039 <ns6:assignedCustodian> 5040 <ns6:representedCustodianOrganization> 5041 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5042 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5043 </ns6:representedCustodianOrganization> 5044 </ns6:assignedCustodian> 5045 </ns6:custodian> 5046 <ns6:legalAuthenticator> 5047 <ns6:time value="20140725140506+0100"/> 5048 <ns6:signatureCode code="S"/> 5049 <ns6:assignedEntity> 5050 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5051 </ns6:assignedEntity> 5052 </ns6:legalAuthenticator> 5053 <ns6:componentOf typeCode="COMP"> 5054 <ns6:encompassingEncounter> 5055 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140502.adb6a702-7aae-45e7-88fc-9f080e0f7b19" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5056 <ns6:effectiveTime value="20140725140502+0100"/> 5057 </ns6:encompassingEncounter> 5058 </ns6:componentOf> 5059 <ns6:component> 5060 <ns6:structuredBody> 5061 <ns6:component> 5062 <ns6:section> 5063 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 5064 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 5065 <ns6:text> 5066 <ns6:list> 5067 <ns6:item> 5068 <ns6:caption>Codice Diagnosi</ns6:caption> 5069 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 5070 </ns6:content> 5071 </ns6:item> 5072 </ns6:list> 5073 <ns6:list> 5074 <ns6:item> 5075 <ns6:caption>Descrizione Diagnosi</ns6:caption> 5076 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 5077 </ns6:content> 5078 </ns6:item> 5079 </ns6:list> 5080 <ns6:list> 5081 <ns6:item> 5082 <ns6:caption>Codice Percorso</ns6:caption> 5083 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 5084 </ns6:content> 5085 </ns6:item> 5086 </ns6:list> 5087 <ns6:list> 5088 <ns6:item> 5089 <ns6:caption>Descrizione Percorso</ns6:caption> 5090 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 5091 </ns6:content> 5092 </ns6:item> 5093 </ns6:list> 5094 </ns6:text> 5095 </ns6:section> 5096 </ns6:component> 5097 </ns6:structuredBody> 5098 </ns6:component> 5099 </ns6:ClinicalDocument> 5100 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5101 <ns6:realmCode code="IT"/> 5102 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5103 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5104 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140539.e652cb05-792d-4761-aaeb-84d6c8a7dce3" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5105 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5106 <ns6:effectiveTime value="20140725140539+0100"/> 5107 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5108 <ns6:languageCode code="it-IT"/> 5109 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140539.e652cb05-792d-4761-aaeb-84d6c8a7dce3" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5110 <ns6:versionNumber value="1"/> 5111 <ns6:recordTarget> 5112 <ns6:patientRole> 5113 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5114 </ns6:patientRole> 5115 </ns6:recordTarget> 5116 <ns6:author> 5117 <ns6:time value="20140725140539+0100"/> 5118 <ns6:assignedAuthor> 5119 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5120 <ns6:assignedPerson> 5121 <ns6:name> 5122 <ns6:given>Antonio</ns6:given> 5123 <ns6:family>Alberti</ns6:family> 5124 <ns6:prefix>MMG</ns6:prefix> 5125 </ns6:name> 5126 </ns6:assignedPerson> 5127 <ns6:representedOrganization> 5128 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5129 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5130 <ns6:addr/> 5131 </ns6:representedOrganization> 5132 </ns6:assignedAuthor> 5133 </ns6:author> 5134 <ns6:custodian> 5135 <ns6:assignedCustodian> 5136 <ns6:representedCustodianOrganization> 5137 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5138 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5139 </ns6:representedCustodianOrganization> 5140 </ns6:assignedCustodian> 5141 </ns6:custodian> 5142 <ns6:legalAuthenticator> 5143 <ns6:time value="20140725140539+0100"/> 5144 <ns6:signatureCode code="S"/> 5145 <ns6:assignedEntity> 5146 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5147 </ns6:assignedEntity> 5148 </ns6:legalAuthenticator> 5149 <ns6:componentOf typeCode="COMP"> 5150 <ns6:encompassingEncounter> 5151 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140535.900cffe1-20d7-4d65-8df7-a317f9395739" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5152 <ns6:effectiveTime value="20140725140535+0100"/> 5153 </ns6:encompassingEncounter> 5154 </ns6:componentOf> 5155 <ns6:component> 5156 <ns6:structuredBody> 5157 <ns6:component> 5158 <ns6:section> 5159 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 5160 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 5161 <ns6:text> 5162 <ns6:list> 5163 <ns6:item> 5164 <ns6:caption>Codice Diagnosi</ns6:caption> 5165 <ns6:content>codiceDiagnosi<ns6:content>COD_0.3</ns6:content> 5166 </ns6:content> 5167 </ns6:item> 5168 </ns6:list> 5169 <ns6:list> 5170 <ns6:item> 5171 <ns6:caption>Descrizione Diagnosi</ns6:caption> 5172 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA</ns6:content> 5173 </ns6:content> 5174 </ns6:item> 5175 </ns6:list> 5176 <ns6:list> 5177 <ns6:item> 5178 <ns6:caption>Codice Percorso</ns6:caption> 5179 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 5180 </ns6:content> 5181 </ns6:item> 5182 </ns6:list> 5183 <ns6:list> 5184 <ns6:item> 5185 <ns6:caption>Descrizione Percorso</ns6:caption> 5186 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 5187 </ns6:content> 5188 </ns6:item> 5189 </ns6:list> 5190 </ns6:text> 5191 </ns6:section> 5192 </ns6:component> 5193 </ns6:structuredBody> 5194 </ns6:component> 5195 </ns6:ClinicalDocument> 5196 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5197 <ns6:realmCode code="IT"/> 5198 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5199 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5200 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140720.5867619b-df8b-465f-949e-9e27c21cd9dd" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5201 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5202 <ns6:effectiveTime value="20140725140720+0100"/> 5203 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5204 <ns6:languageCode code="it-IT"/> 5205 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140720.5867619b-df8b-465f-949e-9e27c21cd9dd" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5206 <ns6:versionNumber value="1"/> 5207 <ns6:recordTarget> 5208 <ns6:patientRole> 5209 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5210 </ns6:patientRole> 5211 </ns6:recordTarget> 5212 <ns6:author> 5213 <ns6:time value="20140725140720+0100"/> 5214 <ns6:assignedAuthor> 5215 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5216 <ns6:assignedPerson> 5217 <ns6:name> 5218 <ns6:given>Antonio</ns6:given> 5219 <ns6:family>Alberti</ns6:family> 5220 <ns6:prefix>MMG</ns6:prefix> 5221 </ns6:name> 5222 </ns6:assignedPerson> 5223 <ns6:representedOrganization> 5224 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5225 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5226 <ns6:addr/> 5227 </ns6:representedOrganization> 5228 </ns6:assignedAuthor> 5229 </ns6:author> 5230 <ns6:custodian> 5231 <ns6:assignedCustodian> 5232 <ns6:representedCustodianOrganization> 5233 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5234 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5235 </ns6:representedCustodianOrganization> 5236 </ns6:assignedCustodian> 5237 </ns6:custodian> 5238 <ns6:legalAuthenticator> 5239 <ns6:time value="20140725140720+0100"/> 5240 <ns6:signatureCode code="S"/> 5241 <ns6:assignedEntity> 5242 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5243 </ns6:assignedEntity> 5244 </ns6:legalAuthenticator> 5245 <ns6:componentOf typeCode="COMP"> 5246 <ns6:encompassingEncounter> 5247 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140716.dd59eba8-e240-47c6-b52f-29be81e53d9e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5248 <ns6:effectiveTime value="20140725140716+0100"/> 5249 </ns6:encompassingEncounter> 5250 </ns6:componentOf> 5251 <ns6:component> 5252 <ns6:structuredBody> 5253 <ns6:component> 5254 <ns6:section> 5255 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 5256 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 5257 <ns6:text> 5258 <ns6:list> 5259 <ns6:item> 5260 <ns6:caption>Codice Diagnosi</ns6:caption> 5261 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 5262 </ns6:content> 5263 </ns6:item> 5264 </ns6:list> 5265 <ns6:list> 5266 <ns6:item> 5267 <ns6:caption>Descrizione Diagnosi</ns6:caption> 5268 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 5269 </ns6:content> 5270 </ns6:item> 5271 </ns6:list> 5272 <ns6:list> 5273 <ns6:item> 5274 <ns6:caption>Codice Percorso</ns6:caption> 5275 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 5276 </ns6:content> 5277 </ns6:item> 5278 </ns6:list> 5279 <ns6:list> 5280 <ns6:item> 5281 <ns6:caption>Descrizione Percorso</ns6:caption> 5282 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 5283 </ns6:content> 5284 </ns6:item> 5285 </ns6:list> 5286 </ns6:text> 5287 </ns6:section> 5288 </ns6:component> 5289 </ns6:structuredBody> 5290 </ns6:component> 5291 </ns6:ClinicalDocument> 5292 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5293 <ns6:realmCode code="IT"/> 5294 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5295 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5296 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140736.6ddc6e6b-821d-4472-a6f6-25679f574ba6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5297 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5298 <ns6:effectiveTime value="20140725140736+0100"/> 5299 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5300 <ns6:languageCode code="it-IT"/> 5301 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140736.6ddc6e6b-821d-4472-a6f6-25679f574ba6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5302 <ns6:versionNumber value="1"/> 5303 <ns6:recordTarget> 5304 <ns6:patientRole> 5305 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5306 </ns6:patientRole> 5307 </ns6:recordTarget> 5308 <ns6:author> 5309 <ns6:time value="20140725140736+0100"/> 5310 <ns6:assignedAuthor> 5311 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5312 <ns6:assignedPerson> 5313 <ns6:name> 5314 <ns6:given>Antonio</ns6:given> 5315 <ns6:family>Alberti</ns6:family> 5316 <ns6:prefix>MMG</ns6:prefix> 5317 </ns6:name> 5318 </ns6:assignedPerson> 5319 <ns6:representedOrganization> 5320 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5321 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5322 <ns6:addr/> 5323 </ns6:representedOrganization> 5324 </ns6:assignedAuthor> 5325 </ns6:author> 5326 <ns6:custodian> 5327 <ns6:assignedCustodian> 5328 <ns6:representedCustodianOrganization> 5329 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5330 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5331 </ns6:representedCustodianOrganization> 5332 </ns6:assignedCustodian> 5333 </ns6:custodian> 5334 <ns6:legalAuthenticator> 5335 <ns6:time value="20140725140736+0100"/> 5336 <ns6:signatureCode code="S"/> 5337 <ns6:assignedEntity> 5338 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5339 </ns6:assignedEntity> 5340 </ns6:legalAuthenticator> 5341 <ns6:componentOf typeCode="COMP"> 5342 <ns6:encompassingEncounter> 5343 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140732.01ded3c9-91b2-46f8-a3ba-b79fce835c76" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5344 <ns6:effectiveTime value="20140725140732+0100"/> 5345 </ns6:encompassingEncounter> 5346 </ns6:componentOf> 5347 <ns6:component> 5348 <ns6:structuredBody> 5349 <ns6:component> 5350 <ns6:section> 5351 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 5352 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 5353 <ns6:text> 5354 <ns6:list> 5355 <ns6:item> 5356 <ns6:caption>Codice Diagnosi</ns6:caption> 5357 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 5358 </ns6:content> 5359 </ns6:item> 5360 </ns6:list> 5361 <ns6:list> 5362 <ns6:item> 5363 <ns6:caption>Descrizione Diagnosi</ns6:caption> 5364 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 5365 </ns6:content> 5366 </ns6:item> 5367 </ns6:list> 5368 <ns6:list> 5369 <ns6:item> 5370 <ns6:caption>Codice Percorso</ns6:caption> 5371 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 5372 </ns6:content> 5373 </ns6:item> 5374 </ns6:list> 5375 <ns6:list> 5376 <ns6:item> 5377 <ns6:caption>Descrizione Percorso</ns6:caption> 5378 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 5379 </ns6:content> 5380 </ns6:item> 5381 </ns6:list> 5382 </ns6:text> 5383 </ns6:section> 5384 </ns6:component> 5385 </ns6:structuredBody> 5386 </ns6:component> 5387 </ns6:ClinicalDocument> 5388 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5389 <ns6:realmCode code="IT"/> 5390 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5391 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5392 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140848.1ebed819-7b5b-48a9-a1ef-e84b73cc3365" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5393 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5394 <ns6:effectiveTime value="20140725140848+0100"/> 5395 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5396 <ns6:languageCode code="it-IT"/> 5397 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140848.1ebed819-7b5b-48a9-a1ef-e84b73cc3365" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5398 <ns6:versionNumber value="1"/> 5399 <ns6:recordTarget> 5400 <ns6:patientRole> 5401 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5402 </ns6:patientRole> 5403 </ns6:recordTarget> 5404 <ns6:author> 5405 <ns6:time value="20140725140848+0100"/> 5406 <ns6:assignedAuthor> 5407 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5408 <ns6:assignedPerson> 5409 <ns6:name> 5410 <ns6:given>Antonio</ns6:given> 5411 <ns6:family>Alberti</ns6:family> 5412 <ns6:prefix>MMG</ns6:prefix> 5413 </ns6:name> 5414 </ns6:assignedPerson> 5415 <ns6:representedOrganization> 5416 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5417 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5418 <ns6:addr/> 5419 </ns6:representedOrganization> 5420 </ns6:assignedAuthor> 5421 </ns6:author> 5422 <ns6:custodian> 5423 <ns6:assignedCustodian> 5424 <ns6:representedCustodianOrganization> 5425 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5426 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5427 </ns6:representedCustodianOrganization> 5428 </ns6:assignedCustodian> 5429 </ns6:custodian> 5430 <ns6:legalAuthenticator> 5431 <ns6:time value="20140725140848+0100"/> 5432 <ns6:signatureCode code="S"/> 5433 <ns6:assignedEntity> 5434 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5435 </ns6:assignedEntity> 5436 </ns6:legalAuthenticator> 5437 <ns6:componentOf typeCode="COMP"> 5438 <ns6:encompassingEncounter> 5439 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725140844.85716f53-1c26-4114-adac-661592ef24bb" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5440 <ns6:effectiveTime value="20140725140844+0100"/> 5441 </ns6:encompassingEncounter> 5442 </ns6:componentOf> 5443 <ns6:component> 5444 <ns6:structuredBody> 5445 <ns6:component> 5446 <ns6:section> 5447 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 5448 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 5449 <ns6:text> 5450 <ns6:list> 5451 <ns6:item> 5452 <ns6:caption>Codice Diagnosi</ns6:caption> 5453 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 5454 </ns6:content> 5455 </ns6:item> 5456 </ns6:list> 5457 <ns6:list> 5458 <ns6:item> 5459 <ns6:caption>Descrizione Diagnosi</ns6:caption> 5460 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 5461 </ns6:content> 5462 </ns6:item> 5463 </ns6:list> 5464 <ns6:list> 5465 <ns6:item> 5466 <ns6:caption>Codice Percorso</ns6:caption> 5467 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 5468 </ns6:content> 5469 </ns6:item> 5470 </ns6:list> 5471 <ns6:list> 5472 <ns6:item> 5473 <ns6:caption>Descrizione Percorso</ns6:caption> 5474 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 5475 </ns6:content> 5476 </ns6:item> 5477 </ns6:list> 5478 </ns6:text> 5479 </ns6:section> 5480 </ns6:component> 5481 </ns6:structuredBody> 5482 </ns6:component> 5483 </ns6:ClinicalDocument> 5484 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5485 <ns6:realmCode code="IT"/> 5486 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5487 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5488 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141032.6d51b4c8-0191-4148-aa71-7212533cbd10" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5489 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5490 <ns6:effectiveTime value="20140725141032+0100"/> 5491 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5492 <ns6:languageCode code="it-IT"/> 5493 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141032.6d51b4c8-0191-4148-aa71-7212533cbd10" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5494 <ns6:versionNumber value="1"/> 5495 <ns6:recordTarget> 5496 <ns6:patientRole> 5497 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5498 </ns6:patientRole> 5499 </ns6:recordTarget> 5500 <ns6:author> 5501 <ns6:time value="20140725141032+0100"/> 5502 <ns6:assignedAuthor> 5503 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5504 <ns6:assignedPerson> 5505 <ns6:name> 5506 <ns6:given>Antonio</ns6:given> 5507 <ns6:family>Alberti</ns6:family> 5508 <ns6:prefix>MMG</ns6:prefix> 5509 </ns6:name> 5510 </ns6:assignedPerson> 5511 <ns6:representedOrganization> 5512 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5513 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5514 <ns6:addr/> 5515 </ns6:representedOrganization> 5516 </ns6:assignedAuthor> 5517 </ns6:author> 5518 <ns6:custodian> 5519 <ns6:assignedCustodian> 5520 <ns6:representedCustodianOrganization> 5521 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5522 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5523 </ns6:representedCustodianOrganization> 5524 </ns6:assignedCustodian> 5525 </ns6:custodian> 5526 <ns6:legalAuthenticator> 5527 <ns6:time value="20140725141032+0100"/> 5528 <ns6:signatureCode code="S"/> 5529 <ns6:assignedEntity> 5530 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5531 </ns6:assignedEntity> 5532 </ns6:legalAuthenticator> 5533 <ns6:componentOf typeCode="COMP"> 5534 <ns6:encompassingEncounter> 5535 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141028.1af731ef-9135-4da9-8b26-ed04e65cdc48" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5536 <ns6:effectiveTime value="20140725141028+0100"/> 5537 </ns6:encompassingEncounter> 5538 </ns6:componentOf> 5539 <ns6:component> 5540 <ns6:structuredBody> 5541 <ns6:component> 5542 <ns6:section> 5543 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 5544 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 5545 <ns6:text> 5546 <ns6:list> 5547 <ns6:item> 5548 <ns6:caption>Codice Diagnosi</ns6:caption> 5549 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 5550 </ns6:content> 5551 </ns6:item> 5552 </ns6:list> 5553 <ns6:list> 5554 <ns6:item> 5555 <ns6:caption>Descrizione Diagnosi</ns6:caption> 5556 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 5557 </ns6:content> 5558 </ns6:item> 5559 </ns6:list> 5560 <ns6:list> 5561 <ns6:item> 5562 <ns6:caption>Codice Percorso</ns6:caption> 5563 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 5564 </ns6:content> 5565 </ns6:item> 5566 </ns6:list> 5567 <ns6:list> 5568 <ns6:item> 5569 <ns6:caption>Descrizione Percorso</ns6:caption> 5570 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 5571 </ns6:content> 5572 </ns6:item> 5573 </ns6:list> 5574 </ns6:text> 5575 </ns6:section> 5576 </ns6:component> 5577 </ns6:structuredBody> 5578 </ns6:component> 5579 </ns6:ClinicalDocument> 5580 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5581 <ns6:realmCode code="IT"/> 5582 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5583 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5584 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141108.72027414-7a91-4f8d-ad5b-f6deeb90c5bc" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5585 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5586 <ns6:effectiveTime value="20140725141108+0100"/> 5587 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5588 <ns6:languageCode code="it-IT"/> 5589 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141108.72027414-7a91-4f8d-ad5b-f6deeb90c5bc" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5590 <ns6:versionNumber value="1"/> 5591 <ns6:recordTarget> 5592 <ns6:patientRole> 5593 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5594 </ns6:patientRole> 5595 </ns6:recordTarget> 5596 <ns6:author> 5597 <ns6:time value="20140725141108+0100"/> 5598 <ns6:assignedAuthor> 5599 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5600 <ns6:assignedPerson> 5601 <ns6:name> 5602 <ns6:given>Antonio</ns6:given> 5603 <ns6:family>Alberti</ns6:family> 5604 <ns6:prefix>MMG</ns6:prefix> 5605 </ns6:name> 5606 </ns6:assignedPerson> 5607 <ns6:representedOrganization> 5608 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5609 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5610 <ns6:addr/> 5611 </ns6:representedOrganization> 5612 </ns6:assignedAuthor> 5613 </ns6:author> 5614 <ns6:custodian> 5615 <ns6:assignedCustodian> 5616 <ns6:representedCustodianOrganization> 5617 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5618 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5619 </ns6:representedCustodianOrganization> 5620 </ns6:assignedCustodian> 5621 </ns6:custodian> 5622 <ns6:legalAuthenticator> 5623 <ns6:time value="20140725141108+0100"/> 5624 <ns6:signatureCode code="S"/> 5625 <ns6:assignedEntity> 5626 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5627 </ns6:assignedEntity> 5628 </ns6:legalAuthenticator> 5629 <ns6:componentOf typeCode="COMP"> 5630 <ns6:encompassingEncounter> 5631 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141103.50efe574-62f2-42ff-afb0-13154e447967" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5632 <ns6:effectiveTime value="20140725141103+0100"/> 5633 </ns6:encompassingEncounter> 5634 </ns6:componentOf> 5635 <ns6:component> 5636 <ns6:structuredBody> 5637 <ns6:component> 5638 <ns6:section> 5639 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 5640 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 5641 <ns6:text> 5642 <ns6:list> 5643 <ns6:item> 5644 <ns6:caption>Codice Diagnosi</ns6:caption> 5645 <ns6:content>codiceDiagnosi<ns6:content>COD_0.34</ns6:content> 5646 </ns6:content> 5647 </ns6:item> 5648 </ns6:list> 5649 <ns6:list> 5650 <ns6:item> 5651 <ns6:caption>Descrizione Diagnosi</ns6:caption> 5652 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA ASSOCIATA A POSSIBILI COMORBIDITA</ns6:content> 5653 </ns6:content> 5654 </ns6:item> 5655 </ns6:list> 5656 <ns6:list> 5657 <ns6:item> 5658 <ns6:caption>Codice Percorso</ns6:caption> 5659 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 5660 </ns6:content> 5661 </ns6:item> 5662 </ns6:list> 5663 <ns6:list> 5664 <ns6:item> 5665 <ns6:caption>Descrizione Percorso</ns6:caption> 5666 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 5667 </ns6:content> 5668 </ns6:item> 5669 </ns6:list> 5670 </ns6:text> 5671 </ns6:section> 5672 </ns6:component> 5673 </ns6:structuredBody> 5674 </ns6:component> 5675 </ns6:ClinicalDocument> 5676 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5677 <ns6:realmCode code="IT"/> 5678 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5679 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5680 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141325.8cf046a2-3711-4270-b060-b8c4905396c6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5681 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5682 <ns6:effectiveTime value="20140725141325+0100"/> 5683 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5684 <ns6:languageCode code="it-IT"/> 5685 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141325.8cf046a2-3711-4270-b060-b8c4905396c6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5686 <ns6:versionNumber value="1"/> 5687 <ns6:recordTarget> 5688 <ns6:patientRole> 5689 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5690 </ns6:patientRole> 5691 </ns6:recordTarget> 5692 <ns6:author> 5693 <ns6:time value="20140725141325+0100"/> 5694 <ns6:assignedAuthor> 5695 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5696 <ns6:assignedPerson> 5697 <ns6:name> 5698 <ns6:given>Antonio</ns6:given> 5699 <ns6:family>Alberti</ns6:family> 5700 <ns6:prefix>MMG</ns6:prefix> 5701 </ns6:name> 5702 </ns6:assignedPerson> 5703 <ns6:representedOrganization> 5704 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5705 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5706 <ns6:addr/> 5707 </ns6:representedOrganization> 5708 </ns6:assignedAuthor> 5709 </ns6:author> 5710 <ns6:custodian> 5711 <ns6:assignedCustodian> 5712 <ns6:representedCustodianOrganization> 5713 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5714 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5715 </ns6:representedCustodianOrganization> 5716 </ns6:assignedCustodian> 5717 </ns6:custodian> 5718 <ns6:legalAuthenticator> 5719 <ns6:time value="20140725141325+0100"/> 5720 <ns6:signatureCode code="S"/> 5721 <ns6:assignedEntity> 5722 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5723 </ns6:assignedEntity> 5724 </ns6:legalAuthenticator> 5725 <ns6:componentOf typeCode="COMP"> 5726 <ns6:encompassingEncounter> 5727 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141321.224d2811-6384-478a-8362-73574ffa83b4" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5728 <ns6:effectiveTime value="20140725141321+0100"/> 5729 </ns6:encompassingEncounter> 5730 </ns6:componentOf> 5731 <ns6:component> 5732 <ns6:structuredBody> 5733 <ns6:component> 5734 <ns6:section> 5735 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 5736 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 5737 <ns6:text> 5738 <ns6:list> 5739 <ns6:item> 5740 <ns6:caption>Codice Diagnosi</ns6:caption> 5741 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 5742 </ns6:content> 5743 </ns6:item> 5744 </ns6:list> 5745 <ns6:list> 5746 <ns6:item> 5747 <ns6:caption>Descrizione Diagnosi</ns6:caption> 5748 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 5749 </ns6:content> 5750 </ns6:item> 5751 </ns6:list> 5752 <ns6:list> 5753 <ns6:item> 5754 <ns6:caption>Codice Percorso</ns6:caption> 5755 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 5756 </ns6:content> 5757 </ns6:item> 5758 </ns6:list> 5759 <ns6:list> 5760 <ns6:item> 5761 <ns6:caption>Descrizione Percorso</ns6:caption> 5762 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 5763 </ns6:content> 5764 </ns6:item> 5765 </ns6:list> 5766 </ns6:text> 5767 </ns6:section> 5768 </ns6:component> 5769 </ns6:structuredBody> 5770 </ns6:component> 5771 </ns6:ClinicalDocument> 5772 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5773 <ns6:realmCode code="IT"/> 5774 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5775 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5776 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141345.8e5e3d63-b8c4-46b1-b911-25e3fd44240f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5777 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5778 <ns6:effectiveTime value="20140725141345+0100"/> 5779 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5780 <ns6:languageCode code="it-IT"/> 5781 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141345.8e5e3d63-b8c4-46b1-b911-25e3fd44240f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5782 <ns6:versionNumber value="1"/> 5783 <ns6:recordTarget> 5784 <ns6:patientRole> 5785 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5786 </ns6:patientRole> 5787 </ns6:recordTarget> 5788 <ns6:author> 5789 <ns6:time value="20140725141345+0100"/> 5790 <ns6:assignedAuthor> 5791 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5792 <ns6:assignedPerson> 5793 <ns6:name> 5794 <ns6:given>Antonio</ns6:given> 5795 <ns6:family>Alberti</ns6:family> 5796 <ns6:prefix>MMG</ns6:prefix> 5797 </ns6:name> 5798 </ns6:assignedPerson> 5799 <ns6:representedOrganization> 5800 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5801 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5802 <ns6:addr/> 5803 </ns6:representedOrganization> 5804 </ns6:assignedAuthor> 5805 </ns6:author> 5806 <ns6:custodian> 5807 <ns6:assignedCustodian> 5808 <ns6:representedCustodianOrganization> 5809 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5810 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5811 </ns6:representedCustodianOrganization> 5812 </ns6:assignedCustodian> 5813 </ns6:custodian> 5814 <ns6:legalAuthenticator> 5815 <ns6:time value="20140725141345+0100"/> 5816 <ns6:signatureCode code="S"/> 5817 <ns6:assignedEntity> 5818 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5819 </ns6:assignedEntity> 5820 </ns6:legalAuthenticator> 5821 <ns6:componentOf typeCode="COMP"> 5822 <ns6:encompassingEncounter> 5823 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141341.1403817c-e842-4dc4-a285-1ce2b33122b7" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5824 <ns6:effectiveTime value="20140725141341+0100"/> 5825 </ns6:encompassingEncounter> 5826 </ns6:componentOf> 5827 <ns6:component> 5828 <ns6:structuredBody> 5829 <ns6:component> 5830 <ns6:section> 5831 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 5832 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 5833 <ns6:text> 5834 <ns6:list> 5835 <ns6:item> 5836 <ns6:caption>Codice Diagnosi</ns6:caption> 5837 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 5838 </ns6:content> 5839 </ns6:item> 5840 </ns6:list> 5841 <ns6:list> 5842 <ns6:item> 5843 <ns6:caption>Descrizione Diagnosi</ns6:caption> 5844 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 5845 </ns6:content> 5846 </ns6:item> 5847 </ns6:list> 5848 <ns6:list> 5849 <ns6:item> 5850 <ns6:caption>Codice Percorso</ns6:caption> 5851 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 5852 </ns6:content> 5853 </ns6:item> 5854 </ns6:list> 5855 <ns6:list> 5856 <ns6:item> 5857 <ns6:caption>Descrizione Percorso</ns6:caption> 5858 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 5859 </ns6:content> 5860 </ns6:item> 5861 </ns6:list> 5862 </ns6:text> 5863 </ns6:section> 5864 </ns6:component> 5865 </ns6:structuredBody> 5866 </ns6:component> 5867 </ns6:ClinicalDocument> 5868 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5869 <ns6:realmCode code="IT"/> 5870 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5871 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5872 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141758.cc9fd416-39fc-4394-9784-1d83244de5ff" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5873 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5874 <ns6:effectiveTime value="20140725141758+0100"/> 5875 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5876 <ns6:languageCode code="it-IT"/> 5877 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141758.cc9fd416-39fc-4394-9784-1d83244de5ff" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5878 <ns6:versionNumber value="1"/> 5879 <ns6:recordTarget> 5880 <ns6:patientRole> 5881 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5882 </ns6:patientRole> 5883 </ns6:recordTarget> 5884 <ns6:author> 5885 <ns6:time value="20140725141758+0100"/> 5886 <ns6:assignedAuthor> 5887 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5888 <ns6:assignedPerson> 5889 <ns6:name> 5890 <ns6:given>Antonio</ns6:given> 5891 <ns6:family>Alberti</ns6:family> 5892 <ns6:prefix>MMG</ns6:prefix> 5893 </ns6:name> 5894 </ns6:assignedPerson> 5895 <ns6:representedOrganization> 5896 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5897 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5898 <ns6:addr/> 5899 </ns6:representedOrganization> 5900 </ns6:assignedAuthor> 5901 </ns6:author> 5902 <ns6:custodian> 5903 <ns6:assignedCustodian> 5904 <ns6:representedCustodianOrganization> 5905 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5906 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5907 </ns6:representedCustodianOrganization> 5908 </ns6:assignedCustodian> 5909 </ns6:custodian> 5910 <ns6:legalAuthenticator> 5911 <ns6:time value="20140725141758+0100"/> 5912 <ns6:signatureCode code="S"/> 5913 <ns6:assignedEntity> 5914 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5915 </ns6:assignedEntity> 5916 </ns6:legalAuthenticator> 5917 <ns6:componentOf typeCode="COMP"> 5918 <ns6:encompassingEncounter> 5919 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725141754.9111a5c1-3d01-4d3e-b021-0336176189f2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5920 <ns6:effectiveTime value="20140725141754+0100"/> 5921 </ns6:encompassingEncounter> 5922 </ns6:componentOf> 5923 <ns6:component> 5924 <ns6:structuredBody> 5925 <ns6:component> 5926 <ns6:section> 5927 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 5928 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 5929 <ns6:text> 5930 <ns6:list> 5931 <ns6:item> 5932 <ns6:caption>Codice Diagnosi</ns6:caption> 5933 <ns6:content>codiceDiagnosi<ns6:content>COD_1.1</ns6:content> 5934 </ns6:content> 5935 </ns6:item> 5936 </ns6:list> 5937 <ns6:list> 5938 <ns6:item> 5939 <ns6:caption>Descrizione Diagnosi</ns6:caption> 5940 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE EMICRANIA SENZA AURA</ns6:content> 5941 </ns6:content> 5942 </ns6:item> 5943 </ns6:list> 5944 <ns6:list> 5945 <ns6:item> 5946 <ns6:caption>Codice Percorso</ns6:caption> 5947 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 5948 </ns6:content> 5949 </ns6:item> 5950 </ns6:list> 5951 <ns6:list> 5952 <ns6:item> 5953 <ns6:caption>Descrizione Percorso</ns6:caption> 5954 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 5955 </ns6:content> 5956 </ns6:item> 5957 </ns6:list> 5958 </ns6:text> 5959 </ns6:section> 5960 </ns6:component> 5961 </ns6:structuredBody> 5962 </ns6:component> 5963 </ns6:ClinicalDocument> 5964 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 5965 <ns6:realmCode code="IT"/> 5966 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 5967 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 5968 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725155321.5df76179-a82d-4824-95e3-7180b43279c2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5969 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 5970 <ns6:effectiveTime value="20140725155321+0100"/> 5971 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 5972 <ns6:languageCode code="it-IT"/> 5973 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725155321.5df76179-a82d-4824-95e3-7180b43279c2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 5974 <ns6:versionNumber value="1"/> 5975 <ns6:recordTarget> 5976 <ns6:patientRole> 5977 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 5978 </ns6:patientRole> 5979 </ns6:recordTarget> 5980 <ns6:author> 5981 <ns6:time value="20140725155321+0100"/> 5982 <ns6:assignedAuthor> 5983 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 5984 <ns6:assignedPerson> 5985 <ns6:name> 5986 <ns6:given>Antonio</ns6:given> 5987 <ns6:family>Alberti</ns6:family> 5988 <ns6:prefix>MMG</ns6:prefix> 5989 </ns6:name> 5990 </ns6:assignedPerson> 5991 <ns6:representedOrganization> 5992 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 5993 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 5994 <ns6:addr/> 5995 </ns6:representedOrganization> 5996 </ns6:assignedAuthor> 5997 </ns6:author> 5998 <ns6:custodian> 5999 <ns6:assignedCustodian> 6000 <ns6:representedCustodianOrganization> 6001 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6002 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6003 </ns6:representedCustodianOrganization> 6004 </ns6:assignedCustodian> 6005 </ns6:custodian> 6006 <ns6:legalAuthenticator> 6007 <ns6:time value="20140725155321+0100"/> 6008 <ns6:signatureCode code="S"/> 6009 <ns6:assignedEntity> 6010 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6011 </ns6:assignedEntity> 6012 </ns6:legalAuthenticator> 6013 <ns6:componentOf typeCode="COMP"> 6014 <ns6:encompassingEncounter> 6015 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725155317.7fb40657-3490-4808-836d-879c09f889a1" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6016 <ns6:effectiveTime value="20140725155317+0100"/> 6017 </ns6:encompassingEncounter> 6018 </ns6:componentOf> 6019 <ns6:component> 6020 <ns6:structuredBody> 6021 <ns6:component> 6022 <ns6:section> 6023 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 6024 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6025 <ns6:text> 6026 <ns6:list> 6027 <ns6:item> 6028 <ns6:caption>Codice Diagnosi</ns6:caption> 6029 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 6030 </ns6:content> 6031 </ns6:item> 6032 </ns6:list> 6033 <ns6:list> 6034 <ns6:item> 6035 <ns6:caption>Descrizione Diagnosi</ns6:caption> 6036 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 6037 </ns6:content> 6038 </ns6:item> 6039 </ns6:list> 6040 <ns6:list> 6041 <ns6:item> 6042 <ns6:caption>Codice Percorso</ns6:caption> 6043 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 6044 </ns6:content> 6045 </ns6:item> 6046 </ns6:list> 6047 <ns6:list> 6048 <ns6:item> 6049 <ns6:caption>Descrizione Percorso</ns6:caption> 6050 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 6051 </ns6:content> 6052 </ns6:item> 6053 </ns6:list> 6054 </ns6:text> 6055 </ns6:section> 6056 </ns6:component> 6057 </ns6:structuredBody> 6058 </ns6:component> 6059 </ns6:ClinicalDocument> 6060 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 6061 <ns6:realmCode code="IT"/> 6062 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 6063 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 6064 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725155357.c3b4ab9f-b325-497c-bf75-2ed78239861a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6065 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 6066 <ns6:effectiveTime value="20140725155357+0100"/> 6067 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 6068 <ns6:languageCode code="it-IT"/> 6069 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725155357.c3b4ab9f-b325-497c-bf75-2ed78239861a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6070 <ns6:versionNumber value="1"/> 6071 <ns6:recordTarget> 6072 <ns6:patientRole> 6073 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 6074 </ns6:patientRole> 6075 </ns6:recordTarget> 6076 <ns6:author> 6077 <ns6:time value="20140725155357+0100"/> 6078 <ns6:assignedAuthor> 6079 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6080 <ns6:assignedPerson> 6081 <ns6:name> 6082 <ns6:given>Antonio</ns6:given> 6083 <ns6:family>Alberti</ns6:family> 6084 <ns6:prefix>MMG</ns6:prefix> 6085 </ns6:name> 6086 </ns6:assignedPerson> 6087 <ns6:representedOrganization> 6088 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6089 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6090 <ns6:addr/> 6091 </ns6:representedOrganization> 6092 </ns6:assignedAuthor> 6093 </ns6:author> 6094 <ns6:custodian> 6095 <ns6:assignedCustodian> 6096 <ns6:representedCustodianOrganization> 6097 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6098 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6099 </ns6:representedCustodianOrganization> 6100 </ns6:assignedCustodian> 6101 </ns6:custodian> 6102 <ns6:legalAuthenticator> 6103 <ns6:time value="20140725155357+0100"/> 6104 <ns6:signatureCode code="S"/> 6105 <ns6:assignedEntity> 6106 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6107 </ns6:assignedEntity> 6108 </ns6:legalAuthenticator> 6109 <ns6:componentOf typeCode="COMP"> 6110 <ns6:encompassingEncounter> 6111 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140725155352.f010a2fd-3c23-4fbf-a6f7-ca003e132dd6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6112 <ns6:effectiveTime value="20140725155352+0100"/> 6113 </ns6:encompassingEncounter> 6114 </ns6:componentOf> 6115 <ns6:component> 6116 <ns6:structuredBody> 6117 <ns6:component> 6118 <ns6:section> 6119 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 6120 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6121 <ns6:text> 6122 <ns6:list> 6123 <ns6:item> 6124 <ns6:caption>Codice Diagnosi</ns6:caption> 6125 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 6126 </ns6:content> 6127 </ns6:item> 6128 </ns6:list> 6129 <ns6:list> 6130 <ns6:item> 6131 <ns6:caption>Descrizione Diagnosi</ns6:caption> 6132 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 6133 </ns6:content> 6134 </ns6:item> 6135 </ns6:list> 6136 <ns6:list> 6137 <ns6:item> 6138 <ns6:caption>Codice Percorso</ns6:caption> 6139 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 6140 </ns6:content> 6141 </ns6:item> 6142 </ns6:list> 6143 <ns6:list> 6144 <ns6:item> 6145 <ns6:caption>Descrizione Percorso</ns6:caption> 6146 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 6147 </ns6:content> 6148 </ns6:item> 6149 </ns6:list> 6150 </ns6:text> 6151 </ns6:section> 6152 </ns6:component> 6153 </ns6:structuredBody> 6154 </ns6:component> 6155 </ns6:ClinicalDocument> 6156 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 6157 <ns6:realmCode code="IT"/> 6158 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 6159 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 6160 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905104431.8e8b4bf4-573c-4b05-b400-dba5d71a930c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6161 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 6162 <ns6:effectiveTime value="20140905104431+0100"/> 6163 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 6164 <ns6:languageCode code="it-IT"/> 6165 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905104431.8e8b4bf4-573c-4b05-b400-dba5d71a930c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6166 <ns6:versionNumber value="1"/> 6167 <ns6:recordTarget> 6168 <ns6:patientRole> 6169 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 6170 </ns6:patientRole> 6171 </ns6:recordTarget> 6172 <ns6:author> 6173 <ns6:time value="20140905104431+0100"/> 6174 <ns6:assignedAuthor> 6175 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6176 <ns6:assignedPerson> 6177 <ns6:name> 6178 <ns6:given>Antonio</ns6:given> 6179 <ns6:family>Alberti</ns6:family> 6180 <ns6:prefix>MMG</ns6:prefix> 6181 </ns6:name> 6182 </ns6:assignedPerson> 6183 <ns6:representedOrganization> 6184 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6185 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6186 <ns6:addr/> 6187 </ns6:representedOrganization> 6188 </ns6:assignedAuthor> 6189 </ns6:author> 6190 <ns6:custodian> 6191 <ns6:assignedCustodian> 6192 <ns6:representedCustodianOrganization> 6193 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6194 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6195 </ns6:representedCustodianOrganization> 6196 </ns6:assignedCustodian> 6197 </ns6:custodian> 6198 <ns6:legalAuthenticator> 6199 <ns6:time value="20140905104431+0100"/> 6200 <ns6:signatureCode code="S"/> 6201 <ns6:assignedEntity> 6202 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6203 </ns6:assignedEntity> 6204 </ns6:legalAuthenticator> 6205 <ns6:componentOf typeCode="COMP"> 6206 <ns6:encompassingEncounter> 6207 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905104427.55461cfc-012c-4926-8749-5c24385cb60d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6208 <ns6:effectiveTime value="20140905104427+0100"/> 6209 </ns6:encompassingEncounter> 6210 </ns6:componentOf> 6211 <ns6:component> 6212 <ns6:structuredBody> 6213 <ns6:component> 6214 <ns6:section> 6215 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 6216 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6217 <ns6:text> 6218 <ns6:list> 6219 <ns6:item> 6220 <ns6:caption>Codice Diagnosi</ns6:caption> 6221 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 6222 </ns6:content> 6223 </ns6:item> 6224 </ns6:list> 6225 <ns6:list> 6226 <ns6:item> 6227 <ns6:caption>Descrizione Diagnosi</ns6:caption> 6228 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 6229 </ns6:content> 6230 </ns6:item> 6231 </ns6:list> 6232 <ns6:list> 6233 <ns6:item> 6234 <ns6:caption>Codice Percorso</ns6:caption> 6235 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 6236 </ns6:content> 6237 </ns6:item> 6238 </ns6:list> 6239 <ns6:list> 6240 <ns6:item> 6241 <ns6:caption>Descrizione Percorso</ns6:caption> 6242 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 6243 </ns6:content> 6244 </ns6:item> 6245 </ns6:list> 6246 </ns6:text> 6247 </ns6:section> 6248 </ns6:component> 6249 </ns6:structuredBody> 6250 </ns6:component> 6251 </ns6:ClinicalDocument> 6252 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 6253 <ns6:realmCode code="IT"/> 6254 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 6255 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 6256 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905104450.275dbe6e-592e-4214-af2c-ee3f27980a28" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6257 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 6258 <ns6:effectiveTime value="20140905104450+0100"/> 6259 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 6260 <ns6:languageCode code="it-IT"/> 6261 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905104450.275dbe6e-592e-4214-af2c-ee3f27980a28" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6262 <ns6:versionNumber value="1"/> 6263 <ns6:recordTarget> 6264 <ns6:patientRole> 6265 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 6266 </ns6:patientRole> 6267 </ns6:recordTarget> 6268 <ns6:author> 6269 <ns6:time value="20140905104450+0100"/> 6270 <ns6:assignedAuthor> 6271 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6272 <ns6:assignedPerson> 6273 <ns6:name> 6274 <ns6:given>Antonio</ns6:given> 6275 <ns6:family>Alberti</ns6:family> 6276 <ns6:prefix>MMG</ns6:prefix> 6277 </ns6:name> 6278 </ns6:assignedPerson> 6279 <ns6:representedOrganization> 6280 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6281 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6282 <ns6:addr/> 6283 </ns6:representedOrganization> 6284 </ns6:assignedAuthor> 6285 </ns6:author> 6286 <ns6:custodian> 6287 <ns6:assignedCustodian> 6288 <ns6:representedCustodianOrganization> 6289 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6290 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6291 </ns6:representedCustodianOrganization> 6292 </ns6:assignedCustodian> 6293 </ns6:custodian> 6294 <ns6:legalAuthenticator> 6295 <ns6:time value="20140905104450+0100"/> 6296 <ns6:signatureCode code="S"/> 6297 <ns6:assignedEntity> 6298 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6299 </ns6:assignedEntity> 6300 </ns6:legalAuthenticator> 6301 <ns6:componentOf typeCode="COMP"> 6302 <ns6:encompassingEncounter> 6303 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905104447.f99fee3b-f7f2-4e37-b345-3ac7a5b28871" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6304 <ns6:effectiveTime value="20140905104447+0100"/> 6305 </ns6:encompassingEncounter> 6306 </ns6:componentOf> 6307 <ns6:component> 6308 <ns6:structuredBody> 6309 <ns6:component> 6310 <ns6:section> 6311 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 6312 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6313 <ns6:text> 6314 <ns6:list> 6315 <ns6:item> 6316 <ns6:caption>Codice Diagnosi</ns6:caption> 6317 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 6318 </ns6:content> 6319 </ns6:item> 6320 </ns6:list> 6321 <ns6:list> 6322 <ns6:item> 6323 <ns6:caption>Descrizione Diagnosi</ns6:caption> 6324 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 6325 </ns6:content> 6326 </ns6:item> 6327 </ns6:list> 6328 <ns6:list> 6329 <ns6:item> 6330 <ns6:caption>Codice Percorso</ns6:caption> 6331 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 6332 </ns6:content> 6333 </ns6:item> 6334 </ns6:list> 6335 <ns6:list> 6336 <ns6:item> 6337 <ns6:caption>Descrizione Percorso</ns6:caption> 6338 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 6339 </ns6:content> 6340 </ns6:item> 6341 </ns6:list> 6342 </ns6:text> 6343 </ns6:section> 6344 </ns6:component> 6345 </ns6:structuredBody> 6346 </ns6:component> 6347 </ns6:ClinicalDocument> 6348 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 6349 <ns6:realmCode code="IT"/> 6350 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 6351 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 6352 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105119.4ddc4a70-2231-48be-a324-6cb848ab9090" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6353 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 6354 <ns6:effectiveTime value="20140905105119+0100"/> 6355 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 6356 <ns6:languageCode code="it-IT"/> 6357 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105119.4ddc4a70-2231-48be-a324-6cb848ab9090" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6358 <ns6:versionNumber value="1"/> 6359 <ns6:recordTarget> 6360 <ns6:patientRole> 6361 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 6362 </ns6:patientRole> 6363 </ns6:recordTarget> 6364 <ns6:author> 6365 <ns6:time value="20140905105119+0100"/> 6366 <ns6:assignedAuthor> 6367 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6368 <ns6:assignedPerson> 6369 <ns6:name> 6370 <ns6:given>Antonio</ns6:given> 6371 <ns6:family>Alberti</ns6:family> 6372 <ns6:prefix>MMG</ns6:prefix> 6373 </ns6:name> 6374 </ns6:assignedPerson> 6375 <ns6:representedOrganization> 6376 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6377 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6378 <ns6:addr/> 6379 </ns6:representedOrganization> 6380 </ns6:assignedAuthor> 6381 </ns6:author> 6382 <ns6:custodian> 6383 <ns6:assignedCustodian> 6384 <ns6:representedCustodianOrganization> 6385 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6386 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6387 </ns6:representedCustodianOrganization> 6388 </ns6:assignedCustodian> 6389 </ns6:custodian> 6390 <ns6:legalAuthenticator> 6391 <ns6:time value="20140905105119+0100"/> 6392 <ns6:signatureCode code="S"/> 6393 <ns6:assignedEntity> 6394 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6395 </ns6:assignedEntity> 6396 </ns6:legalAuthenticator> 6397 <ns6:componentOf typeCode="COMP"> 6398 <ns6:encompassingEncounter> 6399 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105116.1cda4c2e-a12a-4ee3-97de-253b33cc639a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6400 <ns6:effectiveTime value="20140905105116+0100"/> 6401 </ns6:encompassingEncounter> 6402 </ns6:componentOf> 6403 <ns6:component> 6404 <ns6:structuredBody> 6405 <ns6:component> 6406 <ns6:section> 6407 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 6408 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6409 <ns6:text> 6410 <ns6:list> 6411 <ns6:item> 6412 <ns6:caption>Codice Diagnosi</ns6:caption> 6413 <ns6:content>codiceDiagnosi<ns6:content>COD_1.1</ns6:content> 6414 </ns6:content> 6415 </ns6:item> 6416 </ns6:list> 6417 </ns6:text> 6418 </ns6:section> 6419 </ns6:component> 6420 </ns6:structuredBody> 6421 </ns6:component> 6422 </ns6:ClinicalDocument> 6423 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 6424 <ns6:realmCode code="IT"/> 6425 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 6426 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 6427 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105149.244e8e90-804f-463f-8187-22993a75cbde" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6428 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 6429 <ns6:effectiveTime value="20140905105149+0100"/> 6430 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 6431 <ns6:languageCode code="it-IT"/> 6432 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105149.244e8e90-804f-463f-8187-22993a75cbde" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6433 <ns6:versionNumber value="1"/> 6434 <ns6:recordTarget> 6435 <ns6:patientRole> 6436 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 6437 </ns6:patientRole> 6438 </ns6:recordTarget> 6439 <ns6:author> 6440 <ns6:time value="20140905105149+0100"/> 6441 <ns6:assignedAuthor> 6442 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6443 <ns6:assignedPerson> 6444 <ns6:name> 6445 <ns6:given>Antonio</ns6:given> 6446 <ns6:family>Alberti</ns6:family> 6447 <ns6:prefix>MMG</ns6:prefix> 6448 </ns6:name> 6449 </ns6:assignedPerson> 6450 <ns6:representedOrganization> 6451 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6452 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6453 <ns6:addr/> 6454 </ns6:representedOrganization> 6455 </ns6:assignedAuthor> 6456 </ns6:author> 6457 <ns6:custodian> 6458 <ns6:assignedCustodian> 6459 <ns6:representedCustodianOrganization> 6460 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6461 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6462 </ns6:representedCustodianOrganization> 6463 </ns6:assignedCustodian> 6464 </ns6:custodian> 6465 <ns6:legalAuthenticator> 6466 <ns6:time value="20140905105149+0100"/> 6467 <ns6:signatureCode code="S"/> 6468 <ns6:assignedEntity> 6469 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6470 </ns6:assignedEntity> 6471 </ns6:legalAuthenticator> 6472 <ns6:componentOf typeCode="COMP"> 6473 <ns6:encompassingEncounter> 6474 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105146.be5bc9be-463e-406e-9ceb-1e6bc1bd0cc6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6475 <ns6:effectiveTime value="20140905105146+0100"/> 6476 </ns6:encompassingEncounter> 6477 </ns6:componentOf> 6478 <ns6:component> 6479 <ns6:structuredBody> 6480 <ns6:component> 6481 <ns6:section> 6482 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 6483 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6484 <ns6:text> 6485 <ns6:list> 6486 <ns6:item> 6487 <ns6:caption>Codice Diagnosi</ns6:caption> 6488 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 6489 </ns6:content> 6490 </ns6:item> 6491 </ns6:list> 6492 <ns6:list> 6493 <ns6:item> 6494 <ns6:caption>Descrizione Diagnosi</ns6:caption> 6495 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 6496 </ns6:content> 6497 </ns6:item> 6498 </ns6:list> 6499 <ns6:list> 6500 <ns6:item> 6501 <ns6:caption>Codice Percorso</ns6:caption> 6502 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 6503 </ns6:content> 6504 </ns6:item> 6505 </ns6:list> 6506 <ns6:list> 6507 <ns6:item> 6508 <ns6:caption>Descrizione Percorso</ns6:caption> 6509 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 6510 </ns6:content> 6511 </ns6:item> 6512 </ns6:list> 6513 </ns6:text> 6514 </ns6:section> 6515 </ns6:component> 6516 </ns6:structuredBody> 6517 </ns6:component> 6518 </ns6:ClinicalDocument> 6519 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 6520 <ns6:realmCode code="IT"/> 6521 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 6522 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 6523 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105218.154627a5-0f38-4923-888f-73b65e4af5ec" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6524 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 6525 <ns6:effectiveTime value="20140905105218+0100"/> 6526 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 6527 <ns6:languageCode code="it-IT"/> 6528 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105218.154627a5-0f38-4923-888f-73b65e4af5ec" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6529 <ns6:versionNumber value="1"/> 6530 <ns6:recordTarget> 6531 <ns6:patientRole> 6532 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 6533 </ns6:patientRole> 6534 </ns6:recordTarget> 6535 <ns6:author> 6536 <ns6:time value="20140905105218+0100"/> 6537 <ns6:assignedAuthor> 6538 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6539 <ns6:assignedPerson> 6540 <ns6:name> 6541 <ns6:given>Antonio</ns6:given> 6542 <ns6:family>Alberti</ns6:family> 6543 <ns6:prefix>MMG</ns6:prefix> 6544 </ns6:name> 6545 </ns6:assignedPerson> 6546 <ns6:representedOrganization> 6547 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6548 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6549 <ns6:addr/> 6550 </ns6:representedOrganization> 6551 </ns6:assignedAuthor> 6552 </ns6:author> 6553 <ns6:custodian> 6554 <ns6:assignedCustodian> 6555 <ns6:representedCustodianOrganization> 6556 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6557 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6558 </ns6:representedCustodianOrganization> 6559 </ns6:assignedCustodian> 6560 </ns6:custodian> 6561 <ns6:legalAuthenticator> 6562 <ns6:time value="20140905105218+0100"/> 6563 <ns6:signatureCode code="S"/> 6564 <ns6:assignedEntity> 6565 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6566 </ns6:assignedEntity> 6567 </ns6:legalAuthenticator> 6568 <ns6:componentOf typeCode="COMP"> 6569 <ns6:encompassingEncounter> 6570 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105215.f3d6543e-3ed6-4ca4-8808-14b9796bcf93" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6571 <ns6:effectiveTime value="20140905105215+0100"/> 6572 </ns6:encompassingEncounter> 6573 </ns6:componentOf> 6574 <ns6:component> 6575 <ns6:structuredBody> 6576 <ns6:component> 6577 <ns6:section> 6578 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 6579 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6580 <ns6:text> 6581 <ns6:list> 6582 <ns6:item> 6583 <ns6:caption>Codice Diagnosi</ns6:caption> 6584 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 6585 </ns6:content> 6586 </ns6:item> 6587 </ns6:list> 6588 <ns6:list> 6589 <ns6:item> 6590 <ns6:caption>Descrizione Diagnosi</ns6:caption> 6591 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 6592 </ns6:content> 6593 </ns6:item> 6594 </ns6:list> 6595 <ns6:list> 6596 <ns6:item> 6597 <ns6:caption>Codice Percorso</ns6:caption> 6598 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 6599 </ns6:content> 6600 </ns6:item> 6601 </ns6:list> 6602 <ns6:list> 6603 <ns6:item> 6604 <ns6:caption>Descrizione Percorso</ns6:caption> 6605 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 6606 </ns6:content> 6607 </ns6:item> 6608 </ns6:list> 6609 </ns6:text> 6610 </ns6:section> 6611 </ns6:component> 6612 </ns6:structuredBody> 6613 </ns6:component> 6614 </ns6:ClinicalDocument> 6615 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 6616 <ns6:realmCode code="IT"/> 6617 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 6618 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 6619 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105240.46c0a724-b774-4e8e-84be-ff9424193158" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6620 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 6621 <ns6:effectiveTime value="20140905105240+0100"/> 6622 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 6623 <ns6:languageCode code="it-IT"/> 6624 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105240.46c0a724-b774-4e8e-84be-ff9424193158" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6625 <ns6:versionNumber value="1"/> 6626 <ns6:recordTarget> 6627 <ns6:patientRole> 6628 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 6629 </ns6:patientRole> 6630 </ns6:recordTarget> 6631 <ns6:author> 6632 <ns6:time value="20140905105240+0100"/> 6633 <ns6:assignedAuthor> 6634 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6635 <ns6:assignedPerson> 6636 <ns6:name> 6637 <ns6:given>Antonio</ns6:given> 6638 <ns6:family>Alberti</ns6:family> 6639 <ns6:prefix>MMG</ns6:prefix> 6640 </ns6:name> 6641 </ns6:assignedPerson> 6642 <ns6:representedOrganization> 6643 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6644 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6645 <ns6:addr/> 6646 </ns6:representedOrganization> 6647 </ns6:assignedAuthor> 6648 </ns6:author> 6649 <ns6:custodian> 6650 <ns6:assignedCustodian> 6651 <ns6:representedCustodianOrganization> 6652 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6653 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6654 </ns6:representedCustodianOrganization> 6655 </ns6:assignedCustodian> 6656 </ns6:custodian> 6657 <ns6:legalAuthenticator> 6658 <ns6:time value="20140905105240+0100"/> 6659 <ns6:signatureCode code="S"/> 6660 <ns6:assignedEntity> 6661 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6662 </ns6:assignedEntity> 6663 </ns6:legalAuthenticator> 6664 <ns6:componentOf typeCode="COMP"> 6665 <ns6:encompassingEncounter> 6666 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905105237.b064e1b9-953d-4e2f-95bc-f6cb40143df0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6667 <ns6:effectiveTime value="20140905105237+0100"/> 6668 </ns6:encompassingEncounter> 6669 </ns6:componentOf> 6670 <ns6:component> 6671 <ns6:structuredBody> 6672 <ns6:component> 6673 <ns6:section> 6674 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 6675 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6676 <ns6:text> 6677 <ns6:list> 6678 <ns6:item> 6679 <ns6:caption>Codice Diagnosi</ns6:caption> 6680 <ns6:content>codiceDiagnosi<ns6:content>COD_0.3</ns6:content> 6681 </ns6:content> 6682 </ns6:item> 6683 </ns6:list> 6684 <ns6:list> 6685 <ns6:item> 6686 <ns6:caption>Descrizione Diagnosi</ns6:caption> 6687 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA</ns6:content> 6688 </ns6:content> 6689 </ns6:item> 6690 </ns6:list> 6691 <ns6:list> 6692 <ns6:item> 6693 <ns6:caption>Codice Percorso</ns6:caption> 6694 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 6695 </ns6:content> 6696 </ns6:item> 6697 </ns6:list> 6698 <ns6:list> 6699 <ns6:item> 6700 <ns6:caption>Descrizione Percorso</ns6:caption> 6701 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 6702 </ns6:content> 6703 </ns6:item> 6704 </ns6:list> 6705 </ns6:text> 6706 </ns6:section> 6707 </ns6:component> 6708 </ns6:structuredBody> 6709 </ns6:component> 6710 </ns6:ClinicalDocument> 6711 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 6712 <ns6:realmCode code="IT"/> 6713 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 6714 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 6715 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905110604.faf03c43-06ab-4ef1-8213-4b9116f70d3b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6716 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 6717 <ns6:effectiveTime value="20140905110604+0100"/> 6718 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 6719 <ns6:languageCode code="it-IT"/> 6720 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905110604.faf03c43-06ab-4ef1-8213-4b9116f70d3b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6721 <ns6:versionNumber value="1"/> 6722 <ns6:recordTarget> 6723 <ns6:patientRole> 6724 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 6725 </ns6:patientRole> 6726 </ns6:recordTarget> 6727 <ns6:author> 6728 <ns6:time value="20140905110604+0100"/> 6729 <ns6:assignedAuthor> 6730 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6731 <ns6:assignedPerson> 6732 <ns6:name> 6733 <ns6:given>Antonio</ns6:given> 6734 <ns6:family>Alberti</ns6:family> 6735 <ns6:prefix>MMG</ns6:prefix> 6736 </ns6:name> 6737 </ns6:assignedPerson> 6738 <ns6:representedOrganization> 6739 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6740 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6741 <ns6:addr/> 6742 </ns6:representedOrganization> 6743 </ns6:assignedAuthor> 6744 </ns6:author> 6745 <ns6:custodian> 6746 <ns6:assignedCustodian> 6747 <ns6:representedCustodianOrganization> 6748 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6749 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6750 </ns6:representedCustodianOrganization> 6751 </ns6:assignedCustodian> 6752 </ns6:custodian> 6753 <ns6:legalAuthenticator> 6754 <ns6:time value="20140905110604+0100"/> 6755 <ns6:signatureCode code="S"/> 6756 <ns6:assignedEntity> 6757 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6758 </ns6:assignedEntity> 6759 </ns6:legalAuthenticator> 6760 <ns6:componentOf typeCode="COMP"> 6761 <ns6:encompassingEncounter> 6762 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905110600.2e7ebe9b-1c05-4c9c-a664-ad7180a4910d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6763 <ns6:effectiveTime value="20140905110600+0100"/> 6764 </ns6:encompassingEncounter> 6765 </ns6:componentOf> 6766 <ns6:component> 6767 <ns6:structuredBody> 6768 <ns6:component> 6769 <ns6:section> 6770 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 6771 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6772 <ns6:text> 6773 <ns6:list> 6774 <ns6:item> 6775 <ns6:caption>Codice Diagnosi</ns6:caption> 6776 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 6777 </ns6:content> 6778 </ns6:item> 6779 </ns6:list> 6780 <ns6:list> 6781 <ns6:item> 6782 <ns6:caption>Descrizione Diagnosi</ns6:caption> 6783 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 6784 </ns6:content> 6785 </ns6:item> 6786 </ns6:list> 6787 <ns6:list> 6788 <ns6:item> 6789 <ns6:caption>Codice Percorso</ns6:caption> 6790 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 6791 </ns6:content> 6792 </ns6:item> 6793 </ns6:list> 6794 <ns6:list> 6795 <ns6:item> 6796 <ns6:caption>Descrizione Percorso</ns6:caption> 6797 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 6798 </ns6:content> 6799 </ns6:item> 6800 </ns6:list> 6801 </ns6:text> 6802 </ns6:section> 6803 </ns6:component> 6804 </ns6:structuredBody> 6805 </ns6:component> 6806 </ns6:ClinicalDocument> 6807 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 6808 <ns6:realmCode code="IT"/> 6809 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 6810 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 6811 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905110624.49d5e843-c23a-4a7e-bcc0-b96ce6bb8f60" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6812 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 6813 <ns6:effectiveTime value="20140905110624+0100"/> 6814 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 6815 <ns6:languageCode code="it-IT"/> 6816 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905110624.49d5e843-c23a-4a7e-bcc0-b96ce6bb8f60" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6817 <ns6:versionNumber value="1"/> 6818 <ns6:recordTarget> 6819 <ns6:patientRole> 6820 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 6821 </ns6:patientRole> 6822 </ns6:recordTarget> 6823 <ns6:author> 6824 <ns6:time value="20140905110624+0100"/> 6825 <ns6:assignedAuthor> 6826 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6827 <ns6:assignedPerson> 6828 <ns6:name> 6829 <ns6:given>Antonio</ns6:given> 6830 <ns6:family>Alberti</ns6:family> 6831 <ns6:prefix>MMG</ns6:prefix> 6832 </ns6:name> 6833 </ns6:assignedPerson> 6834 <ns6:representedOrganization> 6835 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6836 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6837 <ns6:addr/> 6838 </ns6:representedOrganization> 6839 </ns6:assignedAuthor> 6840 </ns6:author> 6841 <ns6:custodian> 6842 <ns6:assignedCustodian> 6843 <ns6:representedCustodianOrganization> 6844 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6845 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6846 </ns6:representedCustodianOrganization> 6847 </ns6:assignedCustodian> 6848 </ns6:custodian> 6849 <ns6:legalAuthenticator> 6850 <ns6:time value="20140905110624+0100"/> 6851 <ns6:signatureCode code="S"/> 6852 <ns6:assignedEntity> 6853 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6854 </ns6:assignedEntity> 6855 </ns6:legalAuthenticator> 6856 <ns6:componentOf typeCode="COMP"> 6857 <ns6:encompassingEncounter> 6858 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905110621.ea8f20b1-3785-4541-a3f0-5cbb9f315538" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6859 <ns6:effectiveTime value="20140905110621+0100"/> 6860 </ns6:encompassingEncounter> 6861 </ns6:componentOf> 6862 <ns6:component> 6863 <ns6:structuredBody> 6864 <ns6:component> 6865 <ns6:section> 6866 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 6867 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6868 <ns6:text> 6869 <ns6:list> 6870 <ns6:item> 6871 <ns6:caption>Codice Diagnosi</ns6:caption> 6872 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 6873 </ns6:content> 6874 </ns6:item> 6875 </ns6:list> 6876 <ns6:list> 6877 <ns6:item> 6878 <ns6:caption>Descrizione Diagnosi</ns6:caption> 6879 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 6880 </ns6:content> 6881 </ns6:item> 6882 </ns6:list> 6883 <ns6:list> 6884 <ns6:item> 6885 <ns6:caption>Codice Percorso</ns6:caption> 6886 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 6887 </ns6:content> 6888 </ns6:item> 6889 </ns6:list> 6890 <ns6:list> 6891 <ns6:item> 6892 <ns6:caption>Descrizione Percorso</ns6:caption> 6893 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 6894 </ns6:content> 6895 </ns6:item> 6896 </ns6:list> 6897 </ns6:text> 6898 </ns6:section> 6899 </ns6:component> 6900 </ns6:structuredBody> 6901 </ns6:component> 6902 </ns6:ClinicalDocument> 6903 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 6904 <ns6:realmCode code="IT"/> 6905 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 6906 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 6907 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905110820.a3585f4e-2228-4044-beef-966f8755daf7" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6908 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 6909 <ns6:effectiveTime value="20140905110820+0100"/> 6910 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 6911 <ns6:languageCode code="it-IT"/> 6912 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905110820.a3585f4e-2228-4044-beef-966f8755daf7" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6913 <ns6:versionNumber value="1"/> 6914 <ns6:recordTarget> 6915 <ns6:patientRole> 6916 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 6917 </ns6:patientRole> 6918 </ns6:recordTarget> 6919 <ns6:author> 6920 <ns6:time value="20140905110820+0100"/> 6921 <ns6:assignedAuthor> 6922 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6923 <ns6:assignedPerson> 6924 <ns6:name> 6925 <ns6:given>Antonio</ns6:given> 6926 <ns6:family>Alberti</ns6:family> 6927 <ns6:prefix>MMG</ns6:prefix> 6928 </ns6:name> 6929 </ns6:assignedPerson> 6930 <ns6:representedOrganization> 6931 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6932 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6933 <ns6:addr/> 6934 </ns6:representedOrganization> 6935 </ns6:assignedAuthor> 6936 </ns6:author> 6937 <ns6:custodian> 6938 <ns6:assignedCustodian> 6939 <ns6:representedCustodianOrganization> 6940 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 6941 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 6942 </ns6:representedCustodianOrganization> 6943 </ns6:assignedCustodian> 6944 </ns6:custodian> 6945 <ns6:legalAuthenticator> 6946 <ns6:time value="20140905110820+0100"/> 6947 <ns6:signatureCode code="S"/> 6948 <ns6:assignedEntity> 6949 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 6950 </ns6:assignedEntity> 6951 </ns6:legalAuthenticator> 6952 <ns6:componentOf typeCode="COMP"> 6953 <ns6:encompassingEncounter> 6954 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905110817.ea1e368d-f676-4cda-9309-4b8a69a0ddef" root="2.16.840.1.113883.2.9.3.12.4.4"/> 6955 <ns6:effectiveTime value="20140905110817+0100"/> 6956 </ns6:encompassingEncounter> 6957 </ns6:componentOf> 6958 <ns6:component> 6959 <ns6:structuredBody> 6960 <ns6:component> 6961 <ns6:section> 6962 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 6963 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 6964 <ns6:text> 6965 <ns6:list> 6966 <ns6:item> 6967 <ns6:caption>Codice Diagnosi</ns6:caption> 6968 <ns6:content>codiceDiagnosi<ns6:content>COD_1.1</ns6:content> 6969 </ns6:content> 6970 </ns6:item> 6971 </ns6:list> 6972 <ns6:list> 6973 <ns6:item> 6974 <ns6:caption>Descrizione Diagnosi</ns6:caption> 6975 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE EMICRANIA SENZA AURA</ns6:content> 6976 </ns6:content> 6977 </ns6:item> 6978 </ns6:list> 6979 <ns6:list> 6980 <ns6:item> 6981 <ns6:caption>Codice Percorso</ns6:caption> 6982 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 6983 </ns6:content> 6984 </ns6:item> 6985 </ns6:list> 6986 <ns6:list> 6987 <ns6:item> 6988 <ns6:caption>Descrizione Percorso</ns6:caption> 6989 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 6990 </ns6:content> 6991 </ns6:item> 6992 </ns6:list> 6993 </ns6:text> 6994 </ns6:section> 6995 </ns6:component> 6996 </ns6:structuredBody> 6997 </ns6:component> 6998 </ns6:ClinicalDocument> 6999 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7000 <ns6:realmCode code="IT"/> 7001 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7002 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7003 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111430.3fa9d538-9f5d-43bb-9496-3a8d94f20b19" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7004 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7005 <ns6:effectiveTime value="20140905111430+0100"/> 7006 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7007 <ns6:languageCode code="it-IT"/> 7008 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111430.3fa9d538-9f5d-43bb-9496-3a8d94f20b19" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7009 <ns6:versionNumber value="1"/> 7010 <ns6:recordTarget> 7011 <ns6:patientRole> 7012 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7013 </ns6:patientRole> 7014 </ns6:recordTarget> 7015 <ns6:author> 7016 <ns6:time value="20140905111430+0100"/> 7017 <ns6:assignedAuthor> 7018 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7019 <ns6:assignedPerson> 7020 <ns6:name> 7021 <ns6:given>Antonio</ns6:given> 7022 <ns6:family>Alberti</ns6:family> 7023 <ns6:prefix>MMG</ns6:prefix> 7024 </ns6:name> 7025 </ns6:assignedPerson> 7026 <ns6:representedOrganization> 7027 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7028 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7029 <ns6:addr/> 7030 </ns6:representedOrganization> 7031 </ns6:assignedAuthor> 7032 </ns6:author> 7033 <ns6:custodian> 7034 <ns6:assignedCustodian> 7035 <ns6:representedCustodianOrganization> 7036 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7037 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7038 </ns6:representedCustodianOrganization> 7039 </ns6:assignedCustodian> 7040 </ns6:custodian> 7041 <ns6:legalAuthenticator> 7042 <ns6:time value="20140905111430+0100"/> 7043 <ns6:signatureCode code="S"/> 7044 <ns6:assignedEntity> 7045 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7046 </ns6:assignedEntity> 7047 </ns6:legalAuthenticator> 7048 <ns6:componentOf typeCode="COMP"> 7049 <ns6:encompassingEncounter> 7050 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111427.694f53d7-678e-4675-a3a2-22c506baf2ea" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7051 <ns6:effectiveTime value="20140905111427+0100"/> 7052 </ns6:encompassingEncounter> 7053 </ns6:componentOf> 7054 <ns6:component> 7055 <ns6:structuredBody> 7056 <ns6:component> 7057 <ns6:section> 7058 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 7059 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 7060 <ns6:text> 7061 <ns6:list> 7062 <ns6:item> 7063 <ns6:caption>Codice Diagnosi</ns6:caption> 7064 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 7065 </ns6:content> 7066 </ns6:item> 7067 </ns6:list> 7068 <ns6:list> 7069 <ns6:item> 7070 <ns6:caption>Descrizione Diagnosi</ns6:caption> 7071 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 7072 </ns6:content> 7073 </ns6:item> 7074 </ns6:list> 7075 <ns6:list> 7076 <ns6:item> 7077 <ns6:caption>Codice Percorso</ns6:caption> 7078 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 7079 </ns6:content> 7080 </ns6:item> 7081 </ns6:list> 7082 <ns6:list> 7083 <ns6:item> 7084 <ns6:caption>Descrizione Percorso</ns6:caption> 7085 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 7086 </ns6:content> 7087 </ns6:item> 7088 </ns6:list> 7089 </ns6:text> 7090 </ns6:section> 7091 </ns6:component> 7092 </ns6:structuredBody> 7093 </ns6:component> 7094 </ns6:ClinicalDocument> 7095 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7096 <ns6:realmCode code="IT"/> 7097 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7098 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7099 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111453.3ff50abb-2bad-4e02-b3bb-0dce3687ce21" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7100 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7101 <ns6:effectiveTime value="20140905111453+0100"/> 7102 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7103 <ns6:languageCode code="it-IT"/> 7104 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111453.3ff50abb-2bad-4e02-b3bb-0dce3687ce21" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7105 <ns6:versionNumber value="1"/> 7106 <ns6:recordTarget> 7107 <ns6:patientRole> 7108 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7109 </ns6:patientRole> 7110 </ns6:recordTarget> 7111 <ns6:author> 7112 <ns6:time value="20140905111453+0100"/> 7113 <ns6:assignedAuthor> 7114 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7115 <ns6:assignedPerson> 7116 <ns6:name> 7117 <ns6:given>Antonio</ns6:given> 7118 <ns6:family>Alberti</ns6:family> 7119 <ns6:prefix>MMG</ns6:prefix> 7120 </ns6:name> 7121 </ns6:assignedPerson> 7122 <ns6:representedOrganization> 7123 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7124 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7125 <ns6:addr/> 7126 </ns6:representedOrganization> 7127 </ns6:assignedAuthor> 7128 </ns6:author> 7129 <ns6:custodian> 7130 <ns6:assignedCustodian> 7131 <ns6:representedCustodianOrganization> 7132 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7133 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7134 </ns6:representedCustodianOrganization> 7135 </ns6:assignedCustodian> 7136 </ns6:custodian> 7137 <ns6:legalAuthenticator> 7138 <ns6:time value="20140905111453+0100"/> 7139 <ns6:signatureCode code="S"/> 7140 <ns6:assignedEntity> 7141 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7142 </ns6:assignedEntity> 7143 </ns6:legalAuthenticator> 7144 <ns6:componentOf typeCode="COMP"> 7145 <ns6:encompassingEncounter> 7146 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111450.2d7106c6-9bf3-4b3f-b6ef-4c6ec33d78e3" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7147 <ns6:effectiveTime value="20140905111450+0100"/> 7148 </ns6:encompassingEncounter> 7149 </ns6:componentOf> 7150 <ns6:component> 7151 <ns6:structuredBody> 7152 <ns6:component> 7153 <ns6:section> 7154 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 7155 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 7156 <ns6:text> 7157 <ns6:list> 7158 <ns6:item> 7159 <ns6:caption>Codice Diagnosi</ns6:caption> 7160 <ns6:content>codiceDiagnosi<ns6:content>COD_0.3</ns6:content> 7161 </ns6:content> 7162 </ns6:item> 7163 </ns6:list> 7164 <ns6:list> 7165 <ns6:item> 7166 <ns6:caption>Descrizione Diagnosi</ns6:caption> 7167 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA</ns6:content> 7168 </ns6:content> 7169 </ns6:item> 7170 </ns6:list> 7171 <ns6:list> 7172 <ns6:item> 7173 <ns6:caption>Codice Percorso</ns6:caption> 7174 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 7175 </ns6:content> 7176 </ns6:item> 7177 </ns6:list> 7178 <ns6:list> 7179 <ns6:item> 7180 <ns6:caption>Descrizione Percorso</ns6:caption> 7181 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 7182 </ns6:content> 7183 </ns6:item> 7184 </ns6:list> 7185 </ns6:text> 7186 </ns6:section> 7187 </ns6:component> 7188 </ns6:structuredBody> 7189 </ns6:component> 7190 </ns6:ClinicalDocument> 7191 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7192 <ns6:realmCode code="IT"/> 7193 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7194 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7195 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111535.3572327e-86d8-410f-8233-9c4e8e158deb" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7196 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7197 <ns6:effectiveTime value="20140905111535+0100"/> 7198 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7199 <ns6:languageCode code="it-IT"/> 7200 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111535.3572327e-86d8-410f-8233-9c4e8e158deb" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7201 <ns6:versionNumber value="1"/> 7202 <ns6:recordTarget> 7203 <ns6:patientRole> 7204 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7205 </ns6:patientRole> 7206 </ns6:recordTarget> 7207 <ns6:author> 7208 <ns6:time value="20140905111535+0100"/> 7209 <ns6:assignedAuthor> 7210 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7211 <ns6:assignedPerson> 7212 <ns6:name> 7213 <ns6:given>Antonio</ns6:given> 7214 <ns6:family>Alberti</ns6:family> 7215 <ns6:prefix>MMG</ns6:prefix> 7216 </ns6:name> 7217 </ns6:assignedPerson> 7218 <ns6:representedOrganization> 7219 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7220 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7221 <ns6:addr/> 7222 </ns6:representedOrganization> 7223 </ns6:assignedAuthor> 7224 </ns6:author> 7225 <ns6:custodian> 7226 <ns6:assignedCustodian> 7227 <ns6:representedCustodianOrganization> 7228 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7229 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7230 </ns6:representedCustodianOrganization> 7231 </ns6:assignedCustodian> 7232 </ns6:custodian> 7233 <ns6:legalAuthenticator> 7234 <ns6:time value="20140905111535+0100"/> 7235 <ns6:signatureCode code="S"/> 7236 <ns6:assignedEntity> 7237 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7238 </ns6:assignedEntity> 7239 </ns6:legalAuthenticator> 7240 <ns6:componentOf typeCode="COMP"> 7241 <ns6:encompassingEncounter> 7242 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111531.af8b9970-d245-4c5e-883a-974ebfa2ee1f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7243 <ns6:effectiveTime value="20140905111531+0100"/> 7244 </ns6:encompassingEncounter> 7245 </ns6:componentOf> 7246 <ns6:component> 7247 <ns6:structuredBody> 7248 <ns6:component> 7249 <ns6:section> 7250 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 7251 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 7252 <ns6:text> 7253 <ns6:list> 7254 <ns6:item> 7255 <ns6:caption>Codice Diagnosi</ns6:caption> 7256 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 7257 </ns6:content> 7258 </ns6:item> 7259 </ns6:list> 7260 <ns6:list> 7261 <ns6:item> 7262 <ns6:caption>Descrizione Diagnosi</ns6:caption> 7263 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 7264 </ns6:content> 7265 </ns6:item> 7266 </ns6:list> 7267 <ns6:list> 7268 <ns6:item> 7269 <ns6:caption>Codice Percorso</ns6:caption> 7270 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 7271 </ns6:content> 7272 </ns6:item> 7273 </ns6:list> 7274 <ns6:list> 7275 <ns6:item> 7276 <ns6:caption>Descrizione Percorso</ns6:caption> 7277 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 7278 </ns6:content> 7279 </ns6:item> 7280 </ns6:list> 7281 </ns6:text> 7282 </ns6:section> 7283 </ns6:component> 7284 </ns6:structuredBody> 7285 </ns6:component> 7286 </ns6:ClinicalDocument> 7287 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7288 <ns6:realmCode code="IT"/> 7289 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7290 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7291 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111557.5e8a504a-2c64-431d-b380-91e8733b961b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7292 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7293 <ns6:effectiveTime value="20140905111557+0100"/> 7294 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7295 <ns6:languageCode code="it-IT"/> 7296 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111557.5e8a504a-2c64-431d-b380-91e8733b961b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7297 <ns6:versionNumber value="1"/> 7298 <ns6:recordTarget> 7299 <ns6:patientRole> 7300 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7301 </ns6:patientRole> 7302 </ns6:recordTarget> 7303 <ns6:author> 7304 <ns6:time value="20140905111557+0100"/> 7305 <ns6:assignedAuthor> 7306 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7307 <ns6:assignedPerson> 7308 <ns6:name> 7309 <ns6:given>Antonio</ns6:given> 7310 <ns6:family>Alberti</ns6:family> 7311 <ns6:prefix>MMG</ns6:prefix> 7312 </ns6:name> 7313 </ns6:assignedPerson> 7314 <ns6:representedOrganization> 7315 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7316 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7317 <ns6:addr/> 7318 </ns6:representedOrganization> 7319 </ns6:assignedAuthor> 7320 </ns6:author> 7321 <ns6:custodian> 7322 <ns6:assignedCustodian> 7323 <ns6:representedCustodianOrganization> 7324 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7325 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7326 </ns6:representedCustodianOrganization> 7327 </ns6:assignedCustodian> 7328 </ns6:custodian> 7329 <ns6:legalAuthenticator> 7330 <ns6:time value="20140905111557+0100"/> 7331 <ns6:signatureCode code="S"/> 7332 <ns6:assignedEntity> 7333 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7334 </ns6:assignedEntity> 7335 </ns6:legalAuthenticator> 7336 <ns6:componentOf typeCode="COMP"> 7337 <ns6:encompassingEncounter> 7338 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111553.4474cfce-e895-4b27-a3ec-95738746e2b7" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7339 <ns6:effectiveTime value="20140905111553+0100"/> 7340 </ns6:encompassingEncounter> 7341 </ns6:componentOf> 7342 <ns6:component> 7343 <ns6:structuredBody> 7344 <ns6:component> 7345 <ns6:section> 7346 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 7347 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 7348 <ns6:text> 7349 <ns6:list> 7350 <ns6:item> 7351 <ns6:caption>Codice Diagnosi</ns6:caption> 7352 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 7353 </ns6:content> 7354 </ns6:item> 7355 </ns6:list> 7356 <ns6:list> 7357 <ns6:item> 7358 <ns6:caption>Descrizione Diagnosi</ns6:caption> 7359 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 7360 </ns6:content> 7361 </ns6:item> 7362 </ns6:list> 7363 <ns6:list> 7364 <ns6:item> 7365 <ns6:caption>Codice Percorso</ns6:caption> 7366 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 7367 </ns6:content> 7368 </ns6:item> 7369 </ns6:list> 7370 <ns6:list> 7371 <ns6:item> 7372 <ns6:caption>Descrizione Percorso</ns6:caption> 7373 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 7374 </ns6:content> 7375 </ns6:item> 7376 </ns6:list> 7377 </ns6:text> 7378 </ns6:section> 7379 </ns6:component> 7380 </ns6:structuredBody> 7381 </ns6:component> 7382 </ns6:ClinicalDocument> 7383 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7384 <ns6:realmCode code="IT"/> 7385 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7386 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7387 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111629.8e85ce77-c47d-4d94-a607-99163f0fe267" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7388 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7389 <ns6:effectiveTime value="20140905111629+0100"/> 7390 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7391 <ns6:languageCode code="it-IT"/> 7392 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111629.8e85ce77-c47d-4d94-a607-99163f0fe267" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7393 <ns6:versionNumber value="1"/> 7394 <ns6:recordTarget> 7395 <ns6:patientRole> 7396 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7397 </ns6:patientRole> 7398 </ns6:recordTarget> 7399 <ns6:author> 7400 <ns6:time value="20140905111629+0100"/> 7401 <ns6:assignedAuthor> 7402 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7403 <ns6:assignedPerson> 7404 <ns6:name> 7405 <ns6:given>Antonio</ns6:given> 7406 <ns6:family>Alberti</ns6:family> 7407 <ns6:prefix>MMG</ns6:prefix> 7408 </ns6:name> 7409 </ns6:assignedPerson> 7410 <ns6:representedOrganization> 7411 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7412 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7413 <ns6:addr/> 7414 </ns6:representedOrganization> 7415 </ns6:assignedAuthor> 7416 </ns6:author> 7417 <ns6:custodian> 7418 <ns6:assignedCustodian> 7419 <ns6:representedCustodianOrganization> 7420 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7421 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7422 </ns6:representedCustodianOrganization> 7423 </ns6:assignedCustodian> 7424 </ns6:custodian> 7425 <ns6:legalAuthenticator> 7426 <ns6:time value="20140905111629+0100"/> 7427 <ns6:signatureCode code="S"/> 7428 <ns6:assignedEntity> 7429 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7430 </ns6:assignedEntity> 7431 </ns6:legalAuthenticator> 7432 <ns6:componentOf typeCode="COMP"> 7433 <ns6:encompassingEncounter> 7434 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111626.e1cd522d-9050-46ec-a4d4-55be8b179f59" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7435 <ns6:effectiveTime value="20140905111626+0100"/> 7436 </ns6:encompassingEncounter> 7437 </ns6:componentOf> 7438 <ns6:component> 7439 <ns6:structuredBody> 7440 <ns6:component> 7441 <ns6:section> 7442 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 7443 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 7444 <ns6:text> 7445 <ns6:list> 7446 <ns6:item> 7447 <ns6:caption>Codice Diagnosi</ns6:caption> 7448 <ns6:content>codiceDiagnosi<ns6:content>COD_2</ns6:content> 7449 </ns6:content> 7450 </ns6:item> 7451 </ns6:list> 7452 <ns6:list> 7453 <ns6:item> 7454 <ns6:caption>Descrizione Diagnosi</ns6:caption> 7455 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA DI TIPO TENSIVO</ns6:content> 7456 </ns6:content> 7457 </ns6:item> 7458 </ns6:list> 7459 <ns6:list> 7460 <ns6:item> 7461 <ns6:caption>Codice Percorso</ns6:caption> 7462 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 7463 </ns6:content> 7464 </ns6:item> 7465 </ns6:list> 7466 <ns6:list> 7467 <ns6:item> 7468 <ns6:caption>Descrizione Percorso</ns6:caption> 7469 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 7470 </ns6:content> 7471 </ns6:item> 7472 </ns6:list> 7473 </ns6:text> 7474 </ns6:section> 7475 </ns6:component> 7476 </ns6:structuredBody> 7477 </ns6:component> 7478 </ns6:ClinicalDocument> 7479 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7480 <ns6:realmCode code="IT"/> 7481 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7482 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7483 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111717.a3229ca0-ced5-4c8a-aa13-196d17cd75d9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7484 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7485 <ns6:effectiveTime value="20140905111717+0100"/> 7486 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7487 <ns6:languageCode code="it-IT"/> 7488 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111717.a3229ca0-ced5-4c8a-aa13-196d17cd75d9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7489 <ns6:versionNumber value="1"/> 7490 <ns6:recordTarget> 7491 <ns6:patientRole> 7492 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7493 </ns6:patientRole> 7494 </ns6:recordTarget> 7495 <ns6:author> 7496 <ns6:time value="20140905111717+0100"/> 7497 <ns6:assignedAuthor> 7498 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7499 <ns6:assignedPerson> 7500 <ns6:name> 7501 <ns6:given>Antonio</ns6:given> 7502 <ns6:family>Alberti</ns6:family> 7503 <ns6:prefix>MMG</ns6:prefix> 7504 </ns6:name> 7505 </ns6:assignedPerson> 7506 <ns6:representedOrganization> 7507 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7508 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7509 <ns6:addr/> 7510 </ns6:representedOrganization> 7511 </ns6:assignedAuthor> 7512 </ns6:author> 7513 <ns6:custodian> 7514 <ns6:assignedCustodian> 7515 <ns6:representedCustodianOrganization> 7516 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7517 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7518 </ns6:representedCustodianOrganization> 7519 </ns6:assignedCustodian> 7520 </ns6:custodian> 7521 <ns6:legalAuthenticator> 7522 <ns6:time value="20140905111717+0100"/> 7523 <ns6:signatureCode code="S"/> 7524 <ns6:assignedEntity> 7525 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7526 </ns6:assignedEntity> 7527 </ns6:legalAuthenticator> 7528 <ns6:componentOf typeCode="COMP"> 7529 <ns6:encompassingEncounter> 7530 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905111713.b508dba9-daa9-4392-a96f-0e32b0d42531" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7531 <ns6:effectiveTime value="20140905111713+0100"/> 7532 </ns6:encompassingEncounter> 7533 </ns6:componentOf> 7534 <ns6:component> 7535 <ns6:structuredBody> 7536 <ns6:component> 7537 <ns6:section> 7538 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 7539 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 7540 <ns6:text> 7541 <ns6:list> 7542 <ns6:item> 7543 <ns6:caption>Codice Diagnosi</ns6:caption> 7544 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 7545 </ns6:content> 7546 </ns6:item> 7547 </ns6:list> 7548 <ns6:list> 7549 <ns6:item> 7550 <ns6:caption>Descrizione Diagnosi</ns6:caption> 7551 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 7552 </ns6:content> 7553 </ns6:item> 7554 </ns6:list> 7555 <ns6:list> 7556 <ns6:item> 7557 <ns6:caption>Codice Percorso</ns6:caption> 7558 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 7559 </ns6:content> 7560 </ns6:item> 7561 </ns6:list> 7562 <ns6:list> 7563 <ns6:item> 7564 <ns6:caption>Descrizione Percorso</ns6:caption> 7565 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 7566 </ns6:content> 7567 </ns6:item> 7568 </ns6:list> 7569 </ns6:text> 7570 </ns6:section> 7571 </ns6:component> 7572 </ns6:structuredBody> 7573 </ns6:component> 7574 </ns6:ClinicalDocument> 7575 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7576 <ns6:realmCode code="IT"/> 7577 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7578 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7579 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905112641.3ee5c265-d52c-4901-8d96-424a031df581" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7580 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7581 <ns6:effectiveTime value="20140905112641+0100"/> 7582 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7583 <ns6:languageCode code="it-IT"/> 7584 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905112641.3ee5c265-d52c-4901-8d96-424a031df581" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7585 <ns6:versionNumber value="1"/> 7586 <ns6:recordTarget> 7587 <ns6:patientRole> 7588 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7589 </ns6:patientRole> 7590 </ns6:recordTarget> 7591 <ns6:author> 7592 <ns6:time value="20140905112641+0100"/> 7593 <ns6:assignedAuthor> 7594 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7595 <ns6:assignedPerson> 7596 <ns6:name> 7597 <ns6:given>Antonio</ns6:given> 7598 <ns6:family>Alberti</ns6:family> 7599 <ns6:prefix>MMG</ns6:prefix> 7600 </ns6:name> 7601 </ns6:assignedPerson> 7602 <ns6:representedOrganization> 7603 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7604 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7605 <ns6:addr/> 7606 </ns6:representedOrganization> 7607 </ns6:assignedAuthor> 7608 </ns6:author> 7609 <ns6:custodian> 7610 <ns6:assignedCustodian> 7611 <ns6:representedCustodianOrganization> 7612 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7613 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7614 </ns6:representedCustodianOrganization> 7615 </ns6:assignedCustodian> 7616 </ns6:custodian> 7617 <ns6:legalAuthenticator> 7618 <ns6:time value="20140905112641+0100"/> 7619 <ns6:signatureCode code="S"/> 7620 <ns6:assignedEntity> 7621 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7622 </ns6:assignedEntity> 7623 </ns6:legalAuthenticator> 7624 <ns6:componentOf typeCode="COMP"> 7625 <ns6:encompassingEncounter> 7626 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905112636.39b3e7cc-064f-4c84-aae5-a72c84c6fb4b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7627 <ns6:effectiveTime value="20140905112636+0100"/> 7628 </ns6:encompassingEncounter> 7629 </ns6:componentOf> 7630 <ns6:component> 7631 <ns6:structuredBody> 7632 <ns6:component> 7633 <ns6:section> 7634 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 7635 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 7636 <ns6:text> 7637 <ns6:list> 7638 <ns6:item> 7639 <ns6:caption>Codice Diagnosi</ns6:caption> 7640 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 7641 </ns6:content> 7642 </ns6:item> 7643 </ns6:list> 7644 <ns6:list> 7645 <ns6:item> 7646 <ns6:caption>Descrizione Diagnosi</ns6:caption> 7647 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 7648 </ns6:content> 7649 </ns6:item> 7650 </ns6:list> 7651 <ns6:list> 7652 <ns6:item> 7653 <ns6:caption>Codice Percorso</ns6:caption> 7654 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 7655 </ns6:content> 7656 </ns6:item> 7657 </ns6:list> 7658 <ns6:list> 7659 <ns6:item> 7660 <ns6:caption>Descrizione Percorso</ns6:caption> 7661 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 7662 </ns6:content> 7663 </ns6:item> 7664 </ns6:list> 7665 </ns6:text> 7666 </ns6:section> 7667 </ns6:component> 7668 </ns6:structuredBody> 7669 </ns6:component> 7670 </ns6:ClinicalDocument> 7671 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7672 <ns6:realmCode code="IT"/> 7673 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7674 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7675 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905112725.26f12ddf-3f95-47c4-9a56-0fb7b0af78a2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7676 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7677 <ns6:effectiveTime value="20140905112725+0100"/> 7678 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7679 <ns6:languageCode code="it-IT"/> 7680 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905112725.26f12ddf-3f95-47c4-9a56-0fb7b0af78a2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7681 <ns6:versionNumber value="1"/> 7682 <ns6:recordTarget> 7683 <ns6:patientRole> 7684 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7685 </ns6:patientRole> 7686 </ns6:recordTarget> 7687 <ns6:author> 7688 <ns6:time value="20140905112725+0100"/> 7689 <ns6:assignedAuthor> 7690 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7691 <ns6:assignedPerson> 7692 <ns6:name> 7693 <ns6:given>Antonio</ns6:given> 7694 <ns6:family>Alberti</ns6:family> 7695 <ns6:prefix>MMG</ns6:prefix> 7696 </ns6:name> 7697 </ns6:assignedPerson> 7698 <ns6:representedOrganization> 7699 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7700 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7701 <ns6:addr/> 7702 </ns6:representedOrganization> 7703 </ns6:assignedAuthor> 7704 </ns6:author> 7705 <ns6:custodian> 7706 <ns6:assignedCustodian> 7707 <ns6:representedCustodianOrganization> 7708 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7709 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7710 </ns6:representedCustodianOrganization> 7711 </ns6:assignedCustodian> 7712 </ns6:custodian> 7713 <ns6:legalAuthenticator> 7714 <ns6:time value="20140905112725+0100"/> 7715 <ns6:signatureCode code="S"/> 7716 <ns6:assignedEntity> 7717 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7718 </ns6:assignedEntity> 7719 </ns6:legalAuthenticator> 7720 <ns6:componentOf typeCode="COMP"> 7721 <ns6:encompassingEncounter> 7722 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905112721.fd9da0cf-e673-44f9-9673-369973bf7d62" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7723 <ns6:effectiveTime value="20140905112721+0100"/> 7724 </ns6:encompassingEncounter> 7725 </ns6:componentOf> 7726 <ns6:component> 7727 <ns6:structuredBody> 7728 <ns6:component> 7729 <ns6:section> 7730 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 7731 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 7732 <ns6:text> 7733 <ns6:list> 7734 <ns6:item> 7735 <ns6:caption>Codice Diagnosi</ns6:caption> 7736 <ns6:content>codiceDiagnosi<ns6:content>COD_2</ns6:content> 7737 </ns6:content> 7738 </ns6:item> 7739 </ns6:list> 7740 <ns6:list> 7741 <ns6:item> 7742 <ns6:caption>Descrizione Diagnosi</ns6:caption> 7743 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA DI TIPO TENSIVO</ns6:content> 7744 </ns6:content> 7745 </ns6:item> 7746 </ns6:list> 7747 <ns6:list> 7748 <ns6:item> 7749 <ns6:caption>Codice Percorso</ns6:caption> 7750 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 7751 </ns6:content> 7752 </ns6:item> 7753 </ns6:list> 7754 <ns6:list> 7755 <ns6:item> 7756 <ns6:caption>Descrizione Percorso</ns6:caption> 7757 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 7758 </ns6:content> 7759 </ns6:item> 7760 </ns6:list> 7761 </ns6:text> 7762 </ns6:section> 7763 </ns6:component> 7764 </ns6:structuredBody> 7765 </ns6:component> 7766 </ns6:ClinicalDocument> 7767 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7768 <ns6:realmCode code="IT"/> 7769 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7770 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7771 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905123136.8f25668c-b43c-47ad-baf7-565218d625a0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7772 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7773 <ns6:effectiveTime value="20140905123136+0100"/> 7774 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7775 <ns6:languageCode code="it-IT"/> 7776 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905123136.8f25668c-b43c-47ad-baf7-565218d625a0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7777 <ns6:versionNumber value="1"/> 7778 <ns6:recordTarget> 7779 <ns6:patientRole> 7780 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7781 </ns6:patientRole> 7782 </ns6:recordTarget> 7783 <ns6:author> 7784 <ns6:time value="20140905123136+0100"/> 7785 <ns6:assignedAuthor> 7786 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7787 <ns6:assignedPerson> 7788 <ns6:name> 7789 <ns6:given>Antonio</ns6:given> 7790 <ns6:family>Alberti</ns6:family> 7791 <ns6:prefix>MMG</ns6:prefix> 7792 </ns6:name> 7793 </ns6:assignedPerson> 7794 <ns6:representedOrganization> 7795 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7796 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7797 <ns6:addr/> 7798 </ns6:representedOrganization> 7799 </ns6:assignedAuthor> 7800 </ns6:author> 7801 <ns6:custodian> 7802 <ns6:assignedCustodian> 7803 <ns6:representedCustodianOrganization> 7804 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7805 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7806 </ns6:representedCustodianOrganization> 7807 </ns6:assignedCustodian> 7808 </ns6:custodian> 7809 <ns6:legalAuthenticator> 7810 <ns6:time value="20140905123136+0100"/> 7811 <ns6:signatureCode code="S"/> 7812 <ns6:assignedEntity> 7813 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7814 </ns6:assignedEntity> 7815 </ns6:legalAuthenticator> 7816 <ns6:componentOf typeCode="COMP"> 7817 <ns6:encompassingEncounter> 7818 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905123133.65e5b494-dfee-4529-841c-cd9ef6fde42e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7819 <ns6:effectiveTime value="20140905123133+0100"/> 7820 </ns6:encompassingEncounter> 7821 </ns6:componentOf> 7822 <ns6:component> 7823 <ns6:structuredBody> 7824 <ns6:component> 7825 <ns6:section> 7826 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 7827 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 7828 <ns6:text> 7829 <ns6:list> 7830 <ns6:item> 7831 <ns6:caption>Codice Diagnosi</ns6:caption> 7832 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 7833 </ns6:content> 7834 </ns6:item> 7835 </ns6:list> 7836 <ns6:list> 7837 <ns6:item> 7838 <ns6:caption>Descrizione Diagnosi</ns6:caption> 7839 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 7840 </ns6:content> 7841 </ns6:item> 7842 </ns6:list> 7843 <ns6:list> 7844 <ns6:item> 7845 <ns6:caption>Codice Percorso</ns6:caption> 7846 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 7847 </ns6:content> 7848 </ns6:item> 7849 </ns6:list> 7850 <ns6:list> 7851 <ns6:item> 7852 <ns6:caption>Descrizione Percorso</ns6:caption> 7853 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 7854 </ns6:content> 7855 </ns6:item> 7856 </ns6:list> 7857 </ns6:text> 7858 </ns6:section> 7859 </ns6:component> 7860 </ns6:structuredBody> 7861 </ns6:component> 7862 </ns6:ClinicalDocument> 7863 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7864 <ns6:realmCode code="IT"/> 7865 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7866 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7867 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905152906.6a652666-d493-444d-a14f-d483fa1e4bc8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7868 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7869 <ns6:effectiveTime value="20140905152906+0100"/> 7870 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7871 <ns6:languageCode code="it-IT"/> 7872 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905152906.6a652666-d493-444d-a14f-d483fa1e4bc8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7873 <ns6:versionNumber value="1"/> 7874 <ns6:recordTarget> 7875 <ns6:patientRole> 7876 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7877 </ns6:patientRole> 7878 </ns6:recordTarget> 7879 <ns6:author> 7880 <ns6:time value="20140905152906+0100"/> 7881 <ns6:assignedAuthor> 7882 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7883 <ns6:assignedPerson> 7884 <ns6:name> 7885 <ns6:given>Antonio</ns6:given> 7886 <ns6:family>Alberti</ns6:family> 7887 <ns6:prefix>MMG</ns6:prefix> 7888 </ns6:name> 7889 </ns6:assignedPerson> 7890 <ns6:representedOrganization> 7891 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7892 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7893 <ns6:addr/> 7894 </ns6:representedOrganization> 7895 </ns6:assignedAuthor> 7896 </ns6:author> 7897 <ns6:custodian> 7898 <ns6:assignedCustodian> 7899 <ns6:representedCustodianOrganization> 7900 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7901 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7902 </ns6:representedCustodianOrganization> 7903 </ns6:assignedCustodian> 7904 </ns6:custodian> 7905 <ns6:legalAuthenticator> 7906 <ns6:time value="20140905152906+0100"/> 7907 <ns6:signatureCode code="S"/> 7908 <ns6:assignedEntity> 7909 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7910 </ns6:assignedEntity> 7911 </ns6:legalAuthenticator> 7912 <ns6:componentOf typeCode="COMP"> 7913 <ns6:encompassingEncounter> 7914 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905152902.275be90f-fa68-4abf-917a-5e1c2fa96241" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7915 <ns6:effectiveTime value="20140905152902+0100"/> 7916 </ns6:encompassingEncounter> 7917 </ns6:componentOf> 7918 <ns6:component> 7919 <ns6:structuredBody> 7920 <ns6:component> 7921 <ns6:section> 7922 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 7923 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 7924 <ns6:text> 7925 <ns6:list> 7926 <ns6:item> 7927 <ns6:caption>Codice Diagnosi</ns6:caption> 7928 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 7929 </ns6:content> 7930 </ns6:item> 7931 </ns6:list> 7932 <ns6:list> 7933 <ns6:item> 7934 <ns6:caption>Descrizione Diagnosi</ns6:caption> 7935 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 7936 </ns6:content> 7937 </ns6:item> 7938 </ns6:list> 7939 <ns6:list> 7940 <ns6:item> 7941 <ns6:caption>Codice Percorso</ns6:caption> 7942 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 7943 </ns6:content> 7944 </ns6:item> 7945 </ns6:list> 7946 <ns6:list> 7947 <ns6:item> 7948 <ns6:caption>Descrizione Percorso</ns6:caption> 7949 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 7950 </ns6:content> 7951 </ns6:item> 7952 </ns6:list> 7953 </ns6:text> 7954 </ns6:section> 7955 </ns6:component> 7956 </ns6:structuredBody> 7957 </ns6:component> 7958 </ns6:ClinicalDocument> 7959 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 7960 <ns6:realmCode code="IT"/> 7961 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 7962 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 7963 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905152931.bf08fb75-a6a0-4f2b-8c35-a43266981dca" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7964 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 7965 <ns6:effectiveTime value="20140905152931+0100"/> 7966 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 7967 <ns6:languageCode code="it-IT"/> 7968 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905152931.bf08fb75-a6a0-4f2b-8c35-a43266981dca" root="2.16.840.1.113883.2.9.3.12.4.4"/> 7969 <ns6:versionNumber value="1"/> 7970 <ns6:recordTarget> 7971 <ns6:patientRole> 7972 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 7973 </ns6:patientRole> 7974 </ns6:recordTarget> 7975 <ns6:author> 7976 <ns6:time value="20140905152931+0100"/> 7977 <ns6:assignedAuthor> 7978 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 7979 <ns6:assignedPerson> 7980 <ns6:name> 7981 <ns6:given>Antonio</ns6:given> 7982 <ns6:family>Alberti</ns6:family> 7983 <ns6:prefix>MMG</ns6:prefix> 7984 </ns6:name> 7985 </ns6:assignedPerson> 7986 <ns6:representedOrganization> 7987 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7988 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7989 <ns6:addr/> 7990 </ns6:representedOrganization> 7991 </ns6:assignedAuthor> 7992 </ns6:author> 7993 <ns6:custodian> 7994 <ns6:assignedCustodian> 7995 <ns6:representedCustodianOrganization> 7996 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 7997 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 7998 </ns6:representedCustodianOrganization> 7999 </ns6:assignedCustodian> 8000 </ns6:custodian> 8001 <ns6:legalAuthenticator> 8002 <ns6:time value="20140905152931+0100"/> 8003 <ns6:signatureCode code="S"/> 8004 <ns6:assignedEntity> 8005 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8006 </ns6:assignedEntity> 8007 </ns6:legalAuthenticator> 8008 <ns6:componentOf typeCode="COMP"> 8009 <ns6:encompassingEncounter> 8010 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905152927.b38712b6-8e03-4927-80da-8a03a9154f6e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8011 <ns6:effectiveTime value="20140905152927+0100"/> 8012 </ns6:encompassingEncounter> 8013 </ns6:componentOf> 8014 <ns6:component> 8015 <ns6:structuredBody> 8016 <ns6:component> 8017 <ns6:section> 8018 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 8019 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8020 <ns6:text> 8021 <ns6:list> 8022 <ns6:item> 8023 <ns6:caption>Codice Diagnosi</ns6:caption> 8024 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 8025 </ns6:content> 8026 </ns6:item> 8027 </ns6:list> 8028 <ns6:list> 8029 <ns6:item> 8030 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8031 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 8032 </ns6:content> 8033 </ns6:item> 8034 </ns6:list> 8035 <ns6:list> 8036 <ns6:item> 8037 <ns6:caption>Codice Percorso</ns6:caption> 8038 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 8039 </ns6:content> 8040 </ns6:item> 8041 </ns6:list> 8042 <ns6:list> 8043 <ns6:item> 8044 <ns6:caption>Descrizione Percorso</ns6:caption> 8045 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 8046 </ns6:content> 8047 </ns6:item> 8048 </ns6:list> 8049 </ns6:text> 8050 </ns6:section> 8051 </ns6:component> 8052 </ns6:structuredBody> 8053 </ns6:component> 8054 </ns6:ClinicalDocument> 8055 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 8056 <ns6:realmCode code="IT"/> 8057 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 8058 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 8059 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905153019.18b017f0-1ca7-442a-a238-a2074e841ad9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8060 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 8061 <ns6:effectiveTime value="20140905153019+0100"/> 8062 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 8063 <ns6:languageCode code="it-IT"/> 8064 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905153019.18b017f0-1ca7-442a-a238-a2074e841ad9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8065 <ns6:versionNumber value="1"/> 8066 <ns6:recordTarget> 8067 <ns6:patientRole> 8068 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 8069 </ns6:patientRole> 8070 </ns6:recordTarget> 8071 <ns6:author> 8072 <ns6:time value="20140905153019+0100"/> 8073 <ns6:assignedAuthor> 8074 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8075 <ns6:assignedPerson> 8076 <ns6:name> 8077 <ns6:given>Antonio</ns6:given> 8078 <ns6:family>Alberti</ns6:family> 8079 <ns6:prefix>MMG</ns6:prefix> 8080 </ns6:name> 8081 </ns6:assignedPerson> 8082 <ns6:representedOrganization> 8083 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8084 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8085 <ns6:addr/> 8086 </ns6:representedOrganization> 8087 </ns6:assignedAuthor> 8088 </ns6:author> 8089 <ns6:custodian> 8090 <ns6:assignedCustodian> 8091 <ns6:representedCustodianOrganization> 8092 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8093 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8094 </ns6:representedCustodianOrganization> 8095 </ns6:assignedCustodian> 8096 </ns6:custodian> 8097 <ns6:legalAuthenticator> 8098 <ns6:time value="20140905153019+0100"/> 8099 <ns6:signatureCode code="S"/> 8100 <ns6:assignedEntity> 8101 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8102 </ns6:assignedEntity> 8103 </ns6:legalAuthenticator> 8104 <ns6:componentOf typeCode="COMP"> 8105 <ns6:encompassingEncounter> 8106 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905153016.481a3712-95f9-4847-a956-fc1ff60b2450" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8107 <ns6:effectiveTime value="20140905153016+0100"/> 8108 </ns6:encompassingEncounter> 8109 </ns6:componentOf> 8110 <ns6:component> 8111 <ns6:structuredBody> 8112 <ns6:component> 8113 <ns6:section> 8114 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 8115 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8116 <ns6:text> 8117 <ns6:list> 8118 <ns6:item> 8119 <ns6:caption>Codice Diagnosi</ns6:caption> 8120 <ns6:content>codiceDiagnosi<ns6:content>COD_3.1</ns6:content> 8121 </ns6:content> 8122 </ns6:item> 8123 </ns6:list> 8124 <ns6:list> 8125 <ns6:item> 8126 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8127 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA A GRAPPOLO</ns6:content> 8128 </ns6:content> 8129 </ns6:item> 8130 </ns6:list> 8131 <ns6:list> 8132 <ns6:item> 8133 <ns6:caption>Codice Percorso</ns6:caption> 8134 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 8135 </ns6:content> 8136 </ns6:item> 8137 </ns6:list> 8138 <ns6:list> 8139 <ns6:item> 8140 <ns6:caption>Descrizione Percorso</ns6:caption> 8141 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 8142 </ns6:content> 8143 </ns6:item> 8144 </ns6:list> 8145 </ns6:text> 8146 </ns6:section> 8147 </ns6:component> 8148 </ns6:structuredBody> 8149 </ns6:component> 8150 </ns6:ClinicalDocument> 8151 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 8152 <ns6:realmCode code="IT"/> 8153 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 8154 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 8155 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161057.567427dc-2469-4f1f-bffa-18699aa00022" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8156 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 8157 <ns6:effectiveTime value="20140905161057+0100"/> 8158 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 8159 <ns6:languageCode code="it-IT"/> 8160 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161057.567427dc-2469-4f1f-bffa-18699aa00022" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8161 <ns6:versionNumber value="1"/> 8162 <ns6:recordTarget> 8163 <ns6:patientRole> 8164 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 8165 </ns6:patientRole> 8166 </ns6:recordTarget> 8167 <ns6:author> 8168 <ns6:time value="20140905161057+0100"/> 8169 <ns6:assignedAuthor> 8170 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8171 <ns6:assignedPerson> 8172 <ns6:name> 8173 <ns6:given>Antonio</ns6:given> 8174 <ns6:family>Alberti</ns6:family> 8175 <ns6:prefix>MMG</ns6:prefix> 8176 </ns6:name> 8177 </ns6:assignedPerson> 8178 <ns6:representedOrganization> 8179 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8180 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8181 <ns6:addr/> 8182 </ns6:representedOrganization> 8183 </ns6:assignedAuthor> 8184 </ns6:author> 8185 <ns6:custodian> 8186 <ns6:assignedCustodian> 8187 <ns6:representedCustodianOrganization> 8188 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8189 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8190 </ns6:representedCustodianOrganization> 8191 </ns6:assignedCustodian> 8192 </ns6:custodian> 8193 <ns6:legalAuthenticator> 8194 <ns6:time value="20140905161057+0100"/> 8195 <ns6:signatureCode code="S"/> 8196 <ns6:assignedEntity> 8197 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8198 </ns6:assignedEntity> 8199 </ns6:legalAuthenticator> 8200 <ns6:componentOf typeCode="COMP"> 8201 <ns6:encompassingEncounter> 8202 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161054.f745a8e4-001f-454c-80b8-f6a48ab82015" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8203 <ns6:effectiveTime value="20140905161054+0100"/> 8204 </ns6:encompassingEncounter> 8205 </ns6:componentOf> 8206 <ns6:component> 8207 <ns6:structuredBody> 8208 <ns6:component> 8209 <ns6:section> 8210 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 8211 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8212 <ns6:text> 8213 <ns6:list> 8214 <ns6:item> 8215 <ns6:caption>Codice Diagnosi</ns6:caption> 8216 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 8217 </ns6:content> 8218 </ns6:item> 8219 </ns6:list> 8220 <ns6:list> 8221 <ns6:item> 8222 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8223 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 8224 </ns6:content> 8225 </ns6:item> 8226 </ns6:list> 8227 <ns6:list> 8228 <ns6:item> 8229 <ns6:caption>Codice Percorso</ns6:caption> 8230 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 8231 </ns6:content> 8232 </ns6:item> 8233 </ns6:list> 8234 <ns6:list> 8235 <ns6:item> 8236 <ns6:caption>Descrizione Percorso</ns6:caption> 8237 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 8238 </ns6:content> 8239 </ns6:item> 8240 </ns6:list> 8241 </ns6:text> 8242 </ns6:section> 8243 </ns6:component> 8244 </ns6:structuredBody> 8245 </ns6:component> 8246 </ns6:ClinicalDocument> 8247 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 8248 <ns6:realmCode code="IT"/> 8249 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 8250 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 8251 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161117.2fc5742d-c08c-4d14-8da1-5c29e9427a60" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8252 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 8253 <ns6:effectiveTime value="20140905161117+0100"/> 8254 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 8255 <ns6:languageCode code="it-IT"/> 8256 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161117.2fc5742d-c08c-4d14-8da1-5c29e9427a60" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8257 <ns6:versionNumber value="1"/> 8258 <ns6:recordTarget> 8259 <ns6:patientRole> 8260 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 8261 </ns6:patientRole> 8262 </ns6:recordTarget> 8263 <ns6:author> 8264 <ns6:time value="20140905161117+0100"/> 8265 <ns6:assignedAuthor> 8266 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8267 <ns6:assignedPerson> 8268 <ns6:name> 8269 <ns6:given>Antonio</ns6:given> 8270 <ns6:family>Alberti</ns6:family> 8271 <ns6:prefix>MMG</ns6:prefix> 8272 </ns6:name> 8273 </ns6:assignedPerson> 8274 <ns6:representedOrganization> 8275 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8276 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8277 <ns6:addr/> 8278 </ns6:representedOrganization> 8279 </ns6:assignedAuthor> 8280 </ns6:author> 8281 <ns6:custodian> 8282 <ns6:assignedCustodian> 8283 <ns6:representedCustodianOrganization> 8284 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8285 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8286 </ns6:representedCustodianOrganization> 8287 </ns6:assignedCustodian> 8288 </ns6:custodian> 8289 <ns6:legalAuthenticator> 8290 <ns6:time value="20140905161117+0100"/> 8291 <ns6:signatureCode code="S"/> 8292 <ns6:assignedEntity> 8293 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8294 </ns6:assignedEntity> 8295 </ns6:legalAuthenticator> 8296 <ns6:componentOf typeCode="COMP"> 8297 <ns6:encompassingEncounter> 8298 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161113.5b654c56-773b-4fdb-8960-c40354a07d5e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8299 <ns6:effectiveTime value="20140905161113+0100"/> 8300 </ns6:encompassingEncounter> 8301 </ns6:componentOf> 8302 <ns6:component> 8303 <ns6:structuredBody> 8304 <ns6:component> 8305 <ns6:section> 8306 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 8307 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8308 <ns6:text> 8309 <ns6:list> 8310 <ns6:item> 8311 <ns6:caption>Codice Diagnosi</ns6:caption> 8312 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 8313 </ns6:content> 8314 </ns6:item> 8315 </ns6:list> 8316 <ns6:list> 8317 <ns6:item> 8318 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8319 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 8320 </ns6:content> 8321 </ns6:item> 8322 </ns6:list> 8323 <ns6:list> 8324 <ns6:item> 8325 <ns6:caption>Codice Percorso</ns6:caption> 8326 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 8327 </ns6:content> 8328 </ns6:item> 8329 </ns6:list> 8330 <ns6:list> 8331 <ns6:item> 8332 <ns6:caption>Descrizione Percorso</ns6:caption> 8333 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 8334 </ns6:content> 8335 </ns6:item> 8336 </ns6:list> 8337 </ns6:text> 8338 </ns6:section> 8339 </ns6:component> 8340 </ns6:structuredBody> 8341 </ns6:component> 8342 </ns6:ClinicalDocument> 8343 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 8344 <ns6:realmCode code="IT"/> 8345 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 8346 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 8347 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161133.c1ec1cbe-3feb-4491-b3eb-300da1b4ea5c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8348 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 8349 <ns6:effectiveTime value="20140905161133+0100"/> 8350 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 8351 <ns6:languageCode code="it-IT"/> 8352 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161133.c1ec1cbe-3feb-4491-b3eb-300da1b4ea5c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8353 <ns6:versionNumber value="1"/> 8354 <ns6:recordTarget> 8355 <ns6:patientRole> 8356 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 8357 </ns6:patientRole> 8358 </ns6:recordTarget> 8359 <ns6:author> 8360 <ns6:time value="20140905161133+0100"/> 8361 <ns6:assignedAuthor> 8362 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8363 <ns6:assignedPerson> 8364 <ns6:name> 8365 <ns6:given>Antonio</ns6:given> 8366 <ns6:family>Alberti</ns6:family> 8367 <ns6:prefix>MMG</ns6:prefix> 8368 </ns6:name> 8369 </ns6:assignedPerson> 8370 <ns6:representedOrganization> 8371 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8372 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8373 <ns6:addr/> 8374 </ns6:representedOrganization> 8375 </ns6:assignedAuthor> 8376 </ns6:author> 8377 <ns6:custodian> 8378 <ns6:assignedCustodian> 8379 <ns6:representedCustodianOrganization> 8380 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8381 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8382 </ns6:representedCustodianOrganization> 8383 </ns6:assignedCustodian> 8384 </ns6:custodian> 8385 <ns6:legalAuthenticator> 8386 <ns6:time value="20140905161133+0100"/> 8387 <ns6:signatureCode code="S"/> 8388 <ns6:assignedEntity> 8389 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8390 </ns6:assignedEntity> 8391 </ns6:legalAuthenticator> 8392 <ns6:componentOf typeCode="COMP"> 8393 <ns6:encompassingEncounter> 8394 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161130.ea276e0e-f68c-405c-a99e-6d77b80841c1" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8395 <ns6:effectiveTime value="20140905161130+0100"/> 8396 </ns6:encompassingEncounter> 8397 </ns6:componentOf> 8398 <ns6:component> 8399 <ns6:structuredBody> 8400 <ns6:component> 8401 <ns6:section> 8402 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 8403 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8404 <ns6:text> 8405 <ns6:list> 8406 <ns6:item> 8407 <ns6:caption>Codice Diagnosi</ns6:caption> 8408 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 8409 </ns6:content> 8410 </ns6:item> 8411 </ns6:list> 8412 <ns6:list> 8413 <ns6:item> 8414 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8415 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 8416 </ns6:content> 8417 </ns6:item> 8418 </ns6:list> 8419 <ns6:list> 8420 <ns6:item> 8421 <ns6:caption>Codice Percorso</ns6:caption> 8422 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 8423 </ns6:content> 8424 </ns6:item> 8425 </ns6:list> 8426 <ns6:list> 8427 <ns6:item> 8428 <ns6:caption>Descrizione Percorso</ns6:caption> 8429 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 8430 </ns6:content> 8431 </ns6:item> 8432 </ns6:list> 8433 </ns6:text> 8434 </ns6:section> 8435 </ns6:component> 8436 </ns6:structuredBody> 8437 </ns6:component> 8438 </ns6:ClinicalDocument> 8439 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 8440 <ns6:realmCode code="IT"/> 8441 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 8442 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 8443 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161209.229c2db0-ef11-466b-bbd9-a09111b13c52" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8444 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 8445 <ns6:effectiveTime value="20140905161209+0100"/> 8446 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 8447 <ns6:languageCode code="it-IT"/> 8448 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161209.229c2db0-ef11-466b-bbd9-a09111b13c52" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8449 <ns6:versionNumber value="1"/> 8450 <ns6:recordTarget> 8451 <ns6:patientRole> 8452 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 8453 </ns6:patientRole> 8454 </ns6:recordTarget> 8455 <ns6:author> 8456 <ns6:time value="20140905161209+0100"/> 8457 <ns6:assignedAuthor> 8458 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8459 <ns6:assignedPerson> 8460 <ns6:name> 8461 <ns6:given>Antonio</ns6:given> 8462 <ns6:family>Alberti</ns6:family> 8463 <ns6:prefix>MMG</ns6:prefix> 8464 </ns6:name> 8465 </ns6:assignedPerson> 8466 <ns6:representedOrganization> 8467 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8468 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8469 <ns6:addr/> 8470 </ns6:representedOrganization> 8471 </ns6:assignedAuthor> 8472 </ns6:author> 8473 <ns6:custodian> 8474 <ns6:assignedCustodian> 8475 <ns6:representedCustodianOrganization> 8476 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8477 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8478 </ns6:representedCustodianOrganization> 8479 </ns6:assignedCustodian> 8480 </ns6:custodian> 8481 <ns6:legalAuthenticator> 8482 <ns6:time value="20140905161209+0100"/> 8483 <ns6:signatureCode code="S"/> 8484 <ns6:assignedEntity> 8485 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8486 </ns6:assignedEntity> 8487 </ns6:legalAuthenticator> 8488 <ns6:componentOf typeCode="COMP"> 8489 <ns6:encompassingEncounter> 8490 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161206.724d1eb8-d74e-45de-a33a-9eed4087e678" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8491 <ns6:effectiveTime value="20140905161206+0100"/> 8492 </ns6:encompassingEncounter> 8493 </ns6:componentOf> 8494 <ns6:component> 8495 <ns6:structuredBody> 8496 <ns6:component> 8497 <ns6:section> 8498 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 8499 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8500 <ns6:text> 8501 <ns6:list> 8502 <ns6:item> 8503 <ns6:caption>Codice Diagnosi</ns6:caption> 8504 <ns6:content>codiceDiagnosi<ns6:content>COD_3.1</ns6:content> 8505 </ns6:content> 8506 </ns6:item> 8507 </ns6:list> 8508 <ns6:list> 8509 <ns6:item> 8510 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8511 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA A GRAPPOLO</ns6:content> 8512 </ns6:content> 8513 </ns6:item> 8514 </ns6:list> 8515 <ns6:list> 8516 <ns6:item> 8517 <ns6:caption>Codice Percorso</ns6:caption> 8518 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 8519 </ns6:content> 8520 </ns6:item> 8521 </ns6:list> 8522 <ns6:list> 8523 <ns6:item> 8524 <ns6:caption>Descrizione Percorso</ns6:caption> 8525 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 8526 </ns6:content> 8527 </ns6:item> 8528 </ns6:list> 8529 </ns6:text> 8530 </ns6:section> 8531 </ns6:component> 8532 </ns6:structuredBody> 8533 </ns6:component> 8534 </ns6:ClinicalDocument> 8535 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 8536 <ns6:realmCode code="IT"/> 8537 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 8538 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 8539 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161303.68387637-59b2-4dcd-b1eb-ee27b8b8eb7d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8540 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 8541 <ns6:effectiveTime value="20140905161303+0100"/> 8542 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 8543 <ns6:languageCode code="it-IT"/> 8544 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161303.68387637-59b2-4dcd-b1eb-ee27b8b8eb7d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8545 <ns6:versionNumber value="1"/> 8546 <ns6:recordTarget> 8547 <ns6:patientRole> 8548 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 8549 </ns6:patientRole> 8550 </ns6:recordTarget> 8551 <ns6:author> 8552 <ns6:time value="20140905161303+0100"/> 8553 <ns6:assignedAuthor> 8554 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8555 <ns6:assignedPerson> 8556 <ns6:name> 8557 <ns6:given>Antonio</ns6:given> 8558 <ns6:family>Alberti</ns6:family> 8559 <ns6:prefix>MMG</ns6:prefix> 8560 </ns6:name> 8561 </ns6:assignedPerson> 8562 <ns6:representedOrganization> 8563 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8564 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8565 <ns6:addr/> 8566 </ns6:representedOrganization> 8567 </ns6:assignedAuthor> 8568 </ns6:author> 8569 <ns6:custodian> 8570 <ns6:assignedCustodian> 8571 <ns6:representedCustodianOrganization> 8572 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8573 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8574 </ns6:representedCustodianOrganization> 8575 </ns6:assignedCustodian> 8576 </ns6:custodian> 8577 <ns6:legalAuthenticator> 8578 <ns6:time value="20140905161303+0100"/> 8579 <ns6:signatureCode code="S"/> 8580 <ns6:assignedEntity> 8581 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8582 </ns6:assignedEntity> 8583 </ns6:legalAuthenticator> 8584 <ns6:componentOf typeCode="COMP"> 8585 <ns6:encompassingEncounter> 8586 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161259.b3b67b54-8df2-4fbc-ad45-6ed08fb2c6e7" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8587 <ns6:effectiveTime value="20140905161259+0100"/> 8588 </ns6:encompassingEncounter> 8589 </ns6:componentOf> 8590 <ns6:component> 8591 <ns6:structuredBody> 8592 <ns6:component> 8593 <ns6:section> 8594 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 8595 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8596 <ns6:text> 8597 <ns6:list> 8598 <ns6:item> 8599 <ns6:caption>Codice Diagnosi</ns6:caption> 8600 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 8601 </ns6:content> 8602 </ns6:item> 8603 </ns6:list> 8604 <ns6:list> 8605 <ns6:item> 8606 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8607 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 8608 </ns6:content> 8609 </ns6:item> 8610 </ns6:list> 8611 <ns6:list> 8612 <ns6:item> 8613 <ns6:caption>Codice Percorso</ns6:caption> 8614 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 8615 </ns6:content> 8616 </ns6:item> 8617 </ns6:list> 8618 <ns6:list> 8619 <ns6:item> 8620 <ns6:caption>Descrizione Percorso</ns6:caption> 8621 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 8622 </ns6:content> 8623 </ns6:item> 8624 </ns6:list> 8625 </ns6:text> 8626 </ns6:section> 8627 </ns6:component> 8628 </ns6:structuredBody> 8629 </ns6:component> 8630 </ns6:ClinicalDocument> 8631 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 8632 <ns6:realmCode code="IT"/> 8633 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 8634 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 8635 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161333.7d36b4cf-9744-4f4d-a6ba-5ac5440e0be1" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8636 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 8637 <ns6:effectiveTime value="20140905161333+0100"/> 8638 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 8639 <ns6:languageCode code="it-IT"/> 8640 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161333.7d36b4cf-9744-4f4d-a6ba-5ac5440e0be1" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8641 <ns6:versionNumber value="1"/> 8642 <ns6:recordTarget> 8643 <ns6:patientRole> 8644 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 8645 </ns6:patientRole> 8646 </ns6:recordTarget> 8647 <ns6:author> 8648 <ns6:time value="20140905161333+0100"/> 8649 <ns6:assignedAuthor> 8650 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8651 <ns6:assignedPerson> 8652 <ns6:name> 8653 <ns6:given>Antonio</ns6:given> 8654 <ns6:family>Alberti</ns6:family> 8655 <ns6:prefix>MMG</ns6:prefix> 8656 </ns6:name> 8657 </ns6:assignedPerson> 8658 <ns6:representedOrganization> 8659 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8660 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8661 <ns6:addr/> 8662 </ns6:representedOrganization> 8663 </ns6:assignedAuthor> 8664 </ns6:author> 8665 <ns6:custodian> 8666 <ns6:assignedCustodian> 8667 <ns6:representedCustodianOrganization> 8668 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8669 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8670 </ns6:representedCustodianOrganization> 8671 </ns6:assignedCustodian> 8672 </ns6:custodian> 8673 <ns6:legalAuthenticator> 8674 <ns6:time value="20140905161333+0100"/> 8675 <ns6:signatureCode code="S"/> 8676 <ns6:assignedEntity> 8677 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8678 </ns6:assignedEntity> 8679 </ns6:legalAuthenticator> 8680 <ns6:componentOf typeCode="COMP"> 8681 <ns6:encompassingEncounter> 8682 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905161329.78f1f570-58f6-445c-8c0c-b9560a60656a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8683 <ns6:effectiveTime value="20140905161329+0100"/> 8684 </ns6:encompassingEncounter> 8685 </ns6:componentOf> 8686 <ns6:component> 8687 <ns6:structuredBody> 8688 <ns6:component> 8689 <ns6:section> 8690 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 8691 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8692 <ns6:text> 8693 <ns6:list> 8694 <ns6:item> 8695 <ns6:caption>Codice Diagnosi</ns6:caption> 8696 <ns6:content>codiceDiagnosi<ns6:content>COD_0.4</ns6:content> 8697 </ns6:content> 8698 </ns6:item> 8699 </ns6:list> 8700 <ns6:list> 8701 <ns6:item> 8702 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8703 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA ASSOCIATA A POSSIBILI COMORBIDITA</ns6:content> 8704 </ns6:content> 8705 </ns6:item> 8706 </ns6:list> 8707 <ns6:list> 8708 <ns6:item> 8709 <ns6:caption>Codice Percorso</ns6:caption> 8710 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 8711 </ns6:content> 8712 </ns6:item> 8713 </ns6:list> 8714 <ns6:list> 8715 <ns6:item> 8716 <ns6:caption>Descrizione Percorso</ns6:caption> 8717 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 8718 </ns6:content> 8719 </ns6:item> 8720 </ns6:list> 8721 </ns6:text> 8722 </ns6:section> 8723 </ns6:component> 8724 </ns6:structuredBody> 8725 </ns6:component> 8726 </ns6:ClinicalDocument> 8727 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 8728 <ns6:realmCode code="IT"/> 8729 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 8730 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 8731 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174754.cabb476a-70c4-4acb-91a6-d4379d652080" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8732 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 8733 <ns6:effectiveTime value="20140905174754+0100"/> 8734 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 8735 <ns6:languageCode code="it-IT"/> 8736 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174754.cabb476a-70c4-4acb-91a6-d4379d652080" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8737 <ns6:versionNumber value="1"/> 8738 <ns6:recordTarget> 8739 <ns6:patientRole> 8740 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 8741 </ns6:patientRole> 8742 </ns6:recordTarget> 8743 <ns6:author> 8744 <ns6:time value="20140905174754+0100"/> 8745 <ns6:assignedAuthor> 8746 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8747 <ns6:assignedPerson> 8748 <ns6:name> 8749 <ns6:given>Antonio</ns6:given> 8750 <ns6:family>Alberti</ns6:family> 8751 <ns6:prefix>MMG</ns6:prefix> 8752 </ns6:name> 8753 </ns6:assignedPerson> 8754 <ns6:representedOrganization> 8755 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8756 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8757 <ns6:addr/> 8758 </ns6:representedOrganization> 8759 </ns6:assignedAuthor> 8760 </ns6:author> 8761 <ns6:custodian> 8762 <ns6:assignedCustodian> 8763 <ns6:representedCustodianOrganization> 8764 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8765 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8766 </ns6:representedCustodianOrganization> 8767 </ns6:assignedCustodian> 8768 </ns6:custodian> 8769 <ns6:legalAuthenticator> 8770 <ns6:time value="20140905174754+0100"/> 8771 <ns6:signatureCode code="S"/> 8772 <ns6:assignedEntity> 8773 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8774 </ns6:assignedEntity> 8775 </ns6:legalAuthenticator> 8776 <ns6:componentOf typeCode="COMP"> 8777 <ns6:encompassingEncounter> 8778 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174751.df240568-bf66-4738-afdd-5d1a9f7a2e23" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8779 <ns6:effectiveTime value="20140905174751+0100"/> 8780 </ns6:encompassingEncounter> 8781 </ns6:componentOf> 8782 <ns6:component> 8783 <ns6:structuredBody> 8784 <ns6:component> 8785 <ns6:section> 8786 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 8787 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8788 <ns6:text> 8789 <ns6:list> 8790 <ns6:item> 8791 <ns6:caption>Codice Diagnosi</ns6:caption> 8792 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 8793 </ns6:content> 8794 </ns6:item> 8795 </ns6:list> 8796 <ns6:list> 8797 <ns6:item> 8798 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8799 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 8800 </ns6:content> 8801 </ns6:item> 8802 </ns6:list> 8803 <ns6:list> 8804 <ns6:item> 8805 <ns6:caption>Codice Percorso</ns6:caption> 8806 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 8807 </ns6:content> 8808 </ns6:item> 8809 </ns6:list> 8810 <ns6:list> 8811 <ns6:item> 8812 <ns6:caption>Descrizione Percorso</ns6:caption> 8813 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 8814 </ns6:content> 8815 </ns6:item> 8816 </ns6:list> 8817 </ns6:text> 8818 </ns6:section> 8819 </ns6:component> 8820 </ns6:structuredBody> 8821 </ns6:component> 8822 </ns6:ClinicalDocument> 8823 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 8824 <ns6:realmCode code="IT"/> 8825 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 8826 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 8827 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174814.a7028118-7dd0-405a-9a92-60bd8895ebd8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8828 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 8829 <ns6:effectiveTime value="20140905174814+0100"/> 8830 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 8831 <ns6:languageCode code="it-IT"/> 8832 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174814.a7028118-7dd0-405a-9a92-60bd8895ebd8" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8833 <ns6:versionNumber value="1"/> 8834 <ns6:recordTarget> 8835 <ns6:patientRole> 8836 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 8837 </ns6:patientRole> 8838 </ns6:recordTarget> 8839 <ns6:author> 8840 <ns6:time value="20140905174814+0100"/> 8841 <ns6:assignedAuthor> 8842 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8843 <ns6:assignedPerson> 8844 <ns6:name> 8845 <ns6:given>Antonio</ns6:given> 8846 <ns6:family>Alberti</ns6:family> 8847 <ns6:prefix>MMG</ns6:prefix> 8848 </ns6:name> 8849 </ns6:assignedPerson> 8850 <ns6:representedOrganization> 8851 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8852 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8853 <ns6:addr/> 8854 </ns6:representedOrganization> 8855 </ns6:assignedAuthor> 8856 </ns6:author> 8857 <ns6:custodian> 8858 <ns6:assignedCustodian> 8859 <ns6:representedCustodianOrganization> 8860 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8861 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8862 </ns6:representedCustodianOrganization> 8863 </ns6:assignedCustodian> 8864 </ns6:custodian> 8865 <ns6:legalAuthenticator> 8866 <ns6:time value="20140905174814+0100"/> 8867 <ns6:signatureCode code="S"/> 8868 <ns6:assignedEntity> 8869 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8870 </ns6:assignedEntity> 8871 </ns6:legalAuthenticator> 8872 <ns6:componentOf typeCode="COMP"> 8873 <ns6:encompassingEncounter> 8874 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174811.e476ca33-efab-41d4-b7d1-fcaf39233a72" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8875 <ns6:effectiveTime value="20140905174811+0100"/> 8876 </ns6:encompassingEncounter> 8877 </ns6:componentOf> 8878 <ns6:component> 8879 <ns6:structuredBody> 8880 <ns6:component> 8881 <ns6:section> 8882 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 8883 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8884 <ns6:text> 8885 <ns6:list> 8886 <ns6:item> 8887 <ns6:caption>Codice Diagnosi</ns6:caption> 8888 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 8889 </ns6:content> 8890 </ns6:item> 8891 </ns6:list> 8892 <ns6:list> 8893 <ns6:item> 8894 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8895 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 8896 </ns6:content> 8897 </ns6:item> 8898 </ns6:list> 8899 <ns6:list> 8900 <ns6:item> 8901 <ns6:caption>Codice Percorso</ns6:caption> 8902 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 8903 </ns6:content> 8904 </ns6:item> 8905 </ns6:list> 8906 <ns6:list> 8907 <ns6:item> 8908 <ns6:caption>Descrizione Percorso</ns6:caption> 8909 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 8910 </ns6:content> 8911 </ns6:item> 8912 </ns6:list> 8913 </ns6:text> 8914 </ns6:section> 8915 </ns6:component> 8916 </ns6:structuredBody> 8917 </ns6:component> 8918 </ns6:ClinicalDocument> 8919 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 8920 <ns6:realmCode code="IT"/> 8921 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 8922 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 8923 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174843.bade6b79-d2f5-44ce-83b4-b6079efa7d6e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8924 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 8925 <ns6:effectiveTime value="20140905174843+0100"/> 8926 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 8927 <ns6:languageCode code="it-IT"/> 8928 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174843.bade6b79-d2f5-44ce-83b4-b6079efa7d6e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8929 <ns6:versionNumber value="1"/> 8930 <ns6:recordTarget> 8931 <ns6:patientRole> 8932 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 8933 </ns6:patientRole> 8934 </ns6:recordTarget> 8935 <ns6:author> 8936 <ns6:time value="20140905174843+0100"/> 8937 <ns6:assignedAuthor> 8938 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8939 <ns6:assignedPerson> 8940 <ns6:name> 8941 <ns6:given>Antonio</ns6:given> 8942 <ns6:family>Alberti</ns6:family> 8943 <ns6:prefix>MMG</ns6:prefix> 8944 </ns6:name> 8945 </ns6:assignedPerson> 8946 <ns6:representedOrganization> 8947 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8948 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8949 <ns6:addr/> 8950 </ns6:representedOrganization> 8951 </ns6:assignedAuthor> 8952 </ns6:author> 8953 <ns6:custodian> 8954 <ns6:assignedCustodian> 8955 <ns6:representedCustodianOrganization> 8956 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 8957 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 8958 </ns6:representedCustodianOrganization> 8959 </ns6:assignedCustodian> 8960 </ns6:custodian> 8961 <ns6:legalAuthenticator> 8962 <ns6:time value="20140905174843+0100"/> 8963 <ns6:signatureCode code="S"/> 8964 <ns6:assignedEntity> 8965 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 8966 </ns6:assignedEntity> 8967 </ns6:legalAuthenticator> 8968 <ns6:componentOf typeCode="COMP"> 8969 <ns6:encompassingEncounter> 8970 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174840.27c7a1c6-761d-4c58-8580-7b3fe14c5efd" root="2.16.840.1.113883.2.9.3.12.4.4"/> 8971 <ns6:effectiveTime value="20140905174840+0100"/> 8972 </ns6:encompassingEncounter> 8973 </ns6:componentOf> 8974 <ns6:component> 8975 <ns6:structuredBody> 8976 <ns6:component> 8977 <ns6:section> 8978 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 8979 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 8980 <ns6:text> 8981 <ns6:list> 8982 <ns6:item> 8983 <ns6:caption>Codice Diagnosi</ns6:caption> 8984 <ns6:content>codiceDiagnosi<ns6:content>COD_2</ns6:content> 8985 </ns6:content> 8986 </ns6:item> 8987 </ns6:list> 8988 <ns6:list> 8989 <ns6:item> 8990 <ns6:caption>Descrizione Diagnosi</ns6:caption> 8991 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE CEFALEA DI TIPO TENSIVO</ns6:content> 8992 </ns6:content> 8993 </ns6:item> 8994 </ns6:list> 8995 <ns6:list> 8996 <ns6:item> 8997 <ns6:caption>Codice Percorso</ns6:caption> 8998 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 8999 </ns6:content> 9000 </ns6:item> 9001 </ns6:list> 9002 <ns6:list> 9003 <ns6:item> 9004 <ns6:caption>Descrizione Percorso</ns6:caption> 9005 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 9006 </ns6:content> 9007 </ns6:item> 9008 </ns6:list> 9009 </ns6:text> 9010 </ns6:section> 9011 </ns6:component> 9012 </ns6:structuredBody> 9013 </ns6:component> 9014 </ns6:ClinicalDocument> 9015 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9016 <ns6:realmCode code="IT"/> 9017 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9018 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9019 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174914.0bd45a2a-1762-4a22-9485-bd2c8e50da81" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9020 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9021 <ns6:effectiveTime value="20140905174914+0100"/> 9022 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9023 <ns6:languageCode code="it-IT"/> 9024 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174914.0bd45a2a-1762-4a22-9485-bd2c8e50da81" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9025 <ns6:versionNumber value="1"/> 9026 <ns6:recordTarget> 9027 <ns6:patientRole> 9028 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9029 </ns6:patientRole> 9030 </ns6:recordTarget> 9031 <ns6:author> 9032 <ns6:time value="20140905174914+0100"/> 9033 <ns6:assignedAuthor> 9034 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9035 <ns6:assignedPerson> 9036 <ns6:name> 9037 <ns6:given>Antonio</ns6:given> 9038 <ns6:family>Alberti</ns6:family> 9039 <ns6:prefix>MMG</ns6:prefix> 9040 </ns6:name> 9041 </ns6:assignedPerson> 9042 <ns6:representedOrganization> 9043 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9044 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9045 <ns6:addr/> 9046 </ns6:representedOrganization> 9047 </ns6:assignedAuthor> 9048 </ns6:author> 9049 <ns6:custodian> 9050 <ns6:assignedCustodian> 9051 <ns6:representedCustodianOrganization> 9052 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9053 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9054 </ns6:representedCustodianOrganization> 9055 </ns6:assignedCustodian> 9056 </ns6:custodian> 9057 <ns6:legalAuthenticator> 9058 <ns6:time value="20140905174914+0100"/> 9059 <ns6:signatureCode code="S"/> 9060 <ns6:assignedEntity> 9061 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9062 </ns6:assignedEntity> 9063 </ns6:legalAuthenticator> 9064 <ns6:componentOf typeCode="COMP"> 9065 <ns6:encompassingEncounter> 9066 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174910.0a8cd30f-0f04-41e5-b4c0-601a3a74fa39" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9067 <ns6:effectiveTime value="20140905174910+0100"/> 9068 </ns6:encompassingEncounter> 9069 </ns6:componentOf> 9070 <ns6:component> 9071 <ns6:structuredBody> 9072 <ns6:component> 9073 <ns6:section> 9074 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 9075 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 9076 <ns6:text> 9077 <ns6:list> 9078 <ns6:item> 9079 <ns6:caption>Codice Diagnosi</ns6:caption> 9080 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 9081 </ns6:content> 9082 </ns6:item> 9083 </ns6:list> 9084 <ns6:list> 9085 <ns6:item> 9086 <ns6:caption>Descrizione Diagnosi</ns6:caption> 9087 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 9088 </ns6:content> 9089 </ns6:item> 9090 </ns6:list> 9091 <ns6:list> 9092 <ns6:item> 9093 <ns6:caption>Codice Percorso</ns6:caption> 9094 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 9095 </ns6:content> 9096 </ns6:item> 9097 </ns6:list> 9098 <ns6:list> 9099 <ns6:item> 9100 <ns6:caption>Descrizione Percorso</ns6:caption> 9101 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 9102 </ns6:content> 9103 </ns6:item> 9104 </ns6:list> 9105 </ns6:text> 9106 </ns6:section> 9107 </ns6:component> 9108 </ns6:structuredBody> 9109 </ns6:component> 9110 </ns6:ClinicalDocument> 9111 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9112 <ns6:realmCode code="IT"/> 9113 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9114 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9115 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174928.a9c3ee40-e6f6-4218-8435-66997ce6f961" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9116 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9117 <ns6:effectiveTime value="20140905174928+0100"/> 9118 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9119 <ns6:languageCode code="it-IT"/> 9120 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174928.a9c3ee40-e6f6-4218-8435-66997ce6f961" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9121 <ns6:versionNumber value="1"/> 9122 <ns6:recordTarget> 9123 <ns6:patientRole> 9124 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9125 </ns6:patientRole> 9126 </ns6:recordTarget> 9127 <ns6:author> 9128 <ns6:time value="20140905174928+0100"/> 9129 <ns6:assignedAuthor> 9130 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9131 <ns6:assignedPerson> 9132 <ns6:name> 9133 <ns6:given>Antonio</ns6:given> 9134 <ns6:family>Alberti</ns6:family> 9135 <ns6:prefix>MMG</ns6:prefix> 9136 </ns6:name> 9137 </ns6:assignedPerson> 9138 <ns6:representedOrganization> 9139 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9140 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9141 <ns6:addr/> 9142 </ns6:representedOrganization> 9143 </ns6:assignedAuthor> 9144 </ns6:author> 9145 <ns6:custodian> 9146 <ns6:assignedCustodian> 9147 <ns6:representedCustodianOrganization> 9148 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9149 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9150 </ns6:representedCustodianOrganization> 9151 </ns6:assignedCustodian> 9152 </ns6:custodian> 9153 <ns6:legalAuthenticator> 9154 <ns6:time value="20140905174928+0100"/> 9155 <ns6:signatureCode code="S"/> 9156 <ns6:assignedEntity> 9157 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9158 </ns6:assignedEntity> 9159 </ns6:legalAuthenticator> 9160 <ns6:componentOf typeCode="COMP"> 9161 <ns6:encompassingEncounter> 9162 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905174925.4a4e658a-2ae2-4e9a-9f9d-dfafbe8ae69f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9163 <ns6:effectiveTime value="20140905174925+0100"/> 9164 </ns6:encompassingEncounter> 9165 </ns6:componentOf> 9166 <ns6:component> 9167 <ns6:structuredBody> 9168 <ns6:component> 9169 <ns6:section> 9170 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 9171 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 9172 <ns6:text> 9173 <ns6:list> 9174 <ns6:item> 9175 <ns6:caption>Codice Diagnosi</ns6:caption> 9176 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 9177 </ns6:content> 9178 </ns6:item> 9179 </ns6:list> 9180 <ns6:list> 9181 <ns6:item> 9182 <ns6:caption>Descrizione Diagnosi</ns6:caption> 9183 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 9184 </ns6:content> 9185 </ns6:item> 9186 </ns6:list> 9187 <ns6:list> 9188 <ns6:item> 9189 <ns6:caption>Codice Percorso</ns6:caption> 9190 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 9191 </ns6:content> 9192 </ns6:item> 9193 </ns6:list> 9194 <ns6:list> 9195 <ns6:item> 9196 <ns6:caption>Descrizione Percorso</ns6:caption> 9197 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 9198 </ns6:content> 9199 </ns6:item> 9200 </ns6:list> 9201 </ns6:text> 9202 </ns6:section> 9203 </ns6:component> 9204 </ns6:structuredBody> 9205 </ns6:component> 9206 </ns6:ClinicalDocument> 9207 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9208 <ns6:realmCode code="IT"/> 9209 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9210 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9211 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905175006.a5750d21-a10a-4899-bc66-ceabc99dc324" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9212 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9213 <ns6:effectiveTime value="20140905175006+0100"/> 9214 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9215 <ns6:languageCode code="it-IT"/> 9216 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905175006.a5750d21-a10a-4899-bc66-ceabc99dc324" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9217 <ns6:versionNumber value="1"/> 9218 <ns6:recordTarget> 9219 <ns6:patientRole> 9220 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9221 </ns6:patientRole> 9222 </ns6:recordTarget> 9223 <ns6:author> 9224 <ns6:time value="20140905175006+0100"/> 9225 <ns6:assignedAuthor> 9226 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9227 <ns6:assignedPerson> 9228 <ns6:name> 9229 <ns6:given>Antonio</ns6:given> 9230 <ns6:family>Alberti</ns6:family> 9231 <ns6:prefix>MMG</ns6:prefix> 9232 </ns6:name> 9233 </ns6:assignedPerson> 9234 <ns6:representedOrganization> 9235 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9236 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9237 <ns6:addr/> 9238 </ns6:representedOrganization> 9239 </ns6:assignedAuthor> 9240 </ns6:author> 9241 <ns6:custodian> 9242 <ns6:assignedCustodian> 9243 <ns6:representedCustodianOrganization> 9244 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9245 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9246 </ns6:representedCustodianOrganization> 9247 </ns6:assignedCustodian> 9248 </ns6:custodian> 9249 <ns6:legalAuthenticator> 9250 <ns6:time value="20140905175006+0100"/> 9251 <ns6:signatureCode code="S"/> 9252 <ns6:assignedEntity> 9253 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9254 </ns6:assignedEntity> 9255 </ns6:legalAuthenticator> 9256 <ns6:componentOf typeCode="COMP"> 9257 <ns6:encompassingEncounter> 9258 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140905175002.165d2df5-4d2b-453a-ad4e-56fa1ce5da80" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9259 <ns6:effectiveTime value="20140905175002+0100"/> 9260 </ns6:encompassingEncounter> 9261 </ns6:componentOf> 9262 <ns6:component> 9263 <ns6:structuredBody> 9264 <ns6:component> 9265 <ns6:section> 9266 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 9267 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 9268 <ns6:text> 9269 <ns6:list> 9270 <ns6:item> 9271 <ns6:caption>Codice Diagnosi</ns6:caption> 9272 <ns6:content>codiceDiagnosi<ns6:content>COD_1.1</ns6:content> 9273 </ns6:content> 9274 </ns6:item> 9275 </ns6:list> 9276 <ns6:list> 9277 <ns6:item> 9278 <ns6:caption>Descrizione Diagnosi</ns6:caption> 9279 <ns6:content>descrizioneDiagnosi<ns6:content>POSSIBILE EMICRANIA SENZA AURA</ns6:content> 9280 </ns6:content> 9281 </ns6:item> 9282 </ns6:list> 9283 <ns6:list> 9284 <ns6:item> 9285 <ns6:caption>Codice Percorso</ns6:caption> 9286 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 9287 </ns6:content> 9288 </ns6:item> 9289 </ns6:list> 9290 <ns6:list> 9291 <ns6:item> 9292 <ns6:caption>Descrizione Percorso</ns6:caption> 9293 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 9294 </ns6:content> 9295 </ns6:item> 9296 </ns6:list> 9297 </ns6:text> 9298 </ns6:section> 9299 </ns6:component> 9300 </ns6:structuredBody> 9301 </ns6:component> 9302 </ns6:ClinicalDocument> 9303 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9304 <ns6:realmCode code="IT"/> 9305 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9306 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9307 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906123747.59e07d90-99a7-4160-8a85-018d4976994e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9308 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9309 <ns6:effectiveTime value="20140906123747+0100"/> 9310 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9311 <ns6:languageCode code="it-IT"/> 9312 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906123747.59e07d90-99a7-4160-8a85-018d4976994e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9313 <ns6:versionNumber value="1"/> 9314 <ns6:recordTarget> 9315 <ns6:patientRole> 9316 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9317 </ns6:patientRole> 9318 </ns6:recordTarget> 9319 <ns6:author> 9320 <ns6:time value="20140906123747+0100"/> 9321 <ns6:assignedAuthor> 9322 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9323 <ns6:assignedPerson> 9324 <ns6:name> 9325 <ns6:given>Antonio</ns6:given> 9326 <ns6:family>Alberti</ns6:family> 9327 <ns6:prefix>MMG</ns6:prefix> 9328 </ns6:name> 9329 </ns6:assignedPerson> 9330 <ns6:representedOrganization> 9331 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9332 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9333 <ns6:addr/> 9334 </ns6:representedOrganization> 9335 </ns6:assignedAuthor> 9336 </ns6:author> 9337 <ns6:custodian> 9338 <ns6:assignedCustodian> 9339 <ns6:representedCustodianOrganization> 9340 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9341 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9342 </ns6:representedCustodianOrganization> 9343 </ns6:assignedCustodian> 9344 </ns6:custodian> 9345 <ns6:legalAuthenticator> 9346 <ns6:time value="20140906123747+0100"/> 9347 <ns6:signatureCode code="S"/> 9348 <ns6:assignedEntity> 9349 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9350 </ns6:assignedEntity> 9351 </ns6:legalAuthenticator> 9352 <ns6:componentOf typeCode="COMP"> 9353 <ns6:encompassingEncounter> 9354 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906123744.20b972a3-e3ce-43e5-ac5c-b3befaaa0dc2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9355 <ns6:effectiveTime value="20140906123744+0100"/> 9356 </ns6:encompassingEncounter> 9357 </ns6:componentOf> 9358 <ns6:component> 9359 <ns6:structuredBody> 9360 <ns6:component> 9361 <ns6:section> 9362 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 9363 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 9364 <ns6:text> 9365 <ns6:list> 9366 <ns6:item> 9367 <ns6:caption>Codice Diagnosi</ns6:caption> 9368 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 9369 </ns6:content> 9370 </ns6:item> 9371 </ns6:list> 9372 <ns6:list> 9373 <ns6:item> 9374 <ns6:caption>Descrizione Diagnosi</ns6:caption> 9375 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 9376 </ns6:content> 9377 </ns6:item> 9378 </ns6:list> 9379 <ns6:list> 9380 <ns6:item> 9381 <ns6:caption>Codice Percorso</ns6:caption> 9382 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 9383 </ns6:content> 9384 </ns6:item> 9385 </ns6:list> 9386 <ns6:list> 9387 <ns6:item> 9388 <ns6:caption>Descrizione Percorso</ns6:caption> 9389 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 9390 </ns6:content> 9391 </ns6:item> 9392 </ns6:list> 9393 </ns6:text> 9394 </ns6:section> 9395 </ns6:component> 9396 </ns6:structuredBody> 9397 </ns6:component> 9398 </ns6:ClinicalDocument> 9399 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9400 <ns6:realmCode code="IT"/> 9401 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9402 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9403 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906124503.3096e497-acfd-4c25-b569-ed0c6a8e80f9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9404 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9405 <ns6:effectiveTime value="20140906124503+0100"/> 9406 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9407 <ns6:languageCode code="it-IT"/> 9408 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906124503.3096e497-acfd-4c25-b569-ed0c6a8e80f9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9409 <ns6:versionNumber value="1"/> 9410 <ns6:recordTarget> 9411 <ns6:patientRole> 9412 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9413 </ns6:patientRole> 9414 </ns6:recordTarget> 9415 <ns6:author> 9416 <ns6:time value="20140906124503+0100"/> 9417 <ns6:assignedAuthor> 9418 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9419 <ns6:assignedPerson> 9420 <ns6:name> 9421 <ns6:given>Antonio</ns6:given> 9422 <ns6:family>Alberti</ns6:family> 9423 <ns6:prefix>MMG</ns6:prefix> 9424 </ns6:name> 9425 </ns6:assignedPerson> 9426 <ns6:representedOrganization> 9427 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9428 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9429 <ns6:addr/> 9430 </ns6:representedOrganization> 9431 </ns6:assignedAuthor> 9432 </ns6:author> 9433 <ns6:custodian> 9434 <ns6:assignedCustodian> 9435 <ns6:representedCustodianOrganization> 9436 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9437 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9438 </ns6:representedCustodianOrganization> 9439 </ns6:assignedCustodian> 9440 </ns6:custodian> 9441 <ns6:legalAuthenticator> 9442 <ns6:time value="20140906124503+0100"/> 9443 <ns6:signatureCode code="S"/> 9444 <ns6:assignedEntity> 9445 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9446 </ns6:assignedEntity> 9447 </ns6:legalAuthenticator> 9448 <ns6:componentOf typeCode="COMP"> 9449 <ns6:encompassingEncounter> 9450 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906124459.d84fc5c0-6c99-4376-b78c-03de2a121d49" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9451 <ns6:effectiveTime value="20140906124459+0100"/> 9452 </ns6:encompassingEncounter> 9453 </ns6:componentOf> 9454 <ns6:component> 9455 <ns6:structuredBody> 9456 <ns6:component> 9457 <ns6:section> 9458 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 9459 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 9460 <ns6:text> 9461 <ns6:list> 9462 <ns6:item> 9463 <ns6:caption>Codice Diagnosi</ns6:caption> 9464 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 9465 </ns6:content> 9466 </ns6:item> 9467 </ns6:list> 9468 <ns6:list> 9469 <ns6:item> 9470 <ns6:caption>Descrizione Diagnosi</ns6:caption> 9471 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 9472 </ns6:content> 9473 </ns6:item> 9474 </ns6:list> 9475 <ns6:list> 9476 <ns6:item> 9477 <ns6:caption>Codice Percorso</ns6:caption> 9478 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 9479 </ns6:content> 9480 </ns6:item> 9481 </ns6:list> 9482 <ns6:list> 9483 <ns6:item> 9484 <ns6:caption>Descrizione Percorso</ns6:caption> 9485 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 9486 </ns6:content> 9487 </ns6:item> 9488 </ns6:list> 9489 </ns6:text> 9490 </ns6:section> 9491 </ns6:component> 9492 </ns6:structuredBody> 9493 </ns6:component> 9494 </ns6:ClinicalDocument> 9495 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9496 <ns6:realmCode code="IT"/> 9497 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9498 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9499 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906124747.617b367d-4e0b-4f16-a915-639e1fce0daf" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9500 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9501 <ns6:effectiveTime value="20140906124747+0100"/> 9502 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9503 <ns6:languageCode code="it-IT"/> 9504 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906124747.617b367d-4e0b-4f16-a915-639e1fce0daf" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9505 <ns6:versionNumber value="1"/> 9506 <ns6:recordTarget> 9507 <ns6:patientRole> 9508 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9509 </ns6:patientRole> 9510 </ns6:recordTarget> 9511 <ns6:author> 9512 <ns6:time value="20140906124747+0100"/> 9513 <ns6:assignedAuthor> 9514 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9515 <ns6:assignedPerson> 9516 <ns6:name> 9517 <ns6:given>Antonio</ns6:given> 9518 <ns6:family>Alberti</ns6:family> 9519 <ns6:prefix>MMG</ns6:prefix> 9520 </ns6:name> 9521 </ns6:assignedPerson> 9522 <ns6:representedOrganization> 9523 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9524 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9525 <ns6:addr/> 9526 </ns6:representedOrganization> 9527 </ns6:assignedAuthor> 9528 </ns6:author> 9529 <ns6:custodian> 9530 <ns6:assignedCustodian> 9531 <ns6:representedCustodianOrganization> 9532 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9533 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9534 </ns6:representedCustodianOrganization> 9535 </ns6:assignedCustodian> 9536 </ns6:custodian> 9537 <ns6:legalAuthenticator> 9538 <ns6:time value="20140906124747+0100"/> 9539 <ns6:signatureCode code="S"/> 9540 <ns6:assignedEntity> 9541 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9542 </ns6:assignedEntity> 9543 </ns6:legalAuthenticator> 9544 <ns6:componentOf typeCode="COMP"> 9545 <ns6:encompassingEncounter> 9546 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906124744.83c6a45d-844a-4c2a-81ec-bba766e9c468" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9547 <ns6:effectiveTime value="20140906124744+0100"/> 9548 </ns6:encompassingEncounter> 9549 </ns6:componentOf> 9550 <ns6:component> 9551 <ns6:structuredBody> 9552 <ns6:component> 9553 <ns6:section> 9554 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 9555 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 9556 <ns6:text> 9557 <ns6:list> 9558 <ns6:item> 9559 <ns6:caption>Codice Diagnosi</ns6:caption> 9560 <ns6:content>codiceDiagnosi<ns6:content>COD_0.5</ns6:content> 9561 </ns6:content> 9562 </ns6:item> 9563 </ns6:list> 9564 <ns6:list> 9565 <ns6:item> 9566 <ns6:caption>Descrizione Diagnosi</ns6:caption> 9567 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA DOVUTA A POSSIBILE ABUSO FARMACI</ns6:content> 9568 </ns6:content> 9569 </ns6:item> 9570 </ns6:list> 9571 <ns6:list> 9572 <ns6:item> 9573 <ns6:caption>Codice Percorso</ns6:caption> 9574 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 9575 </ns6:content> 9576 </ns6:item> 9577 </ns6:list> 9578 <ns6:list> 9579 <ns6:item> 9580 <ns6:caption>Descrizione Percorso</ns6:caption> 9581 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 9582 </ns6:content> 9583 </ns6:item> 9584 </ns6:list> 9585 </ns6:text> 9586 </ns6:section> 9587 </ns6:component> 9588 </ns6:structuredBody> 9589 </ns6:component> 9590 </ns6:ClinicalDocument> 9591 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9592 <ns6:realmCode code="IT"/> 9593 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9594 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9595 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125017.1922f3d0-3940-4d34-80db-2230879e824b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9596 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9597 <ns6:effectiveTime value="20140906125017+0100"/> 9598 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9599 <ns6:languageCode code="it-IT"/> 9600 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125017.1922f3d0-3940-4d34-80db-2230879e824b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9601 <ns6:versionNumber value="1"/> 9602 <ns6:recordTarget> 9603 <ns6:patientRole> 9604 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9605 </ns6:patientRole> 9606 </ns6:recordTarget> 9607 <ns6:author> 9608 <ns6:time value="20140906125017+0100"/> 9609 <ns6:assignedAuthor> 9610 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9611 <ns6:assignedPerson> 9612 <ns6:name> 9613 <ns6:given>Antonio</ns6:given> 9614 <ns6:family>Alberti</ns6:family> 9615 <ns6:prefix>MMG</ns6:prefix> 9616 </ns6:name> 9617 </ns6:assignedPerson> 9618 <ns6:representedOrganization> 9619 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9620 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9621 <ns6:addr/> 9622 </ns6:representedOrganization> 9623 </ns6:assignedAuthor> 9624 </ns6:author> 9625 <ns6:custodian> 9626 <ns6:assignedCustodian> 9627 <ns6:representedCustodianOrganization> 9628 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9629 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9630 </ns6:representedCustodianOrganization> 9631 </ns6:assignedCustodian> 9632 </ns6:custodian> 9633 <ns6:legalAuthenticator> 9634 <ns6:time value="20140906125017+0100"/> 9635 <ns6:signatureCode code="S"/> 9636 <ns6:assignedEntity> 9637 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9638 </ns6:assignedEntity> 9639 </ns6:legalAuthenticator> 9640 <ns6:componentOf typeCode="COMP"> 9641 <ns6:encompassingEncounter> 9642 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125014.4a351798-0f15-4c75-8b6f-68c970fc9c4c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9643 <ns6:effectiveTime value="20140906125014+0100"/> 9644 </ns6:encompassingEncounter> 9645 </ns6:componentOf> 9646 <ns6:component> 9647 <ns6:structuredBody> 9648 <ns6:component> 9649 <ns6:section> 9650 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 9651 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 9652 <ns6:text> 9653 <ns6:list> 9654 <ns6:item> 9655 <ns6:caption>Codice Diagnosi</ns6:caption> 9656 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 9657 </ns6:content> 9658 </ns6:item> 9659 </ns6:list> 9660 <ns6:list> 9661 <ns6:item> 9662 <ns6:caption>Descrizione Diagnosi</ns6:caption> 9663 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 9664 </ns6:content> 9665 </ns6:item> 9666 </ns6:list> 9667 <ns6:list> 9668 <ns6:item> 9669 <ns6:caption>Codice Percorso</ns6:caption> 9670 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 9671 </ns6:content> 9672 </ns6:item> 9673 </ns6:list> 9674 <ns6:list> 9675 <ns6:item> 9676 <ns6:caption>Descrizione Percorso</ns6:caption> 9677 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 9678 </ns6:content> 9679 </ns6:item> 9680 </ns6:list> 9681 </ns6:text> 9682 </ns6:section> 9683 </ns6:component> 9684 </ns6:structuredBody> 9685 </ns6:component> 9686 </ns6:ClinicalDocument> 9687 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9688 <ns6:realmCode code="IT"/> 9689 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9690 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9691 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125047.6954198e-9dcf-4f1e-86eb-e9f8795a1a65" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9692 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9693 <ns6:effectiveTime value="20140906125047+0100"/> 9694 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9695 <ns6:languageCode code="it-IT"/> 9696 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125047.6954198e-9dcf-4f1e-86eb-e9f8795a1a65" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9697 <ns6:versionNumber value="1"/> 9698 <ns6:recordTarget> 9699 <ns6:patientRole> 9700 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9701 </ns6:patientRole> 9702 </ns6:recordTarget> 9703 <ns6:author> 9704 <ns6:time value="20140906125047+0100"/> 9705 <ns6:assignedAuthor> 9706 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9707 <ns6:assignedPerson> 9708 <ns6:name> 9709 <ns6:given>Antonio</ns6:given> 9710 <ns6:family>Alberti</ns6:family> 9711 <ns6:prefix>MMG</ns6:prefix> 9712 </ns6:name> 9713 </ns6:assignedPerson> 9714 <ns6:representedOrganization> 9715 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9716 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9717 <ns6:addr/> 9718 </ns6:representedOrganization> 9719 </ns6:assignedAuthor> 9720 </ns6:author> 9721 <ns6:custodian> 9722 <ns6:assignedCustodian> 9723 <ns6:representedCustodianOrganization> 9724 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9725 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9726 </ns6:representedCustodianOrganization> 9727 </ns6:assignedCustodian> 9728 </ns6:custodian> 9729 <ns6:legalAuthenticator> 9730 <ns6:time value="20140906125047+0100"/> 9731 <ns6:signatureCode code="S"/> 9732 <ns6:assignedEntity> 9733 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9734 </ns6:assignedEntity> 9735 </ns6:legalAuthenticator> 9736 <ns6:componentOf typeCode="COMP"> 9737 <ns6:encompassingEncounter> 9738 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125044.d8821cb5-390e-4e00-84d2-be903471afca" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9739 <ns6:effectiveTime value="20140906125044+0100"/> 9740 </ns6:encompassingEncounter> 9741 </ns6:componentOf> 9742 <ns6:component> 9743 <ns6:structuredBody> 9744 <ns6:component> 9745 <ns6:section> 9746 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 9747 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 9748 <ns6:text> 9749 <ns6:list> 9750 <ns6:item> 9751 <ns6:caption>Codice Diagnosi</ns6:caption> 9752 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 9753 </ns6:content> 9754 </ns6:item> 9755 </ns6:list> 9756 <ns6:list> 9757 <ns6:item> 9758 <ns6:caption>Descrizione Diagnosi</ns6:caption> 9759 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 9760 </ns6:content> 9761 </ns6:item> 9762 </ns6:list> 9763 <ns6:list> 9764 <ns6:item> 9765 <ns6:caption>Codice Percorso</ns6:caption> 9766 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 9767 </ns6:content> 9768 </ns6:item> 9769 </ns6:list> 9770 <ns6:list> 9771 <ns6:item> 9772 <ns6:caption>Descrizione Percorso</ns6:caption> 9773 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 9774 </ns6:content> 9775 </ns6:item> 9776 </ns6:list> 9777 </ns6:text> 9778 </ns6:section> 9779 </ns6:component> 9780 </ns6:structuredBody> 9781 </ns6:component> 9782 </ns6:ClinicalDocument> 9783 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9784 <ns6:realmCode code="IT"/> 9785 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9786 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9787 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125227.5fd1def2-5307-43db-a557-baf6bff4cd9c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9788 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9789 <ns6:effectiveTime value="20140906125227+0100"/> 9790 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9791 <ns6:languageCode code="it-IT"/> 9792 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125227.5fd1def2-5307-43db-a557-baf6bff4cd9c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9793 <ns6:versionNumber value="1"/> 9794 <ns6:recordTarget> 9795 <ns6:patientRole> 9796 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9797 </ns6:patientRole> 9798 </ns6:recordTarget> 9799 <ns6:author> 9800 <ns6:time value="20140906125227+0100"/> 9801 <ns6:assignedAuthor> 9802 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9803 <ns6:assignedPerson> 9804 <ns6:name> 9805 <ns6:given>Antonio</ns6:given> 9806 <ns6:family>Alberti</ns6:family> 9807 <ns6:prefix>MMG</ns6:prefix> 9808 </ns6:name> 9809 </ns6:assignedPerson> 9810 <ns6:representedOrganization> 9811 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9812 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9813 <ns6:addr/> 9814 </ns6:representedOrganization> 9815 </ns6:assignedAuthor> 9816 </ns6:author> 9817 <ns6:custodian> 9818 <ns6:assignedCustodian> 9819 <ns6:representedCustodianOrganization> 9820 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9821 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9822 </ns6:representedCustodianOrganization> 9823 </ns6:assignedCustodian> 9824 </ns6:custodian> 9825 <ns6:legalAuthenticator> 9826 <ns6:time value="20140906125227+0100"/> 9827 <ns6:signatureCode code="S"/> 9828 <ns6:assignedEntity> 9829 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9830 </ns6:assignedEntity> 9831 </ns6:legalAuthenticator> 9832 <ns6:componentOf typeCode="COMP"> 9833 <ns6:encompassingEncounter> 9834 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125223.b269a197-3f8e-4477-bc96-e4b25b63ecd6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9835 <ns6:effectiveTime value="20140906125223+0100"/> 9836 </ns6:encompassingEncounter> 9837 </ns6:componentOf> 9838 <ns6:component> 9839 <ns6:structuredBody> 9840 <ns6:component> 9841 <ns6:section> 9842 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 9843 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 9844 <ns6:text> 9845 <ns6:list> 9846 <ns6:item> 9847 <ns6:caption>Codice Diagnosi</ns6:caption> 9848 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 9849 </ns6:content> 9850 </ns6:item> 9851 </ns6:list> 9852 <ns6:list> 9853 <ns6:item> 9854 <ns6:caption>Descrizione Diagnosi</ns6:caption> 9855 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 9856 </ns6:content> 9857 </ns6:item> 9858 </ns6:list> 9859 <ns6:list> 9860 <ns6:item> 9861 <ns6:caption>Codice Percorso</ns6:caption> 9862 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 9863 </ns6:content> 9864 </ns6:item> 9865 </ns6:list> 9866 <ns6:list> 9867 <ns6:item> 9868 <ns6:caption>Descrizione Percorso</ns6:caption> 9869 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 9870 </ns6:content> 9871 </ns6:item> 9872 </ns6:list> 9873 </ns6:text> 9874 </ns6:section> 9875 </ns6:component> 9876 </ns6:structuredBody> 9877 </ns6:component> 9878 </ns6:ClinicalDocument> 9879 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9880 <ns6:realmCode code="IT"/> 9881 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9882 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9883 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125240.6088eb60-f5c5-486a-b427-bda69132b1f9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9884 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9885 <ns6:effectiveTime value="20140906125240+0100"/> 9886 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9887 <ns6:languageCode code="it-IT"/> 9888 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125240.6088eb60-f5c5-486a-b427-bda69132b1f9" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9889 <ns6:versionNumber value="1"/> 9890 <ns6:recordTarget> 9891 <ns6:patientRole> 9892 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9893 </ns6:patientRole> 9894 </ns6:recordTarget> 9895 <ns6:author> 9896 <ns6:time value="20140906125240+0100"/> 9897 <ns6:assignedAuthor> 9898 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9899 <ns6:assignedPerson> 9900 <ns6:name> 9901 <ns6:given>Antonio</ns6:given> 9902 <ns6:family>Alberti</ns6:family> 9903 <ns6:prefix>MMG</ns6:prefix> 9904 </ns6:name> 9905 </ns6:assignedPerson> 9906 <ns6:representedOrganization> 9907 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9908 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9909 <ns6:addr/> 9910 </ns6:representedOrganization> 9911 </ns6:assignedAuthor> 9912 </ns6:author> 9913 <ns6:custodian> 9914 <ns6:assignedCustodian> 9915 <ns6:representedCustodianOrganization> 9916 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 9917 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 9918 </ns6:representedCustodianOrganization> 9919 </ns6:assignedCustodian> 9920 </ns6:custodian> 9921 <ns6:legalAuthenticator> 9922 <ns6:time value="20140906125240+0100"/> 9923 <ns6:signatureCode code="S"/> 9924 <ns6:assignedEntity> 9925 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9926 </ns6:assignedEntity> 9927 </ns6:legalAuthenticator> 9928 <ns6:componentOf typeCode="COMP"> 9929 <ns6:encompassingEncounter> 9930 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140906125237.87bbe446-ada1-4156-869d-fdb01a165516" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9931 <ns6:effectiveTime value="20140906125237+0100"/> 9932 </ns6:encompassingEncounter> 9933 </ns6:componentOf> 9934 <ns6:component> 9935 <ns6:structuredBody> 9936 <ns6:component> 9937 <ns6:section> 9938 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 9939 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 9940 <ns6:text> 9941 <ns6:list> 9942 <ns6:item> 9943 <ns6:caption>Codice Diagnosi</ns6:caption> 9944 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 9945 </ns6:content> 9946 </ns6:item> 9947 </ns6:list> 9948 <ns6:list> 9949 <ns6:item> 9950 <ns6:caption>Descrizione Diagnosi</ns6:caption> 9951 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 9952 </ns6:content> 9953 </ns6:item> 9954 </ns6:list> 9955 <ns6:list> 9956 <ns6:item> 9957 <ns6:caption>Codice Percorso</ns6:caption> 9958 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 9959 </ns6:content> 9960 </ns6:item> 9961 </ns6:list> 9962 <ns6:list> 9963 <ns6:item> 9964 <ns6:caption>Descrizione Percorso</ns6:caption> 9965 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 9966 </ns6:content> 9967 </ns6:item> 9968 </ns6:list> 9969 </ns6:text> 9970 </ns6:section> 9971 </ns6:component> 9972 </ns6:structuredBody> 9973 </ns6:component> 9974 </ns6:ClinicalDocument> 9975 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 9976 <ns6:realmCode code="IT"/> 9977 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 9978 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 9979 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910110226.48576dd1-3b72-4f29-918d-da5a40fc766e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9980 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 9981 <ns6:effectiveTime value="20140910110226+0100"/> 9982 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 9983 <ns6:languageCode code="it-IT"/> 9984 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910110226.48576dd1-3b72-4f29-918d-da5a40fc766e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 9985 <ns6:versionNumber value="1"/> 9986 <ns6:recordTarget> 9987 <ns6:patientRole> 9988 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 9989 </ns6:patientRole> 9990 </ns6:recordTarget> 9991 <ns6:author> 9992 <ns6:time value="20140910110226+0100"/> 9993 <ns6:assignedAuthor> 9994 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 9995 <ns6:assignedPerson> 9996 <ns6:name> 9997 <ns6:given>Antonio</ns6:given> 9998 <ns6:family>Alberti</ns6:family> 9999 <ns6:prefix>MMG</ns6:prefix> 10000 </ns6:name> 10001 </ns6:assignedPerson> 10002 <ns6:representedOrganization> 10003 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10004 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10005 <ns6:addr/> 10006 </ns6:representedOrganization> 10007 </ns6:assignedAuthor> 10008 </ns6:author> 10009 <ns6:custodian> 10010 <ns6:assignedCustodian> 10011 <ns6:representedCustodianOrganization> 10012 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10013 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10014 </ns6:representedCustodianOrganization> 10015 </ns6:assignedCustodian> 10016 </ns6:custodian> 10017 <ns6:legalAuthenticator> 10018 <ns6:time value="20140910110226+0100"/> 10019 <ns6:signatureCode code="S"/> 10020 <ns6:assignedEntity> 10021 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10022 </ns6:assignedEntity> 10023 </ns6:legalAuthenticator> 10024 <ns6:componentOf typeCode="COMP"> 10025 <ns6:encompassingEncounter> 10026 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910110223.af157a86-b30e-4486-8466-46edc633120c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10027 <ns6:effectiveTime value="20140910110223+0100"/> 10028 </ns6:encompassingEncounter> 10029 </ns6:componentOf> 10030 <ns6:component> 10031 <ns6:structuredBody> 10032 <ns6:component> 10033 <ns6:section> 10034 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 10035 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10036 <ns6:text> 10037 <ns6:list> 10038 <ns6:item> 10039 <ns6:caption>Codice Diagnosi</ns6:caption> 10040 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 10041 </ns6:content> 10042 </ns6:item> 10043 </ns6:list> 10044 <ns6:list> 10045 <ns6:item> 10046 <ns6:caption>Descrizione Diagnosi</ns6:caption> 10047 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 10048 </ns6:content> 10049 </ns6:item> 10050 </ns6:list> 10051 <ns6:list> 10052 <ns6:item> 10053 <ns6:caption>Codice Percorso</ns6:caption> 10054 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 10055 </ns6:content> 10056 </ns6:item> 10057 </ns6:list> 10058 <ns6:list> 10059 <ns6:item> 10060 <ns6:caption>Descrizione Percorso</ns6:caption> 10061 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 10062 </ns6:content> 10063 </ns6:item> 10064 </ns6:list> 10065 </ns6:text> 10066 </ns6:section> 10067 </ns6:component> 10068 </ns6:structuredBody> 10069 </ns6:component> 10070 </ns6:ClinicalDocument> 10071 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 10072 <ns6:realmCode code="IT"/> 10073 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 10074 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 10075 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910113511.e9135f18-e6fc-40b0-bb50-95784783381a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10076 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 10077 <ns6:effectiveTime value="20140910113511+0100"/> 10078 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 10079 <ns6:languageCode code="it-IT"/> 10080 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910113511.e9135f18-e6fc-40b0-bb50-95784783381a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10081 <ns6:versionNumber value="1"/> 10082 <ns6:recordTarget> 10083 <ns6:patientRole> 10084 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 10085 </ns6:patientRole> 10086 </ns6:recordTarget> 10087 <ns6:author> 10088 <ns6:time value="20140910113511+0100"/> 10089 <ns6:assignedAuthor> 10090 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10091 <ns6:assignedPerson> 10092 <ns6:name> 10093 <ns6:given>Antonio</ns6:given> 10094 <ns6:family>Alberti</ns6:family> 10095 <ns6:prefix>MMG</ns6:prefix> 10096 </ns6:name> 10097 </ns6:assignedPerson> 10098 <ns6:representedOrganization> 10099 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10100 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10101 <ns6:addr/> 10102 </ns6:representedOrganization> 10103 </ns6:assignedAuthor> 10104 </ns6:author> 10105 <ns6:custodian> 10106 <ns6:assignedCustodian> 10107 <ns6:representedCustodianOrganization> 10108 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10109 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10110 </ns6:representedCustodianOrganization> 10111 </ns6:assignedCustodian> 10112 </ns6:custodian> 10113 <ns6:legalAuthenticator> 10114 <ns6:time value="20140910113511+0100"/> 10115 <ns6:signatureCode code="S"/> 10116 <ns6:assignedEntity> 10117 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10118 </ns6:assignedEntity> 10119 </ns6:legalAuthenticator> 10120 <ns6:componentOf typeCode="COMP"> 10121 <ns6:encompassingEncounter> 10122 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910113506.48015efd-32ae-49d2-9d7b-bb5e392de4bf" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10123 <ns6:effectiveTime value="20140910113506+0100"/> 10124 </ns6:encompassingEncounter> 10125 </ns6:componentOf> 10126 <ns6:component> 10127 <ns6:structuredBody> 10128 <ns6:component> 10129 <ns6:section> 10130 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 10131 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10132 <ns6:text> 10133 <ns6:list> 10134 <ns6:item> 10135 <ns6:caption>Codice Diagnosi</ns6:caption> 10136 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 10137 </ns6:content> 10138 </ns6:item> 10139 </ns6:list> 10140 <ns6:list> 10141 <ns6:item> 10142 <ns6:caption>Descrizione Diagnosi</ns6:caption> 10143 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 10144 </ns6:content> 10145 </ns6:item> 10146 </ns6:list> 10147 <ns6:list> 10148 <ns6:item> 10149 <ns6:caption>Codice Percorso</ns6:caption> 10150 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 10151 </ns6:content> 10152 </ns6:item> 10153 </ns6:list> 10154 <ns6:list> 10155 <ns6:item> 10156 <ns6:caption>Descrizione Percorso</ns6:caption> 10157 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 10158 </ns6:content> 10159 </ns6:item> 10160 </ns6:list> 10161 </ns6:text> 10162 </ns6:section> 10163 </ns6:component> 10164 </ns6:structuredBody> 10165 </ns6:component> 10166 </ns6:ClinicalDocument> 10167 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 10168 <ns6:realmCode code="IT"/> 10169 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 10170 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 10171 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910113934.456f7fa8-9b66-40fa-bc90-6e23fb793113" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10172 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 10173 <ns6:effectiveTime value="20140910113934+0100"/> 10174 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 10175 <ns6:languageCode code="it-IT"/> 10176 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910113934.456f7fa8-9b66-40fa-bc90-6e23fb793113" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10177 <ns6:versionNumber value="1"/> 10178 <ns6:recordTarget> 10179 <ns6:patientRole> 10180 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 10181 </ns6:patientRole> 10182 </ns6:recordTarget> 10183 <ns6:author> 10184 <ns6:time value="20140910113934+0100"/> 10185 <ns6:assignedAuthor> 10186 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10187 <ns6:assignedPerson> 10188 <ns6:name> 10189 <ns6:given>Antonio</ns6:given> 10190 <ns6:family>Alberti</ns6:family> 10191 <ns6:prefix>MMG</ns6:prefix> 10192 </ns6:name> 10193 </ns6:assignedPerson> 10194 <ns6:representedOrganization> 10195 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10196 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10197 <ns6:addr/> 10198 </ns6:representedOrganization> 10199 </ns6:assignedAuthor> 10200 </ns6:author> 10201 <ns6:custodian> 10202 <ns6:assignedCustodian> 10203 <ns6:representedCustodianOrganization> 10204 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10205 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10206 </ns6:representedCustodianOrganization> 10207 </ns6:assignedCustodian> 10208 </ns6:custodian> 10209 <ns6:legalAuthenticator> 10210 <ns6:time value="20140910113934+0100"/> 10211 <ns6:signatureCode code="S"/> 10212 <ns6:assignedEntity> 10213 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10214 </ns6:assignedEntity> 10215 </ns6:legalAuthenticator> 10216 <ns6:componentOf typeCode="COMP"> 10217 <ns6:encompassingEncounter> 10218 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910113930.7aec70db-2058-42a1-9961-75fbcc00f75c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10219 <ns6:effectiveTime value="20140910113930+0100"/> 10220 </ns6:encompassingEncounter> 10221 </ns6:componentOf> 10222 <ns6:component> 10223 <ns6:structuredBody> 10224 <ns6:component> 10225 <ns6:section> 10226 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 10227 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10228 <ns6:text> 10229 <ns6:list> 10230 <ns6:item> 10231 <ns6:caption>Codice Diagnosi</ns6:caption> 10232 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 10233 </ns6:content> 10234 </ns6:item> 10235 </ns6:list> 10236 <ns6:list> 10237 <ns6:item> 10238 <ns6:caption>Descrizione Diagnosi</ns6:caption> 10239 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 10240 </ns6:content> 10241 </ns6:item> 10242 </ns6:list> 10243 <ns6:list> 10244 <ns6:item> 10245 <ns6:caption>Codice Percorso</ns6:caption> 10246 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 10247 </ns6:content> 10248 </ns6:item> 10249 </ns6:list> 10250 <ns6:list> 10251 <ns6:item> 10252 <ns6:caption>Descrizione Percorso</ns6:caption> 10253 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 10254 </ns6:content> 10255 </ns6:item> 10256 </ns6:list> 10257 </ns6:text> 10258 </ns6:section> 10259 </ns6:component> 10260 </ns6:structuredBody> 10261 </ns6:component> 10262 </ns6:ClinicalDocument> 10263 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 10264 <ns6:realmCode code="IT"/> 10265 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 10266 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 10267 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910114412.ea44239e-223c-4e51-bdc0-ef3705dedc29" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10268 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 10269 <ns6:effectiveTime value="20140910114412+0100"/> 10270 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 10271 <ns6:languageCode code="it-IT"/> 10272 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910114412.ea44239e-223c-4e51-bdc0-ef3705dedc29" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10273 <ns6:versionNumber value="1"/> 10274 <ns6:recordTarget> 10275 <ns6:patientRole> 10276 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 10277 </ns6:patientRole> 10278 </ns6:recordTarget> 10279 <ns6:author> 10280 <ns6:time value="20140910114412+0100"/> 10281 <ns6:assignedAuthor> 10282 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10283 <ns6:assignedPerson> 10284 <ns6:name> 10285 <ns6:given>Antonio</ns6:given> 10286 <ns6:family>Alberti</ns6:family> 10287 <ns6:prefix>MMG</ns6:prefix> 10288 </ns6:name> 10289 </ns6:assignedPerson> 10290 <ns6:representedOrganization> 10291 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10292 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10293 <ns6:addr/> 10294 </ns6:representedOrganization> 10295 </ns6:assignedAuthor> 10296 </ns6:author> 10297 <ns6:custodian> 10298 <ns6:assignedCustodian> 10299 <ns6:representedCustodianOrganization> 10300 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10301 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10302 </ns6:representedCustodianOrganization> 10303 </ns6:assignedCustodian> 10304 </ns6:custodian> 10305 <ns6:legalAuthenticator> 10306 <ns6:time value="20140910114412+0100"/> 10307 <ns6:signatureCode code="S"/> 10308 <ns6:assignedEntity> 10309 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10310 </ns6:assignedEntity> 10311 </ns6:legalAuthenticator> 10312 <ns6:componentOf typeCode="COMP"> 10313 <ns6:encompassingEncounter> 10314 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140910114408.52bc666e-3419-4c87-a3dc-d864dfd078d1" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10315 <ns6:effectiveTime value="20140910114408+0100"/> 10316 </ns6:encompassingEncounter> 10317 </ns6:componentOf> 10318 <ns6:component> 10319 <ns6:structuredBody> 10320 <ns6:component> 10321 <ns6:section> 10322 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 10323 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10324 <ns6:text> 10325 <ns6:list> 10326 <ns6:item> 10327 <ns6:caption>Codice Diagnosi</ns6:caption> 10328 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 10329 </ns6:content> 10330 </ns6:item> 10331 </ns6:list> 10332 <ns6:list> 10333 <ns6:item> 10334 <ns6:caption>Descrizione Diagnosi</ns6:caption> 10335 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 10336 </ns6:content> 10337 </ns6:item> 10338 </ns6:list> 10339 <ns6:list> 10340 <ns6:item> 10341 <ns6:caption>Codice Percorso</ns6:caption> 10342 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 10343 </ns6:content> 10344 </ns6:item> 10345 </ns6:list> 10346 <ns6:list> 10347 <ns6:item> 10348 <ns6:caption>Descrizione Percorso</ns6:caption> 10349 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 10350 </ns6:content> 10351 </ns6:item> 10352 </ns6:list> 10353 </ns6:text> 10354 </ns6:section> 10355 </ns6:component> 10356 </ns6:structuredBody> 10357 </ns6:component> 10358 </ns6:ClinicalDocument> 10359 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 10360 <ns6:realmCode code="IT"/> 10361 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 10362 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 10363 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140911170402.e13ef94e-4c1f-4af9-bb95-ac8c10e185ee" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10364 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 10365 <ns6:effectiveTime value="20140911170402+0100"/> 10366 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 10367 <ns6:languageCode code="it-IT"/> 10368 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140911170402.e13ef94e-4c1f-4af9-bb95-ac8c10e185ee" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10369 <ns6:versionNumber value="1"/> 10370 <ns6:recordTarget> 10371 <ns6:patientRole> 10372 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 10373 </ns6:patientRole> 10374 </ns6:recordTarget> 10375 <ns6:author> 10376 <ns6:time value="20140911170402+0100"/> 10377 <ns6:assignedAuthor> 10378 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10379 <ns6:assignedPerson> 10380 <ns6:name> 10381 <ns6:given>Antonio</ns6:given> 10382 <ns6:family>Alberti</ns6:family> 10383 <ns6:prefix>MMG</ns6:prefix> 10384 </ns6:name> 10385 </ns6:assignedPerson> 10386 <ns6:representedOrganization> 10387 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10388 <ns6:name>Studio Medico</ns6:name> 10389 <ns6:addr>VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:addr> 10390 </ns6:representedOrganization> 10391 </ns6:assignedAuthor> 10392 </ns6:author> 10393 <ns6:custodian> 10394 <ns6:assignedCustodian> 10395 <ns6:representedCustodianOrganization> 10396 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10397 <ns6:name>Studio Medico</ns6:name> 10398 </ns6:representedCustodianOrganization> 10399 </ns6:assignedCustodian> 10400 </ns6:custodian> 10401 <ns6:legalAuthenticator> 10402 <ns6:time value="20140911170402+0100"/> 10403 <ns6:signatureCode code="S"/> 10404 <ns6:assignedEntity> 10405 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10406 </ns6:assignedEntity> 10407 </ns6:legalAuthenticator> 10408 <ns6:componentOf typeCode="COMP"> 10409 <ns6:encompassingEncounter> 10410 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140911170357.d6815a18-6a04-491f-b576-4fb37fd4c4af" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10411 <ns6:effectiveTime value="20140911170357+0100"/> 10412 </ns6:encompassingEncounter> 10413 </ns6:componentOf> 10414 <ns6:component> 10415 <ns6:structuredBody> 10416 <ns6:component> 10417 <ns6:section> 10418 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 10419 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10420 <ns6:text> 10421 <ns6:list> 10422 <ns6:item> 10423 <ns6:caption>Codice Diagnosi</ns6:caption> 10424 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 10425 </ns6:content> 10426 </ns6:item> 10427 </ns6:list> 10428 <ns6:list> 10429 <ns6:item> 10430 <ns6:caption>Descrizione Diagnosi</ns6:caption> 10431 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 10432 </ns6:content> 10433 </ns6:item> 10434 </ns6:list> 10435 <ns6:list> 10436 <ns6:item> 10437 <ns6:caption>Codice Percorso</ns6:caption> 10438 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 10439 </ns6:content> 10440 </ns6:item> 10441 </ns6:list> 10442 <ns6:list> 10443 <ns6:item> 10444 <ns6:caption>Descrizione Percorso</ns6:caption> 10445 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 10446 </ns6:content> 10447 </ns6:item> 10448 </ns6:list> 10449 </ns6:text> 10450 </ns6:section> 10451 </ns6:component> 10452 </ns6:structuredBody> 10453 </ns6:component> 10454 </ns6:ClinicalDocument> 10455 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 10456 <ns6:realmCode code="IT"/> 10457 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 10458 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 10459 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140911173210.25fd71a5-9dae-4d89-91b7-0bdf89eef8ff" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10460 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 10461 <ns6:effectiveTime value="20140911173210+0100"/> 10462 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 10463 <ns6:languageCode code="it-IT"/> 10464 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140911173210.25fd71a5-9dae-4d89-91b7-0bdf89eef8ff" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10465 <ns6:versionNumber value="1"/> 10466 <ns6:recordTarget> 10467 <ns6:patientRole> 10468 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 10469 </ns6:patientRole> 10470 </ns6:recordTarget> 10471 <ns6:author> 10472 <ns6:time value="20140911173210+0100"/> 10473 <ns6:assignedAuthor> 10474 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10475 <ns6:assignedPerson> 10476 <ns6:name> 10477 <ns6:given>Antonio</ns6:given> 10478 <ns6:family>Alberti</ns6:family> 10479 <ns6:prefix>MMG</ns6:prefix> 10480 </ns6:name> 10481 </ns6:assignedPerson> 10482 <ns6:representedOrganization> 10483 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10484 <ns6:name>Studio Medico</ns6:name> 10485 <ns6:addr>VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:addr> 10486 </ns6:representedOrganization> 10487 </ns6:assignedAuthor> 10488 </ns6:author> 10489 <ns6:custodian> 10490 <ns6:assignedCustodian> 10491 <ns6:representedCustodianOrganization> 10492 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10493 <ns6:name>Studio Medico</ns6:name> 10494 </ns6:representedCustodianOrganization> 10495 </ns6:assignedCustodian> 10496 </ns6:custodian> 10497 <ns6:legalAuthenticator> 10498 <ns6:time value="20140911173210+0100"/> 10499 <ns6:signatureCode code="S"/> 10500 <ns6:assignedEntity> 10501 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10502 </ns6:assignedEntity> 10503 </ns6:legalAuthenticator> 10504 <ns6:componentOf typeCode="COMP"> 10505 <ns6:encompassingEncounter> 10506 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140911173206.c97e8f12-f609-4abf-b6df-4a9be783b2e1" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10507 <ns6:effectiveTime value="20140911173206+0100"/> 10508 </ns6:encompassingEncounter> 10509 </ns6:componentOf> 10510 <ns6:component> 10511 <ns6:structuredBody> 10512 <ns6:component> 10513 <ns6:section> 10514 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 10515 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10516 <ns6:text> 10517 <ns6:list> 10518 <ns6:item> 10519 <ns6:caption>Codice Diagnosi</ns6:caption> 10520 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 10521 </ns6:content> 10522 </ns6:item> 10523 </ns6:list> 10524 <ns6:list> 10525 <ns6:item> 10526 <ns6:caption>Descrizione Diagnosi</ns6:caption> 10527 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 10528 </ns6:content> 10529 </ns6:item> 10530 </ns6:list> 10531 <ns6:list> 10532 <ns6:item> 10533 <ns6:caption>Codice Percorso</ns6:caption> 10534 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 10535 </ns6:content> 10536 </ns6:item> 10537 </ns6:list> 10538 <ns6:list> 10539 <ns6:item> 10540 <ns6:caption>Descrizione Percorso</ns6:caption> 10541 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 10542 </ns6:content> 10543 </ns6:item> 10544 </ns6:list> 10545 </ns6:text> 10546 </ns6:section> 10547 </ns6:component> 10548 </ns6:structuredBody> 10549 </ns6:component> 10550 </ns6:ClinicalDocument> 10551 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 10552 <ns6:realmCode code="IT"/> 10553 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 10554 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 10555 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160034.478e90fb-a0e3-4905-b41c-5288148cced3" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10556 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 10557 <ns6:effectiveTime value="20140912160034+0100"/> 10558 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 10559 <ns6:languageCode code="it-IT"/> 10560 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160034.478e90fb-a0e3-4905-b41c-5288148cced3" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10561 <ns6:versionNumber value="1"/> 10562 <ns6:recordTarget> 10563 <ns6:patientRole> 10564 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 10565 </ns6:patientRole> 10566 </ns6:recordTarget> 10567 <ns6:author> 10568 <ns6:time value="20140912160034+0100"/> 10569 <ns6:assignedAuthor> 10570 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10571 <ns6:assignedPerson> 10572 <ns6:name> 10573 <ns6:given>Antonio</ns6:given> 10574 <ns6:family>Alberti</ns6:family> 10575 <ns6:prefix>MMG</ns6:prefix> 10576 </ns6:name> 10577 </ns6:assignedPerson> 10578 <ns6:representedOrganization> 10579 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10580 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10581 <ns6:addr/> 10582 </ns6:representedOrganization> 10583 </ns6:assignedAuthor> 10584 </ns6:author> 10585 <ns6:custodian> 10586 <ns6:assignedCustodian> 10587 <ns6:representedCustodianOrganization> 10588 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10589 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10590 </ns6:representedCustodianOrganization> 10591 </ns6:assignedCustodian> 10592 </ns6:custodian> 10593 <ns6:legalAuthenticator> 10594 <ns6:time value="20140912160034+0100"/> 10595 <ns6:signatureCode code="S"/> 10596 <ns6:assignedEntity> 10597 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10598 </ns6:assignedEntity> 10599 </ns6:legalAuthenticator> 10600 <ns6:componentOf typeCode="COMP"> 10601 <ns6:encompassingEncounter> 10602 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160020.49ff883e-c424-4832-a8fe-50a01c6a2690" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10603 <ns6:effectiveTime value="20140912160020+0100"/> 10604 </ns6:encompassingEncounter> 10605 </ns6:componentOf> 10606 <ns6:component> 10607 <ns6:structuredBody> 10608 <ns6:component> 10609 <ns6:section> 10610 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 10611 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10612 <ns6:text> 10613 <ns6:list> 10614 <ns6:item> 10615 <ns6:caption>Codice Diagnosi</ns6:caption> 10616 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 10617 </ns6:content> 10618 </ns6:item> 10619 </ns6:list> 10620 <ns6:list> 10621 <ns6:item> 10622 <ns6:caption>Descrizione Diagnosi</ns6:caption> 10623 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 10624 </ns6:content> 10625 </ns6:item> 10626 </ns6:list> 10627 <ns6:list> 10628 <ns6:item> 10629 <ns6:caption>Codice Percorso</ns6:caption> 10630 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 10631 </ns6:content> 10632 </ns6:item> 10633 </ns6:list> 10634 <ns6:list> 10635 <ns6:item> 10636 <ns6:caption>Descrizione Percorso</ns6:caption> 10637 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 10638 </ns6:content> 10639 </ns6:item> 10640 </ns6:list> 10641 </ns6:text> 10642 </ns6:section> 10643 </ns6:component> 10644 </ns6:structuredBody> 10645 </ns6:component> 10646 </ns6:ClinicalDocument> 10647 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 10648 <ns6:realmCode code="IT"/> 10649 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 10650 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 10651 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160056.a52d2f6d-c476-44ce-874e-c41069d51667" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10652 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 10653 <ns6:effectiveTime value="20140912160056+0100"/> 10654 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 10655 <ns6:languageCode code="it-IT"/> 10656 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160056.a52d2f6d-c476-44ce-874e-c41069d51667" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10657 <ns6:versionNumber value="1"/> 10658 <ns6:recordTarget> 10659 <ns6:patientRole> 10660 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 10661 </ns6:patientRole> 10662 </ns6:recordTarget> 10663 <ns6:author> 10664 <ns6:time value="20140912160056+0100"/> 10665 <ns6:assignedAuthor> 10666 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10667 <ns6:assignedPerson> 10668 <ns6:name> 10669 <ns6:given>Antonio</ns6:given> 10670 <ns6:family>Alberti</ns6:family> 10671 <ns6:prefix>MMG</ns6:prefix> 10672 </ns6:name> 10673 </ns6:assignedPerson> 10674 <ns6:representedOrganization> 10675 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10676 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10677 <ns6:addr/> 10678 </ns6:representedOrganization> 10679 </ns6:assignedAuthor> 10680 </ns6:author> 10681 <ns6:custodian> 10682 <ns6:assignedCustodian> 10683 <ns6:representedCustodianOrganization> 10684 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10685 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10686 </ns6:representedCustodianOrganization> 10687 </ns6:assignedCustodian> 10688 </ns6:custodian> 10689 <ns6:legalAuthenticator> 10690 <ns6:time value="20140912160056+0100"/> 10691 <ns6:signatureCode code="S"/> 10692 <ns6:assignedEntity> 10693 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10694 </ns6:assignedEntity> 10695 </ns6:legalAuthenticator> 10696 <ns6:componentOf typeCode="COMP"> 10697 <ns6:encompassingEncounter> 10698 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160052.2a091b18-34a2-4d27-aea1-e54e694ec41d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10699 <ns6:effectiveTime value="20140912160052+0100"/> 10700 </ns6:encompassingEncounter> 10701 </ns6:componentOf> 10702 <ns6:component> 10703 <ns6:structuredBody> 10704 <ns6:component> 10705 <ns6:section> 10706 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 10707 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10708 <ns6:text> 10709 <ns6:list> 10710 <ns6:item> 10711 <ns6:caption>Codice Diagnosi</ns6:caption> 10712 <ns6:content>codiceDiagnosi<ns6:content>COD_0.3</ns6:content> 10713 </ns6:content> 10714 </ns6:item> 10715 </ns6:list> 10716 <ns6:list> 10717 <ns6:item> 10718 <ns6:caption>Descrizione Diagnosi</ns6:caption> 10719 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA</ns6:content> 10720 </ns6:content> 10721 </ns6:item> 10722 </ns6:list> 10723 <ns6:list> 10724 <ns6:item> 10725 <ns6:caption>Codice Percorso</ns6:caption> 10726 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 10727 </ns6:content> 10728 </ns6:item> 10729 </ns6:list> 10730 <ns6:list> 10731 <ns6:item> 10732 <ns6:caption>Descrizione Percorso</ns6:caption> 10733 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 10734 </ns6:content> 10735 </ns6:item> 10736 </ns6:list> 10737 </ns6:text> 10738 </ns6:section> 10739 </ns6:component> 10740 </ns6:structuredBody> 10741 </ns6:component> 10742 </ns6:ClinicalDocument> 10743 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 10744 <ns6:realmCode code="IT"/> 10745 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 10746 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 10747 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160222.41f2d418-3886-469e-bcff-2f3479c44a8d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10748 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 10749 <ns6:effectiveTime value="20140912160222+0100"/> 10750 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 10751 <ns6:languageCode code="it-IT"/> 10752 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160222.41f2d418-3886-469e-bcff-2f3479c44a8d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10753 <ns6:versionNumber value="1"/> 10754 <ns6:recordTarget> 10755 <ns6:patientRole> 10756 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 10757 </ns6:patientRole> 10758 </ns6:recordTarget> 10759 <ns6:author> 10760 <ns6:time value="20140912160222+0100"/> 10761 <ns6:assignedAuthor> 10762 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10763 <ns6:assignedPerson> 10764 <ns6:name> 10765 <ns6:given>Antonio</ns6:given> 10766 <ns6:family>Alberti</ns6:family> 10767 <ns6:prefix>MMG</ns6:prefix> 10768 </ns6:name> 10769 </ns6:assignedPerson> 10770 <ns6:representedOrganization> 10771 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10772 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10773 <ns6:addr/> 10774 </ns6:representedOrganization> 10775 </ns6:assignedAuthor> 10776 </ns6:author> 10777 <ns6:custodian> 10778 <ns6:assignedCustodian> 10779 <ns6:representedCustodianOrganization> 10780 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10781 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10782 </ns6:representedCustodianOrganization> 10783 </ns6:assignedCustodian> 10784 </ns6:custodian> 10785 <ns6:legalAuthenticator> 10786 <ns6:time value="20140912160222+0100"/> 10787 <ns6:signatureCode code="S"/> 10788 <ns6:assignedEntity> 10789 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10790 </ns6:assignedEntity> 10791 </ns6:legalAuthenticator> 10792 <ns6:componentOf typeCode="COMP"> 10793 <ns6:encompassingEncounter> 10794 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160218.5f9e01c5-8c9d-4932-9292-4edea19153b1" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10795 <ns6:effectiveTime value="20140912160218+0100"/> 10796 </ns6:encompassingEncounter> 10797 </ns6:componentOf> 10798 <ns6:component> 10799 <ns6:structuredBody> 10800 <ns6:component> 10801 <ns6:section> 10802 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 10803 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10804 <ns6:text> 10805 <ns6:list> 10806 <ns6:item> 10807 <ns6:caption>Codice Diagnosi</ns6:caption> 10808 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 10809 </ns6:content> 10810 </ns6:item> 10811 </ns6:list> 10812 <ns6:list> 10813 <ns6:item> 10814 <ns6:caption>Descrizione Diagnosi</ns6:caption> 10815 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 10816 </ns6:content> 10817 </ns6:item> 10818 </ns6:list> 10819 <ns6:list> 10820 <ns6:item> 10821 <ns6:caption>Codice Percorso</ns6:caption> 10822 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 10823 </ns6:content> 10824 </ns6:item> 10825 </ns6:list> 10826 <ns6:list> 10827 <ns6:item> 10828 <ns6:caption>Descrizione Percorso</ns6:caption> 10829 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 10830 </ns6:content> 10831 </ns6:item> 10832 </ns6:list> 10833 </ns6:text> 10834 </ns6:section> 10835 </ns6:component> 10836 </ns6:structuredBody> 10837 </ns6:component> 10838 </ns6:ClinicalDocument> 10839 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 10840 <ns6:realmCode code="IT"/> 10841 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 10842 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 10843 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160239.5d0d20ec-43fd-4544-8d17-57b7881a3850" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10844 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 10845 <ns6:effectiveTime value="20140912160239+0100"/> 10846 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 10847 <ns6:languageCode code="it-IT"/> 10848 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160239.5d0d20ec-43fd-4544-8d17-57b7881a3850" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10849 <ns6:versionNumber value="1"/> 10850 <ns6:recordTarget> 10851 <ns6:patientRole> 10852 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 10853 </ns6:patientRole> 10854 </ns6:recordTarget> 10855 <ns6:author> 10856 <ns6:time value="20140912160239+0100"/> 10857 <ns6:assignedAuthor> 10858 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10859 <ns6:assignedPerson> 10860 <ns6:name> 10861 <ns6:given>Antonio</ns6:given> 10862 <ns6:family>Alberti</ns6:family> 10863 <ns6:prefix>MMG</ns6:prefix> 10864 </ns6:name> 10865 </ns6:assignedPerson> 10866 <ns6:representedOrganization> 10867 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10868 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10869 <ns6:addr/> 10870 </ns6:representedOrganization> 10871 </ns6:assignedAuthor> 10872 </ns6:author> 10873 <ns6:custodian> 10874 <ns6:assignedCustodian> 10875 <ns6:representedCustodianOrganization> 10876 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10877 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10878 </ns6:representedCustodianOrganization> 10879 </ns6:assignedCustodian> 10880 </ns6:custodian> 10881 <ns6:legalAuthenticator> 10882 <ns6:time value="20140912160239+0100"/> 10883 <ns6:signatureCode code="S"/> 10884 <ns6:assignedEntity> 10885 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10886 </ns6:assignedEntity> 10887 </ns6:legalAuthenticator> 10888 <ns6:componentOf typeCode="COMP"> 10889 <ns6:encompassingEncounter> 10890 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160236.d941a81f-65ab-45a9-af7a-4d4907c603a2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10891 <ns6:effectiveTime value="20140912160236+0100"/> 10892 </ns6:encompassingEncounter> 10893 </ns6:componentOf> 10894 <ns6:component> 10895 <ns6:structuredBody> 10896 <ns6:component> 10897 <ns6:section> 10898 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 10899 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10900 <ns6:text> 10901 <ns6:list> 10902 <ns6:item> 10903 <ns6:caption>Codice Diagnosi</ns6:caption> 10904 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 10905 </ns6:content> 10906 </ns6:item> 10907 </ns6:list> 10908 <ns6:list> 10909 <ns6:item> 10910 <ns6:caption>Descrizione Diagnosi</ns6:caption> 10911 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 10912 </ns6:content> 10913 </ns6:item> 10914 </ns6:list> 10915 <ns6:list> 10916 <ns6:item> 10917 <ns6:caption>Codice Percorso</ns6:caption> 10918 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 10919 </ns6:content> 10920 </ns6:item> 10921 </ns6:list> 10922 <ns6:list> 10923 <ns6:item> 10924 <ns6:caption>Descrizione Percorso</ns6:caption> 10925 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 10926 </ns6:content> 10927 </ns6:item> 10928 </ns6:list> 10929 </ns6:text> 10930 </ns6:section> 10931 </ns6:component> 10932 </ns6:structuredBody> 10933 </ns6:component> 10934 </ns6:ClinicalDocument> 10935 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 10936 <ns6:realmCode code="IT"/> 10937 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 10938 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 10939 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160323.6c2e47fb-4f3e-4264-9766-6a65b1efbf5f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10940 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 10941 <ns6:effectiveTime value="20140912160323+0100"/> 10942 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 10943 <ns6:languageCode code="it-IT"/> 10944 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160323.6c2e47fb-4f3e-4264-9766-6a65b1efbf5f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10945 <ns6:versionNumber value="1"/> 10946 <ns6:recordTarget> 10947 <ns6:patientRole> 10948 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 10949 </ns6:patientRole> 10950 </ns6:recordTarget> 10951 <ns6:author> 10952 <ns6:time value="20140912160323+0100"/> 10953 <ns6:assignedAuthor> 10954 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10955 <ns6:assignedPerson> 10956 <ns6:name> 10957 <ns6:given>Antonio</ns6:given> 10958 <ns6:family>Alberti</ns6:family> 10959 <ns6:prefix>MMG</ns6:prefix> 10960 </ns6:name> 10961 </ns6:assignedPerson> 10962 <ns6:representedOrganization> 10963 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10964 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10965 <ns6:addr/> 10966 </ns6:representedOrganization> 10967 </ns6:assignedAuthor> 10968 </ns6:author> 10969 <ns6:custodian> 10970 <ns6:assignedCustodian> 10971 <ns6:representedCustodianOrganization> 10972 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 10973 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 10974 </ns6:representedCustodianOrganization> 10975 </ns6:assignedCustodian> 10976 </ns6:custodian> 10977 <ns6:legalAuthenticator> 10978 <ns6:time value="20140912160323+0100"/> 10979 <ns6:signatureCode code="S"/> 10980 <ns6:assignedEntity> 10981 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 10982 </ns6:assignedEntity> 10983 </ns6:legalAuthenticator> 10984 <ns6:componentOf typeCode="COMP"> 10985 <ns6:encompassingEncounter> 10986 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140912160319.f43d504a-873a-43a6-af82-61fff4b3c1b0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 10987 <ns6:effectiveTime value="20140912160319+0100"/> 10988 </ns6:encompassingEncounter> 10989 </ns6:componentOf> 10990 <ns6:component> 10991 <ns6:structuredBody> 10992 <ns6:component> 10993 <ns6:section> 10994 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 10995 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 10996 <ns6:text> 10997 <ns6:list> 10998 <ns6:item> 10999 <ns6:caption>Codice Diagnosi</ns6:caption> 11000 <ns6:content>codiceDiagnosi<ns6:content>COD_1.1</ns6:content> 11001 </ns6:content> 11002 </ns6:item> 11003 </ns6:list> 11004 <ns6:list> 11005 <ns6:item> 11006 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11007 <ns6:content>descrizioneDiagnosi<ns6:content>EMICRANIA SENZA AURA</ns6:content> 11008 </ns6:content> 11009 </ns6:item> 11010 </ns6:list> 11011 <ns6:list> 11012 <ns6:item> 11013 <ns6:caption>Codice Percorso</ns6:caption> 11014 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 11015 </ns6:content> 11016 </ns6:item> 11017 </ns6:list> 11018 <ns6:list> 11019 <ns6:item> 11020 <ns6:caption>Descrizione Percorso</ns6:caption> 11021 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 11022 </ns6:content> 11023 </ns6:item> 11024 </ns6:list> 11025 </ns6:text> 11026 </ns6:section> 11027 </ns6:component> 11028 </ns6:structuredBody> 11029 </ns6:component> 11030 </ns6:ClinicalDocument> 11031 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11032 <ns6:realmCode code="IT"/> 11033 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11034 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11035 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140915114557.902af9c3-957d-4c52-8093-3cbf7cadea45" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11036 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11037 <ns6:effectiveTime value="20140915114557+0100"/> 11038 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11039 <ns6:languageCode code="it-IT"/> 11040 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140915114557.902af9c3-957d-4c52-8093-3cbf7cadea45" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11041 <ns6:versionNumber value="1"/> 11042 <ns6:recordTarget> 11043 <ns6:patientRole> 11044 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 11045 </ns6:patientRole> 11046 </ns6:recordTarget> 11047 <ns6:author> 11048 <ns6:time value="20140915114557+0100"/> 11049 <ns6:assignedAuthor> 11050 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11051 <ns6:assignedPerson> 11052 <ns6:name> 11053 <ns6:given>Antonio</ns6:given> 11054 <ns6:family>Alberti</ns6:family> 11055 <ns6:prefix>MMG</ns6:prefix> 11056 </ns6:name> 11057 </ns6:assignedPerson> 11058 <ns6:representedOrganization> 11059 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11060 <ns6:name>Studio Medico</ns6:name> 11061 <ns6:addr>VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:addr> 11062 </ns6:representedOrganization> 11063 </ns6:assignedAuthor> 11064 </ns6:author> 11065 <ns6:custodian> 11066 <ns6:assignedCustodian> 11067 <ns6:representedCustodianOrganization> 11068 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11069 <ns6:name>Studio Medico</ns6:name> 11070 </ns6:representedCustodianOrganization> 11071 </ns6:assignedCustodian> 11072 </ns6:custodian> 11073 <ns6:legalAuthenticator> 11074 <ns6:time value="20140915114557+0100"/> 11075 <ns6:signatureCode code="S"/> 11076 <ns6:assignedEntity> 11077 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11078 </ns6:assignedEntity> 11079 </ns6:legalAuthenticator> 11080 <ns6:componentOf typeCode="COMP"> 11081 <ns6:encompassingEncounter> 11082 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140915114553.31d9d88a-422b-4e51-badf-73338880dcfe" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11083 <ns6:effectiveTime value="20140915114553+0100"/> 11084 </ns6:encompassingEncounter> 11085 </ns6:componentOf> 11086 <ns6:component> 11087 <ns6:structuredBody> 11088 <ns6:component> 11089 <ns6:section> 11090 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 11091 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 11092 <ns6:text> 11093 <ns6:list> 11094 <ns6:item> 11095 <ns6:caption>Codice Diagnosi</ns6:caption> 11096 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 11097 </ns6:content> 11098 </ns6:item> 11099 </ns6:list> 11100 <ns6:list> 11101 <ns6:item> 11102 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11103 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 11104 </ns6:content> 11105 </ns6:item> 11106 </ns6:list> 11107 <ns6:list> 11108 <ns6:item> 11109 <ns6:caption>Codice Percorso</ns6:caption> 11110 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 11111 </ns6:content> 11112 </ns6:item> 11113 </ns6:list> 11114 <ns6:list> 11115 <ns6:item> 11116 <ns6:caption>Descrizione Percorso</ns6:caption> 11117 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 11118 </ns6:content> 11119 </ns6:item> 11120 </ns6:list> 11121 </ns6:text> 11122 </ns6:section> 11123 </ns6:component> 11124 </ns6:structuredBody> 11125 </ns6:component> 11126 </ns6:ClinicalDocument> 11127 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11128 <ns6:realmCode code="IT"/> 11129 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11130 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11131 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916142201.0bf09c68-aa84-4271-92ce-67caaffba260" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11132 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11133 <ns6:effectiveTime value="20140916142201+0100"/> 11134 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11135 <ns6:languageCode code="it-IT"/> 11136 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916142201.0bf09c68-aa84-4271-92ce-67caaffba260" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11137 <ns6:versionNumber value="1"/> 11138 <ns6:recordTarget> 11139 <ns6:patientRole> 11140 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 11141 </ns6:patientRole> 11142 </ns6:recordTarget> 11143 <ns6:author> 11144 <ns6:time value="20140916142201+0100"/> 11145 <ns6:assignedAuthor> 11146 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11147 <ns6:assignedPerson> 11148 <ns6:name> 11149 <ns6:given>Antonio</ns6:given> 11150 <ns6:family>Alberti</ns6:family> 11151 <ns6:prefix>MMG</ns6:prefix> 11152 </ns6:name> 11153 </ns6:assignedPerson> 11154 <ns6:representedOrganization> 11155 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11156 <ns6:name>Studio Medico</ns6:name> 11157 <ns6:addr>VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:addr> 11158 </ns6:representedOrganization> 11159 </ns6:assignedAuthor> 11160 </ns6:author> 11161 <ns6:custodian> 11162 <ns6:assignedCustodian> 11163 <ns6:representedCustodianOrganization> 11164 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11165 <ns6:name>Studio Medico</ns6:name> 11166 </ns6:representedCustodianOrganization> 11167 </ns6:assignedCustodian> 11168 </ns6:custodian> 11169 <ns6:legalAuthenticator> 11170 <ns6:time value="20140916142201+0100"/> 11171 <ns6:signatureCode code="S"/> 11172 <ns6:assignedEntity> 11173 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11174 </ns6:assignedEntity> 11175 </ns6:legalAuthenticator> 11176 <ns6:componentOf typeCode="COMP"> 11177 <ns6:encompassingEncounter> 11178 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916142156.bcfd54d6-0e8d-45a1-a898-3bd9075ec6c6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11179 <ns6:effectiveTime value="20140916142156+0100"/> 11180 </ns6:encompassingEncounter> 11181 </ns6:componentOf> 11182 <ns6:component> 11183 <ns6:structuredBody> 11184 <ns6:component> 11185 <ns6:section> 11186 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 11187 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 11188 <ns6:text> 11189 <ns6:list> 11190 <ns6:item> 11191 <ns6:caption>Codice Diagnosi</ns6:caption> 11192 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 11193 </ns6:content> 11194 </ns6:item> 11195 </ns6:list> 11196 <ns6:list> 11197 <ns6:item> 11198 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11199 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 11200 </ns6:content> 11201 </ns6:item> 11202 </ns6:list> 11203 <ns6:list> 11204 <ns6:item> 11205 <ns6:caption>Codice Percorso</ns6:caption> 11206 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 11207 </ns6:content> 11208 </ns6:item> 11209 </ns6:list> 11210 <ns6:list> 11211 <ns6:item> 11212 <ns6:caption>Descrizione Percorso</ns6:caption> 11213 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 11214 </ns6:content> 11215 </ns6:item> 11216 </ns6:list> 11217 </ns6:text> 11218 </ns6:section> 11219 </ns6:component> 11220 </ns6:structuredBody> 11221 </ns6:component> 11222 </ns6:ClinicalDocument> 11223 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11224 <ns6:realmCode code="IT"/> 11225 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11226 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11227 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916152127.e77fcfc2-b8db-4ef4-90c8-f8641738dcce" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11228 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11229 <ns6:effectiveTime value="20140916152127+0100"/> 11230 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11231 <ns6:languageCode code="it-IT"/> 11232 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916152127.e77fcfc2-b8db-4ef4-90c8-f8641738dcce" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11233 <ns6:versionNumber value="1"/> 11234 <ns6:recordTarget> 11235 <ns6:patientRole> 11236 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 11237 </ns6:patientRole> 11238 </ns6:recordTarget> 11239 <ns6:author> 11240 <ns6:time value="20140916152127+0100"/> 11241 <ns6:assignedAuthor> 11242 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11243 <ns6:assignedPerson> 11244 <ns6:name> 11245 <ns6:given>Antonio</ns6:given> 11246 <ns6:family>Alberti</ns6:family> 11247 <ns6:prefix>MMG</ns6:prefix> 11248 </ns6:name> 11249 </ns6:assignedPerson> 11250 <ns6:representedOrganization> 11251 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11252 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11253 <ns6:addr/> 11254 </ns6:representedOrganization> 11255 </ns6:assignedAuthor> 11256 </ns6:author> 11257 <ns6:custodian> 11258 <ns6:assignedCustodian> 11259 <ns6:representedCustodianOrganization> 11260 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11261 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11262 </ns6:representedCustodianOrganization> 11263 </ns6:assignedCustodian> 11264 </ns6:custodian> 11265 <ns6:legalAuthenticator> 11266 <ns6:time value="20140916152127+0100"/> 11267 <ns6:signatureCode code="S"/> 11268 <ns6:assignedEntity> 11269 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11270 </ns6:assignedEntity> 11271 </ns6:legalAuthenticator> 11272 <ns6:componentOf typeCode="COMP"> 11273 <ns6:encompassingEncounter> 11274 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916152122.d15f5d2e-cc60-4135-bfcd-40593188ba2d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11275 <ns6:effectiveTime value="20140916152122+0100"/> 11276 </ns6:encompassingEncounter> 11277 </ns6:componentOf> 11278 <ns6:component> 11279 <ns6:structuredBody> 11280 <ns6:component> 11281 <ns6:section> 11282 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 11283 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 11284 <ns6:text> 11285 <ns6:list> 11286 <ns6:item> 11287 <ns6:caption>Codice Diagnosi</ns6:caption> 11288 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 11289 </ns6:content> 11290 </ns6:item> 11291 </ns6:list> 11292 <ns6:list> 11293 <ns6:item> 11294 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11295 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 11296 </ns6:content> 11297 </ns6:item> 11298 </ns6:list> 11299 <ns6:list> 11300 <ns6:item> 11301 <ns6:caption>Codice Percorso</ns6:caption> 11302 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 11303 </ns6:content> 11304 </ns6:item> 11305 </ns6:list> 11306 <ns6:list> 11307 <ns6:item> 11308 <ns6:caption>Descrizione Percorso</ns6:caption> 11309 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 11310 </ns6:content> 11311 </ns6:item> 11312 </ns6:list> 11313 </ns6:text> 11314 </ns6:section> 11315 </ns6:component> 11316 </ns6:structuredBody> 11317 </ns6:component> 11318 </ns6:ClinicalDocument> 11319 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11320 <ns6:realmCode code="IT"/> 11321 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11322 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11323 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916152142.7643d999-64a0-4963-bcbf-0a694aaa4d9c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11324 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11325 <ns6:effectiveTime value="20140916152142+0100"/> 11326 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11327 <ns6:languageCode code="it-IT"/> 11328 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916152142.7643d999-64a0-4963-bcbf-0a694aaa4d9c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11329 <ns6:versionNumber value="1"/> 11330 <ns6:recordTarget> 11331 <ns6:patientRole> 11332 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 11333 </ns6:patientRole> 11334 </ns6:recordTarget> 11335 <ns6:author> 11336 <ns6:time value="20140916152142+0100"/> 11337 <ns6:assignedAuthor> 11338 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11339 <ns6:assignedPerson> 11340 <ns6:name> 11341 <ns6:given>Antonio</ns6:given> 11342 <ns6:family>Alberti</ns6:family> 11343 <ns6:prefix>MMG</ns6:prefix> 11344 </ns6:name> 11345 </ns6:assignedPerson> 11346 <ns6:representedOrganization> 11347 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11348 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11349 <ns6:addr/> 11350 </ns6:representedOrganization> 11351 </ns6:assignedAuthor> 11352 </ns6:author> 11353 <ns6:custodian> 11354 <ns6:assignedCustodian> 11355 <ns6:representedCustodianOrganization> 11356 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11357 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11358 </ns6:representedCustodianOrganization> 11359 </ns6:assignedCustodian> 11360 </ns6:custodian> 11361 <ns6:legalAuthenticator> 11362 <ns6:time value="20140916152142+0100"/> 11363 <ns6:signatureCode code="S"/> 11364 <ns6:assignedEntity> 11365 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11366 </ns6:assignedEntity> 11367 </ns6:legalAuthenticator> 11368 <ns6:componentOf typeCode="COMP"> 11369 <ns6:encompassingEncounter> 11370 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916152138.dd49ca7b-4e48-46d8-ac32-b0bd1287438c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11371 <ns6:effectiveTime value="20140916152138+0100"/> 11372 </ns6:encompassingEncounter> 11373 </ns6:componentOf> 11374 <ns6:component> 11375 <ns6:structuredBody> 11376 <ns6:component> 11377 <ns6:section> 11378 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 11379 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 11380 <ns6:text> 11381 <ns6:list> 11382 <ns6:item> 11383 <ns6:caption>Codice Diagnosi</ns6:caption> 11384 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 11385 </ns6:content> 11386 </ns6:item> 11387 </ns6:list> 11388 <ns6:list> 11389 <ns6:item> 11390 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11391 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 11392 </ns6:content> 11393 </ns6:item> 11394 </ns6:list> 11395 <ns6:list> 11396 <ns6:item> 11397 <ns6:caption>Codice Percorso</ns6:caption> 11398 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 11399 </ns6:content> 11400 </ns6:item> 11401 </ns6:list> 11402 <ns6:list> 11403 <ns6:item> 11404 <ns6:caption>Descrizione Percorso</ns6:caption> 11405 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 11406 </ns6:content> 11407 </ns6:item> 11408 </ns6:list> 11409 </ns6:text> 11410 </ns6:section> 11411 </ns6:component> 11412 </ns6:structuredBody> 11413 </ns6:component> 11414 </ns6:ClinicalDocument> 11415 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11416 <ns6:realmCode code="IT"/> 11417 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11418 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11419 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916152223.4f3f43ed-ea04-43b0-8372-9a509948af3d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11420 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11421 <ns6:effectiveTime value="20140916152223+0100"/> 11422 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11423 <ns6:languageCode code="it-IT"/> 11424 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916152223.4f3f43ed-ea04-43b0-8372-9a509948af3d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11425 <ns6:versionNumber value="1"/> 11426 <ns6:recordTarget> 11427 <ns6:patientRole> 11428 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 11429 </ns6:patientRole> 11430 </ns6:recordTarget> 11431 <ns6:author> 11432 <ns6:time value="20140916152223+0100"/> 11433 <ns6:assignedAuthor> 11434 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11435 <ns6:assignedPerson> 11436 <ns6:name> 11437 <ns6:given>Antonio</ns6:given> 11438 <ns6:family>Alberti</ns6:family> 11439 <ns6:prefix>MMG</ns6:prefix> 11440 </ns6:name> 11441 </ns6:assignedPerson> 11442 <ns6:representedOrganization> 11443 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11444 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11445 <ns6:addr/> 11446 </ns6:representedOrganization> 11447 </ns6:assignedAuthor> 11448 </ns6:author> 11449 <ns6:custodian> 11450 <ns6:assignedCustodian> 11451 <ns6:representedCustodianOrganization> 11452 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11453 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11454 </ns6:representedCustodianOrganization> 11455 </ns6:assignedCustodian> 11456 </ns6:custodian> 11457 <ns6:legalAuthenticator> 11458 <ns6:time value="20140916152223+0100"/> 11459 <ns6:signatureCode code="S"/> 11460 <ns6:assignedEntity> 11461 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11462 </ns6:assignedEntity> 11463 </ns6:legalAuthenticator> 11464 <ns6:componentOf typeCode="COMP"> 11465 <ns6:encompassingEncounter> 11466 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916152219.e2db8602-c518-47bf-9b98-24c829b00751" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11467 <ns6:effectiveTime value="20140916152219+0100"/> 11468 </ns6:encompassingEncounter> 11469 </ns6:componentOf> 11470 <ns6:component> 11471 <ns6:structuredBody> 11472 <ns6:component> 11473 <ns6:section> 11474 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 11475 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 11476 <ns6:text> 11477 <ns6:list> 11478 <ns6:item> 11479 <ns6:caption>Codice Diagnosi</ns6:caption> 11480 <ns6:content>codiceDiagnosi<ns6:content>COD_2</ns6:content> 11481 </ns6:content> 11482 </ns6:item> 11483 </ns6:list> 11484 <ns6:list> 11485 <ns6:item> 11486 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11487 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA DI TIPO TENSIVO</ns6:content> 11488 </ns6:content> 11489 </ns6:item> 11490 </ns6:list> 11491 <ns6:list> 11492 <ns6:item> 11493 <ns6:caption>Codice Percorso</ns6:caption> 11494 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 11495 </ns6:content> 11496 </ns6:item> 11497 </ns6:list> 11498 <ns6:list> 11499 <ns6:item> 11500 <ns6:caption>Descrizione Percorso</ns6:caption> 11501 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 11502 </ns6:content> 11503 </ns6:item> 11504 </ns6:list> 11505 </ns6:text> 11506 </ns6:section> 11507 </ns6:component> 11508 </ns6:structuredBody> 11509 </ns6:component> 11510 </ns6:ClinicalDocument> 11511 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11512 <ns6:realmCode code="IT"/> 11513 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11514 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11515 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916202522.c93a29fa-eef3-4c9d-8217-fb63c9cde85f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11516 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11517 <ns6:effectiveTime value="20140916202522+0100"/> 11518 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11519 <ns6:languageCode code="it-IT"/> 11520 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916202522.c93a29fa-eef3-4c9d-8217-fb63c9cde85f" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11521 <ns6:versionNumber value="1"/> 11522 <ns6:recordTarget> 11523 <ns6:patientRole> 11524 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 11525 </ns6:patientRole> 11526 </ns6:recordTarget> 11527 <ns6:author> 11528 <ns6:time value="20140916202522+0100"/> 11529 <ns6:assignedAuthor> 11530 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11531 <ns6:assignedPerson> 11532 <ns6:name> 11533 <ns6:given>Antonio</ns6:given> 11534 <ns6:family>Alberti</ns6:family> 11535 <ns6:prefix>MMG</ns6:prefix> 11536 </ns6:name> 11537 </ns6:assignedPerson> 11538 <ns6:representedOrganization> 11539 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11540 <ns6:name>Studio Medico</ns6:name> 11541 <ns6:addr>VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:addr> 11542 </ns6:representedOrganization> 11543 </ns6:assignedAuthor> 11544 </ns6:author> 11545 <ns6:custodian> 11546 <ns6:assignedCustodian> 11547 <ns6:representedCustodianOrganization> 11548 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11549 <ns6:name>Studio Medico</ns6:name> 11550 </ns6:representedCustodianOrganization> 11551 </ns6:assignedCustodian> 11552 </ns6:custodian> 11553 <ns6:legalAuthenticator> 11554 <ns6:time value="20140916202522+0100"/> 11555 <ns6:signatureCode code="S"/> 11556 <ns6:assignedEntity> 11557 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11558 </ns6:assignedEntity> 11559 </ns6:legalAuthenticator> 11560 <ns6:componentOf typeCode="COMP"> 11561 <ns6:encompassingEncounter> 11562 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140916202517.40287265-6f1a-42cf-bc77-56d46f2fa10a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11563 <ns6:effectiveTime value="20140916202517+0100"/> 11564 </ns6:encompassingEncounter> 11565 </ns6:componentOf> 11566 <ns6:component> 11567 <ns6:structuredBody> 11568 <ns6:component> 11569 <ns6:section> 11570 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 11571 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 11572 <ns6:text> 11573 <ns6:list> 11574 <ns6:item> 11575 <ns6:caption>Codice Diagnosi</ns6:caption> 11576 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 11577 </ns6:content> 11578 </ns6:item> 11579 </ns6:list> 11580 <ns6:list> 11581 <ns6:item> 11582 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11583 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 11584 </ns6:content> 11585 </ns6:item> 11586 </ns6:list> 11587 <ns6:list> 11588 <ns6:item> 11589 <ns6:caption>Codice Percorso</ns6:caption> 11590 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 11591 </ns6:content> 11592 </ns6:item> 11593 </ns6:list> 11594 <ns6:list> 11595 <ns6:item> 11596 <ns6:caption>Descrizione Percorso</ns6:caption> 11597 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 11598 </ns6:content> 11599 </ns6:item> 11600 </ns6:list> 11601 </ns6:text> 11602 </ns6:section> 11603 </ns6:component> 11604 </ns6:structuredBody> 11605 </ns6:component> 11606 </ns6:ClinicalDocument> 11607 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11608 <ns6:realmCode code="IT"/> 11609 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11610 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11611 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140919113738.168bc92f-50a3-473b-8314-d28ac71b917a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11612 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11613 <ns6:effectiveTime value="20140919113738+0100"/> 11614 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11615 <ns6:languageCode code="it-IT"/> 11616 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140919113738.168bc92f-50a3-473b-8314-d28ac71b917a" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11617 <ns6:versionNumber value="1"/> 11618 <ns6:recordTarget> 11619 <ns6:patientRole> 11620 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 11621 </ns6:patientRole> 11622 </ns6:recordTarget> 11623 <ns6:author> 11624 <ns6:time value="20140919113738+0100"/> 11625 <ns6:assignedAuthor> 11626 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11627 <ns6:assignedPerson> 11628 <ns6:name> 11629 <ns6:given>Antonio</ns6:given> 11630 <ns6:family>Alberti</ns6:family> 11631 <ns6:prefix>MMG</ns6:prefix> 11632 </ns6:name> 11633 </ns6:assignedPerson> 11634 <ns6:representedOrganization> 11635 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11636 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11637 <ns6:addr/> 11638 </ns6:representedOrganization> 11639 </ns6:assignedAuthor> 11640 </ns6:author> 11641 <ns6:custodian> 11642 <ns6:assignedCustodian> 11643 <ns6:representedCustodianOrganization> 11644 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11645 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11646 </ns6:representedCustodianOrganization> 11647 </ns6:assignedCustodian> 11648 </ns6:custodian> 11649 <ns6:legalAuthenticator> 11650 <ns6:time value="20140919113738+0100"/> 11651 <ns6:signatureCode code="S"/> 11652 <ns6:assignedEntity> 11653 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11654 </ns6:assignedEntity> 11655 </ns6:legalAuthenticator> 11656 <ns6:componentOf typeCode="COMP"> 11657 <ns6:encompassingEncounter> 11658 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140919113732.bf2fb6d3-2344-4af1-b4f4-e2293abdaa8b" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11659 <ns6:effectiveTime value="20140919113732+0100"/> 11660 </ns6:encompassingEncounter> 11661 </ns6:componentOf> 11662 <ns6:component> 11663 <ns6:structuredBody> 11664 <ns6:component> 11665 <ns6:section> 11666 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 11667 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 11668 <ns6:text> 11669 <ns6:list> 11670 <ns6:item> 11671 <ns6:caption>Codice Diagnosi</ns6:caption> 11672 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 11673 </ns6:content> 11674 </ns6:item> 11675 </ns6:list> 11676 <ns6:list> 11677 <ns6:item> 11678 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11679 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 11680 </ns6:content> 11681 </ns6:item> 11682 </ns6:list> 11683 <ns6:list> 11684 <ns6:item> 11685 <ns6:caption>Codice Percorso</ns6:caption> 11686 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 11687 </ns6:content> 11688 </ns6:item> 11689 </ns6:list> 11690 <ns6:list> 11691 <ns6:item> 11692 <ns6:caption>Descrizione Percorso</ns6:caption> 11693 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 11694 </ns6:content> 11695 </ns6:item> 11696 </ns6:list> 11697 </ns6:text> 11698 </ns6:section> 11699 </ns6:component> 11700 </ns6:structuredBody> 11701 </ns6:component> 11702 </ns6:ClinicalDocument> 11703 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11704 <ns6:realmCode code="IT"/> 11705 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11706 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11707 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926115423.7b2d6d0e-3916-48aa-9616-0b0623f2dcc0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11708 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11709 <ns6:effectiveTime value="20140926115423+0100"/> 11710 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11711 <ns6:languageCode code="it-IT"/> 11712 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926115423.7b2d6d0e-3916-48aa-9616-0b0623f2dcc0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11713 <ns6:versionNumber value="1"/> 11714 <ns6:recordTarget> 11715 <ns6:patientRole> 11716 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 11717 </ns6:patientRole> 11718 </ns6:recordTarget> 11719 <ns6:author> 11720 <ns6:time value="20140926115423+0100"/> 11721 <ns6:assignedAuthor> 11722 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11723 <ns6:assignedPerson> 11724 <ns6:name> 11725 <ns6:given>Antonio</ns6:given> 11726 <ns6:family>Alberti</ns6:family> 11727 <ns6:prefix>MMG</ns6:prefix> 11728 </ns6:name> 11729 </ns6:assignedPerson> 11730 <ns6:representedOrganization> 11731 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11732 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11733 <ns6:addr/> 11734 </ns6:representedOrganization> 11735 </ns6:assignedAuthor> 11736 </ns6:author> 11737 <ns6:custodian> 11738 <ns6:assignedCustodian> 11739 <ns6:representedCustodianOrganization> 11740 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11741 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11742 </ns6:representedCustodianOrganization> 11743 </ns6:assignedCustodian> 11744 </ns6:custodian> 11745 <ns6:legalAuthenticator> 11746 <ns6:time value="20140926115423+0100"/> 11747 <ns6:signatureCode code="S"/> 11748 <ns6:assignedEntity> 11749 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11750 </ns6:assignedEntity> 11751 </ns6:legalAuthenticator> 11752 <ns6:componentOf typeCode="COMP"> 11753 <ns6:encompassingEncounter> 11754 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926115418.e1ff2876-6dc6-4de8-afc6-2ab03bdc188d" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11755 <ns6:effectiveTime value="20140926115418+0100"/> 11756 </ns6:encompassingEncounter> 11757 </ns6:componentOf> 11758 <ns6:component> 11759 <ns6:structuredBody> 11760 <ns6:component> 11761 <ns6:section> 11762 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 11763 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 11764 <ns6:text> 11765 <ns6:list> 11766 <ns6:item> 11767 <ns6:caption>Codice Diagnosi</ns6:caption> 11768 <ns6:content>codiceDiagnosi<ns6:content>COD_0.2</ns6:content> 11769 </ns6:content> 11770 </ns6:item> 11771 </ns6:list> 11772 <ns6:list> 11773 <ns6:item> 11774 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11775 <ns6:content>descrizioneDiagnosi<ns6:content>PRESENZA DI SINTOMI DI ALLARME</ns6:content> 11776 </ns6:content> 11777 </ns6:item> 11778 </ns6:list> 11779 <ns6:list> 11780 <ns6:item> 11781 <ns6:caption>Codice Percorso</ns6:caption> 11782 <ns6:content>codicePercorso<ns6:content>P1</ns6:content> 11783 </ns6:content> 11784 </ns6:item> 11785 </ns6:list> 11786 <ns6:list> 11787 <ns6:item> 11788 <ns6:caption>Descrizione Percorso</ns6:caption> 11789 <ns6:content>descrizionePercorso<ns6:content>INVIO AL PS</ns6:content> 11790 </ns6:content> 11791 </ns6:item> 11792 </ns6:list> 11793 </ns6:text> 11794 </ns6:section> 11795 </ns6:component> 11796 </ns6:structuredBody> 11797 </ns6:component> 11798 </ns6:ClinicalDocument> 11799 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11800 <ns6:realmCode code="IT"/> 11801 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11802 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11803 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926115542.fe817a3c-9cf9-4a22-afd8-23c9c7e80c3e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11804 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11805 <ns6:effectiveTime value="20140926115542+0100"/> 11806 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11807 <ns6:languageCode code="it-IT"/> 11808 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926115542.fe817a3c-9cf9-4a22-afd8-23c9c7e80c3e" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11809 <ns6:versionNumber value="1"/> 11810 <ns6:recordTarget> 11811 <ns6:patientRole> 11812 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 11813 </ns6:patientRole> 11814 </ns6:recordTarget> 11815 <ns6:author> 11816 <ns6:time value="20140926115542+0100"/> 11817 <ns6:assignedAuthor> 11818 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11819 <ns6:assignedPerson> 11820 <ns6:name> 11821 <ns6:given>Antonio</ns6:given> 11822 <ns6:family>Alberti</ns6:family> 11823 <ns6:prefix>MMG</ns6:prefix> 11824 </ns6:name> 11825 </ns6:assignedPerson> 11826 <ns6:representedOrganization> 11827 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11828 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11829 <ns6:addr/> 11830 </ns6:representedOrganization> 11831 </ns6:assignedAuthor> 11832 </ns6:author> 11833 <ns6:custodian> 11834 <ns6:assignedCustodian> 11835 <ns6:representedCustodianOrganization> 11836 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11837 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11838 </ns6:representedCustodianOrganization> 11839 </ns6:assignedCustodian> 11840 </ns6:custodian> 11841 <ns6:legalAuthenticator> 11842 <ns6:time value="20140926115542+0100"/> 11843 <ns6:signatureCode code="S"/> 11844 <ns6:assignedEntity> 11845 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11846 </ns6:assignedEntity> 11847 </ns6:legalAuthenticator> 11848 <ns6:componentOf typeCode="COMP"> 11849 <ns6:encompassingEncounter> 11850 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926115537.95a8c438-cfca-4181-a3f7-447d762ee8dd" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11851 <ns6:effectiveTime value="20140926115537+0100"/> 11852 </ns6:encompassingEncounter> 11853 </ns6:componentOf> 11854 <ns6:component> 11855 <ns6:structuredBody> 11856 <ns6:component> 11857 <ns6:section> 11858 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 11859 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 11860 <ns6:text> 11861 <ns6:list> 11862 <ns6:item> 11863 <ns6:caption>Codice Diagnosi</ns6:caption> 11864 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 11865 </ns6:content> 11866 </ns6:item> 11867 </ns6:list> 11868 <ns6:list> 11869 <ns6:item> 11870 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11871 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 11872 </ns6:content> 11873 </ns6:item> 11874 </ns6:list> 11875 <ns6:list> 11876 <ns6:item> 11877 <ns6:caption>Codice Percorso</ns6:caption> 11878 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 11879 </ns6:content> 11880 </ns6:item> 11881 </ns6:list> 11882 <ns6:list> 11883 <ns6:item> 11884 <ns6:caption>Descrizione Percorso</ns6:caption> 11885 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 11886 </ns6:content> 11887 </ns6:item> 11888 </ns6:list> 11889 </ns6:text> 11890 </ns6:section> 11891 </ns6:component> 11892 </ns6:structuredBody> 11893 </ns6:component> 11894 </ns6:ClinicalDocument> 11895 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11896 <ns6:realmCode code="IT"/> 11897 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11898 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11899 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926115614.65aef965-be9b-437c-9967-4dd85141727c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11900 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11901 <ns6:effectiveTime value="20140926115614+0100"/> 11902 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11903 <ns6:languageCode code="it-IT"/> 11904 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926115614.65aef965-be9b-437c-9967-4dd85141727c" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11905 <ns6:versionNumber value="1"/> 11906 <ns6:recordTarget> 11907 <ns6:patientRole> 11908 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 11909 </ns6:patientRole> 11910 </ns6:recordTarget> 11911 <ns6:author> 11912 <ns6:time value="20140926115614+0100"/> 11913 <ns6:assignedAuthor> 11914 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11915 <ns6:assignedPerson> 11916 <ns6:name> 11917 <ns6:given>Antonio</ns6:given> 11918 <ns6:family>Alberti</ns6:family> 11919 <ns6:prefix>MMG</ns6:prefix> 11920 </ns6:name> 11921 </ns6:assignedPerson> 11922 <ns6:representedOrganization> 11923 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11924 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11925 <ns6:addr/> 11926 </ns6:representedOrganization> 11927 </ns6:assignedAuthor> 11928 </ns6:author> 11929 <ns6:custodian> 11930 <ns6:assignedCustodian> 11931 <ns6:representedCustodianOrganization> 11932 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 11933 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 11934 </ns6:representedCustodianOrganization> 11935 </ns6:assignedCustodian> 11936 </ns6:custodian> 11937 <ns6:legalAuthenticator> 11938 <ns6:time value="20140926115614+0100"/> 11939 <ns6:signatureCode code="S"/> 11940 <ns6:assignedEntity> 11941 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 11942 </ns6:assignedEntity> 11943 </ns6:legalAuthenticator> 11944 <ns6:componentOf typeCode="COMP"> 11945 <ns6:encompassingEncounter> 11946 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926115609.ec343f35-818c-4197-9c65-819ee39373ba" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11947 <ns6:effectiveTime value="20140926115609+0100"/> 11948 </ns6:encompassingEncounter> 11949 </ns6:componentOf> 11950 <ns6:component> 11951 <ns6:structuredBody> 11952 <ns6:component> 11953 <ns6:section> 11954 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 11955 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 11956 <ns6:text> 11957 <ns6:list> 11958 <ns6:item> 11959 <ns6:caption>Codice Diagnosi</ns6:caption> 11960 <ns6:content>codiceDiagnosi<ns6:content>COD_0.34</ns6:content> 11961 </ns6:content> 11962 </ns6:item> 11963 </ns6:list> 11964 <ns6:list> 11965 <ns6:item> 11966 <ns6:caption>Descrizione Diagnosi</ns6:caption> 11967 <ns6:content>descrizioneDiagnosi<ns6:content>CEFALEA CON POSSIBILE PRESENZA DI AURA ASSOCIATA A POSSIBILI COMORBIDITA</ns6:content> 11968 </ns6:content> 11969 </ns6:item> 11970 </ns6:list> 11971 <ns6:list> 11972 <ns6:item> 11973 <ns6:caption>Codice Percorso</ns6:caption> 11974 <ns6:content>codicePercorso<ns6:content>P2</ns6:content> 11975 </ns6:content> 11976 </ns6:item> 11977 </ns6:list> 11978 <ns6:list> 11979 <ns6:item> 11980 <ns6:caption>Descrizione Percorso</ns6:caption> 11981 <ns6:content>descrizionePercorso<ns6:content>INVIO CRR</ns6:content> 11982 </ns6:content> 11983 </ns6:item> 11984 </ns6:list> 11985 </ns6:text> 11986 </ns6:section> 11987 </ns6:component> 11988 </ns6:structuredBody> 11989 </ns6:component> 11990 </ns6:ClinicalDocument> 11991 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 11992 <ns6:realmCode code="IT"/> 11993 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 11994 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 11995 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926120058.6372ec0f-c6be-48d9-bc45-22427706af37" root="2.16.840.1.113883.2.9.3.12.4.4"/> 11996 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 11997 <ns6:effectiveTime value="20140926120058+0100"/> 11998 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 11999 <ns6:languageCode code="it-IT"/> 12000 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926120058.6372ec0f-c6be-48d9-bc45-22427706af37" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12001 <ns6:versionNumber value="1"/> 12002 <ns6:recordTarget> 12003 <ns6:patientRole> 12004 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 12005 </ns6:patientRole> 12006 </ns6:recordTarget> 12007 <ns6:author> 12008 <ns6:time value="20140926120058+0100"/> 12009 <ns6:assignedAuthor> 12010 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 12011 <ns6:assignedPerson> 12012 <ns6:name> 12013 <ns6:given>Antonio</ns6:given> 12014 <ns6:family>Alberti</ns6:family> 12015 <ns6:prefix>MMG</ns6:prefix> 12016 </ns6:name> 12017 </ns6:assignedPerson> 12018 <ns6:representedOrganization> 12019 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 12020 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 12021 <ns6:addr/> 12022 </ns6:representedOrganization> 12023 </ns6:assignedAuthor> 12024 </ns6:author> 12025 <ns6:custodian> 12026 <ns6:assignedCustodian> 12027 <ns6:representedCustodianOrganization> 12028 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 12029 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 12030 </ns6:representedCustodianOrganization> 12031 </ns6:assignedCustodian> 12032 </ns6:custodian> 12033 <ns6:legalAuthenticator> 12034 <ns6:time value="20140926120058+0100"/> 12035 <ns6:signatureCode code="S"/> 12036 <ns6:assignedEntity> 12037 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 12038 </ns6:assignedEntity> 12039 </ns6:legalAuthenticator> 12040 <ns6:componentOf typeCode="COMP"> 12041 <ns6:encompassingEncounter> 12042 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926120052.faccefec-1314-4012-8021-7ef797f1a263" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12043 <ns6:effectiveTime value="20140926120052+0100"/> 12044 </ns6:encompassingEncounter> 12045 </ns6:componentOf> 12046 <ns6:component> 12047 <ns6:structuredBody> 12048 <ns6:component> 12049 <ns6:section> 12050 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 12051 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 12052 <ns6:text> 12053 <ns6:list> 12054 <ns6:item> 12055 <ns6:caption>Codice Diagnosi</ns6:caption> 12056 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 12057 </ns6:content> 12058 </ns6:item> 12059 </ns6:list> 12060 <ns6:list> 12061 <ns6:item> 12062 <ns6:caption>Descrizione Diagnosi</ns6:caption> 12063 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 12064 </ns6:content> 12065 </ns6:item> 12066 </ns6:list> 12067 <ns6:list> 12068 <ns6:item> 12069 <ns6:caption>Codice Percorso</ns6:caption> 12070 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 12071 </ns6:content> 12072 </ns6:item> 12073 </ns6:list> 12074 <ns6:list> 12075 <ns6:item> 12076 <ns6:caption>Descrizione Percorso</ns6:caption> 12077 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 12078 </ns6:content> 12079 </ns6:item> 12080 </ns6:list> 12081 </ns6:text> 12082 </ns6:section> 12083 </ns6:component> 12084 </ns6:structuredBody> 12085 </ns6:component> 12086 </ns6:ClinicalDocument> 12087 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 12088 <ns6:realmCode code="IT"/> 12089 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 12090 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 12091 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926120118.96a615d9-5933-4444-969f-91ed8f2e7fc2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12092 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 12093 <ns6:effectiveTime value="20140926120118+0100"/> 12094 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 12095 <ns6:languageCode code="it-IT"/> 12096 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926120118.96a615d9-5933-4444-969f-91ed8f2e7fc2" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12097 <ns6:versionNumber value="1"/> 12098 <ns6:recordTarget> 12099 <ns6:patientRole> 12100 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 12101 </ns6:patientRole> 12102 </ns6:recordTarget> 12103 <ns6:author> 12104 <ns6:time value="20140926120118+0100"/> 12105 <ns6:assignedAuthor> 12106 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 12107 <ns6:assignedPerson> 12108 <ns6:name> 12109 <ns6:given>Antonio</ns6:given> 12110 <ns6:family>Alberti</ns6:family> 12111 <ns6:prefix>MMG</ns6:prefix> 12112 </ns6:name> 12113 </ns6:assignedPerson> 12114 <ns6:representedOrganization> 12115 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 12116 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 12117 <ns6:addr/> 12118 </ns6:representedOrganization> 12119 </ns6:assignedAuthor> 12120 </ns6:author> 12121 <ns6:custodian> 12122 <ns6:assignedCustodian> 12123 <ns6:representedCustodianOrganization> 12124 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 12125 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 12126 </ns6:representedCustodianOrganization> 12127 </ns6:assignedCustodian> 12128 </ns6:custodian> 12129 <ns6:legalAuthenticator> 12130 <ns6:time value="20140926120118+0100"/> 12131 <ns6:signatureCode code="S"/> 12132 <ns6:assignedEntity> 12133 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 12134 </ns6:assignedEntity> 12135 </ns6:legalAuthenticator> 12136 <ns6:componentOf typeCode="COMP"> 12137 <ns6:encompassingEncounter> 12138 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926120113.b28adda0-bcc4-4f6f-a185-f37a06aec3b6" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12139 <ns6:effectiveTime value="20140926120113+0100"/> 12140 </ns6:encompassingEncounter> 12141 </ns6:componentOf> 12142 <ns6:component> 12143 <ns6:structuredBody> 12144 <ns6:component> 12145 <ns6:section> 12146 <ns6:code code="68687-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Neurological surgery Diagnostic study note"/> 12147 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 12148 <ns6:text> 12149 <ns6:list> 12150 <ns6:item> 12151 <ns6:caption>Codice Diagnosi</ns6:caption> 12152 <ns6:content>codiceDiagnosi<ns6:content>COD_0.8</ns6:content> 12153 </ns6:content> 12154 </ns6:item> 12155 </ns6:list> 12156 <ns6:list> 12157 <ns6:item> 12158 <ns6:caption>Descrizione Diagnosi</ns6:caption> 12159 <ns6:content>descrizioneDiagnosi<ns6:content>IL PAZIENTE NON E' AFFETTO DA AURA, CAFALEA DA ABUSO FARMACI O CEFALEA DOVUTA A PATOLOGIA CONCOMITANTI</ns6:content> 12160 </ns6:content> 12161 </ns6:item> 12162 </ns6:list> 12163 <ns6:list> 12164 <ns6:item> 12165 <ns6:caption>Codice Percorso</ns6:caption> 12166 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 12167 </ns6:content> 12168 </ns6:item> 12169 </ns6:list> 12170 <ns6:list> 12171 <ns6:item> 12172 <ns6:caption>Descrizione Percorso</ns6:caption> 12173 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 12174 </ns6:content> 12175 </ns6:item> 12176 </ns6:list> 12177 </ns6:text> 12178 </ns6:section> 12179 </ns6:component> 12180 </ns6:structuredBody> 12181 </ns6:component> 12182 </ns6:ClinicalDocument> 12183 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 12184 <ns6:realmCode code="IT"/> 12185 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 12186 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 12187 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926120219.827ae125-f346-4092-bd05-b65f0106abb0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12188 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 12189 <ns6:effectiveTime value="20140926120219+0100"/> 12190 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 12191 <ns6:languageCode code="it-IT"/> 12192 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926120219.827ae125-f346-4092-bd05-b65f0106abb0" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12193 <ns6:versionNumber value="1"/> 12194 <ns6:recordTarget> 12195 <ns6:patientRole> 12196 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 12197 </ns6:patientRole> 12198 </ns6:recordTarget> 12199 <ns6:author> 12200 <ns6:time value="20140926120219+0100"/> 12201 <ns6:assignedAuthor> 12202 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 12203 <ns6:assignedPerson> 12204 <ns6:name> 12205 <ns6:given>Antonio</ns6:given> 12206 <ns6:family>Alberti</ns6:family> 12207 <ns6:prefix>MMG</ns6:prefix> 12208 </ns6:name> 12209 </ns6:assignedPerson> 12210 <ns6:representedOrganization> 12211 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 12212 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 12213 <ns6:addr/> 12214 </ns6:representedOrganization> 12215 </ns6:assignedAuthor> 12216 </ns6:author> 12217 <ns6:custodian> 12218 <ns6:assignedCustodian> 12219 <ns6:representedCustodianOrganization> 12220 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 12221 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 12222 </ns6:representedCustodianOrganization> 12223 </ns6:assignedCustodian> 12224 </ns6:custodian> 12225 <ns6:legalAuthenticator> 12226 <ns6:time value="20140926120219+0100"/> 12227 <ns6:signatureCode code="S"/> 12228 <ns6:assignedEntity> 12229 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 12230 </ns6:assignedEntity> 12231 </ns6:legalAuthenticator> 12232 <ns6:componentOf typeCode="COMP"> 12233 <ns6:encompassingEncounter> 12234 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140926120214.59328530-820b-4462-b698-b2e0796a2851" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12235 <ns6:effectiveTime value="20140926120214+0100"/> 12236 </ns6:encompassingEncounter> 12237 </ns6:componentOf> 12238 <ns6:component> 12239 <ns6:structuredBody> 12240 <ns6:component> 12241 <ns6:section> 12242 <ns6:code code="52534-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Principal Diagnosis"/> 12243 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 12244 <ns6:text> 12245 <ns6:list> 12246 <ns6:item> 12247 <ns6:caption>Codice Diagnosi</ns6:caption> 12248 <ns6:content>codiceDiagnosi<ns6:content>COD_1.1</ns6:content> 12249 </ns6:content> 12250 </ns6:item> 12251 </ns6:list> 12252 <ns6:list> 12253 <ns6:item> 12254 <ns6:caption>Descrizione Diagnosi</ns6:caption> 12255 <ns6:content>descrizioneDiagnosi<ns6:content>EMICRANIA SENZA AURA</ns6:content> 12256 </ns6:content> 12257 </ns6:item> 12258 </ns6:list> 12259 <ns6:list> 12260 <ns6:item> 12261 <ns6:caption>Codice Percorso</ns6:caption> 12262 <ns6:content>codicePercorso<ns6:content>P4</ns6:content> 12263 </ns6:content> 12264 </ns6:item> 12265 </ns6:list> 12266 <ns6:list> 12267 <ns6:item> 12268 <ns6:caption>Descrizione Percorso</ns6:caption> 12269 <ns6:content>descrizionePercorso<ns6:content>RESTA IN CURA DAL MMG</ns6:content> 12270 </ns6:content> 12271 </ns6:item> 12272 </ns6:list> 12273 </ns6:text> 12274 </ns6:section> 12275 </ns6:component> 12276 </ns6:structuredBody> 12277 </ns6:component> 12278 </ns6:ClinicalDocument> 12279 <ns6:ClinicalDocument xmlns:ns6="urn:hl7-org:v3" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:oasis:names:tc:xacml:2.0:context:schema:os" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:ns2="urn:oasis:names:tc:xacml:2.0:policy:schema:os" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns4="urn:dedalus:rlus:cda2report:types" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 12280 <ns6:realmCode code="IT"/> 12281 <ns6:typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"/> 12282 <ns6:templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"/> 12283 <ns6:id assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104848.7eeab084-f0df-4393-99a3-861db02ce482" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12284 <ns6:code code="29308-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis"/> 12285 <ns6:effectiveTime value="20140927104848+0100"/> 12286 <ns6:confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"/> 12287 <ns6:languageCode code="it-IT"/> 12288 <ns6:setId assigningAuthorityName="IDCDA_Dedalus" extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104848.7eeab084-f0df-4393-99a3-861db02ce482" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12289 <ns6:versionNumber value="1"/> 12290 <ns6:recordTarget> 12291 <ns6:patientRole> 12292 <ns6:id extension="78b8437e-0bc8-430f-90dc-ef28604579e3" root="2.16.840.1.113883.2.9.3.12.4.1"/> 12293 </ns6:patientRole> 12294 </ns6:recordTarget> 12295 <ns6:author> 12296 <ns6:time value="20140927104848+0100"/> 12297 <ns6:assignedAuthor> 12298 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 12299 <ns6:assignedPerson> 12300 <ns6:name> 12301 <ns6:given>Antonio</ns6:given> 12302 <ns6:family>Alberti</ns6:family> 12303 <ns6:prefix>MMG</ns6:prefix> 12304 </ns6:name> 12305 </ns6:assignedPerson> 12306 <ns6:representedOrganization> 12307 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 12308 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 12309 <ns6:addr/> 12310 </ns6:representedOrganization> 12311 </ns6:assignedAuthor> 12312 </ns6:author> 12313 <ns6:custodian> 12314 <ns6:assignedCustodian> 12315 <ns6:representedCustodianOrganization> 12316 <ns6:id extension="63972948-6eab-4950-b53f-cc188799ee78" root="2.16.840.1.113883.2.9.3.12.4"/> 12317 <ns6:name>Studio Medico VIALE DEI TULIPANI, 100 - 87027 PAOLA</ns6:name> 12318 </ns6:representedCustodianOrganization> 12319 </ns6:assignedCustodian> 12320 </ns6:custodian> 12321 <ns6:legalAuthenticator> 12322 <ns6:time value="20140927104848+0100"/> 12323 <ns6:signatureCode code="S"/> 12324 <ns6:assignedEntity> 12325 <ns6:id extension="26b49f72-6792-4a7b-b44d-cb4de5760e79" root="2.16.840.1.113883.2.9.3.12.4.2"/> 12326 </ns6:assignedEntity> 12327 </ns6:legalAuthenticator> 12328 <ns6:componentOf typeCode="COMP"> 12329 <ns6:encompassingEncounter> 12330 <ns6:id extension="2.16.840.1.113883.2.9.3.12.4.4.26b49f72-6792-4a7b-b44d-cb4de5760e79.20140927104842.4ef3f155-0e88-483f-ad5d-7f2e311d9131" root="2.16.840.1.113883.2.9.3.12.4.4"/> 12331 <ns6:effectiveTime value="20140927104842+0100"/> 12332 </ns6:encompassingEncounter> 12333 </ns6:componentOf> 12334 <ns6:component> 12335 <ns6:structuredBody> 12336 <ns6:component> 12337 <ns6:section> 12338 <ns6:code code="44833-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.46" displayName="Diagnosis preliminary"/> 12339 <ns6:title>Esito valutazione dati di anamnesi attraverso il Sistema di Supporto alle Decisioni</ns6:title> 12340 <ns6:text> 12341 <ns6:list> 12342 <ns6:item> 12343 <ns6:caption>Codice Diagnosi</ns6:caption> 12344 <ns6:content>codiceDiagnosi<ns6:content>COD_0.7</ns6:content> 12345 </ns6:content> 12346 </ns6:item> 12347 </ns6:list> 12348 <ns6:list> 12349 <ns6:item> 12350 <ns6:caption>Descrizione Diagnosi</ns6:caption> 12351 <ns6:content>descrizioneDiagnosi<ns6:content>NON SONO PRESENTI SINTOMI DI ALLARME</ns6:content> 12352 </ns6:content> 12353 </ns6:item> 12354 </ns6:list> 12355 <ns6:list> 12356 <ns6:item> 12357 <ns6:caption>Codice Percorso</ns6:caption> 12358 <ns6:content>codicePercorso<ns6:content>P5</ns6:content> 12359 </ns6:content> 12360 </ns6:item> 12361 </ns6:list> 12362 <ns6:list> 12363 <ns6:item> 12364 <ns6:caption>Descrizione Percorso</ns6:caption> 12365 <ns6:content>descrizionePercorso<ns6:content>CONTINUA ANAMNESI</ns6:content> 12366 </ns6:content> 12367 </ns6:item> 12368 </ns6:list> 12369 </ns6:text> 12370 </ns6:section> 12371 </ns6:component> 12372 </ns6:structuredBody> 12373 </ns6:component> 12374 </ns6:ClinicalDocument> 17059 12375 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17060 12376 <rlustypes:success>true</rlustypes:success> 17061 <rlustypes:message> One record fetched</rlustypes:message>12377 <rlustypes:message>All Records fetched in a single request </rlustypes:message> 17062 12378 </rlustypes:RLUSStatusCode> 17063 </GetResponse> 17064 </soapenv:Body> 17065 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41798</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/cda2report"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 17066 <soap:Header></soap:Header> 17067 <soap:Body> 17068 <PutRequest xmlns="urn:dedalus:rlus:cda2report:types"> 17069 <ClinicalDocument xmlns="urn:hl7-org:v3"> 17070 <realmCode code="IT"></realmCode> 17071 <typeId root="2.16.840.1.113883.1.3" extension="POCD_HD000040"></typeId> 17072 <templateId root="2.16.840.1.113883.2.9.10.2.10" extension="ITPRF_REF_GEN-001"></templateId> 17073 <id root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-000"></id> 17074 <code codeSystem="2.16.840.1.113883.6.1" code="47045-0" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study Report"></code> 17075 <effectiveTime value="20140620144233+0100"></effectiveTime> 17076 <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></confidentialityCode> 17077 <languageCode code="it-IT"></languageCode> 17078 <setId root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-000"></setId> 17079 <versionNumber value="1"></versionNumber> 17080 <recordTarget> 17081 <patientRole> 17082 <id extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 17083 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="PZNGZL62H58D524R" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 17084 <hl7v3:patient xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212"> 17085 <hl7v3:name> 17086 <hl7v3:given>Graziella</hl7v3:given> 17087 <hl7v3:family>Paziente</hl7v3:family> 17088 </hl7v3:name> 17089 <hl7v3:administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 17090 <hl7v3:birthTime value="19620618093000+0100"></hl7v3:birthTime> 17091 </hl7v3:patient> 17092 </patientRole> 17093 </recordTarget> 17094 <author> 17095 <time value="20140620144233+0100"></time> 17096 <assignedAuthor> 17097 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 17098 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 17099 </assignedAuthor> 17100 </author> 17101 <custodian> 17102 <assignedCustodian> 17103 <representedCustodianOrganization> 17104 <id extension="2.16.840.1.113883.2.9.3.12.4" root="2.16.840.1.113883.2.9.3.12"></id> 17105 </representedCustodianOrganization> 17106 </assignedCustodian> 17107 </custodian> 17108 <legalAuthenticator> 17109 <time value="20140620144233+0100"></time> 17110 <signatureCode code="S"></signatureCode> 17111 <assignedEntity> 17112 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 17113 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 17114 </assignedEntity> 17115 </legalAuthenticator> 17116 <component> 17117 <structuredBody> 17118 <component> 17119 <section> 17120 <code code="18782-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study observation"></code> 17121 <title>Anamnesi</title> 17122 <text>Familiaritᅢᅠ: Negativa. Esordio: 49. La paziente fa risalire l'esordio dell'attuale sintomatologia a circa 2 anni e mezzo fa, quando all'etᅢᅠ di 49 anni, notava l'insorgenza di lentezza, impaccio motorio e lieve tremore a riposo alla mano sinistra. 17123 Due mesi dopo notava l'insorgenza di una tendenza a trascinare la gamba sinistra durante la marcia e, successivamente, di rigiditᅢᅠ e lentezza a carico prevalentemente dell'emisoma sinistro, micrografia e riduzione del tono della voce. 17124 Da circa un anno occasionale disfagia. Negli ultimi 5 mesi infine sarebbero comparsi anche difficoltᅢᅠ ad articolare la parola, abbassamento del tono dell¬タルumore e apatia.</text> 17125 <entry> 17126 <act moodCode="EVN" classCode="ACT"> 17127 <code nullFlavor="NA"></code> 17128 <entryRelationship typeCode="COMP"> 17129 <observation moodCode="EVN" classCode="OBS"> 17130 <code code="1234" codeSystem="2.16.840.1.113883.2.9.3.12.6" codeSystemName="_DIZ_Dedalus" displayName="Anamnesi"></code> 17131 </observation> 17132 </entryRelationship> 17133 </act> 17134 </entry> 17135 </section> 17136 </component> 17137 </structuredBody> 17138 </component> 17139 </ClinicalDocument> 17140 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17141 <rlustypes:RLUSsemantic-signifierName>cda2report</rlustypes:RLUSsemantic-signifierName> 17142 <rlustypes:SecurityContext> 17143 <rlustypes:SourceIdentity identityName="admin"></rlustypes:SourceIdentity> 17144 </rlustypes:SecurityContext> 17145 <rlustypes:CBRContext> 17146 <rlustypes:CBRName>Testing App</rlustypes:CBRName> 17147 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 17148 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 17149 </rlustypes:CBRContext> 17150 </rlustypes:RLUSPutRequestSrcStruct> 17151 <writeCommandEnum>INSERT</writeCommandEnum> 17152 </PutRequest> 17153 </soap:Body> 17154 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 17155 <soapenv:Header/> 17156 <soapenv:Body> 17157 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17158 <rlustypes:success>true</rlustypes:success> 17159 <rlustypes:message/> 17160 </rlustypes:RLUSStatusCode> 17161 </soapenv:Body> 17162 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 17163 <soap:Header/> 17164 <soap:Body> 17165 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 17166 <rlustypes:searchByCriteria> 17167 <rlustypes:FilterCriteria> 17168 <rlustypes:Expression> 17169 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 17170 <rlusexp:Operator type="EqualTo"/> 17171 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 17172 </rlustypes:Expression> 17173 </rlustypes:FilterCriteria> 17174 <rlustypes:SearchAttributes> 17175 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 17176 </rlustypes:SearchAttributes> 17177 </rlustypes:searchByCriteria> 17178 </rlustypes:RLUSSearchStruct> 17179 </soap:Body> 17180 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="5969"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5969"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 17181 <soapenv:Header/> 17182 <soapenv:Body> 17183 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 17184 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 17185 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="28aab402-f678-472b-95a3-1ba1b243d4dd"/> 17186 <xdw:effectiveTime value="20140613172637+0200"/> 17187 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 17188 <xdw:patient> 17189 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 17190 </xdw:patient> 17191 <xdw:author> 17192 <xdw:assignedAuthor> 17193 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 17194 <hl7v3:assignedPerson/> 17195 </xdw:assignedAuthor> 17196 </xdw:author> 17197 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 17198 <xdw:workflowDocumentSequenceNumber>2</xdw:workflowDocumentSequenceNumber> 17199 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 17200 <xdw:workflowStatusHistory> 17201 <xdw:documentEvent> 17202 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17203 <xdw:eventType>complete</xdw:eventType> 17204 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 17205 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17206 <xdw:previousStatus>OPEN</xdw:previousStatus> 17207 <xdw:actualStatus>OPEN</xdw:actualStatus> 17208 </xdw:documentEvent> 17209 <xdw:documentEvent> 17210 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17211 <xdw:eventType>create</xdw:eventType> 17212 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 17213 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17214 <xdw:previousStatus>OPEN</xdw:previousStatus> 17215 <xdw:actualStatus>OPEN</xdw:actualStatus> 17216 </xdw:documentEvent> 17217 </xdw:workflowStatusHistory> 17218 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 17219 <xdw:TaskList> 17220 <xdw:XDWTask> 17221 <xdw:taskData> 17222 <ws-ht:taskDetails> 17223 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 17224 <ws-ht:taskType>Requested</ws-ht:taskType> 17225 <ws-ht:name>xdw.creation</ws-ht:name> 17226 <ws-ht:status>COMPLETED</ws-ht:status> 17227 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17228 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 17229 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17230 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 17231 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17232 </ws-ht:taskDetails> 17233 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 17234 <ws-ht:input/> 17235 <ws-ht:output/> 17236 </xdw:taskData> 17237 <xdw:taskEventHistory> 17238 <xdw:taskEvent> 17239 <xdw:id>1</xdw:id> 17240 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17241 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 17242 <xdw:eventType>complete</xdw:eventType> 17243 <xdw:status>COMPLETED</xdw:status> 17244 <xdw:eventData xsi:nil="true"/> 17245 </xdw:taskEvent> 17246 </xdw:taskEventHistory> 17247 </xdw:XDWTask> 17248 <xdw:XDWTask> 17249 <xdw:taskData> 17250 <ws-ht:taskDetails> 17251 <ws-ht:id>task_0</ws-ht:id> 17252 <ws-ht:taskType>ttype</ws-ht:taskType> 17253 <ws-ht:name>tname_0</ws-ht:name> 17254 <ws-ht:status>READY</ws-ht:status> 17255 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17256 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 17257 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17258 <ws-ht:lastModifiedTime>2014-06-13T17:26:37.211+02:00</ws-ht:lastModifiedTime> 17259 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17260 </ws-ht:taskDetails> 17261 <ws-ht:description>Undocumented task</ws-ht:description> 17262 <ws-ht:input/> 17263 <ws-ht:output/> 17264 </xdw:taskData> 17265 <xdw:taskEventHistory> 17266 <xdw:taskEvent> 17267 <xdw:id>1</xdw:id> 17268 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17269 <xdw:identifier>task_0#1</xdw:identifier> 17270 <xdw:eventType>create</xdw:eventType> 17271 <xdw:status>READY</xdw:status> 17272 <xdw:eventData xsi:nil="true"/> 17273 </xdw:taskEvent> 17274 </xdw:taskEventHistory> 17275 </xdw:XDWTask> 17276 </xdw:TaskList> 17277 </xdw:XDW.WorkflowDocument> 17278 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17279 <rlustypes:success>true</rlustypes:success> 17280 <rlustypes:message>One record fetched</rlustypes:message> 17281 </rlustypes:RLUSStatusCode> 17282 </GetResponse> 17283 </soapenv:Body> 17284 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 17285 <soap:Header/> 17286 <soap:Body> 17287 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 17288 <rlustypes:searchByCriteria> 17289 <rlustypes:FilterCriteria> 17290 <rlustypes:Expression> 17291 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 17292 <rlusexp:Operator type="EqualTo"/> 17293 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 17294 </rlustypes:Expression> 17295 </rlustypes:FilterCriteria> 17296 <rlustypes:SearchAttributes> 17297 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 17298 </rlustypes:SearchAttributes> 17299 </rlustypes:searchByCriteria> 17300 </rlustypes:RLUSSearchStruct> 17301 </soap:Body> 17302 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="5969"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5969"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 17303 <soapenv:Header/> 17304 <soapenv:Body> 17305 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 17306 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 17307 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="28aab402-f678-472b-95a3-1ba1b243d4dd"/> 17308 <xdw:effectiveTime value="20140613172637+0200"/> 17309 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 17310 <xdw:patient> 17311 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 17312 </xdw:patient> 17313 <xdw:author> 17314 <xdw:assignedAuthor> 17315 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 17316 <hl7v3:assignedPerson/> 17317 </xdw:assignedAuthor> 17318 </xdw:author> 17319 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 17320 <xdw:workflowDocumentSequenceNumber>2</xdw:workflowDocumentSequenceNumber> 17321 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 17322 <xdw:workflowStatusHistory> 17323 <xdw:documentEvent> 17324 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17325 <xdw:eventType>complete</xdw:eventType> 17326 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 17327 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17328 <xdw:previousStatus>OPEN</xdw:previousStatus> 17329 <xdw:actualStatus>OPEN</xdw:actualStatus> 17330 </xdw:documentEvent> 17331 <xdw:documentEvent> 17332 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17333 <xdw:eventType>create</xdw:eventType> 17334 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 17335 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17336 <xdw:previousStatus>OPEN</xdw:previousStatus> 17337 <xdw:actualStatus>OPEN</xdw:actualStatus> 17338 </xdw:documentEvent> 17339 </xdw:workflowStatusHistory> 17340 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 17341 <xdw:TaskList> 17342 <xdw:XDWTask> 17343 <xdw:taskData> 17344 <ws-ht:taskDetails> 17345 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 17346 <ws-ht:taskType>Requested</ws-ht:taskType> 17347 <ws-ht:name>xdw.creation</ws-ht:name> 17348 <ws-ht:status>COMPLETED</ws-ht:status> 17349 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17350 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 17351 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17352 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 17353 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17354 </ws-ht:taskDetails> 17355 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 17356 <ws-ht:input/> 17357 <ws-ht:output/> 17358 </xdw:taskData> 17359 <xdw:taskEventHistory> 17360 <xdw:taskEvent> 17361 <xdw:id>1</xdw:id> 17362 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17363 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 17364 <xdw:eventType>complete</xdw:eventType> 17365 <xdw:status>COMPLETED</xdw:status> 17366 <xdw:eventData xsi:nil="true"/> 17367 </xdw:taskEvent> 17368 </xdw:taskEventHistory> 17369 </xdw:XDWTask> 17370 <xdw:XDWTask> 17371 <xdw:taskData> 17372 <ws-ht:taskDetails> 17373 <ws-ht:id>task_0</ws-ht:id> 17374 <ws-ht:taskType>ttype</ws-ht:taskType> 17375 <ws-ht:name>tname_0</ws-ht:name> 17376 <ws-ht:status>READY</ws-ht:status> 17377 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17378 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 17379 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17380 <ws-ht:lastModifiedTime>2014-06-13T17:26:37.211+02:00</ws-ht:lastModifiedTime> 17381 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17382 </ws-ht:taskDetails> 17383 <ws-ht:description>Undocumented task</ws-ht:description> 17384 <ws-ht:input/> 17385 <ws-ht:output/> 17386 </xdw:taskData> 17387 <xdw:taskEventHistory> 17388 <xdw:taskEvent> 17389 <xdw:id>1</xdw:id> 17390 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17391 <xdw:identifier>task_0#1</xdw:identifier> 17392 <xdw:eventType>create</xdw:eventType> 17393 <xdw:status>READY</xdw:status> 17394 <xdw:eventData xsi:nil="true"/> 17395 </xdw:taskEvent> 17396 </xdw:taskEventHistory> 17397 </xdw:XDWTask> 17398 </xdw:TaskList> 17399 </xdw:XDW.WorkflowDocument> 17400 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17401 <rlustypes:success>true</rlustypes:success> 17402 <rlustypes:message>One record fetched</rlustypes:message> 17403 </rlustypes:RLUSStatusCode> 17404 </GetResponse> 17405 </soapenv:Body> 17406 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="7176"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="7176"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 17407 <soap:Header/> 17408 <soap:Body> 17409 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 17410 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 17411 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="1af58e35-64c1-4bb0-bf4f-0870c49d5419"/> 17412 <xdw:effectiveTime value="20140613172640+0200"/> 17413 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 17414 <xdw:patient> 17415 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 17416 </xdw:patient> 17417 <xdw:author> 17418 <xdw:assignedAuthor> 17419 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 17420 <hl7v3:assignedPerson/> 17421 </xdw:assignedAuthor> 17422 </xdw:author> 17423 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 17424 <xdw:workflowDocumentSequenceNumber>3</xdw:workflowDocumentSequenceNumber> 17425 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 17426 <xdw:workflowStatusHistory> 17427 <xdw:documentEvent> 17428 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17429 <xdw:eventType>complete</xdw:eventType> 17430 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 17431 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17432 <xdw:previousStatus>OPEN</xdw:previousStatus> 17433 <xdw:actualStatus>OPEN</xdw:actualStatus> 17434 </xdw:documentEvent> 17435 <xdw:documentEvent> 17436 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17437 <xdw:eventType>create</xdw:eventType> 17438 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 17439 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17440 <xdw:previousStatus>OPEN</xdw:previousStatus> 17441 <xdw:actualStatus>OPEN</xdw:actualStatus> 17442 </xdw:documentEvent> 17443 </xdw:workflowStatusHistory> 17444 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 17445 <xdw:TaskList> 17446 <xdw:XDWTask> 17447 <xdw:taskData> 17448 <ws-ht:taskDetails> 17449 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 17450 <ws-ht:taskType>Requested</ws-ht:taskType> 17451 <ws-ht:name>xdw.creation</ws-ht:name> 17452 <ws-ht:status>COMPLETED</ws-ht:status> 17453 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17454 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 17455 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17456 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 17457 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17458 </ws-ht:taskDetails> 17459 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 17460 <ws-ht:input/> 17461 <ws-ht:output/> 17462 </xdw:taskData> 17463 <xdw:taskEventHistory> 17464 <xdw:taskEvent> 17465 <xdw:id>1</xdw:id> 17466 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17467 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 17468 <xdw:eventType>complete</xdw:eventType> 17469 <xdw:status>COMPLETED</xdw:status> 17470 <xdw:eventData xsi:nil="true"/> 17471 </xdw:taskEvent> 17472 </xdw:taskEventHistory> 17473 </xdw:XDWTask> 17474 <xdw:XDWTask> 17475 <xdw:taskData> 17476 <ws-ht:taskDetails> 17477 <ws-ht:id>task_0</ws-ht:id> 17478 <ws-ht:taskType>ttype</ws-ht:taskType> 17479 <ws-ht:name>tname_0</ws-ht:name> 17480 <ws-ht:status>READY</ws-ht:status> 17481 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17482 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 17483 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17484 <ws-ht:lastModifiedTime>2014-06-13T17:26:37.211+02:00</ws-ht:lastModifiedTime> 17485 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17486 </ws-ht:taskDetails> 17487 <ws-ht:description>Undocumented task</ws-ht:description> 17488 <ws-ht:input/> 17489 <ws-ht:output> 17490 <ws-ht:part name="documentReference"> 17491 <ws-ht:attachment> 17492 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 17493 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 17494 <ws-ht:accessType>RLUS</ws-ht:accessType> 17495 <ws-ht:contentType>application/xml</ws-ht:contentType> 17496 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 17497 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 17498 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 17499 </ws-ht:attachment> 17500 </ws-ht:part> 17501 </ws-ht:output> 17502 </xdw:taskData> 17503 <xdw:taskEventHistory> 17504 <xdw:taskEvent> 17505 <xdw:id>1</xdw:id> 17506 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17507 <xdw:identifier>task_0#1</xdw:identifier> 17508 <xdw:eventType>create</xdw:eventType> 17509 <xdw:status>READY</xdw:status> 17510 <xdw:eventData xsi:nil="true"/> 17511 </xdw:taskEvent> 17512 </xdw:taskEventHistory> 17513 </xdw:XDWTask> 17514 </xdw:TaskList> 17515 </xdw:XDW.WorkflowDocument> 17516 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17517 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 17518 <rlustypes:SecurityContext> 17519 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 17520 </rlustypes:SecurityContext> 17521 <rlustypes:CBRContext> 17522 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 17523 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 17524 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 17525 </rlustypes:CBRContext> 17526 </rlustypes:RLUSPutRequestSrcStruct> 17527 <writeCommandEnum>UPDATE</writeCommandEnum> 17528 </PutRequest> 17529 </soap:Body> 17530 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 17531 <soapenv:Header/> 17532 <soapenv:Body> 17533 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17534 <rlustypes:success>true</rlustypes:success> 17535 <rlustypes:message/> 17536 </rlustypes:RLUSStatusCode> 17537 </soapenv:Body> 17538 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 17539 <soap:Header/> 17540 <soap:Body> 17541 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 17542 <rlustypes:searchByCriteria> 17543 <rlustypes:FilterCriteria> 17544 <rlustypes:Expression> 17545 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 17546 <rlusexp:Operator type="EqualTo"/> 17547 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 17548 </rlustypes:Expression> 17549 </rlustypes:FilterCriteria> 17550 <rlustypes:SearchAttributes> 17551 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 17552 </rlustypes:SearchAttributes> 17553 </rlustypes:searchByCriteria> 17554 </rlustypes:RLUSSearchStruct> 17555 </soap:Body> 17556 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="6738"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6738"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 17557 <soapenv:Header/> 17558 <soapenv:Body> 17559 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 17560 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 17561 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="1af58e35-64c1-4bb0-bf4f-0870c49d5419"/> 17562 <xdw:effectiveTime value="20140613172640+0200"/> 17563 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 17564 <xdw:patient> 17565 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 17566 </xdw:patient> 17567 <xdw:author> 17568 <xdw:assignedAuthor> 17569 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 17570 <hl7v3:assignedPerson/> 17571 </xdw:assignedAuthor> 17572 </xdw:author> 17573 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 17574 <xdw:workflowDocumentSequenceNumber>3</xdw:workflowDocumentSequenceNumber> 17575 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 17576 <xdw:workflowStatusHistory> 17577 <xdw:documentEvent> 17578 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17579 <xdw:eventType>complete</xdw:eventType> 17580 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 17581 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17582 <xdw:previousStatus>OPEN</xdw:previousStatus> 17583 <xdw:actualStatus>OPEN</xdw:actualStatus> 17584 </xdw:documentEvent> 17585 <xdw:documentEvent> 17586 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17587 <xdw:eventType>create</xdw:eventType> 17588 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 17589 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17590 <xdw:previousStatus>OPEN</xdw:previousStatus> 17591 <xdw:actualStatus>OPEN</xdw:actualStatus> 17592 </xdw:documentEvent> 17593 </xdw:workflowStatusHistory> 17594 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 17595 <xdw:TaskList> 17596 <xdw:XDWTask> 17597 <xdw:taskData> 17598 <ws-ht:taskDetails> 17599 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 17600 <ws-ht:taskType>Requested</ws-ht:taskType> 17601 <ws-ht:name>xdw.creation</ws-ht:name> 17602 <ws-ht:status>COMPLETED</ws-ht:status> 17603 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17604 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 17605 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17606 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 17607 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17608 </ws-ht:taskDetails> 17609 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 17610 <ws-ht:input/> 17611 <ws-ht:output/> 17612 </xdw:taskData> 17613 <xdw:taskEventHistory> 17614 <xdw:taskEvent> 17615 <xdw:id>1</xdw:id> 17616 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17617 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 17618 <xdw:eventType>complete</xdw:eventType> 17619 <xdw:status>COMPLETED</xdw:status> 17620 <xdw:eventData xsi:nil="true"/> 17621 </xdw:taskEvent> 17622 </xdw:taskEventHistory> 17623 </xdw:XDWTask> 17624 <xdw:XDWTask> 17625 <xdw:taskData> 17626 <ws-ht:taskDetails> 17627 <ws-ht:id>task_0</ws-ht:id> 17628 <ws-ht:taskType>ttype</ws-ht:taskType> 17629 <ws-ht:name>tname_0</ws-ht:name> 17630 <ws-ht:status>READY</ws-ht:status> 17631 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17632 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 17633 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17634 <ws-ht:lastModifiedTime>2014-06-13T17:26:37.211+02:00</ws-ht:lastModifiedTime> 17635 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17636 </ws-ht:taskDetails> 17637 <ws-ht:description>Undocumented task</ws-ht:description> 17638 <ws-ht:input/> 17639 <ws-ht:output> 17640 <ws-ht:part name="documentReference"> 17641 <ws-ht:attachment> 17642 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 17643 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 17644 <ws-ht:accessType>RLUS</ws-ht:accessType> 17645 <ws-ht:contentType>application/xml</ws-ht:contentType> 17646 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 17647 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 17648 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 17649 </ws-ht:attachment> 17650 </ws-ht:part> 17651 </ws-ht:output> 17652 </xdw:taskData> 17653 <xdw:taskEventHistory> 17654 <xdw:taskEvent> 17655 <xdw:id>1</xdw:id> 17656 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17657 <xdw:identifier>task_0#1</xdw:identifier> 17658 <xdw:eventType>create</xdw:eventType> 17659 <xdw:status>READY</xdw:status> 17660 <xdw:eventData xsi:nil="true"/> 17661 </xdw:taskEvent> 17662 </xdw:taskEventHistory> 17663 </xdw:XDWTask> 17664 </xdw:TaskList> 17665 </xdw:XDW.WorkflowDocument> 17666 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17667 <rlustypes:success>true</rlustypes:success> 17668 <rlustypes:message>One record fetched</rlustypes:message> 17669 </rlustypes:RLUSStatusCode> 17670 </GetResponse> 17671 </soapenv:Body> 17672 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 17673 <soap:Header/> 17674 <soap:Body> 17675 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 17676 <rlustypes:searchByCriteria> 17677 <rlustypes:FilterCriteria> 17678 <rlustypes:Expression> 17679 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 17680 <rlusexp:Operator type="EqualTo"/> 17681 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 17682 </rlustypes:Expression> 17683 </rlustypes:FilterCriteria> 17684 <rlustypes:SearchAttributes> 17685 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 17686 </rlustypes:SearchAttributes> 17687 </rlustypes:searchByCriteria> 17688 </rlustypes:RLUSSearchStruct> 17689 </soap:Body> 17690 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="6738"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6738"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 17691 <soapenv:Header/> 17692 <soapenv:Body> 17693 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 17694 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 17695 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="1af58e35-64c1-4bb0-bf4f-0870c49d5419"/> 17696 <xdw:effectiveTime value="20140613172640+0200"/> 17697 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 17698 <xdw:patient> 17699 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 17700 </xdw:patient> 17701 <xdw:author> 17702 <xdw:assignedAuthor> 17703 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 17704 <hl7v3:assignedPerson/> 17705 </xdw:assignedAuthor> 17706 </xdw:author> 17707 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 17708 <xdw:workflowDocumentSequenceNumber>3</xdw:workflowDocumentSequenceNumber> 17709 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 17710 <xdw:workflowStatusHistory> 17711 <xdw:documentEvent> 17712 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17713 <xdw:eventType>complete</xdw:eventType> 17714 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 17715 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17716 <xdw:previousStatus>OPEN</xdw:previousStatus> 17717 <xdw:actualStatus>OPEN</xdw:actualStatus> 17718 </xdw:documentEvent> 17719 <xdw:documentEvent> 17720 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17721 <xdw:eventType>create</xdw:eventType> 17722 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 17723 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17724 <xdw:previousStatus>OPEN</xdw:previousStatus> 17725 <xdw:actualStatus>OPEN</xdw:actualStatus> 17726 </xdw:documentEvent> 17727 </xdw:workflowStatusHistory> 17728 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 17729 <xdw:TaskList> 17730 <xdw:XDWTask> 17731 <xdw:taskData> 17732 <ws-ht:taskDetails> 17733 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 17734 <ws-ht:taskType>Requested</ws-ht:taskType> 17735 <ws-ht:name>xdw.creation</ws-ht:name> 17736 <ws-ht:status>COMPLETED</ws-ht:status> 17737 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17738 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 17739 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17740 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 17741 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17742 </ws-ht:taskDetails> 17743 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 17744 <ws-ht:input/> 17745 <ws-ht:output/> 17746 </xdw:taskData> 17747 <xdw:taskEventHistory> 17748 <xdw:taskEvent> 17749 <xdw:id>1</xdw:id> 17750 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17751 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 17752 <xdw:eventType>complete</xdw:eventType> 17753 <xdw:status>COMPLETED</xdw:status> 17754 <xdw:eventData xsi:nil="true"/> 17755 </xdw:taskEvent> 17756 </xdw:taskEventHistory> 17757 </xdw:XDWTask> 17758 <xdw:XDWTask> 17759 <xdw:taskData> 17760 <ws-ht:taskDetails> 17761 <ws-ht:id>task_0</ws-ht:id> 17762 <ws-ht:taskType>ttype</ws-ht:taskType> 17763 <ws-ht:name>tname_0</ws-ht:name> 17764 <ws-ht:status>READY</ws-ht:status> 17765 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17766 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 17767 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17768 <ws-ht:lastModifiedTime>2014-06-13T17:26:37.211+02:00</ws-ht:lastModifiedTime> 17769 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17770 </ws-ht:taskDetails> 17771 <ws-ht:description>Undocumented task</ws-ht:description> 17772 <ws-ht:input/> 17773 <ws-ht:output> 17774 <ws-ht:part name="documentReference"> 17775 <ws-ht:attachment> 17776 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 17777 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 17778 <ws-ht:accessType>RLUS</ws-ht:accessType> 17779 <ws-ht:contentType>application/xml</ws-ht:contentType> 17780 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 17781 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 17782 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 17783 </ws-ht:attachment> 17784 </ws-ht:part> 17785 </ws-ht:output> 17786 </xdw:taskData> 17787 <xdw:taskEventHistory> 17788 <xdw:taskEvent> 17789 <xdw:id>1</xdw:id> 17790 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17791 <xdw:identifier>task_0#1</xdw:identifier> 17792 <xdw:eventType>create</xdw:eventType> 17793 <xdw:status>READY</xdw:status> 17794 <xdw:eventData xsi:nil="true"/> 17795 </xdw:taskEvent> 17796 </xdw:taskEventHistory> 17797 </xdw:XDWTask> 17798 </xdw:TaskList> 17799 </xdw:XDW.WorkflowDocument> 17800 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17801 <rlustypes:success>true</rlustypes:success> 17802 <rlustypes:message>One record fetched</rlustypes:message> 17803 </rlustypes:RLUSStatusCode> 17804 </GetResponse> 17805 </soapenv:Body> 17806 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="7566"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="7566"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 17807 <soap:Header/> 17808 <soap:Body> 17809 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 17810 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 17811 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="9e1c1884-63a8-4272-8d27-219daed3addb"/> 17812 <xdw:effectiveTime value="20140613172642+0200"/> 17813 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 17814 <xdw:patient> 17815 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 17816 </xdw:patient> 17817 <xdw:author> 17818 <xdw:assignedAuthor> 17819 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 17820 <hl7v3:assignedPerson/> 17821 </xdw:assignedAuthor> 17822 </xdw:author> 17823 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 17824 <xdw:workflowDocumentSequenceNumber>4</xdw:workflowDocumentSequenceNumber> 17825 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 17826 <xdw:workflowStatusHistory> 17827 <xdw:documentEvent> 17828 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17829 <xdw:eventType>complete</xdw:eventType> 17830 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 17831 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17832 <xdw:previousStatus>OPEN</xdw:previousStatus> 17833 <xdw:actualStatus>OPEN</xdw:actualStatus> 17834 </xdw:documentEvent> 17835 <xdw:documentEvent> 17836 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17837 <xdw:eventType>create</xdw:eventType> 17838 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 17839 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17840 <xdw:previousStatus>OPEN</xdw:previousStatus> 17841 <xdw:actualStatus>OPEN</xdw:actualStatus> 17842 </xdw:documentEvent> 17843 </xdw:workflowStatusHistory> 17844 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 17845 <xdw:TaskList> 17846 <xdw:XDWTask> 17847 <xdw:taskData> 17848 <ws-ht:taskDetails> 17849 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 17850 <ws-ht:taskType>Requested</ws-ht:taskType> 17851 <ws-ht:name>xdw.creation</ws-ht:name> 17852 <ws-ht:status>COMPLETED</ws-ht:status> 17853 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17854 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 17855 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17856 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 17857 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17858 </ws-ht:taskDetails> 17859 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 17860 <ws-ht:input/> 17861 <ws-ht:output/> 17862 </xdw:taskData> 17863 <xdw:taskEventHistory> 17864 <xdw:taskEvent> 17865 <xdw:id>1</xdw:id> 17866 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17867 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 17868 <xdw:eventType>complete</xdw:eventType> 17869 <xdw:status>COMPLETED</xdw:status> 17870 <xdw:eventData xsi:nil="true"/> 17871 </xdw:taskEvent> 17872 </xdw:taskEventHistory> 17873 </xdw:XDWTask> 17874 <xdw:XDWTask> 17875 <xdw:taskData> 17876 <ws-ht:taskDetails> 17877 <ws-ht:id>task_0</ws-ht:id> 17878 <ws-ht:taskType>ttype</ws-ht:taskType> 17879 <ws-ht:name>tname_0</ws-ht:name> 17880 <ws-ht:status>COMPLETED</ws-ht:status> 17881 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 17882 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 17883 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 17884 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 17885 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 17886 </ws-ht:taskDetails> 17887 <ws-ht:description>Undocumented task</ws-ht:description> 17888 <ws-ht:input/> 17889 <ws-ht:output> 17890 <ws-ht:part name="documentReference"> 17891 <ws-ht:attachment> 17892 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 17893 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 17894 <ws-ht:accessType>RLUS</ws-ht:accessType> 17895 <ws-ht:contentType>application/xml</ws-ht:contentType> 17896 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 17897 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 17898 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 17899 </ws-ht:attachment> 17900 </ws-ht:part> 17901 </ws-ht:output> 17902 </xdw:taskData> 17903 <xdw:taskEventHistory> 17904 <xdw:taskEvent> 17905 <xdw:id>1</xdw:id> 17906 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17907 <xdw:identifier>task_0#1</xdw:identifier> 17908 <xdw:eventType>create</xdw:eventType> 17909 <xdw:status>READY</xdw:status> 17910 <xdw:eventData xsi:nil="true"/> 17911 </xdw:taskEvent> 17912 <xdw:taskEvent> 17913 <xdw:id>2</xdw:id> 17914 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 17915 <xdw:identifier>task_0#2</xdw:identifier> 17916 <xdw:eventType>complete</xdw:eventType> 17917 <xdw:status>COMPLETED</xdw:status> 17918 <xdw:eventData xsi:nil="true"/> 17919 </xdw:taskEvent> 17920 </xdw:taskEventHistory> 17921 </xdw:XDWTask> 17922 </xdw:TaskList> 17923 </xdw:XDW.WorkflowDocument> 17924 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17925 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 17926 <rlustypes:SecurityContext> 17927 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 17928 </rlustypes:SecurityContext> 17929 <rlustypes:CBRContext> 17930 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 17931 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 17932 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 17933 </rlustypes:CBRContext> 17934 </rlustypes:RLUSPutRequestSrcStruct> 17935 <writeCommandEnum>UPDATE</writeCommandEnum> 17936 </PutRequest> 17937 </soap:Body> 17938 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 17939 <soapenv:Header/> 17940 <soapenv:Body> 17941 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 17942 <rlustypes:success>true</rlustypes:success> 17943 <rlustypes:message/> 17944 </rlustypes:RLUSStatusCode> 17945 </soapenv:Body> 17946 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 17947 <soap:Header/> 17948 <soap:Body> 17949 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 17950 <rlustypes:searchByCriteria> 17951 <rlustypes:FilterCriteria> 17952 <rlustypes:Expression> 17953 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 17954 <rlusexp:Operator type="EqualTo"/> 17955 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 17956 </rlustypes:Expression> 17957 </rlustypes:FilterCriteria> 17958 <rlustypes:SearchAttributes> 17959 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 17960 </rlustypes:SearchAttributes> 17961 </rlustypes:searchByCriteria> 17962 </rlustypes:RLUSSearchStruct> 17963 </soap:Body> 17964 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="7128"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="7128"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 17965 <soapenv:Header/> 17966 <soapenv:Body> 17967 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 17968 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 17969 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="9e1c1884-63a8-4272-8d27-219daed3addb"/> 17970 <xdw:effectiveTime value="20140613172642+0200"/> 17971 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 17972 <xdw:patient> 17973 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 17974 </xdw:patient> 17975 <xdw:author> 17976 <xdw:assignedAuthor> 17977 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 17978 <hl7v3:assignedPerson/> 17979 </xdw:assignedAuthor> 17980 </xdw:author> 17981 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 17982 <xdw:workflowDocumentSequenceNumber>4</xdw:workflowDocumentSequenceNumber> 17983 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 17984 <xdw:workflowStatusHistory> 17985 <xdw:documentEvent> 17986 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 17987 <xdw:eventType>complete</xdw:eventType> 17988 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 17989 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17990 <xdw:previousStatus>OPEN</xdw:previousStatus> 17991 <xdw:actualStatus>OPEN</xdw:actualStatus> 17992 </xdw:documentEvent> 17993 <xdw:documentEvent> 17994 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 17995 <xdw:eventType>create</xdw:eventType> 17996 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 17997 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 17998 <xdw:previousStatus>OPEN</xdw:previousStatus> 17999 <xdw:actualStatus>OPEN</xdw:actualStatus> 18000 </xdw:documentEvent> 18001 </xdw:workflowStatusHistory> 18002 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 18003 <xdw:TaskList> 18004 <xdw:XDWTask> 18005 <xdw:taskData> 18006 <ws-ht:taskDetails> 18007 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 18008 <ws-ht:taskType>Requested</ws-ht:taskType> 18009 <ws-ht:name>xdw.creation</ws-ht:name> 18010 <ws-ht:status>COMPLETED</ws-ht:status> 18011 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18012 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 18013 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18014 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 18015 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18016 </ws-ht:taskDetails> 18017 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 18018 <ws-ht:input/> 18019 <ws-ht:output/> 18020 </xdw:taskData> 18021 <xdw:taskEventHistory> 18022 <xdw:taskEvent> 18023 <xdw:id>1</xdw:id> 18024 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18025 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 18026 <xdw:eventType>complete</xdw:eventType> 18027 <xdw:status>COMPLETED</xdw:status> 18028 <xdw:eventData xsi:nil="true"/> 18029 </xdw:taskEvent> 18030 </xdw:taskEventHistory> 18031 </xdw:XDWTask> 18032 <xdw:XDWTask> 18033 <xdw:taskData> 18034 <ws-ht:taskDetails> 18035 <ws-ht:id>task_0</ws-ht:id> 18036 <ws-ht:taskType>ttype</ws-ht:taskType> 18037 <ws-ht:name>tname_0</ws-ht:name> 18038 <ws-ht:status>COMPLETED</ws-ht:status> 18039 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18040 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 18041 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18042 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 18043 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18044 </ws-ht:taskDetails> 18045 <ws-ht:description>Undocumented task</ws-ht:description> 18046 <ws-ht:input/> 18047 <ws-ht:output> 18048 <ws-ht:part name="documentReference"> 18049 <ws-ht:attachment> 18050 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 18051 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 18052 <ws-ht:accessType>RLUS</ws-ht:accessType> 18053 <ws-ht:contentType>application/xml</ws-ht:contentType> 18054 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 18055 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 18056 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 18057 </ws-ht:attachment> 18058 </ws-ht:part> 18059 </ws-ht:output> 18060 </xdw:taskData> 18061 <xdw:taskEventHistory> 18062 <xdw:taskEvent> 18063 <xdw:id>1</xdw:id> 18064 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18065 <xdw:identifier>task_0#1</xdw:identifier> 18066 <xdw:eventType>create</xdw:eventType> 18067 <xdw:status>READY</xdw:status> 18068 <xdw:eventData xsi:nil="true"/> 18069 </xdw:taskEvent> 18070 <xdw:taskEvent> 18071 <xdw:id>2</xdw:id> 18072 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 18073 <xdw:identifier>task_0#2</xdw:identifier> 18074 <xdw:eventType>complete</xdw:eventType> 18075 <xdw:status>COMPLETED</xdw:status> 18076 <xdw:eventData xsi:nil="true"/> 18077 </xdw:taskEvent> 18078 </xdw:taskEventHistory> 18079 </xdw:XDWTask> 18080 </xdw:TaskList> 18081 </xdw:XDW.WorkflowDocument> 18082 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 18083 <rlustypes:success>true</rlustypes:success> 18084 <rlustypes:message>One record fetched</rlustypes:message> 18085 </rlustypes:RLUSStatusCode> 18086 </GetResponse> 18087 </soapenv:Body> 18088 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 18089 <soap:Header/> 18090 <soap:Body> 18091 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 18092 <rlustypes:searchByCriteria> 18093 <rlustypes:FilterCriteria> 18094 <rlustypes:Expression> 18095 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 18096 <rlusexp:Operator type="EqualTo"/> 18097 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 18098 </rlustypes:Expression> 18099 </rlustypes:FilterCriteria> 18100 <rlustypes:SearchAttributes> 18101 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 18102 </rlustypes:SearchAttributes> 18103 </rlustypes:searchByCriteria> 18104 </rlustypes:RLUSSearchStruct> 18105 </soap:Body> 18106 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="7128"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="7128"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 18107 <soapenv:Header/> 18108 <soapenv:Body> 18109 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 18110 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 18111 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="9e1c1884-63a8-4272-8d27-219daed3addb"/> 18112 <xdw:effectiveTime value="20140613172642+0200"/> 18113 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 18114 <xdw:patient> 18115 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 18116 </xdw:patient> 18117 <xdw:author> 18118 <xdw:assignedAuthor> 18119 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 18120 <hl7v3:assignedPerson/> 18121 </xdw:assignedAuthor> 18122 </xdw:author> 18123 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 18124 <xdw:workflowDocumentSequenceNumber>4</xdw:workflowDocumentSequenceNumber> 18125 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 18126 <xdw:workflowStatusHistory> 18127 <xdw:documentEvent> 18128 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18129 <xdw:eventType>complete</xdw:eventType> 18130 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 18131 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18132 <xdw:previousStatus>OPEN</xdw:previousStatus> 18133 <xdw:actualStatus>OPEN</xdw:actualStatus> 18134 </xdw:documentEvent> 18135 <xdw:documentEvent> 18136 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18137 <xdw:eventType>create</xdw:eventType> 18138 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 18139 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18140 <xdw:previousStatus>OPEN</xdw:previousStatus> 18141 <xdw:actualStatus>OPEN</xdw:actualStatus> 18142 </xdw:documentEvent> 18143 </xdw:workflowStatusHistory> 18144 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 18145 <xdw:TaskList> 18146 <xdw:XDWTask> 18147 <xdw:taskData> 18148 <ws-ht:taskDetails> 18149 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 18150 <ws-ht:taskType>Requested</ws-ht:taskType> 18151 <ws-ht:name>xdw.creation</ws-ht:name> 18152 <ws-ht:status>COMPLETED</ws-ht:status> 18153 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18154 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 18155 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18156 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 18157 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18158 </ws-ht:taskDetails> 18159 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 18160 <ws-ht:input/> 18161 <ws-ht:output/> 18162 </xdw:taskData> 18163 <xdw:taskEventHistory> 18164 <xdw:taskEvent> 18165 <xdw:id>1</xdw:id> 18166 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18167 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 18168 <xdw:eventType>complete</xdw:eventType> 18169 <xdw:status>COMPLETED</xdw:status> 18170 <xdw:eventData xsi:nil="true"/> 18171 </xdw:taskEvent> 18172 </xdw:taskEventHistory> 18173 </xdw:XDWTask> 18174 <xdw:XDWTask> 18175 <xdw:taskData> 18176 <ws-ht:taskDetails> 18177 <ws-ht:id>task_0</ws-ht:id> 18178 <ws-ht:taskType>ttype</ws-ht:taskType> 18179 <ws-ht:name>tname_0</ws-ht:name> 18180 <ws-ht:status>COMPLETED</ws-ht:status> 18181 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18182 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 18183 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18184 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 18185 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18186 </ws-ht:taskDetails> 18187 <ws-ht:description>Undocumented task</ws-ht:description> 18188 <ws-ht:input/> 18189 <ws-ht:output> 18190 <ws-ht:part name="documentReference"> 18191 <ws-ht:attachment> 18192 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 18193 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 18194 <ws-ht:accessType>RLUS</ws-ht:accessType> 18195 <ws-ht:contentType>application/xml</ws-ht:contentType> 18196 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 18197 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 18198 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 18199 </ws-ht:attachment> 18200 </ws-ht:part> 18201 </ws-ht:output> 18202 </xdw:taskData> 18203 <xdw:taskEventHistory> 18204 <xdw:taskEvent> 18205 <xdw:id>1</xdw:id> 18206 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18207 <xdw:identifier>task_0#1</xdw:identifier> 18208 <xdw:eventType>create</xdw:eventType> 18209 <xdw:status>READY</xdw:status> 18210 <xdw:eventData xsi:nil="true"/> 18211 </xdw:taskEvent> 18212 <xdw:taskEvent> 18213 <xdw:id>2</xdw:id> 18214 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 18215 <xdw:identifier>task_0#2</xdw:identifier> 18216 <xdw:eventType>complete</xdw:eventType> 18217 <xdw:status>COMPLETED</xdw:status> 18218 <xdw:eventData xsi:nil="true"/> 18219 </xdw:taskEvent> 18220 </xdw:taskEventHistory> 18221 </xdw:XDWTask> 18222 </xdw:TaskList> 18223 </xdw:XDW.WorkflowDocument> 18224 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 18225 <rlustypes:success>true</rlustypes:success> 18226 <rlustypes:message>One record fetched</rlustypes:message> 18227 </rlustypes:RLUSStatusCode> 18228 </GetResponse> 18229 </soapenv:Body> 18230 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 18231 <soap:Header/> 18232 <soap:Body> 18233 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 18234 <rlustypes:searchByCriteria> 18235 <rlustypes:FilterCriteria> 18236 <rlustypes:Expression> 18237 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 18238 <rlusexp:Operator type="EqualTo"/> 18239 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 18240 </rlustypes:Expression> 18241 </rlustypes:FilterCriteria> 18242 <rlustypes:SearchAttributes> 18243 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 18244 </rlustypes:SearchAttributes> 18245 </rlustypes:searchByCriteria> 18246 </rlustypes:RLUSSearchStruct> 18247 </soap:Body> 18248 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="7128"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="7128"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 18249 <soapenv:Header/> 18250 <soapenv:Body> 18251 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 18252 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 18253 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="9e1c1884-63a8-4272-8d27-219daed3addb"/> 18254 <xdw:effectiveTime value="20140613172642+0200"/> 18255 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 18256 <xdw:patient> 18257 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 18258 </xdw:patient> 18259 <xdw:author> 18260 <xdw:assignedAuthor> 18261 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 18262 <hl7v3:assignedPerson/> 18263 </xdw:assignedAuthor> 18264 </xdw:author> 18265 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 18266 <xdw:workflowDocumentSequenceNumber>4</xdw:workflowDocumentSequenceNumber> 18267 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 18268 <xdw:workflowStatusHistory> 18269 <xdw:documentEvent> 18270 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18271 <xdw:eventType>complete</xdw:eventType> 18272 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 18273 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18274 <xdw:previousStatus>OPEN</xdw:previousStatus> 18275 <xdw:actualStatus>OPEN</xdw:actualStatus> 18276 </xdw:documentEvent> 18277 <xdw:documentEvent> 18278 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18279 <xdw:eventType>create</xdw:eventType> 18280 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 18281 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18282 <xdw:previousStatus>OPEN</xdw:previousStatus> 18283 <xdw:actualStatus>OPEN</xdw:actualStatus> 18284 </xdw:documentEvent> 18285 </xdw:workflowStatusHistory> 18286 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 18287 <xdw:TaskList> 18288 <xdw:XDWTask> 18289 <xdw:taskData> 18290 <ws-ht:taskDetails> 18291 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 18292 <ws-ht:taskType>Requested</ws-ht:taskType> 18293 <ws-ht:name>xdw.creation</ws-ht:name> 18294 <ws-ht:status>COMPLETED</ws-ht:status> 18295 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18296 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 18297 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18298 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 18299 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18300 </ws-ht:taskDetails> 18301 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 18302 <ws-ht:input/> 18303 <ws-ht:output/> 18304 </xdw:taskData> 18305 <xdw:taskEventHistory> 18306 <xdw:taskEvent> 18307 <xdw:id>1</xdw:id> 18308 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18309 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 18310 <xdw:eventType>complete</xdw:eventType> 18311 <xdw:status>COMPLETED</xdw:status> 18312 <xdw:eventData xsi:nil="true"/> 18313 </xdw:taskEvent> 18314 </xdw:taskEventHistory> 18315 </xdw:XDWTask> 18316 <xdw:XDWTask> 18317 <xdw:taskData> 18318 <ws-ht:taskDetails> 18319 <ws-ht:id>task_0</ws-ht:id> 18320 <ws-ht:taskType>ttype</ws-ht:taskType> 18321 <ws-ht:name>tname_0</ws-ht:name> 18322 <ws-ht:status>COMPLETED</ws-ht:status> 18323 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18324 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 18325 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18326 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 18327 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18328 </ws-ht:taskDetails> 18329 <ws-ht:description>Undocumented task</ws-ht:description> 18330 <ws-ht:input/> 18331 <ws-ht:output> 18332 <ws-ht:part name="documentReference"> 18333 <ws-ht:attachment> 18334 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 18335 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 18336 <ws-ht:accessType>RLUS</ws-ht:accessType> 18337 <ws-ht:contentType>application/xml</ws-ht:contentType> 18338 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 18339 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 18340 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 18341 </ws-ht:attachment> 18342 </ws-ht:part> 18343 </ws-ht:output> 18344 </xdw:taskData> 18345 <xdw:taskEventHistory> 18346 <xdw:taskEvent> 18347 <xdw:id>1</xdw:id> 18348 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18349 <xdw:identifier>task_0#1</xdw:identifier> 18350 <xdw:eventType>create</xdw:eventType> 18351 <xdw:status>READY</xdw:status> 18352 <xdw:eventData xsi:nil="true"/> 18353 </xdw:taskEvent> 18354 <xdw:taskEvent> 18355 <xdw:id>2</xdw:id> 18356 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 18357 <xdw:identifier>task_0#2</xdw:identifier> 18358 <xdw:eventType>complete</xdw:eventType> 18359 <xdw:status>COMPLETED</xdw:status> 18360 <xdw:eventData xsi:nil="true"/> 18361 </xdw:taskEvent> 18362 </xdw:taskEventHistory> 18363 </xdw:XDWTask> 18364 </xdw:TaskList> 18365 </xdw:XDW.WorkflowDocument> 18366 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 18367 <rlustypes:success>true</rlustypes:success> 18368 <rlustypes:message>One record fetched</rlustypes:message> 18369 </rlustypes:RLUSStatusCode> 18370 </GetResponse> 18371 </soapenv:Body> 18372 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="9402"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="9402"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 18373 <soap:Header/> 18374 <soap:Body> 18375 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 18376 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 18377 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="430f1eba-4b3d-4dd6-a57a-12b8c0f22838"/> 18378 <xdw:effectiveTime value="20140613172643+0200"/> 18379 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 18380 <xdw:patient> 18381 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 18382 </xdw:patient> 18383 <xdw:author> 18384 <xdw:assignedAuthor> 18385 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 18386 <hl7v3:assignedPerson/> 18387 </xdw:assignedAuthor> 18388 </xdw:author> 18389 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 18390 <xdw:workflowDocumentSequenceNumber>5</xdw:workflowDocumentSequenceNumber> 18391 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 18392 <xdw:workflowStatusHistory> 18393 <xdw:documentEvent> 18394 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18395 <xdw:eventType>complete</xdw:eventType> 18396 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 18397 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18398 <xdw:previousStatus>OPEN</xdw:previousStatus> 18399 <xdw:actualStatus>OPEN</xdw:actualStatus> 18400 </xdw:documentEvent> 18401 <xdw:documentEvent> 18402 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18403 <xdw:eventType>create</xdw:eventType> 18404 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 18405 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18406 <xdw:previousStatus>OPEN</xdw:previousStatus> 18407 <xdw:actualStatus>OPEN</xdw:actualStatus> 18408 </xdw:documentEvent> 18409 <xdw:documentEvent> 18410 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 18411 <xdw:eventType>create</xdw:eventType> 18412 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 18413 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18414 <xdw:previousStatus>OPEN</xdw:previousStatus> 18415 <xdw:actualStatus>OPEN</xdw:actualStatus> 18416 </xdw:documentEvent> 18417 </xdw:workflowStatusHistory> 18418 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 18419 <xdw:TaskList> 18420 <xdw:XDWTask> 18421 <xdw:taskData> 18422 <ws-ht:taskDetails> 18423 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 18424 <ws-ht:taskType>Requested</ws-ht:taskType> 18425 <ws-ht:name>xdw.creation</ws-ht:name> 18426 <ws-ht:status>COMPLETED</ws-ht:status> 18427 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18428 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 18429 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18430 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 18431 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18432 </ws-ht:taskDetails> 18433 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 18434 <ws-ht:input/> 18435 <ws-ht:output/> 18436 </xdw:taskData> 18437 <xdw:taskEventHistory> 18438 <xdw:taskEvent> 18439 <xdw:id>1</xdw:id> 18440 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18441 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 18442 <xdw:eventType>complete</xdw:eventType> 18443 <xdw:status>COMPLETED</xdw:status> 18444 <xdw:eventData xsi:nil="true"/> 18445 </xdw:taskEvent> 18446 </xdw:taskEventHistory> 18447 </xdw:XDWTask> 18448 <xdw:XDWTask> 18449 <xdw:taskData> 18450 <ws-ht:taskDetails> 18451 <ws-ht:id>task_0</ws-ht:id> 18452 <ws-ht:taskType>ttype</ws-ht:taskType> 18453 <ws-ht:name>tname_0</ws-ht:name> 18454 <ws-ht:status>COMPLETED</ws-ht:status> 18455 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18456 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 18457 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18458 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 18459 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18460 </ws-ht:taskDetails> 18461 <ws-ht:description>Undocumented task</ws-ht:description> 18462 <ws-ht:input/> 18463 <ws-ht:output> 18464 <ws-ht:part name="documentReference"> 18465 <ws-ht:attachment> 18466 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 18467 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 18468 <ws-ht:accessType>RLUS</ws-ht:accessType> 18469 <ws-ht:contentType>application/xml</ws-ht:contentType> 18470 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 18471 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 18472 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 18473 </ws-ht:attachment> 18474 </ws-ht:part> 18475 </ws-ht:output> 18476 </xdw:taskData> 18477 <xdw:taskEventHistory> 18478 <xdw:taskEvent> 18479 <xdw:id>1</xdw:id> 18480 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18481 <xdw:identifier>task_0#1</xdw:identifier> 18482 <xdw:eventType>create</xdw:eventType> 18483 <xdw:status>READY</xdw:status> 18484 <xdw:eventData xsi:nil="true"/> 18485 </xdw:taskEvent> 18486 <xdw:taskEvent> 18487 <xdw:id>2</xdw:id> 18488 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 18489 <xdw:identifier>task_0#2</xdw:identifier> 18490 <xdw:eventType>complete</xdw:eventType> 18491 <xdw:status>COMPLETED</xdw:status> 18492 <xdw:eventData xsi:nil="true"/> 18493 </xdw:taskEvent> 18494 </xdw:taskEventHistory> 18495 </xdw:XDWTask> 18496 <xdw:XDWTask> 18497 <xdw:taskData> 18498 <ws-ht:taskDetails> 18499 <ws-ht:id>task_1</ws-ht:id> 18500 <ws-ht:taskType>ttype</ws-ht:taskType> 18501 <ws-ht:name>tname_1</ws-ht:name> 18502 <ws-ht:status>READY</ws-ht:status> 18503 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18504 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 18505 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18506 <ws-ht:lastModifiedTime>2014-06-13T17:26:43.287+02:00</ws-ht:lastModifiedTime> 18507 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18508 </ws-ht:taskDetails> 18509 <ws-ht:description>Undocumented task</ws-ht:description> 18510 <ws-ht:input/> 18511 <ws-ht:output/> 18512 </xdw:taskData> 18513 <xdw:taskEventHistory> 18514 <xdw:taskEvent> 18515 <xdw:id>1</xdw:id> 18516 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 18517 <xdw:identifier>task_1#1</xdw:identifier> 18518 <xdw:eventType>create</xdw:eventType> 18519 <xdw:status>READY</xdw:status> 18520 <xdw:eventData xsi:nil="true"/> 18521 </xdw:taskEvent> 18522 </xdw:taskEventHistory> 18523 </xdw:XDWTask> 18524 </xdw:TaskList> 18525 </xdw:XDW.WorkflowDocument> 18526 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 18527 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 18528 <rlustypes:SecurityContext> 18529 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 18530 </rlustypes:SecurityContext> 18531 <rlustypes:CBRContext> 18532 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 18533 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 18534 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 18535 </rlustypes:CBRContext> 18536 </rlustypes:RLUSPutRequestSrcStruct> 18537 <writeCommandEnum>UPDATE</writeCommandEnum> 18538 </PutRequest> 18539 </soap:Body> 18540 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 18541 <soapenv:Header/> 18542 <soapenv:Body> 18543 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 18544 <rlustypes:success>true</rlustypes:success> 18545 <rlustypes:message/> 18546 </rlustypes:RLUSStatusCode> 18547 </soapenv:Body> 18548 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 18549 <soap:Header/> 18550 <soap:Body> 18551 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 18552 <rlustypes:searchByCriteria> 18553 <rlustypes:FilterCriteria> 18554 <rlustypes:Expression> 18555 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 18556 <rlusexp:Operator type="EqualTo"/> 18557 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 18558 </rlustypes:Expression> 18559 </rlustypes:FilterCriteria> 18560 <rlustypes:SearchAttributes> 18561 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 18562 </rlustypes:SearchAttributes> 18563 </rlustypes:searchByCriteria> 18564 </rlustypes:RLUSSearchStruct> 18565 </soap:Body> 18566 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="8964"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="8964"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 18567 <soapenv:Header/> 18568 <soapenv:Body> 18569 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 18570 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 18571 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="430f1eba-4b3d-4dd6-a57a-12b8c0f22838"/> 18572 <xdw:effectiveTime value="20140613172643+0200"/> 18573 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 18574 <xdw:patient> 18575 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 18576 </xdw:patient> 18577 <xdw:author> 18578 <xdw:assignedAuthor> 18579 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 18580 <hl7v3:assignedPerson/> 18581 </xdw:assignedAuthor> 18582 </xdw:author> 18583 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 18584 <xdw:workflowDocumentSequenceNumber>5</xdw:workflowDocumentSequenceNumber> 18585 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 18586 <xdw:workflowStatusHistory> 18587 <xdw:documentEvent> 18588 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18589 <xdw:eventType>complete</xdw:eventType> 18590 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 18591 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18592 <xdw:previousStatus>OPEN</xdw:previousStatus> 18593 <xdw:actualStatus>OPEN</xdw:actualStatus> 18594 </xdw:documentEvent> 18595 <xdw:documentEvent> 18596 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18597 <xdw:eventType>create</xdw:eventType> 18598 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 18599 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18600 <xdw:previousStatus>OPEN</xdw:previousStatus> 18601 <xdw:actualStatus>OPEN</xdw:actualStatus> 18602 </xdw:documentEvent> 18603 <xdw:documentEvent> 18604 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 18605 <xdw:eventType>create</xdw:eventType> 18606 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 18607 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18608 <xdw:previousStatus>OPEN</xdw:previousStatus> 18609 <xdw:actualStatus>OPEN</xdw:actualStatus> 18610 </xdw:documentEvent> 18611 </xdw:workflowStatusHistory> 18612 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 18613 <xdw:TaskList> 18614 <xdw:XDWTask> 18615 <xdw:taskData> 18616 <ws-ht:taskDetails> 18617 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 18618 <ws-ht:taskType>Requested</ws-ht:taskType> 18619 <ws-ht:name>xdw.creation</ws-ht:name> 18620 <ws-ht:status>COMPLETED</ws-ht:status> 18621 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18622 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 18623 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18624 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 18625 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18626 </ws-ht:taskDetails> 18627 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 18628 <ws-ht:input/> 18629 <ws-ht:output/> 18630 </xdw:taskData> 18631 <xdw:taskEventHistory> 18632 <xdw:taskEvent> 18633 <xdw:id>1</xdw:id> 18634 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18635 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 18636 <xdw:eventType>complete</xdw:eventType> 18637 <xdw:status>COMPLETED</xdw:status> 18638 <xdw:eventData xsi:nil="true"/> 18639 </xdw:taskEvent> 18640 </xdw:taskEventHistory> 18641 </xdw:XDWTask> 18642 <xdw:XDWTask> 18643 <xdw:taskData> 18644 <ws-ht:taskDetails> 18645 <ws-ht:id>task_0</ws-ht:id> 18646 <ws-ht:taskType>ttype</ws-ht:taskType> 18647 <ws-ht:name>tname_0</ws-ht:name> 18648 <ws-ht:status>COMPLETED</ws-ht:status> 18649 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18650 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 18651 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18652 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 18653 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18654 </ws-ht:taskDetails> 18655 <ws-ht:description>Undocumented task</ws-ht:description> 18656 <ws-ht:input/> 18657 <ws-ht:output> 18658 <ws-ht:part name="documentReference"> 18659 <ws-ht:attachment> 18660 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 18661 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 18662 <ws-ht:accessType>RLUS</ws-ht:accessType> 18663 <ws-ht:contentType>application/xml</ws-ht:contentType> 18664 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 18665 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 18666 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 18667 </ws-ht:attachment> 18668 </ws-ht:part> 18669 </ws-ht:output> 18670 </xdw:taskData> 18671 <xdw:taskEventHistory> 18672 <xdw:taskEvent> 18673 <xdw:id>1</xdw:id> 18674 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18675 <xdw:identifier>task_0#1</xdw:identifier> 18676 <xdw:eventType>create</xdw:eventType> 18677 <xdw:status>READY</xdw:status> 18678 <xdw:eventData xsi:nil="true"/> 18679 </xdw:taskEvent> 18680 <xdw:taskEvent> 18681 <xdw:id>2</xdw:id> 18682 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 18683 <xdw:identifier>task_0#2</xdw:identifier> 18684 <xdw:eventType>complete</xdw:eventType> 18685 <xdw:status>COMPLETED</xdw:status> 18686 <xdw:eventData xsi:nil="true"/> 18687 </xdw:taskEvent> 18688 </xdw:taskEventHistory> 18689 </xdw:XDWTask> 18690 <xdw:XDWTask> 18691 <xdw:taskData> 18692 <ws-ht:taskDetails> 18693 <ws-ht:id>task_1</ws-ht:id> 18694 <ws-ht:taskType>ttype</ws-ht:taskType> 18695 <ws-ht:name>tname_1</ws-ht:name> 18696 <ws-ht:status>READY</ws-ht:status> 18697 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18698 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 18699 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18700 <ws-ht:lastModifiedTime>2014-06-13T17:26:43.287+02:00</ws-ht:lastModifiedTime> 18701 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18702 </ws-ht:taskDetails> 18703 <ws-ht:description>Undocumented task</ws-ht:description> 18704 <ws-ht:input/> 18705 <ws-ht:output/> 18706 </xdw:taskData> 18707 <xdw:taskEventHistory> 18708 <xdw:taskEvent> 18709 <xdw:id>1</xdw:id> 18710 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 18711 <xdw:identifier>task_1#1</xdw:identifier> 18712 <xdw:eventType>create</xdw:eventType> 18713 <xdw:status>READY</xdw:status> 18714 <xdw:eventData xsi:nil="true"/> 18715 </xdw:taskEvent> 18716 </xdw:taskEventHistory> 18717 </xdw:XDWTask> 18718 </xdw:TaskList> 18719 </xdw:XDW.WorkflowDocument> 18720 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 18721 <rlustypes:success>true</rlustypes:success> 18722 <rlustypes:message>One record fetched</rlustypes:message> 18723 </rlustypes:RLUSStatusCode> 18724 </GetResponse> 18725 </soapenv:Body> 18726 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41798</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/cda2report"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 18727 <soap:Header></soap:Header> 18728 <soap:Body> 18729 <PutRequest xmlns="urn:dedalus:rlus:cda2report:types"> 18730 <ClinicalDocument xmlns="urn:hl7-org:v3"> 18731 <realmCode code="IT"></realmCode> 18732 <typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"></typeId> 18733 <templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"></templateId> 18734 <id extension="divjrus7-f34b-431e-835a-a897c0e5-001" root="2.16.840.1.113883.2.9.3.12.4.4"></id> 18735 <code code="47045-0" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study Report"></code> 18736 <effectiveTime value="20140606045508+0200"></effectiveTime> 18737 <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></confidentialityCode> 18738 <languageCode code="it-IT"></languageCode> 18739 <setId extension="divjrus7-f34b-431e-835a-a897c0e5-001" root="2.16.840.1.113883.2.9.3.12.4.4"></setId> 18740 <versionNumber value="1"></versionNumber> 18741 <recordTarget> 18742 <patientRole> 18743 <id extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 18744 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="PZNGZL62H58D524R" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 18745 <hl7v3:patient xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212"> 18746 <hl7v3:name> 18747 <hl7v3:given>Graziella</hl7v3:given> 18748 <hl7v3:family>Paziente</hl7v3:family> 18749 </hl7v3:name> 18750 <hl7v3:administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 18751 <hl7v3:birthTime value="19620618093000+0100"></hl7v3:birthTime> 18752 </hl7v3:patient> 18753 </patientRole> 18754 </recordTarget> 18755 <author> 18756 <time value="20140606045508+0200"></time> 18757 <assignedAuthor> 18758 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 18759 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 18760 </assignedAuthor> 18761 </author> 18762 <custodian> 18763 <assignedCustodian> 18764 <representedCustodianOrganization> 18765 <id extension="2.16.840.1.113883.2.9.3.12.4" root="2.16.840.1.113883.2.9.3.12"></id> 18766 </representedCustodianOrganization> 18767 </assignedCustodian> 18768 </custodian> 18769 <legalAuthenticator> 18770 <time value="20140606045508+0200"></time> 18771 <signatureCode code="S"></signatureCode> 18772 <assignedEntity> 18773 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 18774 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 18775 </assignedEntity> 18776 </legalAuthenticator> 18777 <component> 18778 <structuredBody> 18779 <component> 18780 <section> 18781 <code code="18782-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study observation"></code> 18782 <title>Esame Obiettivo Neurologico</title> 18783 <text> 18784 <paragraph>Tutti i dettagli acquisiti durante l'esame obiettivo sulla paziente</paragraph> 18785 </text> 18786 <entry> 18787 <act classCode="ACT" moodCode="EVN"> 18788 <code nullFlavor="NA"></code> 18789 <entryRelationship typeCode="COMP"> 18790 <observation classCode="OBS" moodCode="EVN"> 18791 <code code="eon" codeSystem="2.16.840.1.113883.2.9.3.12.6" codeSystemName="_DIZ_Dedalus" displayName="EON"></code> 18792 </observation> 18793 </entryRelationship> 18794 </act> 18795 </entry> 18796 </section> 18797 </component> 18798 </structuredBody> 18799 </component> 18800 </ClinicalDocument> 18801 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 18802 <rlustypes:RLUSsemantic-signifierName>cda2report</rlustypes:RLUSsemantic-signifierName> 18803 <rlustypes:SecurityContext> 18804 <rlustypes:SourceIdentity identityName="admin"></rlustypes:SourceIdentity> 18805 </rlustypes:SecurityContext> 18806 <rlustypes:CBRContext> 18807 <rlustypes:CBRName>Testing App</rlustypes:CBRName> 18808 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 18809 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 18810 </rlustypes:CBRContext> 18811 </rlustypes:RLUSPutRequestSrcStruct> 18812 <writeCommandEnum>INSERT</writeCommandEnum> 18813 </PutRequest> 18814 </soap:Body> 18815 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 18816 <soapenv:Header/> 18817 <soapenv:Body> 18818 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 18819 <rlustypes:success>true</rlustypes:success> 18820 <rlustypes:message/> 18821 </rlustypes:RLUSStatusCode> 18822 </soapenv:Body> 18823 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 18824 <soap:Header/> 18825 <soap:Body> 18826 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 18827 <rlustypes:searchByCriteria> 18828 <rlustypes:FilterCriteria> 18829 <rlustypes:Expression> 18830 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 18831 <rlusexp:Operator type="EqualTo"/> 18832 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 18833 </rlustypes:Expression> 18834 </rlustypes:FilterCriteria> 18835 <rlustypes:SearchAttributes> 18836 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 18837 </rlustypes:SearchAttributes> 18838 </rlustypes:searchByCriteria> 18839 </rlustypes:RLUSSearchStruct> 18840 </soap:Body> 18841 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="8964"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="8964"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 18842 <soapenv:Header/> 18843 <soapenv:Body> 18844 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 18845 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 18846 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="430f1eba-4b3d-4dd6-a57a-12b8c0f22838"/> 18847 <xdw:effectiveTime value="20140613172643+0200"/> 18848 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 18849 <xdw:patient> 18850 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 18851 </xdw:patient> 18852 <xdw:author> 18853 <xdw:assignedAuthor> 18854 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 18855 <hl7v3:assignedPerson/> 18856 </xdw:assignedAuthor> 18857 </xdw:author> 18858 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 18859 <xdw:workflowDocumentSequenceNumber>5</xdw:workflowDocumentSequenceNumber> 18860 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 18861 <xdw:workflowStatusHistory> 18862 <xdw:documentEvent> 18863 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18864 <xdw:eventType>complete</xdw:eventType> 18865 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 18866 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18867 <xdw:previousStatus>OPEN</xdw:previousStatus> 18868 <xdw:actualStatus>OPEN</xdw:actualStatus> 18869 </xdw:documentEvent> 18870 <xdw:documentEvent> 18871 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18872 <xdw:eventType>create</xdw:eventType> 18873 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 18874 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18875 <xdw:previousStatus>OPEN</xdw:previousStatus> 18876 <xdw:actualStatus>OPEN</xdw:actualStatus> 18877 </xdw:documentEvent> 18878 <xdw:documentEvent> 18879 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 18880 <xdw:eventType>create</xdw:eventType> 18881 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 18882 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 18883 <xdw:previousStatus>OPEN</xdw:previousStatus> 18884 <xdw:actualStatus>OPEN</xdw:actualStatus> 18885 </xdw:documentEvent> 18886 </xdw:workflowStatusHistory> 18887 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 18888 <xdw:TaskList> 18889 <xdw:XDWTask> 18890 <xdw:taskData> 18891 <ws-ht:taskDetails> 18892 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 18893 <ws-ht:taskType>Requested</ws-ht:taskType> 18894 <ws-ht:name>xdw.creation</ws-ht:name> 18895 <ws-ht:status>COMPLETED</ws-ht:status> 18896 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18897 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 18898 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18899 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 18900 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18901 </ws-ht:taskDetails> 18902 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 18903 <ws-ht:input/> 18904 <ws-ht:output/> 18905 </xdw:taskData> 18906 <xdw:taskEventHistory> 18907 <xdw:taskEvent> 18908 <xdw:id>1</xdw:id> 18909 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 18910 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 18911 <xdw:eventType>complete</xdw:eventType> 18912 <xdw:status>COMPLETED</xdw:status> 18913 <xdw:eventData xsi:nil="true"/> 18914 </xdw:taskEvent> 18915 </xdw:taskEventHistory> 18916 </xdw:XDWTask> 18917 <xdw:XDWTask> 18918 <xdw:taskData> 18919 <ws-ht:taskDetails> 18920 <ws-ht:id>task_0</ws-ht:id> 18921 <ws-ht:taskType>ttype</ws-ht:taskType> 18922 <ws-ht:name>tname_0</ws-ht:name> 18923 <ws-ht:status>COMPLETED</ws-ht:status> 18924 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18925 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 18926 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18927 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 18928 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18929 </ws-ht:taskDetails> 18930 <ws-ht:description>Undocumented task</ws-ht:description> 18931 <ws-ht:input/> 18932 <ws-ht:output> 18933 <ws-ht:part name="documentReference"> 18934 <ws-ht:attachment> 18935 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 18936 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 18937 <ws-ht:accessType>RLUS</ws-ht:accessType> 18938 <ws-ht:contentType>application/xml</ws-ht:contentType> 18939 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 18940 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 18941 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 18942 </ws-ht:attachment> 18943 </ws-ht:part> 18944 </ws-ht:output> 18945 </xdw:taskData> 18946 <xdw:taskEventHistory> 18947 <xdw:taskEvent> 18948 <xdw:id>1</xdw:id> 18949 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 18950 <xdw:identifier>task_0#1</xdw:identifier> 18951 <xdw:eventType>create</xdw:eventType> 18952 <xdw:status>READY</xdw:status> 18953 <xdw:eventData xsi:nil="true"/> 18954 </xdw:taskEvent> 18955 <xdw:taskEvent> 18956 <xdw:id>2</xdw:id> 18957 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 18958 <xdw:identifier>task_0#2</xdw:identifier> 18959 <xdw:eventType>complete</xdw:eventType> 18960 <xdw:status>COMPLETED</xdw:status> 18961 <xdw:eventData xsi:nil="true"/> 18962 </xdw:taskEvent> 18963 </xdw:taskEventHistory> 18964 </xdw:XDWTask> 18965 <xdw:XDWTask> 18966 <xdw:taskData> 18967 <ws-ht:taskDetails> 18968 <ws-ht:id>task_1</ws-ht:id> 18969 <ws-ht:taskType>ttype</ws-ht:taskType> 18970 <ws-ht:name>tname_1</ws-ht:name> 18971 <ws-ht:status>READY</ws-ht:status> 18972 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 18973 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 18974 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 18975 <ws-ht:lastModifiedTime>2014-06-13T17:26:43.287+02:00</ws-ht:lastModifiedTime> 18976 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 18977 </ws-ht:taskDetails> 18978 <ws-ht:description>Undocumented task</ws-ht:description> 18979 <ws-ht:input/> 18980 <ws-ht:output/> 18981 </xdw:taskData> 18982 <xdw:taskEventHistory> 18983 <xdw:taskEvent> 18984 <xdw:id>1</xdw:id> 18985 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 18986 <xdw:identifier>task_1#1</xdw:identifier> 18987 <xdw:eventType>create</xdw:eventType> 18988 <xdw:status>READY</xdw:status> 18989 <xdw:eventData xsi:nil="true"/> 18990 </xdw:taskEvent> 18991 </xdw:taskEventHistory> 18992 </xdw:XDWTask> 18993 </xdw:TaskList> 18994 </xdw:XDW.WorkflowDocument> 18995 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 18996 <rlustypes:success>true</rlustypes:success> 18997 <rlustypes:message>One record fetched</rlustypes:message> 18998 </rlustypes:RLUSStatusCode> 18999 </GetResponse> 19000 </soapenv:Body> 19001 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 19002 <soap:Header/> 19003 <soap:Body> 19004 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 19005 <rlustypes:searchByCriteria> 19006 <rlustypes:FilterCriteria> 19007 <rlustypes:Expression> 19008 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 19009 <rlusexp:Operator type="EqualTo"/> 19010 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 19011 </rlustypes:Expression> 19012 </rlustypes:FilterCriteria> 19013 <rlustypes:SearchAttributes> 19014 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 19015 </rlustypes:SearchAttributes> 19016 </rlustypes:searchByCriteria> 19017 </rlustypes:RLUSSearchStruct> 19018 </soap:Body> 19019 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="8964"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="8964"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 19020 <soapenv:Header/> 19021 <soapenv:Body> 19022 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 19023 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 19024 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="430f1eba-4b3d-4dd6-a57a-12b8c0f22838"/> 19025 <xdw:effectiveTime value="20140613172643+0200"/> 19026 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 19027 <xdw:patient> 19028 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 19029 </xdw:patient> 19030 <xdw:author> 19031 <xdw:assignedAuthor> 19032 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 19033 <hl7v3:assignedPerson/> 19034 </xdw:assignedAuthor> 19035 </xdw:author> 19036 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 19037 <xdw:workflowDocumentSequenceNumber>5</xdw:workflowDocumentSequenceNumber> 19038 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 19039 <xdw:workflowStatusHistory> 19040 <xdw:documentEvent> 19041 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19042 <xdw:eventType>complete</xdw:eventType> 19043 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 19044 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19045 <xdw:previousStatus>OPEN</xdw:previousStatus> 19046 <xdw:actualStatus>OPEN</xdw:actualStatus> 19047 </xdw:documentEvent> 19048 <xdw:documentEvent> 19049 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19050 <xdw:eventType>create</xdw:eventType> 19051 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 19052 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19053 <xdw:previousStatus>OPEN</xdw:previousStatus> 19054 <xdw:actualStatus>OPEN</xdw:actualStatus> 19055 </xdw:documentEvent> 19056 <xdw:documentEvent> 19057 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 19058 <xdw:eventType>create</xdw:eventType> 19059 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 19060 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19061 <xdw:previousStatus>OPEN</xdw:previousStatus> 19062 <xdw:actualStatus>OPEN</xdw:actualStatus> 19063 </xdw:documentEvent> 19064 </xdw:workflowStatusHistory> 19065 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 19066 <xdw:TaskList> 19067 <xdw:XDWTask> 19068 <xdw:taskData> 19069 <ws-ht:taskDetails> 19070 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 19071 <ws-ht:taskType>Requested</ws-ht:taskType> 19072 <ws-ht:name>xdw.creation</ws-ht:name> 19073 <ws-ht:status>COMPLETED</ws-ht:status> 19074 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19075 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 19076 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19077 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 19078 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19079 </ws-ht:taskDetails> 19080 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 19081 <ws-ht:input/> 19082 <ws-ht:output/> 19083 </xdw:taskData> 19084 <xdw:taskEventHistory> 19085 <xdw:taskEvent> 19086 <xdw:id>1</xdw:id> 19087 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19088 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 19089 <xdw:eventType>complete</xdw:eventType> 19090 <xdw:status>COMPLETED</xdw:status> 19091 <xdw:eventData xsi:nil="true"/> 19092 </xdw:taskEvent> 19093 </xdw:taskEventHistory> 19094 </xdw:XDWTask> 19095 <xdw:XDWTask> 19096 <xdw:taskData> 19097 <ws-ht:taskDetails> 19098 <ws-ht:id>task_0</ws-ht:id> 19099 <ws-ht:taskType>ttype</ws-ht:taskType> 19100 <ws-ht:name>tname_0</ws-ht:name> 19101 <ws-ht:status>COMPLETED</ws-ht:status> 19102 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19103 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 19104 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19105 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 19106 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19107 </ws-ht:taskDetails> 19108 <ws-ht:description>Undocumented task</ws-ht:description> 19109 <ws-ht:input/> 19110 <ws-ht:output> 19111 <ws-ht:part name="documentReference"> 19112 <ws-ht:attachment> 19113 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 19114 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 19115 <ws-ht:accessType>RLUS</ws-ht:accessType> 19116 <ws-ht:contentType>application/xml</ws-ht:contentType> 19117 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 19118 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 19119 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 19120 </ws-ht:attachment> 19121 </ws-ht:part> 19122 </ws-ht:output> 19123 </xdw:taskData> 19124 <xdw:taskEventHistory> 19125 <xdw:taskEvent> 19126 <xdw:id>1</xdw:id> 19127 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19128 <xdw:identifier>task_0#1</xdw:identifier> 19129 <xdw:eventType>create</xdw:eventType> 19130 <xdw:status>READY</xdw:status> 19131 <xdw:eventData xsi:nil="true"/> 19132 </xdw:taskEvent> 19133 <xdw:taskEvent> 19134 <xdw:id>2</xdw:id> 19135 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 19136 <xdw:identifier>task_0#2</xdw:identifier> 19137 <xdw:eventType>complete</xdw:eventType> 19138 <xdw:status>COMPLETED</xdw:status> 19139 <xdw:eventData xsi:nil="true"/> 19140 </xdw:taskEvent> 19141 </xdw:taskEventHistory> 19142 </xdw:XDWTask> 19143 <xdw:XDWTask> 19144 <xdw:taskData> 19145 <ws-ht:taskDetails> 19146 <ws-ht:id>task_1</ws-ht:id> 19147 <ws-ht:taskType>ttype</ws-ht:taskType> 19148 <ws-ht:name>tname_1</ws-ht:name> 19149 <ws-ht:status>READY</ws-ht:status> 19150 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19151 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 19152 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19153 <ws-ht:lastModifiedTime>2014-06-13T17:26:43.287+02:00</ws-ht:lastModifiedTime> 19154 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19155 </ws-ht:taskDetails> 19156 <ws-ht:description>Undocumented task</ws-ht:description> 19157 <ws-ht:input/> 19158 <ws-ht:output/> 19159 </xdw:taskData> 19160 <xdw:taskEventHistory> 19161 <xdw:taskEvent> 19162 <xdw:id>1</xdw:id> 19163 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 19164 <xdw:identifier>task_1#1</xdw:identifier> 19165 <xdw:eventType>create</xdw:eventType> 19166 <xdw:status>READY</xdw:status> 19167 <xdw:eventData xsi:nil="true"/> 19168 </xdw:taskEvent> 19169 </xdw:taskEventHistory> 19170 </xdw:XDWTask> 19171 </xdw:TaskList> 19172 </xdw:XDW.WorkflowDocument> 19173 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 19174 <rlustypes:success>true</rlustypes:success> 19175 <rlustypes:message>One record fetched</rlustypes:message> 19176 </rlustypes:RLUSStatusCode> 19177 </GetResponse> 19178 </soapenv:Body> 19179 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="10171"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="10171"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 19180 <soap:Header/> 19181 <soap:Body> 19182 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 19183 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 19184 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="67dc11fb-1299-43a3-b8f5-46ecf6ea484e"/> 19185 <xdw:effectiveTime value="20140613172646+0200"/> 19186 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 19187 <xdw:patient> 19188 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 19189 </xdw:patient> 19190 <xdw:author> 19191 <xdw:assignedAuthor> 19192 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 19193 <hl7v3:assignedPerson/> 19194 </xdw:assignedAuthor> 19195 </xdw:author> 19196 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 19197 <xdw:workflowDocumentSequenceNumber>6</xdw:workflowDocumentSequenceNumber> 19198 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 19199 <xdw:workflowStatusHistory> 19200 <xdw:documentEvent> 19201 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19202 <xdw:eventType>complete</xdw:eventType> 19203 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 19204 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19205 <xdw:previousStatus>OPEN</xdw:previousStatus> 19206 <xdw:actualStatus>OPEN</xdw:actualStatus> 19207 </xdw:documentEvent> 19208 <xdw:documentEvent> 19209 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19210 <xdw:eventType>create</xdw:eventType> 19211 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 19212 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19213 <xdw:previousStatus>OPEN</xdw:previousStatus> 19214 <xdw:actualStatus>OPEN</xdw:actualStatus> 19215 </xdw:documentEvent> 19216 <xdw:documentEvent> 19217 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 19218 <xdw:eventType>create</xdw:eventType> 19219 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 19220 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19221 <xdw:previousStatus>OPEN</xdw:previousStatus> 19222 <xdw:actualStatus>OPEN</xdw:actualStatus> 19223 </xdw:documentEvent> 19224 </xdw:workflowStatusHistory> 19225 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 19226 <xdw:TaskList> 19227 <xdw:XDWTask> 19228 <xdw:taskData> 19229 <ws-ht:taskDetails> 19230 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 19231 <ws-ht:taskType>Requested</ws-ht:taskType> 19232 <ws-ht:name>xdw.creation</ws-ht:name> 19233 <ws-ht:status>COMPLETED</ws-ht:status> 19234 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19235 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 19236 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19237 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 19238 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19239 </ws-ht:taskDetails> 19240 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 19241 <ws-ht:input/> 19242 <ws-ht:output/> 19243 </xdw:taskData> 19244 <xdw:taskEventHistory> 19245 <xdw:taskEvent> 19246 <xdw:id>1</xdw:id> 19247 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19248 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 19249 <xdw:eventType>complete</xdw:eventType> 19250 <xdw:status>COMPLETED</xdw:status> 19251 <xdw:eventData xsi:nil="true"/> 19252 </xdw:taskEvent> 19253 </xdw:taskEventHistory> 19254 </xdw:XDWTask> 19255 <xdw:XDWTask> 19256 <xdw:taskData> 19257 <ws-ht:taskDetails> 19258 <ws-ht:id>task_0</ws-ht:id> 19259 <ws-ht:taskType>ttype</ws-ht:taskType> 19260 <ws-ht:name>tname_0</ws-ht:name> 19261 <ws-ht:status>COMPLETED</ws-ht:status> 19262 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19263 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 19264 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19265 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 19266 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19267 </ws-ht:taskDetails> 19268 <ws-ht:description>Undocumented task</ws-ht:description> 19269 <ws-ht:input/> 19270 <ws-ht:output> 19271 <ws-ht:part name="documentReference"> 19272 <ws-ht:attachment> 19273 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 19274 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 19275 <ws-ht:accessType>RLUS</ws-ht:accessType> 19276 <ws-ht:contentType>application/xml</ws-ht:contentType> 19277 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 19278 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 19279 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 19280 </ws-ht:attachment> 19281 </ws-ht:part> 19282 </ws-ht:output> 19283 </xdw:taskData> 19284 <xdw:taskEventHistory> 19285 <xdw:taskEvent> 19286 <xdw:id>1</xdw:id> 19287 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19288 <xdw:identifier>task_0#1</xdw:identifier> 19289 <xdw:eventType>create</xdw:eventType> 19290 <xdw:status>READY</xdw:status> 19291 <xdw:eventData xsi:nil="true"/> 19292 </xdw:taskEvent> 19293 <xdw:taskEvent> 19294 <xdw:id>2</xdw:id> 19295 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 19296 <xdw:identifier>task_0#2</xdw:identifier> 19297 <xdw:eventType>complete</xdw:eventType> 19298 <xdw:status>COMPLETED</xdw:status> 19299 <xdw:eventData xsi:nil="true"/> 19300 </xdw:taskEvent> 19301 </xdw:taskEventHistory> 19302 </xdw:XDWTask> 19303 <xdw:XDWTask> 19304 <xdw:taskData> 19305 <ws-ht:taskDetails> 19306 <ws-ht:id>task_1</ws-ht:id> 19307 <ws-ht:taskType>ttype</ws-ht:taskType> 19308 <ws-ht:name>tname_1</ws-ht:name> 19309 <ws-ht:status>READY</ws-ht:status> 19310 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19311 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 19312 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19313 <ws-ht:lastModifiedTime>2014-06-13T17:26:43.287+02:00</ws-ht:lastModifiedTime> 19314 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19315 </ws-ht:taskDetails> 19316 <ws-ht:description>Undocumented task</ws-ht:description> 19317 <ws-ht:input/> 19318 <ws-ht:output> 19319 <ws-ht:part name="documentReference"> 19320 <ws-ht:attachment> 19321 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 19322 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 19323 <ws-ht:accessType>RLUS</ws-ht:accessType> 19324 <ws-ht:contentType>application/xml</ws-ht:contentType> 19325 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 19326 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 19327 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 19328 </ws-ht:attachment> 19329 </ws-ht:part> 19330 </ws-ht:output> 19331 </xdw:taskData> 19332 <xdw:taskEventHistory> 19333 <xdw:taskEvent> 19334 <xdw:id>1</xdw:id> 19335 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 19336 <xdw:identifier>task_1#1</xdw:identifier> 19337 <xdw:eventType>create</xdw:eventType> 19338 <xdw:status>READY</xdw:status> 19339 <xdw:eventData xsi:nil="true"/> 19340 </xdw:taskEvent> 19341 </xdw:taskEventHistory> 19342 </xdw:XDWTask> 19343 </xdw:TaskList> 19344 </xdw:XDW.WorkflowDocument> 19345 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 19346 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 19347 <rlustypes:SecurityContext> 19348 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 19349 </rlustypes:SecurityContext> 19350 <rlustypes:CBRContext> 19351 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 19352 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 19353 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 19354 </rlustypes:CBRContext> 19355 </rlustypes:RLUSPutRequestSrcStruct> 19356 <writeCommandEnum>UPDATE</writeCommandEnum> 19357 </PutRequest> 19358 </soap:Body> 19359 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 19360 <soapenv:Header/> 19361 <soapenv:Body> 19362 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 19363 <rlustypes:success>true</rlustypes:success> 19364 <rlustypes:message/> 19365 </rlustypes:RLUSStatusCode> 19366 </soapenv:Body> 19367 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 19368 <soap:Header/> 19369 <soap:Body> 19370 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 19371 <rlustypes:searchByCriteria> 19372 <rlustypes:FilterCriteria> 19373 <rlustypes:Expression> 19374 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 19375 <rlusexp:Operator type="EqualTo"/> 19376 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 19377 </rlustypes:Expression> 19378 </rlustypes:FilterCriteria> 19379 <rlustypes:SearchAttributes> 19380 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 19381 </rlustypes:SearchAttributes> 19382 </rlustypes:searchByCriteria> 19383 </rlustypes:RLUSSearchStruct> 19384 </soap:Body> 19385 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="9733"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="9733"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 19386 <soapenv:Header/> 19387 <soapenv:Body> 19388 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 19389 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 19390 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="67dc11fb-1299-43a3-b8f5-46ecf6ea484e"/> 19391 <xdw:effectiveTime value="20140613172646+0200"/> 19392 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 19393 <xdw:patient> 19394 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 19395 </xdw:patient> 19396 <xdw:author> 19397 <xdw:assignedAuthor> 19398 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 19399 <hl7v3:assignedPerson/> 19400 </xdw:assignedAuthor> 19401 </xdw:author> 19402 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 19403 <xdw:workflowDocumentSequenceNumber>6</xdw:workflowDocumentSequenceNumber> 19404 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 19405 <xdw:workflowStatusHistory> 19406 <xdw:documentEvent> 19407 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19408 <xdw:eventType>complete</xdw:eventType> 19409 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 19410 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19411 <xdw:previousStatus>OPEN</xdw:previousStatus> 19412 <xdw:actualStatus>OPEN</xdw:actualStatus> 19413 </xdw:documentEvent> 19414 <xdw:documentEvent> 19415 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19416 <xdw:eventType>create</xdw:eventType> 19417 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 19418 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19419 <xdw:previousStatus>OPEN</xdw:previousStatus> 19420 <xdw:actualStatus>OPEN</xdw:actualStatus> 19421 </xdw:documentEvent> 19422 <xdw:documentEvent> 19423 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 19424 <xdw:eventType>create</xdw:eventType> 19425 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 19426 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19427 <xdw:previousStatus>OPEN</xdw:previousStatus> 19428 <xdw:actualStatus>OPEN</xdw:actualStatus> 19429 </xdw:documentEvent> 19430 </xdw:workflowStatusHistory> 19431 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 19432 <xdw:TaskList> 19433 <xdw:XDWTask> 19434 <xdw:taskData> 19435 <ws-ht:taskDetails> 19436 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 19437 <ws-ht:taskType>Requested</ws-ht:taskType> 19438 <ws-ht:name>xdw.creation</ws-ht:name> 19439 <ws-ht:status>COMPLETED</ws-ht:status> 19440 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19441 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 19442 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19443 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 19444 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19445 </ws-ht:taskDetails> 19446 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 19447 <ws-ht:input/> 19448 <ws-ht:output/> 19449 </xdw:taskData> 19450 <xdw:taskEventHistory> 19451 <xdw:taskEvent> 19452 <xdw:id>1</xdw:id> 19453 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19454 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 19455 <xdw:eventType>complete</xdw:eventType> 19456 <xdw:status>COMPLETED</xdw:status> 19457 <xdw:eventData xsi:nil="true"/> 19458 </xdw:taskEvent> 19459 </xdw:taskEventHistory> 19460 </xdw:XDWTask> 19461 <xdw:XDWTask> 19462 <xdw:taskData> 19463 <ws-ht:taskDetails> 19464 <ws-ht:id>task_0</ws-ht:id> 19465 <ws-ht:taskType>ttype</ws-ht:taskType> 19466 <ws-ht:name>tname_0</ws-ht:name> 19467 <ws-ht:status>COMPLETED</ws-ht:status> 19468 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19469 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 19470 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19471 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 19472 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19473 </ws-ht:taskDetails> 19474 <ws-ht:description>Undocumented task</ws-ht:description> 19475 <ws-ht:input/> 19476 <ws-ht:output> 19477 <ws-ht:part name="documentReference"> 19478 <ws-ht:attachment> 19479 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 19480 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 19481 <ws-ht:accessType>RLUS</ws-ht:accessType> 19482 <ws-ht:contentType>application/xml</ws-ht:contentType> 19483 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 19484 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 19485 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 19486 </ws-ht:attachment> 19487 </ws-ht:part> 19488 </ws-ht:output> 19489 </xdw:taskData> 19490 <xdw:taskEventHistory> 19491 <xdw:taskEvent> 19492 <xdw:id>1</xdw:id> 19493 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19494 <xdw:identifier>task_0#1</xdw:identifier> 19495 <xdw:eventType>create</xdw:eventType> 19496 <xdw:status>READY</xdw:status> 19497 <xdw:eventData xsi:nil="true"/> 19498 </xdw:taskEvent> 19499 <xdw:taskEvent> 19500 <xdw:id>2</xdw:id> 19501 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 19502 <xdw:identifier>task_0#2</xdw:identifier> 19503 <xdw:eventType>complete</xdw:eventType> 19504 <xdw:status>COMPLETED</xdw:status> 19505 <xdw:eventData xsi:nil="true"/> 19506 </xdw:taskEvent> 19507 </xdw:taskEventHistory> 19508 </xdw:XDWTask> 19509 <xdw:XDWTask> 19510 <xdw:taskData> 19511 <ws-ht:taskDetails> 19512 <ws-ht:id>task_1</ws-ht:id> 19513 <ws-ht:taskType>ttype</ws-ht:taskType> 19514 <ws-ht:name>tname_1</ws-ht:name> 19515 <ws-ht:status>READY</ws-ht:status> 19516 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19517 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 19518 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19519 <ws-ht:lastModifiedTime>2014-06-13T17:26:43.287+02:00</ws-ht:lastModifiedTime> 19520 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19521 </ws-ht:taskDetails> 19522 <ws-ht:description>Undocumented task</ws-ht:description> 19523 <ws-ht:input/> 19524 <ws-ht:output> 19525 <ws-ht:part name="documentReference"> 19526 <ws-ht:attachment> 19527 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 19528 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 19529 <ws-ht:accessType>RLUS</ws-ht:accessType> 19530 <ws-ht:contentType>application/xml</ws-ht:contentType> 19531 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 19532 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 19533 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 19534 </ws-ht:attachment> 19535 </ws-ht:part> 19536 </ws-ht:output> 19537 </xdw:taskData> 19538 <xdw:taskEventHistory> 19539 <xdw:taskEvent> 19540 <xdw:id>1</xdw:id> 19541 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 19542 <xdw:identifier>task_1#1</xdw:identifier> 19543 <xdw:eventType>create</xdw:eventType> 19544 <xdw:status>READY</xdw:status> 19545 <xdw:eventData xsi:nil="true"/> 19546 </xdw:taskEvent> 19547 </xdw:taskEventHistory> 19548 </xdw:XDWTask> 19549 </xdw:TaskList> 19550 </xdw:XDW.WorkflowDocument> 19551 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 19552 <rlustypes:success>true</rlustypes:success> 19553 <rlustypes:message>One record fetched</rlustypes:message> 19554 </rlustypes:RLUSStatusCode> 19555 </GetResponse> 19556 </soapenv:Body> 19557 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 19558 <soap:Header/> 19559 <soap:Body> 19560 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 19561 <rlustypes:searchByCriteria> 19562 <rlustypes:FilterCriteria> 19563 <rlustypes:Expression> 19564 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 19565 <rlusexp:Operator type="EqualTo"/> 19566 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 19567 </rlustypes:Expression> 19568 </rlustypes:FilterCriteria> 19569 <rlustypes:SearchAttributes> 19570 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 19571 </rlustypes:SearchAttributes> 19572 </rlustypes:searchByCriteria> 19573 </rlustypes:RLUSSearchStruct> 19574 </soap:Body> 19575 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="9733"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="9733"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 19576 <soapenv:Header/> 19577 <soapenv:Body> 19578 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 19579 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 19580 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="67dc11fb-1299-43a3-b8f5-46ecf6ea484e"/> 19581 <xdw:effectiveTime value="20140613172646+0200"/> 19582 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 19583 <xdw:patient> 19584 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 19585 </xdw:patient> 19586 <xdw:author> 19587 <xdw:assignedAuthor> 19588 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 19589 <hl7v3:assignedPerson/> 19590 </xdw:assignedAuthor> 19591 </xdw:author> 19592 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 19593 <xdw:workflowDocumentSequenceNumber>6</xdw:workflowDocumentSequenceNumber> 19594 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 19595 <xdw:workflowStatusHistory> 19596 <xdw:documentEvent> 19597 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19598 <xdw:eventType>complete</xdw:eventType> 19599 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 19600 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19601 <xdw:previousStatus>OPEN</xdw:previousStatus> 19602 <xdw:actualStatus>OPEN</xdw:actualStatus> 19603 </xdw:documentEvent> 19604 <xdw:documentEvent> 19605 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19606 <xdw:eventType>create</xdw:eventType> 19607 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 19608 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19609 <xdw:previousStatus>OPEN</xdw:previousStatus> 19610 <xdw:actualStatus>OPEN</xdw:actualStatus> 19611 </xdw:documentEvent> 19612 <xdw:documentEvent> 19613 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 19614 <xdw:eventType>create</xdw:eventType> 19615 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 19616 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19617 <xdw:previousStatus>OPEN</xdw:previousStatus> 19618 <xdw:actualStatus>OPEN</xdw:actualStatus> 19619 </xdw:documentEvent> 19620 </xdw:workflowStatusHistory> 19621 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 19622 <xdw:TaskList> 19623 <xdw:XDWTask> 19624 <xdw:taskData> 19625 <ws-ht:taskDetails> 19626 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 19627 <ws-ht:taskType>Requested</ws-ht:taskType> 19628 <ws-ht:name>xdw.creation</ws-ht:name> 19629 <ws-ht:status>COMPLETED</ws-ht:status> 19630 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19631 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 19632 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19633 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 19634 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19635 </ws-ht:taskDetails> 19636 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 19637 <ws-ht:input/> 19638 <ws-ht:output/> 19639 </xdw:taskData> 19640 <xdw:taskEventHistory> 19641 <xdw:taskEvent> 19642 <xdw:id>1</xdw:id> 19643 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19644 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 19645 <xdw:eventType>complete</xdw:eventType> 19646 <xdw:status>COMPLETED</xdw:status> 19647 <xdw:eventData xsi:nil="true"/> 19648 </xdw:taskEvent> 19649 </xdw:taskEventHistory> 19650 </xdw:XDWTask> 19651 <xdw:XDWTask> 19652 <xdw:taskData> 19653 <ws-ht:taskDetails> 19654 <ws-ht:id>task_0</ws-ht:id> 19655 <ws-ht:taskType>ttype</ws-ht:taskType> 19656 <ws-ht:name>tname_0</ws-ht:name> 19657 <ws-ht:status>COMPLETED</ws-ht:status> 19658 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19659 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 19660 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19661 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 19662 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19663 </ws-ht:taskDetails> 19664 <ws-ht:description>Undocumented task</ws-ht:description> 19665 <ws-ht:input/> 19666 <ws-ht:output> 19667 <ws-ht:part name="documentReference"> 19668 <ws-ht:attachment> 19669 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 19670 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 19671 <ws-ht:accessType>RLUS</ws-ht:accessType> 19672 <ws-ht:contentType>application/xml</ws-ht:contentType> 19673 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 19674 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 19675 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 19676 </ws-ht:attachment> 19677 </ws-ht:part> 19678 </ws-ht:output> 19679 </xdw:taskData> 19680 <xdw:taskEventHistory> 19681 <xdw:taskEvent> 19682 <xdw:id>1</xdw:id> 19683 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19684 <xdw:identifier>task_0#1</xdw:identifier> 19685 <xdw:eventType>create</xdw:eventType> 19686 <xdw:status>READY</xdw:status> 19687 <xdw:eventData xsi:nil="true"/> 19688 </xdw:taskEvent> 19689 <xdw:taskEvent> 19690 <xdw:id>2</xdw:id> 19691 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 19692 <xdw:identifier>task_0#2</xdw:identifier> 19693 <xdw:eventType>complete</xdw:eventType> 19694 <xdw:status>COMPLETED</xdw:status> 19695 <xdw:eventData xsi:nil="true"/> 19696 </xdw:taskEvent> 19697 </xdw:taskEventHistory> 19698 </xdw:XDWTask> 19699 <xdw:XDWTask> 19700 <xdw:taskData> 19701 <ws-ht:taskDetails> 19702 <ws-ht:id>task_1</ws-ht:id> 19703 <ws-ht:taskType>ttype</ws-ht:taskType> 19704 <ws-ht:name>tname_1</ws-ht:name> 19705 <ws-ht:status>READY</ws-ht:status> 19706 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19707 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 19708 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19709 <ws-ht:lastModifiedTime>2014-06-13T17:26:43.287+02:00</ws-ht:lastModifiedTime> 19710 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19711 </ws-ht:taskDetails> 19712 <ws-ht:description>Undocumented task</ws-ht:description> 19713 <ws-ht:input/> 19714 <ws-ht:output> 19715 <ws-ht:part name="documentReference"> 19716 <ws-ht:attachment> 19717 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 19718 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 19719 <ws-ht:accessType>RLUS</ws-ht:accessType> 19720 <ws-ht:contentType>application/xml</ws-ht:contentType> 19721 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 19722 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 19723 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 19724 </ws-ht:attachment> 19725 </ws-ht:part> 19726 </ws-ht:output> 19727 </xdw:taskData> 19728 <xdw:taskEventHistory> 19729 <xdw:taskEvent> 19730 <xdw:id>1</xdw:id> 19731 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 19732 <xdw:identifier>task_1#1</xdw:identifier> 19733 <xdw:eventType>create</xdw:eventType> 19734 <xdw:status>READY</xdw:status> 19735 <xdw:eventData xsi:nil="true"/> 19736 </xdw:taskEvent> 19737 </xdw:taskEventHistory> 19738 </xdw:XDWTask> 19739 </xdw:TaskList> 19740 </xdw:XDW.WorkflowDocument> 19741 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 19742 <rlustypes:success>true</rlustypes:success> 19743 <rlustypes:message>One record fetched</rlustypes:message> 19744 </rlustypes:RLUSStatusCode> 19745 </GetResponse> 19746 </soapenv:Body> 19747 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="10561"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="10561"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 19748 <soap:Header/> 19749 <soap:Body> 19750 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 19751 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 19752 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="02da2cc5-2076-472e-bc48-428a3189c18a"/> 19753 <xdw:effectiveTime value="20140613172647+0200"/> 19754 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 19755 <xdw:patient> 19756 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 19757 </xdw:patient> 19758 <xdw:author> 19759 <xdw:assignedAuthor> 19760 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 19761 <hl7v3:assignedPerson/> 19762 </xdw:assignedAuthor> 19763 </xdw:author> 19764 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 19765 <xdw:workflowDocumentSequenceNumber>7</xdw:workflowDocumentSequenceNumber> 19766 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 19767 <xdw:workflowStatusHistory> 19768 <xdw:documentEvent> 19769 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19770 <xdw:eventType>complete</xdw:eventType> 19771 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 19772 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19773 <xdw:previousStatus>OPEN</xdw:previousStatus> 19774 <xdw:actualStatus>OPEN</xdw:actualStatus> 19775 </xdw:documentEvent> 19776 <xdw:documentEvent> 19777 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19778 <xdw:eventType>create</xdw:eventType> 19779 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 19780 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19781 <xdw:previousStatus>OPEN</xdw:previousStatus> 19782 <xdw:actualStatus>OPEN</xdw:actualStatus> 19783 </xdw:documentEvent> 19784 <xdw:documentEvent> 19785 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 19786 <xdw:eventType>create</xdw:eventType> 19787 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 19788 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19789 <xdw:previousStatus>OPEN</xdw:previousStatus> 19790 <xdw:actualStatus>OPEN</xdw:actualStatus> 19791 </xdw:documentEvent> 19792 </xdw:workflowStatusHistory> 19793 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 19794 <xdw:TaskList> 19795 <xdw:XDWTask> 19796 <xdw:taskData> 19797 <ws-ht:taskDetails> 19798 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 19799 <ws-ht:taskType>Requested</ws-ht:taskType> 19800 <ws-ht:name>xdw.creation</ws-ht:name> 19801 <ws-ht:status>COMPLETED</ws-ht:status> 19802 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19803 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 19804 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19805 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 19806 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19807 </ws-ht:taskDetails> 19808 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 19809 <ws-ht:input/> 19810 <ws-ht:output/> 19811 </xdw:taskData> 19812 <xdw:taskEventHistory> 19813 <xdw:taskEvent> 19814 <xdw:id>1</xdw:id> 19815 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19816 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 19817 <xdw:eventType>complete</xdw:eventType> 19818 <xdw:status>COMPLETED</xdw:status> 19819 <xdw:eventData xsi:nil="true"/> 19820 </xdw:taskEvent> 19821 </xdw:taskEventHistory> 19822 </xdw:XDWTask> 19823 <xdw:XDWTask> 19824 <xdw:taskData> 19825 <ws-ht:taskDetails> 19826 <ws-ht:id>task_0</ws-ht:id> 19827 <ws-ht:taskType>ttype</ws-ht:taskType> 19828 <ws-ht:name>tname_0</ws-ht:name> 19829 <ws-ht:status>COMPLETED</ws-ht:status> 19830 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19831 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 19832 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19833 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 19834 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19835 </ws-ht:taskDetails> 19836 <ws-ht:description>Undocumented task</ws-ht:description> 19837 <ws-ht:input/> 19838 <ws-ht:output> 19839 <ws-ht:part name="documentReference"> 19840 <ws-ht:attachment> 19841 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 19842 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 19843 <ws-ht:accessType>RLUS</ws-ht:accessType> 19844 <ws-ht:contentType>application/xml</ws-ht:contentType> 19845 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 19846 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 19847 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 19848 </ws-ht:attachment> 19849 </ws-ht:part> 19850 </ws-ht:output> 19851 </xdw:taskData> 19852 <xdw:taskEventHistory> 19853 <xdw:taskEvent> 19854 <xdw:id>1</xdw:id> 19855 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19856 <xdw:identifier>task_0#1</xdw:identifier> 19857 <xdw:eventType>create</xdw:eventType> 19858 <xdw:status>READY</xdw:status> 19859 <xdw:eventData xsi:nil="true"/> 19860 </xdw:taskEvent> 19861 <xdw:taskEvent> 19862 <xdw:id>2</xdw:id> 19863 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 19864 <xdw:identifier>task_0#2</xdw:identifier> 19865 <xdw:eventType>complete</xdw:eventType> 19866 <xdw:status>COMPLETED</xdw:status> 19867 <xdw:eventData xsi:nil="true"/> 19868 </xdw:taskEvent> 19869 </xdw:taskEventHistory> 19870 </xdw:XDWTask> 19871 <xdw:XDWTask> 19872 <xdw:taskData> 19873 <ws-ht:taskDetails> 19874 <ws-ht:id>task_1</ws-ht:id> 19875 <ws-ht:taskType>ttype</ws-ht:taskType> 19876 <ws-ht:name>tname_1</ws-ht:name> 19877 <ws-ht:status>COMPLETED</ws-ht:status> 19878 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 19879 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 19880 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 19881 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 19882 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 19883 </ws-ht:taskDetails> 19884 <ws-ht:description>Undocumented task</ws-ht:description> 19885 <ws-ht:input/> 19886 <ws-ht:output> 19887 <ws-ht:part name="documentReference"> 19888 <ws-ht:attachment> 19889 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 19890 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 19891 <ws-ht:accessType>RLUS</ws-ht:accessType> 19892 <ws-ht:contentType>application/xml</ws-ht:contentType> 19893 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 19894 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 19895 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 19896 </ws-ht:attachment> 19897 </ws-ht:part> 19898 </ws-ht:output> 19899 </xdw:taskData> 19900 <xdw:taskEventHistory> 19901 <xdw:taskEvent> 19902 <xdw:id>1</xdw:id> 19903 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 19904 <xdw:identifier>task_1#1</xdw:identifier> 19905 <xdw:eventType>create</xdw:eventType> 19906 <xdw:status>READY</xdw:status> 19907 <xdw:eventData xsi:nil="true"/> 19908 </xdw:taskEvent> 19909 <xdw:taskEvent> 19910 <xdw:id>2</xdw:id> 19911 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 19912 <xdw:identifier>task_1#2</xdw:identifier> 19913 <xdw:eventType>complete</xdw:eventType> 19914 <xdw:status>COMPLETED</xdw:status> 19915 <xdw:eventData xsi:nil="true"/> 19916 </xdw:taskEvent> 19917 </xdw:taskEventHistory> 19918 </xdw:XDWTask> 19919 </xdw:TaskList> 19920 </xdw:XDW.WorkflowDocument> 19921 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 19922 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 19923 <rlustypes:SecurityContext> 19924 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 19925 </rlustypes:SecurityContext> 19926 <rlustypes:CBRContext> 19927 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 19928 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 19929 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 19930 </rlustypes:CBRContext> 19931 </rlustypes:RLUSPutRequestSrcStruct> 19932 <writeCommandEnum>UPDATE</writeCommandEnum> 19933 </PutRequest> 19934 </soap:Body> 19935 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 19936 <soapenv:Header/> 19937 <soapenv:Body> 19938 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 19939 <rlustypes:success>true</rlustypes:success> 19940 <rlustypes:message/> 19941 </rlustypes:RLUSStatusCode> 19942 </soapenv:Body> 19943 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 19944 <soap:Header/> 19945 <soap:Body> 19946 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 19947 <rlustypes:searchByCriteria> 19948 <rlustypes:FilterCriteria> 19949 <rlustypes:Expression> 19950 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 19951 <rlusexp:Operator type="EqualTo"/> 19952 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 19953 </rlustypes:Expression> 19954 </rlustypes:FilterCriteria> 19955 <rlustypes:SearchAttributes> 19956 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 19957 </rlustypes:SearchAttributes> 19958 </rlustypes:searchByCriteria> 19959 </rlustypes:RLUSSearchStruct> 19960 </soap:Body> 19961 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="10123"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="10123"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 19962 <soapenv:Header/> 19963 <soapenv:Body> 19964 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 19965 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 19966 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="02da2cc5-2076-472e-bc48-428a3189c18a"/> 19967 <xdw:effectiveTime value="20140613172647+0200"/> 19968 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 19969 <xdw:patient> 19970 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 19971 </xdw:patient> 19972 <xdw:author> 19973 <xdw:assignedAuthor> 19974 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 19975 <hl7v3:assignedPerson/> 19976 </xdw:assignedAuthor> 19977 </xdw:author> 19978 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 19979 <xdw:workflowDocumentSequenceNumber>7</xdw:workflowDocumentSequenceNumber> 19980 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 19981 <xdw:workflowStatusHistory> 19982 <xdw:documentEvent> 19983 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 19984 <xdw:eventType>complete</xdw:eventType> 19985 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 19986 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19987 <xdw:previousStatus>OPEN</xdw:previousStatus> 19988 <xdw:actualStatus>OPEN</xdw:actualStatus> 19989 </xdw:documentEvent> 19990 <xdw:documentEvent> 19991 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 19992 <xdw:eventType>create</xdw:eventType> 19993 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 19994 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 19995 <xdw:previousStatus>OPEN</xdw:previousStatus> 19996 <xdw:actualStatus>OPEN</xdw:actualStatus> 19997 </xdw:documentEvent> 19998 <xdw:documentEvent> 19999 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 20000 <xdw:eventType>create</xdw:eventType> 20001 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 20002 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20003 <xdw:previousStatus>OPEN</xdw:previousStatus> 20004 <xdw:actualStatus>OPEN</xdw:actualStatus> 20005 </xdw:documentEvent> 20006 </xdw:workflowStatusHistory> 20007 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 20008 <xdw:TaskList> 20009 <xdw:XDWTask> 20010 <xdw:taskData> 20011 <ws-ht:taskDetails> 20012 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 20013 <ws-ht:taskType>Requested</ws-ht:taskType> 20014 <ws-ht:name>xdw.creation</ws-ht:name> 20015 <ws-ht:status>COMPLETED</ws-ht:status> 20016 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20017 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 20018 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20019 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 20020 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20021 </ws-ht:taskDetails> 20022 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 20023 <ws-ht:input/> 20024 <ws-ht:output/> 20025 </xdw:taskData> 20026 <xdw:taskEventHistory> 20027 <xdw:taskEvent> 20028 <xdw:id>1</xdw:id> 20029 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 20030 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 20031 <xdw:eventType>complete</xdw:eventType> 20032 <xdw:status>COMPLETED</xdw:status> 20033 <xdw:eventData xsi:nil="true"/> 20034 </xdw:taskEvent> 20035 </xdw:taskEventHistory> 20036 </xdw:XDWTask> 20037 <xdw:XDWTask> 20038 <xdw:taskData> 20039 <ws-ht:taskDetails> 20040 <ws-ht:id>task_0</ws-ht:id> 20041 <ws-ht:taskType>ttype</ws-ht:taskType> 20042 <ws-ht:name>tname_0</ws-ht:name> 20043 <ws-ht:status>COMPLETED</ws-ht:status> 20044 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20045 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 20046 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20047 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 20048 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20049 </ws-ht:taskDetails> 20050 <ws-ht:description>Undocumented task</ws-ht:description> 20051 <ws-ht:input/> 20052 <ws-ht:output> 20053 <ws-ht:part name="documentReference"> 20054 <ws-ht:attachment> 20055 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 20056 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 20057 <ws-ht:accessType>RLUS</ws-ht:accessType> 20058 <ws-ht:contentType>application/xml</ws-ht:contentType> 20059 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 20060 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 20061 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 20062 </ws-ht:attachment> 20063 </ws-ht:part> 20064 </ws-ht:output> 20065 </xdw:taskData> 20066 <xdw:taskEventHistory> 20067 <xdw:taskEvent> 20068 <xdw:id>1</xdw:id> 20069 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 20070 <xdw:identifier>task_0#1</xdw:identifier> 20071 <xdw:eventType>create</xdw:eventType> 20072 <xdw:status>READY</xdw:status> 20073 <xdw:eventData xsi:nil="true"/> 20074 </xdw:taskEvent> 20075 <xdw:taskEvent> 20076 <xdw:id>2</xdw:id> 20077 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 20078 <xdw:identifier>task_0#2</xdw:identifier> 20079 <xdw:eventType>complete</xdw:eventType> 20080 <xdw:status>COMPLETED</xdw:status> 20081 <xdw:eventData xsi:nil="true"/> 20082 </xdw:taskEvent> 20083 </xdw:taskEventHistory> 20084 </xdw:XDWTask> 20085 <xdw:XDWTask> 20086 <xdw:taskData> 20087 <ws-ht:taskDetails> 20088 <ws-ht:id>task_1</ws-ht:id> 20089 <ws-ht:taskType>ttype</ws-ht:taskType> 20090 <ws-ht:name>tname_1</ws-ht:name> 20091 <ws-ht:status>COMPLETED</ws-ht:status> 20092 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20093 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 20094 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20095 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 20096 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20097 </ws-ht:taskDetails> 20098 <ws-ht:description>Undocumented task</ws-ht:description> 20099 <ws-ht:input/> 20100 <ws-ht:output> 20101 <ws-ht:part name="documentReference"> 20102 <ws-ht:attachment> 20103 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 20104 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 20105 <ws-ht:accessType>RLUS</ws-ht:accessType> 20106 <ws-ht:contentType>application/xml</ws-ht:contentType> 20107 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 20108 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 20109 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 20110 </ws-ht:attachment> 20111 </ws-ht:part> 20112 </ws-ht:output> 20113 </xdw:taskData> 20114 <xdw:taskEventHistory> 20115 <xdw:taskEvent> 20116 <xdw:id>1</xdw:id> 20117 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 20118 <xdw:identifier>task_1#1</xdw:identifier> 20119 <xdw:eventType>create</xdw:eventType> 20120 <xdw:status>READY</xdw:status> 20121 <xdw:eventData xsi:nil="true"/> 20122 </xdw:taskEvent> 20123 <xdw:taskEvent> 20124 <xdw:id>2</xdw:id> 20125 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 20126 <xdw:identifier>task_1#2</xdw:identifier> 20127 <xdw:eventType>complete</xdw:eventType> 20128 <xdw:status>COMPLETED</xdw:status> 20129 <xdw:eventData xsi:nil="true"/> 20130 </xdw:taskEvent> 20131 </xdw:taskEventHistory> 20132 </xdw:XDWTask> 20133 </xdw:TaskList> 20134 </xdw:XDW.WorkflowDocument> 20135 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 20136 <rlustypes:success>true</rlustypes:success> 20137 <rlustypes:message>One record fetched</rlustypes:message> 20138 </rlustypes:RLUSStatusCode> 20139 </GetResponse> 20140 </soapenv:Body> 20141 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 20142 <soap:Header/> 20143 <soap:Body> 20144 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 20145 <rlustypes:searchByCriteria> 20146 <rlustypes:FilterCriteria> 20147 <rlustypes:Expression> 20148 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 20149 <rlusexp:Operator type="EqualTo"/> 20150 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 20151 </rlustypes:Expression> 20152 </rlustypes:FilterCriteria> 20153 <rlustypes:SearchAttributes> 20154 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 20155 </rlustypes:SearchAttributes> 20156 </rlustypes:searchByCriteria> 20157 </rlustypes:RLUSSearchStruct> 20158 </soap:Body> 20159 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="10123"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="10123"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 20160 <soapenv:Header/> 20161 <soapenv:Body> 20162 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 20163 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 20164 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="02da2cc5-2076-472e-bc48-428a3189c18a"/> 20165 <xdw:effectiveTime value="20140613172647+0200"/> 20166 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 20167 <xdw:patient> 20168 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 20169 </xdw:patient> 20170 <xdw:author> 20171 <xdw:assignedAuthor> 20172 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 20173 <hl7v3:assignedPerson/> 20174 </xdw:assignedAuthor> 20175 </xdw:author> 20176 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 20177 <xdw:workflowDocumentSequenceNumber>7</xdw:workflowDocumentSequenceNumber> 20178 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 20179 <xdw:workflowStatusHistory> 20180 <xdw:documentEvent> 20181 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 20182 <xdw:eventType>complete</xdw:eventType> 20183 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 20184 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20185 <xdw:previousStatus>OPEN</xdw:previousStatus> 20186 <xdw:actualStatus>OPEN</xdw:actualStatus> 20187 </xdw:documentEvent> 20188 <xdw:documentEvent> 20189 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 20190 <xdw:eventType>create</xdw:eventType> 20191 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 20192 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20193 <xdw:previousStatus>OPEN</xdw:previousStatus> 20194 <xdw:actualStatus>OPEN</xdw:actualStatus> 20195 </xdw:documentEvent> 20196 <xdw:documentEvent> 20197 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 20198 <xdw:eventType>create</xdw:eventType> 20199 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 20200 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20201 <xdw:previousStatus>OPEN</xdw:previousStatus> 20202 <xdw:actualStatus>OPEN</xdw:actualStatus> 20203 </xdw:documentEvent> 20204 </xdw:workflowStatusHistory> 20205 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 20206 <xdw:TaskList> 20207 <xdw:XDWTask> 20208 <xdw:taskData> 20209 <ws-ht:taskDetails> 20210 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 20211 <ws-ht:taskType>Requested</ws-ht:taskType> 20212 <ws-ht:name>xdw.creation</ws-ht:name> 20213 <ws-ht:status>COMPLETED</ws-ht:status> 20214 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20215 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 20216 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20217 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 20218 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20219 </ws-ht:taskDetails> 20220 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 20221 <ws-ht:input/> 20222 <ws-ht:output/> 20223 </xdw:taskData> 20224 <xdw:taskEventHistory> 20225 <xdw:taskEvent> 20226 <xdw:id>1</xdw:id> 20227 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 20228 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 20229 <xdw:eventType>complete</xdw:eventType> 20230 <xdw:status>COMPLETED</xdw:status> 20231 <xdw:eventData xsi:nil="true"/> 20232 </xdw:taskEvent> 20233 </xdw:taskEventHistory> 20234 </xdw:XDWTask> 20235 <xdw:XDWTask> 20236 <xdw:taskData> 20237 <ws-ht:taskDetails> 20238 <ws-ht:id>task_0</ws-ht:id> 20239 <ws-ht:taskType>ttype</ws-ht:taskType> 20240 <ws-ht:name>tname_0</ws-ht:name> 20241 <ws-ht:status>COMPLETED</ws-ht:status> 20242 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20243 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 20244 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20245 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 20246 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20247 </ws-ht:taskDetails> 20248 <ws-ht:description>Undocumented task</ws-ht:description> 20249 <ws-ht:input/> 20250 <ws-ht:output> 20251 <ws-ht:part name="documentReference"> 20252 <ws-ht:attachment> 20253 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 20254 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 20255 <ws-ht:accessType>RLUS</ws-ht:accessType> 20256 <ws-ht:contentType>application/xml</ws-ht:contentType> 20257 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 20258 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 20259 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 20260 </ws-ht:attachment> 20261 </ws-ht:part> 20262 </ws-ht:output> 20263 </xdw:taskData> 20264 <xdw:taskEventHistory> 20265 <xdw:taskEvent> 20266 <xdw:id>1</xdw:id> 20267 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 20268 <xdw:identifier>task_0#1</xdw:identifier> 20269 <xdw:eventType>create</xdw:eventType> 20270 <xdw:status>READY</xdw:status> 20271 <xdw:eventData xsi:nil="true"/> 20272 </xdw:taskEvent> 20273 <xdw:taskEvent> 20274 <xdw:id>2</xdw:id> 20275 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 20276 <xdw:identifier>task_0#2</xdw:identifier> 20277 <xdw:eventType>complete</xdw:eventType> 20278 <xdw:status>COMPLETED</xdw:status> 20279 <xdw:eventData xsi:nil="true"/> 20280 </xdw:taskEvent> 20281 </xdw:taskEventHistory> 20282 </xdw:XDWTask> 20283 <xdw:XDWTask> 20284 <xdw:taskData> 20285 <ws-ht:taskDetails> 20286 <ws-ht:id>task_1</ws-ht:id> 20287 <ws-ht:taskType>ttype</ws-ht:taskType> 20288 <ws-ht:name>tname_1</ws-ht:name> 20289 <ws-ht:status>COMPLETED</ws-ht:status> 20290 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20291 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 20292 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20293 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 20294 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20295 </ws-ht:taskDetails> 20296 <ws-ht:description>Undocumented task</ws-ht:description> 20297 <ws-ht:input/> 20298 <ws-ht:output> 20299 <ws-ht:part name="documentReference"> 20300 <ws-ht:attachment> 20301 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 20302 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 20303 <ws-ht:accessType>RLUS</ws-ht:accessType> 20304 <ws-ht:contentType>application/xml</ws-ht:contentType> 20305 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 20306 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 20307 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 20308 </ws-ht:attachment> 20309 </ws-ht:part> 20310 </ws-ht:output> 20311 </xdw:taskData> 20312 <xdw:taskEventHistory> 20313 <xdw:taskEvent> 20314 <xdw:id>1</xdw:id> 20315 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 20316 <xdw:identifier>task_1#1</xdw:identifier> 20317 <xdw:eventType>create</xdw:eventType> 20318 <xdw:status>READY</xdw:status> 20319 <xdw:eventData xsi:nil="true"/> 20320 </xdw:taskEvent> 20321 <xdw:taskEvent> 20322 <xdw:id>2</xdw:id> 20323 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 20324 <xdw:identifier>task_1#2</xdw:identifier> 20325 <xdw:eventType>complete</xdw:eventType> 20326 <xdw:status>COMPLETED</xdw:status> 20327 <xdw:eventData xsi:nil="true"/> 20328 </xdw:taskEvent> 20329 </xdw:taskEventHistory> 20330 </xdw:XDWTask> 20331 </xdw:TaskList> 20332 </xdw:XDW.WorkflowDocument> 20333 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 20334 <rlustypes:success>true</rlustypes:success> 20335 <rlustypes:message>One record fetched</rlustypes:message> 20336 </rlustypes:RLUSStatusCode> 20337 </GetResponse> 20338 </soapenv:Body> 20339 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 20340 <soap:Header/> 20341 <soap:Body> 20342 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 20343 <rlustypes:searchByCriteria> 20344 <rlustypes:FilterCriteria> 20345 <rlustypes:Expression> 20346 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 20347 <rlusexp:Operator type="EqualTo"/> 20348 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 20349 </rlustypes:Expression> 20350 </rlustypes:FilterCriteria> 20351 <rlustypes:SearchAttributes> 20352 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 20353 </rlustypes:SearchAttributes> 20354 </rlustypes:searchByCriteria> 20355 </rlustypes:RLUSSearchStruct> 20356 </soap:Body> 20357 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="10123"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="10123"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 20358 <soapenv:Header/> 20359 <soapenv:Body> 20360 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 20361 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 20362 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="02da2cc5-2076-472e-bc48-428a3189c18a"/> 20363 <xdw:effectiveTime value="20140613172647+0200"/> 20364 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 20365 <xdw:patient> 20366 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 20367 </xdw:patient> 20368 <xdw:author> 20369 <xdw:assignedAuthor> 20370 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 20371 <hl7v3:assignedPerson/> 20372 </xdw:assignedAuthor> 20373 </xdw:author> 20374 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 20375 <xdw:workflowDocumentSequenceNumber>7</xdw:workflowDocumentSequenceNumber> 20376 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 20377 <xdw:workflowStatusHistory> 20378 <xdw:documentEvent> 20379 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 20380 <xdw:eventType>complete</xdw:eventType> 20381 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 20382 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20383 <xdw:previousStatus>OPEN</xdw:previousStatus> 20384 <xdw:actualStatus>OPEN</xdw:actualStatus> 20385 </xdw:documentEvent> 20386 <xdw:documentEvent> 20387 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 20388 <xdw:eventType>create</xdw:eventType> 20389 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 20390 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20391 <xdw:previousStatus>OPEN</xdw:previousStatus> 20392 <xdw:actualStatus>OPEN</xdw:actualStatus> 20393 </xdw:documentEvent> 20394 <xdw:documentEvent> 20395 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 20396 <xdw:eventType>create</xdw:eventType> 20397 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 20398 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20399 <xdw:previousStatus>OPEN</xdw:previousStatus> 20400 <xdw:actualStatus>OPEN</xdw:actualStatus> 20401 </xdw:documentEvent> 20402 </xdw:workflowStatusHistory> 20403 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 20404 <xdw:TaskList> 20405 <xdw:XDWTask> 20406 <xdw:taskData> 20407 <ws-ht:taskDetails> 20408 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 20409 <ws-ht:taskType>Requested</ws-ht:taskType> 20410 <ws-ht:name>xdw.creation</ws-ht:name> 20411 <ws-ht:status>COMPLETED</ws-ht:status> 20412 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20413 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 20414 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20415 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 20416 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20417 </ws-ht:taskDetails> 20418 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 20419 <ws-ht:input/> 20420 <ws-ht:output/> 20421 </xdw:taskData> 20422 <xdw:taskEventHistory> 20423 <xdw:taskEvent> 20424 <xdw:id>1</xdw:id> 20425 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 20426 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 20427 <xdw:eventType>complete</xdw:eventType> 20428 <xdw:status>COMPLETED</xdw:status> 20429 <xdw:eventData xsi:nil="true"/> 20430 </xdw:taskEvent> 20431 </xdw:taskEventHistory> 20432 </xdw:XDWTask> 20433 <xdw:XDWTask> 20434 <xdw:taskData> 20435 <ws-ht:taskDetails> 20436 <ws-ht:id>task_0</ws-ht:id> 20437 <ws-ht:taskType>ttype</ws-ht:taskType> 20438 <ws-ht:name>tname_0</ws-ht:name> 20439 <ws-ht:status>COMPLETED</ws-ht:status> 20440 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20441 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 20442 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20443 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 20444 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20445 </ws-ht:taskDetails> 20446 <ws-ht:description>Undocumented task</ws-ht:description> 20447 <ws-ht:input/> 20448 <ws-ht:output> 20449 <ws-ht:part name="documentReference"> 20450 <ws-ht:attachment> 20451 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 20452 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 20453 <ws-ht:accessType>RLUS</ws-ht:accessType> 20454 <ws-ht:contentType>application/xml</ws-ht:contentType> 20455 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 20456 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 20457 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 20458 </ws-ht:attachment> 20459 </ws-ht:part> 20460 </ws-ht:output> 20461 </xdw:taskData> 20462 <xdw:taskEventHistory> 20463 <xdw:taskEvent> 20464 <xdw:id>1</xdw:id> 20465 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 20466 <xdw:identifier>task_0#1</xdw:identifier> 20467 <xdw:eventType>create</xdw:eventType> 20468 <xdw:status>READY</xdw:status> 20469 <xdw:eventData xsi:nil="true"/> 20470 </xdw:taskEvent> 20471 <xdw:taskEvent> 20472 <xdw:id>2</xdw:id> 20473 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 20474 <xdw:identifier>task_0#2</xdw:identifier> 20475 <xdw:eventType>complete</xdw:eventType> 20476 <xdw:status>COMPLETED</xdw:status> 20477 <xdw:eventData xsi:nil="true"/> 20478 </xdw:taskEvent> 20479 </xdw:taskEventHistory> 20480 </xdw:XDWTask> 20481 <xdw:XDWTask> 20482 <xdw:taskData> 20483 <ws-ht:taskDetails> 20484 <ws-ht:id>task_1</ws-ht:id> 20485 <ws-ht:taskType>ttype</ws-ht:taskType> 20486 <ws-ht:name>tname_1</ws-ht:name> 20487 <ws-ht:status>COMPLETED</ws-ht:status> 20488 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20489 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 20490 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20491 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 20492 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20493 </ws-ht:taskDetails> 20494 <ws-ht:description>Undocumented task</ws-ht:description> 20495 <ws-ht:input/> 20496 <ws-ht:output> 20497 <ws-ht:part name="documentReference"> 20498 <ws-ht:attachment> 20499 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 20500 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 20501 <ws-ht:accessType>RLUS</ws-ht:accessType> 20502 <ws-ht:contentType>application/xml</ws-ht:contentType> 20503 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 20504 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 20505 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 20506 </ws-ht:attachment> 20507 </ws-ht:part> 20508 </ws-ht:output> 20509 </xdw:taskData> 20510 <xdw:taskEventHistory> 20511 <xdw:taskEvent> 20512 <xdw:id>1</xdw:id> 20513 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 20514 <xdw:identifier>task_1#1</xdw:identifier> 20515 <xdw:eventType>create</xdw:eventType> 20516 <xdw:status>READY</xdw:status> 20517 <xdw:eventData xsi:nil="true"/> 20518 </xdw:taskEvent> 20519 <xdw:taskEvent> 20520 <xdw:id>2</xdw:id> 20521 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 20522 <xdw:identifier>task_1#2</xdw:identifier> 20523 <xdw:eventType>complete</xdw:eventType> 20524 <xdw:status>COMPLETED</xdw:status> 20525 <xdw:eventData xsi:nil="true"/> 20526 </xdw:taskEvent> 20527 </xdw:taskEventHistory> 20528 </xdw:XDWTask> 20529 </xdw:TaskList> 20530 </xdw:XDW.WorkflowDocument> 20531 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 20532 <rlustypes:success>true</rlustypes:success> 20533 <rlustypes:message>One record fetched</rlustypes:message> 20534 </rlustypes:RLUSStatusCode> 20535 </GetResponse> 20536 </soapenv:Body> 20537 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="12397"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="12397"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 20538 <soap:Header/> 20539 <soap:Body> 20540 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 20541 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 20542 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="60d5a2af-9a7d-4e0e-b850-d41f46151faf"/> 20543 <xdw:effectiveTime value="20140613172648+0200"/> 20544 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 20545 <xdw:patient> 20546 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 20547 </xdw:patient> 20548 <xdw:author> 20549 <xdw:assignedAuthor> 20550 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 20551 <hl7v3:assignedPerson/> 20552 </xdw:assignedAuthor> 20553 </xdw:author> 20554 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 20555 <xdw:workflowDocumentSequenceNumber>8</xdw:workflowDocumentSequenceNumber> 20556 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 20557 <xdw:workflowStatusHistory> 20558 <xdw:documentEvent> 20559 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 20560 <xdw:eventType>complete</xdw:eventType> 20561 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 20562 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20563 <xdw:previousStatus>OPEN</xdw:previousStatus> 20564 <xdw:actualStatus>OPEN</xdw:actualStatus> 20565 </xdw:documentEvent> 20566 <xdw:documentEvent> 20567 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 20568 <xdw:eventType>create</xdw:eventType> 20569 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 20570 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20571 <xdw:previousStatus>OPEN</xdw:previousStatus> 20572 <xdw:actualStatus>OPEN</xdw:actualStatus> 20573 </xdw:documentEvent> 20574 <xdw:documentEvent> 20575 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 20576 <xdw:eventType>create</xdw:eventType> 20577 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 20578 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20579 <xdw:previousStatus>OPEN</xdw:previousStatus> 20580 <xdw:actualStatus>OPEN</xdw:actualStatus> 20581 </xdw:documentEvent> 20582 <xdw:documentEvent> 20583 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 20584 <xdw:eventType>create</xdw:eventType> 20585 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 20586 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20587 <xdw:previousStatus>OPEN</xdw:previousStatus> 20588 <xdw:actualStatus>OPEN</xdw:actualStatus> 20589 </xdw:documentEvent> 20590 </xdw:workflowStatusHistory> 20591 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 20592 <xdw:TaskList> 20593 <xdw:XDWTask> 20594 <xdw:taskData> 20595 <ws-ht:taskDetails> 20596 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 20597 <ws-ht:taskType>Requested</ws-ht:taskType> 20598 <ws-ht:name>xdw.creation</ws-ht:name> 20599 <ws-ht:status>COMPLETED</ws-ht:status> 20600 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20601 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 20602 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20603 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 20604 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20605 </ws-ht:taskDetails> 20606 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 20607 <ws-ht:input/> 20608 <ws-ht:output/> 20609 </xdw:taskData> 20610 <xdw:taskEventHistory> 20611 <xdw:taskEvent> 20612 <xdw:id>1</xdw:id> 20613 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 20614 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 20615 <xdw:eventType>complete</xdw:eventType> 20616 <xdw:status>COMPLETED</xdw:status> 20617 <xdw:eventData xsi:nil="true"/> 20618 </xdw:taskEvent> 20619 </xdw:taskEventHistory> 20620 </xdw:XDWTask> 20621 <xdw:XDWTask> 20622 <xdw:taskData> 20623 <ws-ht:taskDetails> 20624 <ws-ht:id>task_0</ws-ht:id> 20625 <ws-ht:taskType>ttype</ws-ht:taskType> 20626 <ws-ht:name>tname_0</ws-ht:name> 20627 <ws-ht:status>COMPLETED</ws-ht:status> 20628 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20629 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 20630 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20631 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 20632 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20633 </ws-ht:taskDetails> 20634 <ws-ht:description>Undocumented task</ws-ht:description> 20635 <ws-ht:input/> 20636 <ws-ht:output> 20637 <ws-ht:part name="documentReference"> 20638 <ws-ht:attachment> 20639 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 20640 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 20641 <ws-ht:accessType>RLUS</ws-ht:accessType> 20642 <ws-ht:contentType>application/xml</ws-ht:contentType> 20643 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 20644 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 20645 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 20646 </ws-ht:attachment> 20647 </ws-ht:part> 20648 </ws-ht:output> 20649 </xdw:taskData> 20650 <xdw:taskEventHistory> 20651 <xdw:taskEvent> 20652 <xdw:id>1</xdw:id> 20653 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 20654 <xdw:identifier>task_0#1</xdw:identifier> 20655 <xdw:eventType>create</xdw:eventType> 20656 <xdw:status>READY</xdw:status> 20657 <xdw:eventData xsi:nil="true"/> 20658 </xdw:taskEvent> 20659 <xdw:taskEvent> 20660 <xdw:id>2</xdw:id> 20661 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 20662 <xdw:identifier>task_0#2</xdw:identifier> 20663 <xdw:eventType>complete</xdw:eventType> 20664 <xdw:status>COMPLETED</xdw:status> 20665 <xdw:eventData xsi:nil="true"/> 20666 </xdw:taskEvent> 20667 </xdw:taskEventHistory> 20668 </xdw:XDWTask> 20669 <xdw:XDWTask> 20670 <xdw:taskData> 20671 <ws-ht:taskDetails> 20672 <ws-ht:id>task_1</ws-ht:id> 20673 <ws-ht:taskType>ttype</ws-ht:taskType> 20674 <ws-ht:name>tname_1</ws-ht:name> 20675 <ws-ht:status>COMPLETED</ws-ht:status> 20676 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20677 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 20678 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20679 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 20680 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20681 </ws-ht:taskDetails> 20682 <ws-ht:description>Undocumented task</ws-ht:description> 20683 <ws-ht:input/> 20684 <ws-ht:output> 20685 <ws-ht:part name="documentReference"> 20686 <ws-ht:attachment> 20687 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 20688 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 20689 <ws-ht:accessType>RLUS</ws-ht:accessType> 20690 <ws-ht:contentType>application/xml</ws-ht:contentType> 20691 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 20692 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 20693 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 20694 </ws-ht:attachment> 20695 </ws-ht:part> 20696 </ws-ht:output> 20697 </xdw:taskData> 20698 <xdw:taskEventHistory> 20699 <xdw:taskEvent> 20700 <xdw:id>1</xdw:id> 20701 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 20702 <xdw:identifier>task_1#1</xdw:identifier> 20703 <xdw:eventType>create</xdw:eventType> 20704 <xdw:status>READY</xdw:status> 20705 <xdw:eventData xsi:nil="true"/> 20706 </xdw:taskEvent> 20707 <xdw:taskEvent> 20708 <xdw:id>2</xdw:id> 20709 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 20710 <xdw:identifier>task_1#2</xdw:identifier> 20711 <xdw:eventType>complete</xdw:eventType> 20712 <xdw:status>COMPLETED</xdw:status> 20713 <xdw:eventData xsi:nil="true"/> 20714 </xdw:taskEvent> 20715 </xdw:taskEventHistory> 20716 </xdw:XDWTask> 20717 <xdw:XDWTask> 20718 <xdw:taskData> 20719 <ws-ht:taskDetails> 20720 <ws-ht:id>task_2</ws-ht:id> 20721 <ws-ht:taskType>ttype</ws-ht:taskType> 20722 <ws-ht:name>tname_2</ws-ht:name> 20723 <ws-ht:status>READY</ws-ht:status> 20724 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20725 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 20726 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20727 <ws-ht:lastModifiedTime>2014-06-13T17:26:48.851+02:00</ws-ht:lastModifiedTime> 20728 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20729 </ws-ht:taskDetails> 20730 <ws-ht:description>Undocumented task</ws-ht:description> 20731 <ws-ht:input/> 20732 <ws-ht:output/> 20733 </xdw:taskData> 20734 <xdw:taskEventHistory> 20735 <xdw:taskEvent> 20736 <xdw:id>1</xdw:id> 20737 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 20738 <xdw:identifier>task_2#1</xdw:identifier> 20739 <xdw:eventType>create</xdw:eventType> 20740 <xdw:status>READY</xdw:status> 20741 <xdw:eventData xsi:nil="true"/> 20742 </xdw:taskEvent> 20743 </xdw:taskEventHistory> 20744 </xdw:XDWTask> 20745 </xdw:TaskList> 20746 </xdw:XDW.WorkflowDocument> 20747 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 20748 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 20749 <rlustypes:SecurityContext> 20750 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 20751 </rlustypes:SecurityContext> 20752 <rlustypes:CBRContext> 20753 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 20754 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 20755 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 20756 </rlustypes:CBRContext> 20757 </rlustypes:RLUSPutRequestSrcStruct> 20758 <writeCommandEnum>UPDATE</writeCommandEnum> 20759 </PutRequest> 20760 </soap:Body> 20761 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 20762 <soapenv:Header/> 20763 <soapenv:Body> 20764 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 20765 <rlustypes:success>true</rlustypes:success> 20766 <rlustypes:message/> 20767 </rlustypes:RLUSStatusCode> 20768 </soapenv:Body> 20769 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 20770 <soap:Header/> 20771 <soap:Body> 20772 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 20773 <rlustypes:searchByCriteria> 20774 <rlustypes:FilterCriteria> 20775 <rlustypes:Expression> 20776 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 20777 <rlusexp:Operator type="EqualTo"/> 20778 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 20779 </rlustypes:Expression> 20780 </rlustypes:FilterCriteria> 20781 <rlustypes:SearchAttributes> 20782 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 20783 </rlustypes:SearchAttributes> 20784 </rlustypes:searchByCriteria> 20785 </rlustypes:RLUSSearchStruct> 20786 </soap:Body> 20787 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="11959"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="11959"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 20788 <soapenv:Header/> 20789 <soapenv:Body> 20790 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 20791 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 20792 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="60d5a2af-9a7d-4e0e-b850-d41f46151faf"/> 20793 <xdw:effectiveTime value="20140613172648+0200"/> 20794 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 20795 <xdw:patient> 20796 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 20797 </xdw:patient> 20798 <xdw:author> 20799 <xdw:assignedAuthor> 20800 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 20801 <hl7v3:assignedPerson/> 20802 </xdw:assignedAuthor> 20803 </xdw:author> 20804 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 20805 <xdw:workflowDocumentSequenceNumber>8</xdw:workflowDocumentSequenceNumber> 20806 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 20807 <xdw:workflowStatusHistory> 20808 <xdw:documentEvent> 20809 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 20810 <xdw:eventType>complete</xdw:eventType> 20811 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 20812 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20813 <xdw:previousStatus>OPEN</xdw:previousStatus> 20814 <xdw:actualStatus>OPEN</xdw:actualStatus> 20815 </xdw:documentEvent> 20816 <xdw:documentEvent> 20817 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 20818 <xdw:eventType>create</xdw:eventType> 20819 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 20820 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20821 <xdw:previousStatus>OPEN</xdw:previousStatus> 20822 <xdw:actualStatus>OPEN</xdw:actualStatus> 20823 </xdw:documentEvent> 20824 <xdw:documentEvent> 20825 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 20826 <xdw:eventType>create</xdw:eventType> 20827 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 20828 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20829 <xdw:previousStatus>OPEN</xdw:previousStatus> 20830 <xdw:actualStatus>OPEN</xdw:actualStatus> 20831 </xdw:documentEvent> 20832 <xdw:documentEvent> 20833 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 20834 <xdw:eventType>create</xdw:eventType> 20835 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 20836 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 20837 <xdw:previousStatus>OPEN</xdw:previousStatus> 20838 <xdw:actualStatus>OPEN</xdw:actualStatus> 20839 </xdw:documentEvent> 20840 </xdw:workflowStatusHistory> 20841 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 20842 <xdw:TaskList> 20843 <xdw:XDWTask> 20844 <xdw:taskData> 20845 <ws-ht:taskDetails> 20846 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 20847 <ws-ht:taskType>Requested</ws-ht:taskType> 20848 <ws-ht:name>xdw.creation</ws-ht:name> 20849 <ws-ht:status>COMPLETED</ws-ht:status> 20850 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20851 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 20852 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20853 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 20854 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20855 </ws-ht:taskDetails> 20856 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 20857 <ws-ht:input/> 20858 <ws-ht:output/> 20859 </xdw:taskData> 20860 <xdw:taskEventHistory> 20861 <xdw:taskEvent> 20862 <xdw:id>1</xdw:id> 20863 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 20864 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 20865 <xdw:eventType>complete</xdw:eventType> 20866 <xdw:status>COMPLETED</xdw:status> 20867 <xdw:eventData xsi:nil="true"/> 20868 </xdw:taskEvent> 20869 </xdw:taskEventHistory> 20870 </xdw:XDWTask> 20871 <xdw:XDWTask> 20872 <xdw:taskData> 20873 <ws-ht:taskDetails> 20874 <ws-ht:id>task_0</ws-ht:id> 20875 <ws-ht:taskType>ttype</ws-ht:taskType> 20876 <ws-ht:name>tname_0</ws-ht:name> 20877 <ws-ht:status>COMPLETED</ws-ht:status> 20878 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20879 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 20880 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20881 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 20882 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20883 </ws-ht:taskDetails> 20884 <ws-ht:description>Undocumented task</ws-ht:description> 20885 <ws-ht:input/> 20886 <ws-ht:output> 20887 <ws-ht:part name="documentReference"> 20888 <ws-ht:attachment> 20889 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 20890 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 20891 <ws-ht:accessType>RLUS</ws-ht:accessType> 20892 <ws-ht:contentType>application/xml</ws-ht:contentType> 20893 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 20894 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 20895 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 20896 </ws-ht:attachment> 20897 </ws-ht:part> 20898 </ws-ht:output> 20899 </xdw:taskData> 20900 <xdw:taskEventHistory> 20901 <xdw:taskEvent> 20902 <xdw:id>1</xdw:id> 20903 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 20904 <xdw:identifier>task_0#1</xdw:identifier> 20905 <xdw:eventType>create</xdw:eventType> 20906 <xdw:status>READY</xdw:status> 20907 <xdw:eventData xsi:nil="true"/> 20908 </xdw:taskEvent> 20909 <xdw:taskEvent> 20910 <xdw:id>2</xdw:id> 20911 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 20912 <xdw:identifier>task_0#2</xdw:identifier> 20913 <xdw:eventType>complete</xdw:eventType> 20914 <xdw:status>COMPLETED</xdw:status> 20915 <xdw:eventData xsi:nil="true"/> 20916 </xdw:taskEvent> 20917 </xdw:taskEventHistory> 20918 </xdw:XDWTask> 20919 <xdw:XDWTask> 20920 <xdw:taskData> 20921 <ws-ht:taskDetails> 20922 <ws-ht:id>task_1</ws-ht:id> 20923 <ws-ht:taskType>ttype</ws-ht:taskType> 20924 <ws-ht:name>tname_1</ws-ht:name> 20925 <ws-ht:status>COMPLETED</ws-ht:status> 20926 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20927 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 20928 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20929 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 20930 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20931 </ws-ht:taskDetails> 20932 <ws-ht:description>Undocumented task</ws-ht:description> 20933 <ws-ht:input/> 20934 <ws-ht:output> 20935 <ws-ht:part name="documentReference"> 20936 <ws-ht:attachment> 20937 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 20938 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 20939 <ws-ht:accessType>RLUS</ws-ht:accessType> 20940 <ws-ht:contentType>application/xml</ws-ht:contentType> 20941 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 20942 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 20943 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 20944 </ws-ht:attachment> 20945 </ws-ht:part> 20946 </ws-ht:output> 20947 </xdw:taskData> 20948 <xdw:taskEventHistory> 20949 <xdw:taskEvent> 20950 <xdw:id>1</xdw:id> 20951 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 20952 <xdw:identifier>task_1#1</xdw:identifier> 20953 <xdw:eventType>create</xdw:eventType> 20954 <xdw:status>READY</xdw:status> 20955 <xdw:eventData xsi:nil="true"/> 20956 </xdw:taskEvent> 20957 <xdw:taskEvent> 20958 <xdw:id>2</xdw:id> 20959 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 20960 <xdw:identifier>task_1#2</xdw:identifier> 20961 <xdw:eventType>complete</xdw:eventType> 20962 <xdw:status>COMPLETED</xdw:status> 20963 <xdw:eventData xsi:nil="true"/> 20964 </xdw:taskEvent> 20965 </xdw:taskEventHistory> 20966 </xdw:XDWTask> 20967 <xdw:XDWTask> 20968 <xdw:taskData> 20969 <ws-ht:taskDetails> 20970 <ws-ht:id>task_2</ws-ht:id> 20971 <ws-ht:taskType>ttype</ws-ht:taskType> 20972 <ws-ht:name>tname_2</ws-ht:name> 20973 <ws-ht:status>READY</ws-ht:status> 20974 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 20975 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 20976 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 20977 <ws-ht:lastModifiedTime>2014-06-13T17:26:48.851+02:00</ws-ht:lastModifiedTime> 20978 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 20979 </ws-ht:taskDetails> 20980 <ws-ht:description>Undocumented task</ws-ht:description> 20981 <ws-ht:input/> 20982 <ws-ht:output/> 20983 </xdw:taskData> 20984 <xdw:taskEventHistory> 20985 <xdw:taskEvent> 20986 <xdw:id>1</xdw:id> 20987 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 20988 <xdw:identifier>task_2#1</xdw:identifier> 20989 <xdw:eventType>create</xdw:eventType> 20990 <xdw:status>READY</xdw:status> 20991 <xdw:eventData xsi:nil="true"/> 20992 </xdw:taskEvent> 20993 </xdw:taskEventHistory> 20994 </xdw:XDWTask> 20995 </xdw:TaskList> 20996 </xdw:XDW.WorkflowDocument> 20997 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 20998 <rlustypes:success>true</rlustypes:success> 20999 <rlustypes:message>One record fetched</rlustypes:message> 21000 </rlustypes:RLUSStatusCode> 21001 </GetResponse> 21002 </soapenv:Body> 21003 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41798</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/cda2report"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 21004 <soap:Header></soap:Header> 21005 <soap:Body> 21006 <PutRequest xmlns="urn:dedalus:rlus:cda2report:types"> 21007 <ClinicalDocument xmlns="urn:hl7-org:v3"> 21008 <realmCode code="IT"></realmCode> 21009 <typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3"></typeId> 21010 <templateId extension="ITPRF_REF_GEN-001" root="2.16.840.1.113883.2.9.10.2.10"></templateId> 21011 <id extension="divjrus7-f34b-431e-835a-a897c0e5-002" root="2.16.840.1.113883.2.9.3.12.4.4"></id> 21012 <code code="47045-0" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study Report"></code> 21013 <effectiveTime value="20140606065508+0200"></effectiveTime> 21014 <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></confidentialityCode> 21015 <languageCode code="it-IT"></languageCode> 21016 <setId extension="divjrus7-f34b-431e-835a-a897c0e5-002" root="2.16.840.1.113883.2.9.3.12.4.4"></setId> 21017 <versionNumber value="1"></versionNumber> 21018 <recordTarget> 21019 <patientRole> 21020 <id extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 21021 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="PZNGZL62H58D524R" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 21022 <hl7v3:patient xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212"> 21023 <hl7v3:name> 21024 <hl7v3:given>Graziella</hl7v3:given> 21025 <hl7v3:family>Paziente</hl7v3:family> 21026 </hl7v3:name> 21027 <hl7v3:administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 21028 <hl7v3:birthTime value="19620618093000+0100"></hl7v3:birthTime> 21029 </hl7v3:patient> 21030 </patientRole> 21031 </recordTarget> 21032 <author> 21033 <time value="20140606065508+0200"></time> 21034 <assignedAuthor> 21035 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 21036 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 21037 </assignedAuthor> 21038 </author> 21039 <custodian> 21040 <assignedCustodian> 21041 <representedCustodianOrganization> 21042 <id extension="2.16.840.1.113883.2.9.3.12.4" root="2.16.840.1.113883.2.9.3.12"></id> 21043 </representedCustodianOrganization> 21044 </assignedCustodian> 21045 </custodian> 21046 <legalAuthenticator> 21047 <time value="20140606065508+0200"></time> 21048 <signatureCode code="S"></signatureCode> 21049 <assignedEntity> 21050 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 21051 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 21052 </assignedEntity> 21053 </legalAuthenticator> 21054 <component> 21055 <structuredBody> 21056 <component> 21057 <section> 21058 <code code="18782-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study observation"></code> 21059 <title>Esame Obiettivo Generale</title> 21060 <text> 21061 <paragraph>Tutti i dettagli acquisiti durante l'esame obiettivo sulla paziente</paragraph> 21062 </text> 21063 <entry> 21064 <act classCode="ACT" moodCode="EVN"> 21065 <code nullFlavor="NA"></code> 21066 <entryRelationship typeCode="COMP"> 21067 <observation classCode="OBS" moodCode="EVN"> 21068 <code code="eog" codeSystem="2.16.840.1.113883.2.9.3.12.6" codeSystemName="_DIZ_Dedalus" displayName="EOG"></code> 21069 </observation> 21070 </entryRelationship> 21071 </act> 21072 </entry> 21073 </section> 21074 </component> 21075 </structuredBody> 21076 </component> 21077 </ClinicalDocument> 21078 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 21079 <rlustypes:RLUSsemantic-signifierName>cda2report</rlustypes:RLUSsemantic-signifierName> 21080 <rlustypes:SecurityContext> 21081 <rlustypes:SourceIdentity identityName="admin"></rlustypes:SourceIdentity> 21082 </rlustypes:SecurityContext> 21083 <rlustypes:CBRContext> 21084 <rlustypes:CBRName>Testing App</rlustypes:CBRName> 21085 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 21086 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 21087 </rlustypes:CBRContext> 21088 </rlustypes:RLUSPutRequestSrcStruct> 21089 <writeCommandEnum>INSERT</writeCommandEnum> 21090 </PutRequest> 21091 </soap:Body> 21092 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 21093 <soapenv:Header/> 21094 <soapenv:Body> 21095 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 21096 <rlustypes:success>true</rlustypes:success> 21097 <rlustypes:message/> 21098 </rlustypes:RLUSStatusCode> 21099 </soapenv:Body> 21100 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 21101 <soap:Header/> 21102 <soap:Body> 21103 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 21104 <rlustypes:searchByCriteria> 21105 <rlustypes:FilterCriteria> 21106 <rlustypes:Expression> 21107 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 21108 <rlusexp:Operator type="EqualTo"/> 21109 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 21110 </rlustypes:Expression> 21111 </rlustypes:FilterCriteria> 21112 <rlustypes:SearchAttributes> 21113 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 21114 </rlustypes:SearchAttributes> 21115 </rlustypes:searchByCriteria> 21116 </rlustypes:RLUSSearchStruct> 21117 </soap:Body> 21118 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="11959"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="11959"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 21119 <soapenv:Header/> 21120 <soapenv:Body> 21121 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 21122 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 21123 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="60d5a2af-9a7d-4e0e-b850-d41f46151faf"/> 21124 <xdw:effectiveTime value="20140613172648+0200"/> 21125 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 21126 <xdw:patient> 21127 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 21128 </xdw:patient> 21129 <xdw:author> 21130 <xdw:assignedAuthor> 21131 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 21132 <hl7v3:assignedPerson/> 21133 </xdw:assignedAuthor> 21134 </xdw:author> 21135 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 21136 <xdw:workflowDocumentSequenceNumber>8</xdw:workflowDocumentSequenceNumber> 21137 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 21138 <xdw:workflowStatusHistory> 21139 <xdw:documentEvent> 21140 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 21141 <xdw:eventType>complete</xdw:eventType> 21142 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 21143 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21144 <xdw:previousStatus>OPEN</xdw:previousStatus> 21145 <xdw:actualStatus>OPEN</xdw:actualStatus> 21146 </xdw:documentEvent> 21147 <xdw:documentEvent> 21148 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 21149 <xdw:eventType>create</xdw:eventType> 21150 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 21151 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21152 <xdw:previousStatus>OPEN</xdw:previousStatus> 21153 <xdw:actualStatus>OPEN</xdw:actualStatus> 21154 </xdw:documentEvent> 21155 <xdw:documentEvent> 21156 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 21157 <xdw:eventType>create</xdw:eventType> 21158 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 21159 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21160 <xdw:previousStatus>OPEN</xdw:previousStatus> 21161 <xdw:actualStatus>OPEN</xdw:actualStatus> 21162 </xdw:documentEvent> 21163 <xdw:documentEvent> 21164 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 21165 <xdw:eventType>create</xdw:eventType> 21166 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 21167 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21168 <xdw:previousStatus>OPEN</xdw:previousStatus> 21169 <xdw:actualStatus>OPEN</xdw:actualStatus> 21170 </xdw:documentEvent> 21171 </xdw:workflowStatusHistory> 21172 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 21173 <xdw:TaskList> 21174 <xdw:XDWTask> 21175 <xdw:taskData> 21176 <ws-ht:taskDetails> 21177 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 21178 <ws-ht:taskType>Requested</ws-ht:taskType> 21179 <ws-ht:name>xdw.creation</ws-ht:name> 21180 <ws-ht:status>COMPLETED</ws-ht:status> 21181 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21182 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 21183 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21184 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 21185 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21186 </ws-ht:taskDetails> 21187 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 21188 <ws-ht:input/> 21189 <ws-ht:output/> 21190 </xdw:taskData> 21191 <xdw:taskEventHistory> 21192 <xdw:taskEvent> 21193 <xdw:id>1</xdw:id> 21194 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 21195 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 21196 <xdw:eventType>complete</xdw:eventType> 21197 <xdw:status>COMPLETED</xdw:status> 21198 <xdw:eventData xsi:nil="true"/> 21199 </xdw:taskEvent> 21200 </xdw:taskEventHistory> 21201 </xdw:XDWTask> 21202 <xdw:XDWTask> 21203 <xdw:taskData> 21204 <ws-ht:taskDetails> 21205 <ws-ht:id>task_0</ws-ht:id> 21206 <ws-ht:taskType>ttype</ws-ht:taskType> 21207 <ws-ht:name>tname_0</ws-ht:name> 21208 <ws-ht:status>COMPLETED</ws-ht:status> 21209 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21210 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 21211 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21212 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 21213 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21214 </ws-ht:taskDetails> 21215 <ws-ht:description>Undocumented task</ws-ht:description> 21216 <ws-ht:input/> 21217 <ws-ht:output> 21218 <ws-ht:part name="documentReference"> 21219 <ws-ht:attachment> 21220 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 21221 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 21222 <ws-ht:accessType>RLUS</ws-ht:accessType> 21223 <ws-ht:contentType>application/xml</ws-ht:contentType> 21224 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 21225 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 21226 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 21227 </ws-ht:attachment> 21228 </ws-ht:part> 21229 </ws-ht:output> 21230 </xdw:taskData> 21231 <xdw:taskEventHistory> 21232 <xdw:taskEvent> 21233 <xdw:id>1</xdw:id> 21234 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 21235 <xdw:identifier>task_0#1</xdw:identifier> 21236 <xdw:eventType>create</xdw:eventType> 21237 <xdw:status>READY</xdw:status> 21238 <xdw:eventData xsi:nil="true"/> 21239 </xdw:taskEvent> 21240 <xdw:taskEvent> 21241 <xdw:id>2</xdw:id> 21242 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 21243 <xdw:identifier>task_0#2</xdw:identifier> 21244 <xdw:eventType>complete</xdw:eventType> 21245 <xdw:status>COMPLETED</xdw:status> 21246 <xdw:eventData xsi:nil="true"/> 21247 </xdw:taskEvent> 21248 </xdw:taskEventHistory> 21249 </xdw:XDWTask> 21250 <xdw:XDWTask> 21251 <xdw:taskData> 21252 <ws-ht:taskDetails> 21253 <ws-ht:id>task_1</ws-ht:id> 21254 <ws-ht:taskType>ttype</ws-ht:taskType> 21255 <ws-ht:name>tname_1</ws-ht:name> 21256 <ws-ht:status>COMPLETED</ws-ht:status> 21257 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21258 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 21259 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21260 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 21261 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21262 </ws-ht:taskDetails> 21263 <ws-ht:description>Undocumented task</ws-ht:description> 21264 <ws-ht:input/> 21265 <ws-ht:output> 21266 <ws-ht:part name="documentReference"> 21267 <ws-ht:attachment> 21268 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 21269 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 21270 <ws-ht:accessType>RLUS</ws-ht:accessType> 21271 <ws-ht:contentType>application/xml</ws-ht:contentType> 21272 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 21273 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 21274 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 21275 </ws-ht:attachment> 21276 </ws-ht:part> 21277 </ws-ht:output> 21278 </xdw:taskData> 21279 <xdw:taskEventHistory> 21280 <xdw:taskEvent> 21281 <xdw:id>1</xdw:id> 21282 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 21283 <xdw:identifier>task_1#1</xdw:identifier> 21284 <xdw:eventType>create</xdw:eventType> 21285 <xdw:status>READY</xdw:status> 21286 <xdw:eventData xsi:nil="true"/> 21287 </xdw:taskEvent> 21288 <xdw:taskEvent> 21289 <xdw:id>2</xdw:id> 21290 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 21291 <xdw:identifier>task_1#2</xdw:identifier> 21292 <xdw:eventType>complete</xdw:eventType> 21293 <xdw:status>COMPLETED</xdw:status> 21294 <xdw:eventData xsi:nil="true"/> 21295 </xdw:taskEvent> 21296 </xdw:taskEventHistory> 21297 </xdw:XDWTask> 21298 <xdw:XDWTask> 21299 <xdw:taskData> 21300 <ws-ht:taskDetails> 21301 <ws-ht:id>task_2</ws-ht:id> 21302 <ws-ht:taskType>ttype</ws-ht:taskType> 21303 <ws-ht:name>tname_2</ws-ht:name> 21304 <ws-ht:status>READY</ws-ht:status> 21305 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21306 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 21307 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21308 <ws-ht:lastModifiedTime>2014-06-13T17:26:48.851+02:00</ws-ht:lastModifiedTime> 21309 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21310 </ws-ht:taskDetails> 21311 <ws-ht:description>Undocumented task</ws-ht:description> 21312 <ws-ht:input/> 21313 <ws-ht:output/> 21314 </xdw:taskData> 21315 <xdw:taskEventHistory> 21316 <xdw:taskEvent> 21317 <xdw:id>1</xdw:id> 21318 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 21319 <xdw:identifier>task_2#1</xdw:identifier> 21320 <xdw:eventType>create</xdw:eventType> 21321 <xdw:status>READY</xdw:status> 21322 <xdw:eventData xsi:nil="true"/> 21323 </xdw:taskEvent> 21324 </xdw:taskEventHistory> 21325 </xdw:XDWTask> 21326 </xdw:TaskList> 21327 </xdw:XDW.WorkflowDocument> 21328 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 21329 <rlustypes:success>true</rlustypes:success> 21330 <rlustypes:message>One record fetched</rlustypes:message> 21331 </rlustypes:RLUSStatusCode> 21332 </GetResponse> 21333 </soapenv:Body> 21334 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 21335 <soap:Header/> 21336 <soap:Body> 21337 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 21338 <rlustypes:searchByCriteria> 21339 <rlustypes:FilterCriteria> 21340 <rlustypes:Expression> 21341 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 21342 <rlusexp:Operator type="EqualTo"/> 21343 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 21344 </rlustypes:Expression> 21345 </rlustypes:FilterCriteria> 21346 <rlustypes:SearchAttributes> 21347 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 21348 </rlustypes:SearchAttributes> 21349 </rlustypes:searchByCriteria> 21350 </rlustypes:RLUSSearchStruct> 21351 </soap:Body> 21352 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="11959"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="11959"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 21353 <soapenv:Header/> 21354 <soapenv:Body> 21355 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 21356 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 21357 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="60d5a2af-9a7d-4e0e-b850-d41f46151faf"/> 21358 <xdw:effectiveTime value="20140613172648+0200"/> 21359 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 21360 <xdw:patient> 21361 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 21362 </xdw:patient> 21363 <xdw:author> 21364 <xdw:assignedAuthor> 21365 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 21366 <hl7v3:assignedPerson/> 21367 </xdw:assignedAuthor> 21368 </xdw:author> 21369 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 21370 <xdw:workflowDocumentSequenceNumber>8</xdw:workflowDocumentSequenceNumber> 21371 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 21372 <xdw:workflowStatusHistory> 21373 <xdw:documentEvent> 21374 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 21375 <xdw:eventType>complete</xdw:eventType> 21376 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 21377 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21378 <xdw:previousStatus>OPEN</xdw:previousStatus> 21379 <xdw:actualStatus>OPEN</xdw:actualStatus> 21380 </xdw:documentEvent> 21381 <xdw:documentEvent> 21382 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 21383 <xdw:eventType>create</xdw:eventType> 21384 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 21385 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21386 <xdw:previousStatus>OPEN</xdw:previousStatus> 21387 <xdw:actualStatus>OPEN</xdw:actualStatus> 21388 </xdw:documentEvent> 21389 <xdw:documentEvent> 21390 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 21391 <xdw:eventType>create</xdw:eventType> 21392 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 21393 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21394 <xdw:previousStatus>OPEN</xdw:previousStatus> 21395 <xdw:actualStatus>OPEN</xdw:actualStatus> 21396 </xdw:documentEvent> 21397 <xdw:documentEvent> 21398 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 21399 <xdw:eventType>create</xdw:eventType> 21400 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 21401 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21402 <xdw:previousStatus>OPEN</xdw:previousStatus> 21403 <xdw:actualStatus>OPEN</xdw:actualStatus> 21404 </xdw:documentEvent> 21405 </xdw:workflowStatusHistory> 21406 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 21407 <xdw:TaskList> 21408 <xdw:XDWTask> 21409 <xdw:taskData> 21410 <ws-ht:taskDetails> 21411 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 21412 <ws-ht:taskType>Requested</ws-ht:taskType> 21413 <ws-ht:name>xdw.creation</ws-ht:name> 21414 <ws-ht:status>COMPLETED</ws-ht:status> 21415 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21416 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 21417 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21418 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 21419 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21420 </ws-ht:taskDetails> 21421 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 21422 <ws-ht:input/> 21423 <ws-ht:output/> 21424 </xdw:taskData> 21425 <xdw:taskEventHistory> 21426 <xdw:taskEvent> 21427 <xdw:id>1</xdw:id> 21428 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 21429 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 21430 <xdw:eventType>complete</xdw:eventType> 21431 <xdw:status>COMPLETED</xdw:status> 21432 <xdw:eventData xsi:nil="true"/> 21433 </xdw:taskEvent> 21434 </xdw:taskEventHistory> 21435 </xdw:XDWTask> 21436 <xdw:XDWTask> 21437 <xdw:taskData> 21438 <ws-ht:taskDetails> 21439 <ws-ht:id>task_0</ws-ht:id> 21440 <ws-ht:taskType>ttype</ws-ht:taskType> 21441 <ws-ht:name>tname_0</ws-ht:name> 21442 <ws-ht:status>COMPLETED</ws-ht:status> 21443 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21444 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 21445 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21446 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 21447 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21448 </ws-ht:taskDetails> 21449 <ws-ht:description>Undocumented task</ws-ht:description> 21450 <ws-ht:input/> 21451 <ws-ht:output> 21452 <ws-ht:part name="documentReference"> 21453 <ws-ht:attachment> 21454 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 21455 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 21456 <ws-ht:accessType>RLUS</ws-ht:accessType> 21457 <ws-ht:contentType>application/xml</ws-ht:contentType> 21458 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 21459 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 21460 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 21461 </ws-ht:attachment> 21462 </ws-ht:part> 21463 </ws-ht:output> 21464 </xdw:taskData> 21465 <xdw:taskEventHistory> 21466 <xdw:taskEvent> 21467 <xdw:id>1</xdw:id> 21468 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 21469 <xdw:identifier>task_0#1</xdw:identifier> 21470 <xdw:eventType>create</xdw:eventType> 21471 <xdw:status>READY</xdw:status> 21472 <xdw:eventData xsi:nil="true"/> 21473 </xdw:taskEvent> 21474 <xdw:taskEvent> 21475 <xdw:id>2</xdw:id> 21476 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 21477 <xdw:identifier>task_0#2</xdw:identifier> 21478 <xdw:eventType>complete</xdw:eventType> 21479 <xdw:status>COMPLETED</xdw:status> 21480 <xdw:eventData xsi:nil="true"/> 21481 </xdw:taskEvent> 21482 </xdw:taskEventHistory> 21483 </xdw:XDWTask> 21484 <xdw:XDWTask> 21485 <xdw:taskData> 21486 <ws-ht:taskDetails> 21487 <ws-ht:id>task_1</ws-ht:id> 21488 <ws-ht:taskType>ttype</ws-ht:taskType> 21489 <ws-ht:name>tname_1</ws-ht:name> 21490 <ws-ht:status>COMPLETED</ws-ht:status> 21491 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21492 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 21493 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21494 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 21495 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21496 </ws-ht:taskDetails> 21497 <ws-ht:description>Undocumented task</ws-ht:description> 21498 <ws-ht:input/> 21499 <ws-ht:output> 21500 <ws-ht:part name="documentReference"> 21501 <ws-ht:attachment> 21502 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 21503 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 21504 <ws-ht:accessType>RLUS</ws-ht:accessType> 21505 <ws-ht:contentType>application/xml</ws-ht:contentType> 21506 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 21507 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 21508 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 21509 </ws-ht:attachment> 21510 </ws-ht:part> 21511 </ws-ht:output> 21512 </xdw:taskData> 21513 <xdw:taskEventHistory> 21514 <xdw:taskEvent> 21515 <xdw:id>1</xdw:id> 21516 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 21517 <xdw:identifier>task_1#1</xdw:identifier> 21518 <xdw:eventType>create</xdw:eventType> 21519 <xdw:status>READY</xdw:status> 21520 <xdw:eventData xsi:nil="true"/> 21521 </xdw:taskEvent> 21522 <xdw:taskEvent> 21523 <xdw:id>2</xdw:id> 21524 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 21525 <xdw:identifier>task_1#2</xdw:identifier> 21526 <xdw:eventType>complete</xdw:eventType> 21527 <xdw:status>COMPLETED</xdw:status> 21528 <xdw:eventData xsi:nil="true"/> 21529 </xdw:taskEvent> 21530 </xdw:taskEventHistory> 21531 </xdw:XDWTask> 21532 <xdw:XDWTask> 21533 <xdw:taskData> 21534 <ws-ht:taskDetails> 21535 <ws-ht:id>task_2</ws-ht:id> 21536 <ws-ht:taskType>ttype</ws-ht:taskType> 21537 <ws-ht:name>tname_2</ws-ht:name> 21538 <ws-ht:status>READY</ws-ht:status> 21539 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21540 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 21541 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21542 <ws-ht:lastModifiedTime>2014-06-13T17:26:48.851+02:00</ws-ht:lastModifiedTime> 21543 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21544 </ws-ht:taskDetails> 21545 <ws-ht:description>Undocumented task</ws-ht:description> 21546 <ws-ht:input/> 21547 <ws-ht:output/> 21548 </xdw:taskData> 21549 <xdw:taskEventHistory> 21550 <xdw:taskEvent> 21551 <xdw:id>1</xdw:id> 21552 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 21553 <xdw:identifier>task_2#1</xdw:identifier> 21554 <xdw:eventType>create</xdw:eventType> 21555 <xdw:status>READY</xdw:status> 21556 <xdw:eventData xsi:nil="true"/> 21557 </xdw:taskEvent> 21558 </xdw:taskEventHistory> 21559 </xdw:XDWTask> 21560 </xdw:TaskList> 21561 </xdw:XDW.WorkflowDocument> 21562 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 21563 <rlustypes:success>true</rlustypes:success> 21564 <rlustypes:message>One record fetched</rlustypes:message> 21565 </rlustypes:RLUSStatusCode> 21566 </GetResponse> 21567 </soapenv:Body> 21568 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="13165"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="13165"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 21569 <soap:Header/> 21570 <soap:Body> 21571 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 21572 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 21573 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="356ad595-04c1-44f5-b1ca-a4963fef0e10"/> 21574 <xdw:effectiveTime value="20140613172652+0200"/> 21575 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 21576 <xdw:patient> 21577 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 21578 </xdw:patient> 21579 <xdw:author> 21580 <xdw:assignedAuthor> 21581 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 21582 <hl7v3:assignedPerson/> 21583 </xdw:assignedAuthor> 21584 </xdw:author> 21585 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 21586 <xdw:workflowDocumentSequenceNumber>9</xdw:workflowDocumentSequenceNumber> 21587 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 21588 <xdw:workflowStatusHistory> 21589 <xdw:documentEvent> 21590 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 21591 <xdw:eventType>complete</xdw:eventType> 21592 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 21593 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21594 <xdw:previousStatus>OPEN</xdw:previousStatus> 21595 <xdw:actualStatus>OPEN</xdw:actualStatus> 21596 </xdw:documentEvent> 21597 <xdw:documentEvent> 21598 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 21599 <xdw:eventType>create</xdw:eventType> 21600 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 21601 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21602 <xdw:previousStatus>OPEN</xdw:previousStatus> 21603 <xdw:actualStatus>OPEN</xdw:actualStatus> 21604 </xdw:documentEvent> 21605 <xdw:documentEvent> 21606 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 21607 <xdw:eventType>create</xdw:eventType> 21608 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 21609 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21610 <xdw:previousStatus>OPEN</xdw:previousStatus> 21611 <xdw:actualStatus>OPEN</xdw:actualStatus> 21612 </xdw:documentEvent> 21613 <xdw:documentEvent> 21614 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 21615 <xdw:eventType>create</xdw:eventType> 21616 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 21617 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21618 <xdw:previousStatus>OPEN</xdw:previousStatus> 21619 <xdw:actualStatus>OPEN</xdw:actualStatus> 21620 </xdw:documentEvent> 21621 </xdw:workflowStatusHistory> 21622 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 21623 <xdw:TaskList> 21624 <xdw:XDWTask> 21625 <xdw:taskData> 21626 <ws-ht:taskDetails> 21627 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 21628 <ws-ht:taskType>Requested</ws-ht:taskType> 21629 <ws-ht:name>xdw.creation</ws-ht:name> 21630 <ws-ht:status>COMPLETED</ws-ht:status> 21631 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21632 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 21633 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21634 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 21635 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21636 </ws-ht:taskDetails> 21637 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 21638 <ws-ht:input/> 21639 <ws-ht:output/> 21640 </xdw:taskData> 21641 <xdw:taskEventHistory> 21642 <xdw:taskEvent> 21643 <xdw:id>1</xdw:id> 21644 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 21645 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 21646 <xdw:eventType>complete</xdw:eventType> 21647 <xdw:status>COMPLETED</xdw:status> 21648 <xdw:eventData xsi:nil="true"/> 21649 </xdw:taskEvent> 21650 </xdw:taskEventHistory> 21651 </xdw:XDWTask> 21652 <xdw:XDWTask> 21653 <xdw:taskData> 21654 <ws-ht:taskDetails> 21655 <ws-ht:id>task_0</ws-ht:id> 21656 <ws-ht:taskType>ttype</ws-ht:taskType> 21657 <ws-ht:name>tname_0</ws-ht:name> 21658 <ws-ht:status>COMPLETED</ws-ht:status> 21659 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21660 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 21661 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21662 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 21663 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21664 </ws-ht:taskDetails> 21665 <ws-ht:description>Undocumented task</ws-ht:description> 21666 <ws-ht:input/> 21667 <ws-ht:output> 21668 <ws-ht:part name="documentReference"> 21669 <ws-ht:attachment> 21670 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 21671 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 21672 <ws-ht:accessType>RLUS</ws-ht:accessType> 21673 <ws-ht:contentType>application/xml</ws-ht:contentType> 21674 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 21675 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 21676 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 21677 </ws-ht:attachment> 21678 </ws-ht:part> 21679 </ws-ht:output> 21680 </xdw:taskData> 21681 <xdw:taskEventHistory> 21682 <xdw:taskEvent> 21683 <xdw:id>1</xdw:id> 21684 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 21685 <xdw:identifier>task_0#1</xdw:identifier> 21686 <xdw:eventType>create</xdw:eventType> 21687 <xdw:status>READY</xdw:status> 21688 <xdw:eventData xsi:nil="true"/> 21689 </xdw:taskEvent> 21690 <xdw:taskEvent> 21691 <xdw:id>2</xdw:id> 21692 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 21693 <xdw:identifier>task_0#2</xdw:identifier> 21694 <xdw:eventType>complete</xdw:eventType> 21695 <xdw:status>COMPLETED</xdw:status> 21696 <xdw:eventData xsi:nil="true"/> 21697 </xdw:taskEvent> 21698 </xdw:taskEventHistory> 21699 </xdw:XDWTask> 21700 <xdw:XDWTask> 21701 <xdw:taskData> 21702 <ws-ht:taskDetails> 21703 <ws-ht:id>task_1</ws-ht:id> 21704 <ws-ht:taskType>ttype</ws-ht:taskType> 21705 <ws-ht:name>tname_1</ws-ht:name> 21706 <ws-ht:status>COMPLETED</ws-ht:status> 21707 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21708 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 21709 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21710 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 21711 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21712 </ws-ht:taskDetails> 21713 <ws-ht:description>Undocumented task</ws-ht:description> 21714 <ws-ht:input/> 21715 <ws-ht:output> 21716 <ws-ht:part name="documentReference"> 21717 <ws-ht:attachment> 21718 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 21719 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 21720 <ws-ht:accessType>RLUS</ws-ht:accessType> 21721 <ws-ht:contentType>application/xml</ws-ht:contentType> 21722 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 21723 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 21724 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 21725 </ws-ht:attachment> 21726 </ws-ht:part> 21727 </ws-ht:output> 21728 </xdw:taskData> 21729 <xdw:taskEventHistory> 21730 <xdw:taskEvent> 21731 <xdw:id>1</xdw:id> 21732 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 21733 <xdw:identifier>task_1#1</xdw:identifier> 21734 <xdw:eventType>create</xdw:eventType> 21735 <xdw:status>READY</xdw:status> 21736 <xdw:eventData xsi:nil="true"/> 21737 </xdw:taskEvent> 21738 <xdw:taskEvent> 21739 <xdw:id>2</xdw:id> 21740 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 21741 <xdw:identifier>task_1#2</xdw:identifier> 21742 <xdw:eventType>complete</xdw:eventType> 21743 <xdw:status>COMPLETED</xdw:status> 21744 <xdw:eventData xsi:nil="true"/> 21745 </xdw:taskEvent> 21746 </xdw:taskEventHistory> 21747 </xdw:XDWTask> 21748 <xdw:XDWTask> 21749 <xdw:taskData> 21750 <ws-ht:taskDetails> 21751 <ws-ht:id>task_2</ws-ht:id> 21752 <ws-ht:taskType>ttype</ws-ht:taskType> 21753 <ws-ht:name>tname_2</ws-ht:name> 21754 <ws-ht:status>READY</ws-ht:status> 21755 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21756 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 21757 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21758 <ws-ht:lastModifiedTime>2014-06-13T17:26:48.851+02:00</ws-ht:lastModifiedTime> 21759 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21760 </ws-ht:taskDetails> 21761 <ws-ht:description>Undocumented task</ws-ht:description> 21762 <ws-ht:input/> 21763 <ws-ht:output> 21764 <ws-ht:part name="documentReference"> 21765 <ws-ht:attachment> 21766 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 21767 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 21768 <ws-ht:accessType>RLUS</ws-ht:accessType> 21769 <ws-ht:contentType>application/xml</ws-ht:contentType> 21770 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 21771 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 21772 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 21773 </ws-ht:attachment> 21774 </ws-ht:part> 21775 </ws-ht:output> 21776 </xdw:taskData> 21777 <xdw:taskEventHistory> 21778 <xdw:taskEvent> 21779 <xdw:id>1</xdw:id> 21780 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 21781 <xdw:identifier>task_2#1</xdw:identifier> 21782 <xdw:eventType>create</xdw:eventType> 21783 <xdw:status>READY</xdw:status> 21784 <xdw:eventData xsi:nil="true"/> 21785 </xdw:taskEvent> 21786 </xdw:taskEventHistory> 21787 </xdw:XDWTask> 21788 </xdw:TaskList> 21789 </xdw:XDW.WorkflowDocument> 21790 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 21791 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 21792 <rlustypes:SecurityContext> 21793 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 21794 </rlustypes:SecurityContext> 21795 <rlustypes:CBRContext> 21796 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 21797 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 21798 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 21799 </rlustypes:CBRContext> 21800 </rlustypes:RLUSPutRequestSrcStruct> 21801 <writeCommandEnum>UPDATE</writeCommandEnum> 21802 </PutRequest> 21803 </soap:Body> 21804 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 21805 <soapenv:Header/> 21806 <soapenv:Body> 21807 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 21808 <rlustypes:success>true</rlustypes:success> 21809 <rlustypes:message/> 21810 </rlustypes:RLUSStatusCode> 21811 </soapenv:Body> 21812 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 21813 <soap:Header/> 21814 <soap:Body> 21815 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 21816 <rlustypes:searchByCriteria> 21817 <rlustypes:FilterCriteria> 21818 <rlustypes:Expression> 21819 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 21820 <rlusexp:Operator type="EqualTo"/> 21821 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 21822 </rlustypes:Expression> 21823 </rlustypes:FilterCriteria> 21824 <rlustypes:SearchAttributes> 21825 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 21826 </rlustypes:SearchAttributes> 21827 </rlustypes:searchByCriteria> 21828 </rlustypes:RLUSSearchStruct> 21829 </soap:Body> 21830 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="12727"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="12727"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 21831 <soapenv:Header/> 21832 <soapenv:Body> 21833 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 21834 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 21835 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="356ad595-04c1-44f5-b1ca-a4963fef0e10"/> 21836 <xdw:effectiveTime value="20140613172652+0200"/> 21837 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 21838 <xdw:patient> 21839 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 21840 </xdw:patient> 21841 <xdw:author> 21842 <xdw:assignedAuthor> 21843 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 21844 <hl7v3:assignedPerson/> 21845 </xdw:assignedAuthor> 21846 </xdw:author> 21847 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 21848 <xdw:workflowDocumentSequenceNumber>9</xdw:workflowDocumentSequenceNumber> 21849 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 21850 <xdw:workflowStatusHistory> 21851 <xdw:documentEvent> 21852 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 21853 <xdw:eventType>complete</xdw:eventType> 21854 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 21855 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21856 <xdw:previousStatus>OPEN</xdw:previousStatus> 21857 <xdw:actualStatus>OPEN</xdw:actualStatus> 21858 </xdw:documentEvent> 21859 <xdw:documentEvent> 21860 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 21861 <xdw:eventType>create</xdw:eventType> 21862 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 21863 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21864 <xdw:previousStatus>OPEN</xdw:previousStatus> 21865 <xdw:actualStatus>OPEN</xdw:actualStatus> 21866 </xdw:documentEvent> 21867 <xdw:documentEvent> 21868 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 21869 <xdw:eventType>create</xdw:eventType> 21870 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 21871 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21872 <xdw:previousStatus>OPEN</xdw:previousStatus> 21873 <xdw:actualStatus>OPEN</xdw:actualStatus> 21874 </xdw:documentEvent> 21875 <xdw:documentEvent> 21876 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 21877 <xdw:eventType>create</xdw:eventType> 21878 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 21879 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 21880 <xdw:previousStatus>OPEN</xdw:previousStatus> 21881 <xdw:actualStatus>OPEN</xdw:actualStatus> 21882 </xdw:documentEvent> 21883 </xdw:workflowStatusHistory> 21884 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 21885 <xdw:TaskList> 21886 <xdw:XDWTask> 21887 <xdw:taskData> 21888 <ws-ht:taskDetails> 21889 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 21890 <ws-ht:taskType>Requested</ws-ht:taskType> 21891 <ws-ht:name>xdw.creation</ws-ht:name> 21892 <ws-ht:status>COMPLETED</ws-ht:status> 21893 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21894 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 21895 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21896 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 21897 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21898 </ws-ht:taskDetails> 21899 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 21900 <ws-ht:input/> 21901 <ws-ht:output/> 21902 </xdw:taskData> 21903 <xdw:taskEventHistory> 21904 <xdw:taskEvent> 21905 <xdw:id>1</xdw:id> 21906 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 21907 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 21908 <xdw:eventType>complete</xdw:eventType> 21909 <xdw:status>COMPLETED</xdw:status> 21910 <xdw:eventData xsi:nil="true"/> 21911 </xdw:taskEvent> 21912 </xdw:taskEventHistory> 21913 </xdw:XDWTask> 21914 <xdw:XDWTask> 21915 <xdw:taskData> 21916 <ws-ht:taskDetails> 21917 <ws-ht:id>task_0</ws-ht:id> 21918 <ws-ht:taskType>ttype</ws-ht:taskType> 21919 <ws-ht:name>tname_0</ws-ht:name> 21920 <ws-ht:status>COMPLETED</ws-ht:status> 21921 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21922 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 21923 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21924 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 21925 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21926 </ws-ht:taskDetails> 21927 <ws-ht:description>Undocumented task</ws-ht:description> 21928 <ws-ht:input/> 21929 <ws-ht:output> 21930 <ws-ht:part name="documentReference"> 21931 <ws-ht:attachment> 21932 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 21933 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 21934 <ws-ht:accessType>RLUS</ws-ht:accessType> 21935 <ws-ht:contentType>application/xml</ws-ht:contentType> 21936 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 21937 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 21938 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 21939 </ws-ht:attachment> 21940 </ws-ht:part> 21941 </ws-ht:output> 21942 </xdw:taskData> 21943 <xdw:taskEventHistory> 21944 <xdw:taskEvent> 21945 <xdw:id>1</xdw:id> 21946 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 21947 <xdw:identifier>task_0#1</xdw:identifier> 21948 <xdw:eventType>create</xdw:eventType> 21949 <xdw:status>READY</xdw:status> 21950 <xdw:eventData xsi:nil="true"/> 21951 </xdw:taskEvent> 21952 <xdw:taskEvent> 21953 <xdw:id>2</xdw:id> 21954 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 21955 <xdw:identifier>task_0#2</xdw:identifier> 21956 <xdw:eventType>complete</xdw:eventType> 21957 <xdw:status>COMPLETED</xdw:status> 21958 <xdw:eventData xsi:nil="true"/> 21959 </xdw:taskEvent> 21960 </xdw:taskEventHistory> 21961 </xdw:XDWTask> 21962 <xdw:XDWTask> 21963 <xdw:taskData> 21964 <ws-ht:taskDetails> 21965 <ws-ht:id>task_1</ws-ht:id> 21966 <ws-ht:taskType>ttype</ws-ht:taskType> 21967 <ws-ht:name>tname_1</ws-ht:name> 21968 <ws-ht:status>COMPLETED</ws-ht:status> 21969 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 21970 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 21971 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 21972 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 21973 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 21974 </ws-ht:taskDetails> 21975 <ws-ht:description>Undocumented task</ws-ht:description> 21976 <ws-ht:input/> 21977 <ws-ht:output> 21978 <ws-ht:part name="documentReference"> 21979 <ws-ht:attachment> 21980 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 21981 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 21982 <ws-ht:accessType>RLUS</ws-ht:accessType> 21983 <ws-ht:contentType>application/xml</ws-ht:contentType> 21984 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 21985 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 21986 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 21987 </ws-ht:attachment> 21988 </ws-ht:part> 21989 </ws-ht:output> 21990 </xdw:taskData> 21991 <xdw:taskEventHistory> 21992 <xdw:taskEvent> 21993 <xdw:id>1</xdw:id> 21994 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 21995 <xdw:identifier>task_1#1</xdw:identifier> 21996 <xdw:eventType>create</xdw:eventType> 21997 <xdw:status>READY</xdw:status> 21998 <xdw:eventData xsi:nil="true"/> 21999 </xdw:taskEvent> 22000 <xdw:taskEvent> 22001 <xdw:id>2</xdw:id> 22002 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 22003 <xdw:identifier>task_1#2</xdw:identifier> 22004 <xdw:eventType>complete</xdw:eventType> 22005 <xdw:status>COMPLETED</xdw:status> 22006 <xdw:eventData xsi:nil="true"/> 22007 </xdw:taskEvent> 22008 </xdw:taskEventHistory> 22009 </xdw:XDWTask> 22010 <xdw:XDWTask> 22011 <xdw:taskData> 22012 <ws-ht:taskDetails> 22013 <ws-ht:id>task_2</ws-ht:id> 22014 <ws-ht:taskType>ttype</ws-ht:taskType> 22015 <ws-ht:name>tname_2</ws-ht:name> 22016 <ws-ht:status>READY</ws-ht:status> 22017 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22018 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 22019 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22020 <ws-ht:lastModifiedTime>2014-06-13T17:26:48.851+02:00</ws-ht:lastModifiedTime> 22021 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22022 </ws-ht:taskDetails> 22023 <ws-ht:description>Undocumented task</ws-ht:description> 22024 <ws-ht:input/> 22025 <ws-ht:output> 22026 <ws-ht:part name="documentReference"> 22027 <ws-ht:attachment> 22028 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 22029 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 22030 <ws-ht:accessType>RLUS</ws-ht:accessType> 22031 <ws-ht:contentType>application/xml</ws-ht:contentType> 22032 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22033 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 22034 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22035 </ws-ht:attachment> 22036 </ws-ht:part> 22037 </ws-ht:output> 22038 </xdw:taskData> 22039 <xdw:taskEventHistory> 22040 <xdw:taskEvent> 22041 <xdw:id>1</xdw:id> 22042 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 22043 <xdw:identifier>task_2#1</xdw:identifier> 22044 <xdw:eventType>create</xdw:eventType> 22045 <xdw:status>READY</xdw:status> 22046 <xdw:eventData xsi:nil="true"/> 22047 </xdw:taskEvent> 22048 </xdw:taskEventHistory> 22049 </xdw:XDWTask> 22050 </xdw:TaskList> 22051 </xdw:XDW.WorkflowDocument> 22052 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 22053 <rlustypes:success>true</rlustypes:success> 22054 <rlustypes:message>One record fetched</rlustypes:message> 22055 </rlustypes:RLUSStatusCode> 22056 </GetResponse> 22057 </soapenv:Body> 22058 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 22059 <soap:Header/> 22060 <soap:Body> 22061 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 22062 <rlustypes:searchByCriteria> 22063 <rlustypes:FilterCriteria> 22064 <rlustypes:Expression> 22065 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 22066 <rlusexp:Operator type="EqualTo"/> 22067 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 22068 </rlustypes:Expression> 22069 </rlustypes:FilterCriteria> 22070 <rlustypes:SearchAttributes> 22071 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 22072 </rlustypes:SearchAttributes> 22073 </rlustypes:searchByCriteria> 22074 </rlustypes:RLUSSearchStruct> 22075 </soap:Body> 22076 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="12727"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="12727"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 22077 <soapenv:Header/> 22078 <soapenv:Body> 22079 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 22080 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 22081 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="356ad595-04c1-44f5-b1ca-a4963fef0e10"/> 22082 <xdw:effectiveTime value="20140613172652+0200"/> 22083 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 22084 <xdw:patient> 22085 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 22086 </xdw:patient> 22087 <xdw:author> 22088 <xdw:assignedAuthor> 22089 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 22090 <hl7v3:assignedPerson/> 22091 </xdw:assignedAuthor> 22092 </xdw:author> 22093 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 22094 <xdw:workflowDocumentSequenceNumber>9</xdw:workflowDocumentSequenceNumber> 22095 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 22096 <xdw:workflowStatusHistory> 22097 <xdw:documentEvent> 22098 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 22099 <xdw:eventType>complete</xdw:eventType> 22100 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 22101 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22102 <xdw:previousStatus>OPEN</xdw:previousStatus> 22103 <xdw:actualStatus>OPEN</xdw:actualStatus> 22104 </xdw:documentEvent> 22105 <xdw:documentEvent> 22106 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 22107 <xdw:eventType>create</xdw:eventType> 22108 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 22109 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22110 <xdw:previousStatus>OPEN</xdw:previousStatus> 22111 <xdw:actualStatus>OPEN</xdw:actualStatus> 22112 </xdw:documentEvent> 22113 <xdw:documentEvent> 22114 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 22115 <xdw:eventType>create</xdw:eventType> 22116 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 22117 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22118 <xdw:previousStatus>OPEN</xdw:previousStatus> 22119 <xdw:actualStatus>OPEN</xdw:actualStatus> 22120 </xdw:documentEvent> 22121 <xdw:documentEvent> 22122 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 22123 <xdw:eventType>create</xdw:eventType> 22124 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 22125 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22126 <xdw:previousStatus>OPEN</xdw:previousStatus> 22127 <xdw:actualStatus>OPEN</xdw:actualStatus> 22128 </xdw:documentEvent> 22129 </xdw:workflowStatusHistory> 22130 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 22131 <xdw:TaskList> 22132 <xdw:XDWTask> 22133 <xdw:taskData> 22134 <ws-ht:taskDetails> 22135 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 22136 <ws-ht:taskType>Requested</ws-ht:taskType> 22137 <ws-ht:name>xdw.creation</ws-ht:name> 22138 <ws-ht:status>COMPLETED</ws-ht:status> 22139 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22140 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 22141 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22142 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 22143 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22144 </ws-ht:taskDetails> 22145 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 22146 <ws-ht:input/> 22147 <ws-ht:output/> 22148 </xdw:taskData> 22149 <xdw:taskEventHistory> 22150 <xdw:taskEvent> 22151 <xdw:id>1</xdw:id> 22152 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 22153 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 22154 <xdw:eventType>complete</xdw:eventType> 22155 <xdw:status>COMPLETED</xdw:status> 22156 <xdw:eventData xsi:nil="true"/> 22157 </xdw:taskEvent> 22158 </xdw:taskEventHistory> 22159 </xdw:XDWTask> 22160 <xdw:XDWTask> 22161 <xdw:taskData> 22162 <ws-ht:taskDetails> 22163 <ws-ht:id>task_0</ws-ht:id> 22164 <ws-ht:taskType>ttype</ws-ht:taskType> 22165 <ws-ht:name>tname_0</ws-ht:name> 22166 <ws-ht:status>COMPLETED</ws-ht:status> 22167 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22168 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 22169 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22170 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 22171 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22172 </ws-ht:taskDetails> 22173 <ws-ht:description>Undocumented task</ws-ht:description> 22174 <ws-ht:input/> 22175 <ws-ht:output> 22176 <ws-ht:part name="documentReference"> 22177 <ws-ht:attachment> 22178 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 22179 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 22180 <ws-ht:accessType>RLUS</ws-ht:accessType> 22181 <ws-ht:contentType>application/xml</ws-ht:contentType> 22182 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22183 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 22184 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22185 </ws-ht:attachment> 22186 </ws-ht:part> 22187 </ws-ht:output> 22188 </xdw:taskData> 22189 <xdw:taskEventHistory> 22190 <xdw:taskEvent> 22191 <xdw:id>1</xdw:id> 22192 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 22193 <xdw:identifier>task_0#1</xdw:identifier> 22194 <xdw:eventType>create</xdw:eventType> 22195 <xdw:status>READY</xdw:status> 22196 <xdw:eventData xsi:nil="true"/> 22197 </xdw:taskEvent> 22198 <xdw:taskEvent> 22199 <xdw:id>2</xdw:id> 22200 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 22201 <xdw:identifier>task_0#2</xdw:identifier> 22202 <xdw:eventType>complete</xdw:eventType> 22203 <xdw:status>COMPLETED</xdw:status> 22204 <xdw:eventData xsi:nil="true"/> 22205 </xdw:taskEvent> 22206 </xdw:taskEventHistory> 22207 </xdw:XDWTask> 22208 <xdw:XDWTask> 22209 <xdw:taskData> 22210 <ws-ht:taskDetails> 22211 <ws-ht:id>task_1</ws-ht:id> 22212 <ws-ht:taskType>ttype</ws-ht:taskType> 22213 <ws-ht:name>tname_1</ws-ht:name> 22214 <ws-ht:status>COMPLETED</ws-ht:status> 22215 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22216 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 22217 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22218 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 22219 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22220 </ws-ht:taskDetails> 22221 <ws-ht:description>Undocumented task</ws-ht:description> 22222 <ws-ht:input/> 22223 <ws-ht:output> 22224 <ws-ht:part name="documentReference"> 22225 <ws-ht:attachment> 22226 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 22227 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 22228 <ws-ht:accessType>RLUS</ws-ht:accessType> 22229 <ws-ht:contentType>application/xml</ws-ht:contentType> 22230 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22231 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 22232 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22233 </ws-ht:attachment> 22234 </ws-ht:part> 22235 </ws-ht:output> 22236 </xdw:taskData> 22237 <xdw:taskEventHistory> 22238 <xdw:taskEvent> 22239 <xdw:id>1</xdw:id> 22240 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 22241 <xdw:identifier>task_1#1</xdw:identifier> 22242 <xdw:eventType>create</xdw:eventType> 22243 <xdw:status>READY</xdw:status> 22244 <xdw:eventData xsi:nil="true"/> 22245 </xdw:taskEvent> 22246 <xdw:taskEvent> 22247 <xdw:id>2</xdw:id> 22248 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 22249 <xdw:identifier>task_1#2</xdw:identifier> 22250 <xdw:eventType>complete</xdw:eventType> 22251 <xdw:status>COMPLETED</xdw:status> 22252 <xdw:eventData xsi:nil="true"/> 22253 </xdw:taskEvent> 22254 </xdw:taskEventHistory> 22255 </xdw:XDWTask> 22256 <xdw:XDWTask> 22257 <xdw:taskData> 22258 <ws-ht:taskDetails> 22259 <ws-ht:id>task_2</ws-ht:id> 22260 <ws-ht:taskType>ttype</ws-ht:taskType> 22261 <ws-ht:name>tname_2</ws-ht:name> 22262 <ws-ht:status>READY</ws-ht:status> 22263 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22264 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 22265 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22266 <ws-ht:lastModifiedTime>2014-06-13T17:26:48.851+02:00</ws-ht:lastModifiedTime> 22267 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22268 </ws-ht:taskDetails> 22269 <ws-ht:description>Undocumented task</ws-ht:description> 22270 <ws-ht:input/> 22271 <ws-ht:output> 22272 <ws-ht:part name="documentReference"> 22273 <ws-ht:attachment> 22274 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 22275 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 22276 <ws-ht:accessType>RLUS</ws-ht:accessType> 22277 <ws-ht:contentType>application/xml</ws-ht:contentType> 22278 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22279 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 22280 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22281 </ws-ht:attachment> 22282 </ws-ht:part> 22283 </ws-ht:output> 22284 </xdw:taskData> 22285 <xdw:taskEventHistory> 22286 <xdw:taskEvent> 22287 <xdw:id>1</xdw:id> 22288 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 22289 <xdw:identifier>task_2#1</xdw:identifier> 22290 <xdw:eventType>create</xdw:eventType> 22291 <xdw:status>READY</xdw:status> 22292 <xdw:eventData xsi:nil="true"/> 22293 </xdw:taskEvent> 22294 </xdw:taskEventHistory> 22295 </xdw:XDWTask> 22296 </xdw:TaskList> 22297 </xdw:XDW.WorkflowDocument> 22298 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 22299 <rlustypes:success>true</rlustypes:success> 22300 <rlustypes:message>One record fetched</rlustypes:message> 22301 </rlustypes:RLUSStatusCode> 22302 </GetResponse> 22303 </soapenv:Body> 22304 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="13552"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="13552"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 22305 <soap:Header/> 22306 <soap:Body> 22307 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 22308 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 22309 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="d9f0ad63-d8b1-4de5-ac4d-96e4f3aa56e3"/> 22310 <xdw:effectiveTime value="20140613172653+0200"/> 22311 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 22312 <xdw:patient> 22313 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 22314 </xdw:patient> 22315 <xdw:author> 22316 <xdw:assignedAuthor> 22317 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 22318 <hl7v3:assignedPerson/> 22319 </xdw:assignedAuthor> 22320 </xdw:author> 22321 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 22322 <xdw:workflowDocumentSequenceNumber>10</xdw:workflowDocumentSequenceNumber> 22323 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 22324 <xdw:workflowStatusHistory> 22325 <xdw:documentEvent> 22326 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 22327 <xdw:eventType>complete</xdw:eventType> 22328 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 22329 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22330 <xdw:previousStatus>OPEN</xdw:previousStatus> 22331 <xdw:actualStatus>OPEN</xdw:actualStatus> 22332 </xdw:documentEvent> 22333 <xdw:documentEvent> 22334 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 22335 <xdw:eventType>create</xdw:eventType> 22336 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 22337 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22338 <xdw:previousStatus>OPEN</xdw:previousStatus> 22339 <xdw:actualStatus>OPEN</xdw:actualStatus> 22340 </xdw:documentEvent> 22341 <xdw:documentEvent> 22342 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 22343 <xdw:eventType>create</xdw:eventType> 22344 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 22345 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22346 <xdw:previousStatus>OPEN</xdw:previousStatus> 22347 <xdw:actualStatus>OPEN</xdw:actualStatus> 22348 </xdw:documentEvent> 22349 <xdw:documentEvent> 22350 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 22351 <xdw:eventType>create</xdw:eventType> 22352 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 22353 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22354 <xdw:previousStatus>OPEN</xdw:previousStatus> 22355 <xdw:actualStatus>OPEN</xdw:actualStatus> 22356 </xdw:documentEvent> 22357 </xdw:workflowStatusHistory> 22358 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 22359 <xdw:TaskList> 22360 <xdw:XDWTask> 22361 <xdw:taskData> 22362 <ws-ht:taskDetails> 22363 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 22364 <ws-ht:taskType>Requested</ws-ht:taskType> 22365 <ws-ht:name>xdw.creation</ws-ht:name> 22366 <ws-ht:status>COMPLETED</ws-ht:status> 22367 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22368 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 22369 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22370 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 22371 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22372 </ws-ht:taskDetails> 22373 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 22374 <ws-ht:input/> 22375 <ws-ht:output/> 22376 </xdw:taskData> 22377 <xdw:taskEventHistory> 22378 <xdw:taskEvent> 22379 <xdw:id>1</xdw:id> 22380 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 22381 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 22382 <xdw:eventType>complete</xdw:eventType> 22383 <xdw:status>COMPLETED</xdw:status> 22384 <xdw:eventData xsi:nil="true"/> 22385 </xdw:taskEvent> 22386 </xdw:taskEventHistory> 22387 </xdw:XDWTask> 22388 <xdw:XDWTask> 22389 <xdw:taskData> 22390 <ws-ht:taskDetails> 22391 <ws-ht:id>task_0</ws-ht:id> 22392 <ws-ht:taskType>ttype</ws-ht:taskType> 22393 <ws-ht:name>tname_0</ws-ht:name> 22394 <ws-ht:status>COMPLETED</ws-ht:status> 22395 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22396 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 22397 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22398 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 22399 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22400 </ws-ht:taskDetails> 22401 <ws-ht:description>Undocumented task</ws-ht:description> 22402 <ws-ht:input/> 22403 <ws-ht:output> 22404 <ws-ht:part name="documentReference"> 22405 <ws-ht:attachment> 22406 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 22407 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 22408 <ws-ht:accessType>RLUS</ws-ht:accessType> 22409 <ws-ht:contentType>application/xml</ws-ht:contentType> 22410 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22411 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 22412 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22413 </ws-ht:attachment> 22414 </ws-ht:part> 22415 </ws-ht:output> 22416 </xdw:taskData> 22417 <xdw:taskEventHistory> 22418 <xdw:taskEvent> 22419 <xdw:id>1</xdw:id> 22420 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 22421 <xdw:identifier>task_0#1</xdw:identifier> 22422 <xdw:eventType>create</xdw:eventType> 22423 <xdw:status>READY</xdw:status> 22424 <xdw:eventData xsi:nil="true"/> 22425 </xdw:taskEvent> 22426 <xdw:taskEvent> 22427 <xdw:id>2</xdw:id> 22428 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 22429 <xdw:identifier>task_0#2</xdw:identifier> 22430 <xdw:eventType>complete</xdw:eventType> 22431 <xdw:status>COMPLETED</xdw:status> 22432 <xdw:eventData xsi:nil="true"/> 22433 </xdw:taskEvent> 22434 </xdw:taskEventHistory> 22435 </xdw:XDWTask> 22436 <xdw:XDWTask> 22437 <xdw:taskData> 22438 <ws-ht:taskDetails> 22439 <ws-ht:id>task_1</ws-ht:id> 22440 <ws-ht:taskType>ttype</ws-ht:taskType> 22441 <ws-ht:name>tname_1</ws-ht:name> 22442 <ws-ht:status>COMPLETED</ws-ht:status> 22443 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22444 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 22445 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22446 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 22447 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22448 </ws-ht:taskDetails> 22449 <ws-ht:description>Undocumented task</ws-ht:description> 22450 <ws-ht:input/> 22451 <ws-ht:output> 22452 <ws-ht:part name="documentReference"> 22453 <ws-ht:attachment> 22454 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 22455 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 22456 <ws-ht:accessType>RLUS</ws-ht:accessType> 22457 <ws-ht:contentType>application/xml</ws-ht:contentType> 22458 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22459 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 22460 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22461 </ws-ht:attachment> 22462 </ws-ht:part> 22463 </ws-ht:output> 22464 </xdw:taskData> 22465 <xdw:taskEventHistory> 22466 <xdw:taskEvent> 22467 <xdw:id>1</xdw:id> 22468 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 22469 <xdw:identifier>task_1#1</xdw:identifier> 22470 <xdw:eventType>create</xdw:eventType> 22471 <xdw:status>READY</xdw:status> 22472 <xdw:eventData xsi:nil="true"/> 22473 </xdw:taskEvent> 22474 <xdw:taskEvent> 22475 <xdw:id>2</xdw:id> 22476 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 22477 <xdw:identifier>task_1#2</xdw:identifier> 22478 <xdw:eventType>complete</xdw:eventType> 22479 <xdw:status>COMPLETED</xdw:status> 22480 <xdw:eventData xsi:nil="true"/> 22481 </xdw:taskEvent> 22482 </xdw:taskEventHistory> 22483 </xdw:XDWTask> 22484 <xdw:XDWTask> 22485 <xdw:taskData> 22486 <ws-ht:taskDetails> 22487 <ws-ht:id>task_2</ws-ht:id> 22488 <ws-ht:taskType>ttype</ws-ht:taskType> 22489 <ws-ht:name>tname_2</ws-ht:name> 22490 <ws-ht:status>COMPLETED</ws-ht:status> 22491 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22492 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 22493 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22494 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 22495 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22496 </ws-ht:taskDetails> 22497 <ws-ht:description>Undocumented task</ws-ht:description> 22498 <ws-ht:input/> 22499 <ws-ht:output> 22500 <ws-ht:part name="documentReference"> 22501 <ws-ht:attachment> 22502 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 22503 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 22504 <ws-ht:accessType>RLUS</ws-ht:accessType> 22505 <ws-ht:contentType>application/xml</ws-ht:contentType> 22506 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22507 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 22508 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22509 </ws-ht:attachment> 22510 </ws-ht:part> 22511 </ws-ht:output> 22512 </xdw:taskData> 22513 <xdw:taskEventHistory> 22514 <xdw:taskEvent> 22515 <xdw:id>1</xdw:id> 22516 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 22517 <xdw:identifier>task_2#1</xdw:identifier> 22518 <xdw:eventType>create</xdw:eventType> 22519 <xdw:status>READY</xdw:status> 22520 <xdw:eventData xsi:nil="true"/> 22521 </xdw:taskEvent> 22522 <xdw:taskEvent> 22523 <xdw:id>2</xdw:id> 22524 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 22525 <xdw:identifier>task_2#2</xdw:identifier> 22526 <xdw:eventType>complete</xdw:eventType> 22527 <xdw:status>COMPLETED</xdw:status> 22528 <xdw:eventData xsi:nil="true"/> 22529 </xdw:taskEvent> 22530 </xdw:taskEventHistory> 22531 </xdw:XDWTask> 22532 </xdw:TaskList> 22533 </xdw:XDW.WorkflowDocument> 22534 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 22535 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 22536 <rlustypes:SecurityContext> 22537 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 22538 </rlustypes:SecurityContext> 22539 <rlustypes:CBRContext> 22540 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 22541 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 22542 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 22543 </rlustypes:CBRContext> 22544 </rlustypes:RLUSPutRequestSrcStruct> 22545 <writeCommandEnum>UPDATE</writeCommandEnum> 22546 </PutRequest> 22547 </soap:Body> 22548 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 22549 <soapenv:Header/> 22550 <soapenv:Body> 22551 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 22552 <rlustypes:success>true</rlustypes:success> 22553 <rlustypes:message/> 22554 </rlustypes:RLUSStatusCode> 22555 </soapenv:Body> 22556 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 22557 <soap:Header/> 22558 <soap:Body> 22559 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 22560 <rlustypes:searchByCriteria> 22561 <rlustypes:FilterCriteria> 22562 <rlustypes:Expression> 22563 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 22564 <rlusexp:Operator type="EqualTo"/> 22565 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 22566 </rlustypes:Expression> 22567 </rlustypes:FilterCriteria> 22568 <rlustypes:SearchAttributes> 22569 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 22570 </rlustypes:SearchAttributes> 22571 </rlustypes:searchByCriteria> 22572 </rlustypes:RLUSSearchStruct> 22573 </soap:Body> 22574 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="13114"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="13114"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 22575 <soapenv:Header/> 22576 <soapenv:Body> 22577 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 22578 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 22579 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="d9f0ad63-d8b1-4de5-ac4d-96e4f3aa56e3"/> 22580 <xdw:effectiveTime value="20140613172653+0200"/> 22581 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 22582 <xdw:patient> 22583 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 22584 </xdw:patient> 22585 <xdw:author> 22586 <xdw:assignedAuthor> 22587 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 22588 <hl7v3:assignedPerson/> 22589 </xdw:assignedAuthor> 22590 </xdw:author> 22591 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 22592 <xdw:workflowDocumentSequenceNumber>10</xdw:workflowDocumentSequenceNumber> 22593 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 22594 <xdw:workflowStatusHistory> 22595 <xdw:documentEvent> 22596 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 22597 <xdw:eventType>complete</xdw:eventType> 22598 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 22599 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22600 <xdw:previousStatus>OPEN</xdw:previousStatus> 22601 <xdw:actualStatus>OPEN</xdw:actualStatus> 22602 </xdw:documentEvent> 22603 <xdw:documentEvent> 22604 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 22605 <xdw:eventType>create</xdw:eventType> 22606 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 22607 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22608 <xdw:previousStatus>OPEN</xdw:previousStatus> 22609 <xdw:actualStatus>OPEN</xdw:actualStatus> 22610 </xdw:documentEvent> 22611 <xdw:documentEvent> 22612 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 22613 <xdw:eventType>create</xdw:eventType> 22614 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 22615 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22616 <xdw:previousStatus>OPEN</xdw:previousStatus> 22617 <xdw:actualStatus>OPEN</xdw:actualStatus> 22618 </xdw:documentEvent> 22619 <xdw:documentEvent> 22620 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 22621 <xdw:eventType>create</xdw:eventType> 22622 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 22623 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22624 <xdw:previousStatus>OPEN</xdw:previousStatus> 22625 <xdw:actualStatus>OPEN</xdw:actualStatus> 22626 </xdw:documentEvent> 22627 </xdw:workflowStatusHistory> 22628 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 22629 <xdw:TaskList> 22630 <xdw:XDWTask> 22631 <xdw:taskData> 22632 <ws-ht:taskDetails> 22633 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 22634 <ws-ht:taskType>Requested</ws-ht:taskType> 22635 <ws-ht:name>xdw.creation</ws-ht:name> 22636 <ws-ht:status>COMPLETED</ws-ht:status> 22637 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22638 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 22639 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22640 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 22641 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22642 </ws-ht:taskDetails> 22643 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 22644 <ws-ht:input/> 22645 <ws-ht:output/> 22646 </xdw:taskData> 22647 <xdw:taskEventHistory> 22648 <xdw:taskEvent> 22649 <xdw:id>1</xdw:id> 22650 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 22651 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 22652 <xdw:eventType>complete</xdw:eventType> 22653 <xdw:status>COMPLETED</xdw:status> 22654 <xdw:eventData xsi:nil="true"/> 22655 </xdw:taskEvent> 22656 </xdw:taskEventHistory> 22657 </xdw:XDWTask> 22658 <xdw:XDWTask> 22659 <xdw:taskData> 22660 <ws-ht:taskDetails> 22661 <ws-ht:id>task_0</ws-ht:id> 22662 <ws-ht:taskType>ttype</ws-ht:taskType> 22663 <ws-ht:name>tname_0</ws-ht:name> 22664 <ws-ht:status>COMPLETED</ws-ht:status> 22665 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22666 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 22667 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22668 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 22669 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22670 </ws-ht:taskDetails> 22671 <ws-ht:description>Undocumented task</ws-ht:description> 22672 <ws-ht:input/> 22673 <ws-ht:output> 22674 <ws-ht:part name="documentReference"> 22675 <ws-ht:attachment> 22676 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 22677 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 22678 <ws-ht:accessType>RLUS</ws-ht:accessType> 22679 <ws-ht:contentType>application/xml</ws-ht:contentType> 22680 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22681 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 22682 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22683 </ws-ht:attachment> 22684 </ws-ht:part> 22685 </ws-ht:output> 22686 </xdw:taskData> 22687 <xdw:taskEventHistory> 22688 <xdw:taskEvent> 22689 <xdw:id>1</xdw:id> 22690 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 22691 <xdw:identifier>task_0#1</xdw:identifier> 22692 <xdw:eventType>create</xdw:eventType> 22693 <xdw:status>READY</xdw:status> 22694 <xdw:eventData xsi:nil="true"/> 22695 </xdw:taskEvent> 22696 <xdw:taskEvent> 22697 <xdw:id>2</xdw:id> 22698 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 22699 <xdw:identifier>task_0#2</xdw:identifier> 22700 <xdw:eventType>complete</xdw:eventType> 22701 <xdw:status>COMPLETED</xdw:status> 22702 <xdw:eventData xsi:nil="true"/> 22703 </xdw:taskEvent> 22704 </xdw:taskEventHistory> 22705 </xdw:XDWTask> 22706 <xdw:XDWTask> 22707 <xdw:taskData> 22708 <ws-ht:taskDetails> 22709 <ws-ht:id>task_1</ws-ht:id> 22710 <ws-ht:taskType>ttype</ws-ht:taskType> 22711 <ws-ht:name>tname_1</ws-ht:name> 22712 <ws-ht:status>COMPLETED</ws-ht:status> 22713 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22714 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 22715 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22716 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 22717 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22718 </ws-ht:taskDetails> 22719 <ws-ht:description>Undocumented task</ws-ht:description> 22720 <ws-ht:input/> 22721 <ws-ht:output> 22722 <ws-ht:part name="documentReference"> 22723 <ws-ht:attachment> 22724 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 22725 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 22726 <ws-ht:accessType>RLUS</ws-ht:accessType> 22727 <ws-ht:contentType>application/xml</ws-ht:contentType> 22728 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22729 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 22730 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22731 </ws-ht:attachment> 22732 </ws-ht:part> 22733 </ws-ht:output> 22734 </xdw:taskData> 22735 <xdw:taskEventHistory> 22736 <xdw:taskEvent> 22737 <xdw:id>1</xdw:id> 22738 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 22739 <xdw:identifier>task_1#1</xdw:identifier> 22740 <xdw:eventType>create</xdw:eventType> 22741 <xdw:status>READY</xdw:status> 22742 <xdw:eventData xsi:nil="true"/> 22743 </xdw:taskEvent> 22744 <xdw:taskEvent> 22745 <xdw:id>2</xdw:id> 22746 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 22747 <xdw:identifier>task_1#2</xdw:identifier> 22748 <xdw:eventType>complete</xdw:eventType> 22749 <xdw:status>COMPLETED</xdw:status> 22750 <xdw:eventData xsi:nil="true"/> 22751 </xdw:taskEvent> 22752 </xdw:taskEventHistory> 22753 </xdw:XDWTask> 22754 <xdw:XDWTask> 22755 <xdw:taskData> 22756 <ws-ht:taskDetails> 22757 <ws-ht:id>task_2</ws-ht:id> 22758 <ws-ht:taskType>ttype</ws-ht:taskType> 22759 <ws-ht:name>tname_2</ws-ht:name> 22760 <ws-ht:status>COMPLETED</ws-ht:status> 22761 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22762 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 22763 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22764 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 22765 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22766 </ws-ht:taskDetails> 22767 <ws-ht:description>Undocumented task</ws-ht:description> 22768 <ws-ht:input/> 22769 <ws-ht:output> 22770 <ws-ht:part name="documentReference"> 22771 <ws-ht:attachment> 22772 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 22773 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 22774 <ws-ht:accessType>RLUS</ws-ht:accessType> 22775 <ws-ht:contentType>application/xml</ws-ht:contentType> 22776 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22777 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 22778 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22779 </ws-ht:attachment> 22780 </ws-ht:part> 22781 </ws-ht:output> 22782 </xdw:taskData> 22783 <xdw:taskEventHistory> 22784 <xdw:taskEvent> 22785 <xdw:id>1</xdw:id> 22786 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 22787 <xdw:identifier>task_2#1</xdw:identifier> 22788 <xdw:eventType>create</xdw:eventType> 22789 <xdw:status>READY</xdw:status> 22790 <xdw:eventData xsi:nil="true"/> 22791 </xdw:taskEvent> 22792 <xdw:taskEvent> 22793 <xdw:id>2</xdw:id> 22794 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 22795 <xdw:identifier>task_2#2</xdw:identifier> 22796 <xdw:eventType>complete</xdw:eventType> 22797 <xdw:status>COMPLETED</xdw:status> 22798 <xdw:eventData xsi:nil="true"/> 22799 </xdw:taskEvent> 22800 </xdw:taskEventHistory> 22801 </xdw:XDWTask> 22802 </xdw:TaskList> 22803 </xdw:XDW.WorkflowDocument> 22804 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 22805 <rlustypes:success>true</rlustypes:success> 22806 <rlustypes:message>One record fetched</rlustypes:message> 22807 </rlustypes:RLUSStatusCode> 22808 </GetResponse> 22809 </soapenv:Body> 22810 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 22811 <soap:Header/> 22812 <soap:Body> 22813 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 22814 <rlustypes:searchByCriteria> 22815 <rlustypes:FilterCriteria> 22816 <rlustypes:Expression> 22817 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 22818 <rlusexp:Operator type="EqualTo"/> 22819 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 22820 </rlustypes:Expression> 22821 </rlustypes:FilterCriteria> 22822 <rlustypes:SearchAttributes> 22823 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 22824 </rlustypes:SearchAttributes> 22825 </rlustypes:searchByCriteria> 22826 </rlustypes:RLUSSearchStruct> 22827 </soap:Body> 22828 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="13114"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="13114"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 22829 <soapenv:Header/> 22830 <soapenv:Body> 22831 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 22832 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 22833 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="d9f0ad63-d8b1-4de5-ac4d-96e4f3aa56e3"/> 22834 <xdw:effectiveTime value="20140613172653+0200"/> 22835 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 22836 <xdw:patient> 22837 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 22838 </xdw:patient> 22839 <xdw:author> 22840 <xdw:assignedAuthor> 22841 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 22842 <hl7v3:assignedPerson/> 22843 </xdw:assignedAuthor> 22844 </xdw:author> 22845 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 22846 <xdw:workflowDocumentSequenceNumber>10</xdw:workflowDocumentSequenceNumber> 22847 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 22848 <xdw:workflowStatusHistory> 22849 <xdw:documentEvent> 22850 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 22851 <xdw:eventType>complete</xdw:eventType> 22852 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 22853 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22854 <xdw:previousStatus>OPEN</xdw:previousStatus> 22855 <xdw:actualStatus>OPEN</xdw:actualStatus> 22856 </xdw:documentEvent> 22857 <xdw:documentEvent> 22858 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 22859 <xdw:eventType>create</xdw:eventType> 22860 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 22861 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22862 <xdw:previousStatus>OPEN</xdw:previousStatus> 22863 <xdw:actualStatus>OPEN</xdw:actualStatus> 22864 </xdw:documentEvent> 22865 <xdw:documentEvent> 22866 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 22867 <xdw:eventType>create</xdw:eventType> 22868 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 22869 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22870 <xdw:previousStatus>OPEN</xdw:previousStatus> 22871 <xdw:actualStatus>OPEN</xdw:actualStatus> 22872 </xdw:documentEvent> 22873 <xdw:documentEvent> 22874 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 22875 <xdw:eventType>create</xdw:eventType> 22876 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 22877 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 22878 <xdw:previousStatus>OPEN</xdw:previousStatus> 22879 <xdw:actualStatus>OPEN</xdw:actualStatus> 22880 </xdw:documentEvent> 22881 </xdw:workflowStatusHistory> 22882 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 22883 <xdw:TaskList> 22884 <xdw:XDWTask> 22885 <xdw:taskData> 22886 <ws-ht:taskDetails> 22887 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 22888 <ws-ht:taskType>Requested</ws-ht:taskType> 22889 <ws-ht:name>xdw.creation</ws-ht:name> 22890 <ws-ht:status>COMPLETED</ws-ht:status> 22891 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22892 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 22893 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22894 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 22895 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22896 </ws-ht:taskDetails> 22897 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 22898 <ws-ht:input/> 22899 <ws-ht:output/> 22900 </xdw:taskData> 22901 <xdw:taskEventHistory> 22902 <xdw:taskEvent> 22903 <xdw:id>1</xdw:id> 22904 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 22905 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 22906 <xdw:eventType>complete</xdw:eventType> 22907 <xdw:status>COMPLETED</xdw:status> 22908 <xdw:eventData xsi:nil="true"/> 22909 </xdw:taskEvent> 22910 </xdw:taskEventHistory> 22911 </xdw:XDWTask> 22912 <xdw:XDWTask> 22913 <xdw:taskData> 22914 <ws-ht:taskDetails> 22915 <ws-ht:id>task_0</ws-ht:id> 22916 <ws-ht:taskType>ttype</ws-ht:taskType> 22917 <ws-ht:name>tname_0</ws-ht:name> 22918 <ws-ht:status>COMPLETED</ws-ht:status> 22919 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22920 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 22921 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22922 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 22923 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22924 </ws-ht:taskDetails> 22925 <ws-ht:description>Undocumented task</ws-ht:description> 22926 <ws-ht:input/> 22927 <ws-ht:output> 22928 <ws-ht:part name="documentReference"> 22929 <ws-ht:attachment> 22930 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 22931 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 22932 <ws-ht:accessType>RLUS</ws-ht:accessType> 22933 <ws-ht:contentType>application/xml</ws-ht:contentType> 22934 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22935 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 22936 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22937 </ws-ht:attachment> 22938 </ws-ht:part> 22939 </ws-ht:output> 22940 </xdw:taskData> 22941 <xdw:taskEventHistory> 22942 <xdw:taskEvent> 22943 <xdw:id>1</xdw:id> 22944 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 22945 <xdw:identifier>task_0#1</xdw:identifier> 22946 <xdw:eventType>create</xdw:eventType> 22947 <xdw:status>READY</xdw:status> 22948 <xdw:eventData xsi:nil="true"/> 22949 </xdw:taskEvent> 22950 <xdw:taskEvent> 22951 <xdw:id>2</xdw:id> 22952 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 22953 <xdw:identifier>task_0#2</xdw:identifier> 22954 <xdw:eventType>complete</xdw:eventType> 22955 <xdw:status>COMPLETED</xdw:status> 22956 <xdw:eventData xsi:nil="true"/> 22957 </xdw:taskEvent> 22958 </xdw:taskEventHistory> 22959 </xdw:XDWTask> 22960 <xdw:XDWTask> 22961 <xdw:taskData> 22962 <ws-ht:taskDetails> 22963 <ws-ht:id>task_1</ws-ht:id> 22964 <ws-ht:taskType>ttype</ws-ht:taskType> 22965 <ws-ht:name>tname_1</ws-ht:name> 22966 <ws-ht:status>COMPLETED</ws-ht:status> 22967 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 22968 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 22969 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 22970 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 22971 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 22972 </ws-ht:taskDetails> 22973 <ws-ht:description>Undocumented task</ws-ht:description> 22974 <ws-ht:input/> 22975 <ws-ht:output> 22976 <ws-ht:part name="documentReference"> 22977 <ws-ht:attachment> 22978 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 22979 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 22980 <ws-ht:accessType>RLUS</ws-ht:accessType> 22981 <ws-ht:contentType>application/xml</ws-ht:contentType> 22982 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 22983 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 22984 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 22985 </ws-ht:attachment> 22986 </ws-ht:part> 22987 </ws-ht:output> 22988 </xdw:taskData> 22989 <xdw:taskEventHistory> 22990 <xdw:taskEvent> 22991 <xdw:id>1</xdw:id> 22992 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 22993 <xdw:identifier>task_1#1</xdw:identifier> 22994 <xdw:eventType>create</xdw:eventType> 22995 <xdw:status>READY</xdw:status> 22996 <xdw:eventData xsi:nil="true"/> 22997 </xdw:taskEvent> 22998 <xdw:taskEvent> 22999 <xdw:id>2</xdw:id> 23000 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 23001 <xdw:identifier>task_1#2</xdw:identifier> 23002 <xdw:eventType>complete</xdw:eventType> 23003 <xdw:status>COMPLETED</xdw:status> 23004 <xdw:eventData xsi:nil="true"/> 23005 </xdw:taskEvent> 23006 </xdw:taskEventHistory> 23007 </xdw:XDWTask> 23008 <xdw:XDWTask> 23009 <xdw:taskData> 23010 <ws-ht:taskDetails> 23011 <ws-ht:id>task_2</ws-ht:id> 23012 <ws-ht:taskType>ttype</ws-ht:taskType> 23013 <ws-ht:name>tname_2</ws-ht:name> 23014 <ws-ht:status>COMPLETED</ws-ht:status> 23015 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23016 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 23017 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23018 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 23019 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23020 </ws-ht:taskDetails> 23021 <ws-ht:description>Undocumented task</ws-ht:description> 23022 <ws-ht:input/> 23023 <ws-ht:output> 23024 <ws-ht:part name="documentReference"> 23025 <ws-ht:attachment> 23026 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 23027 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 23028 <ws-ht:accessType>RLUS</ws-ht:accessType> 23029 <ws-ht:contentType>application/xml</ws-ht:contentType> 23030 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 23031 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 23032 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 23033 </ws-ht:attachment> 23034 </ws-ht:part> 23035 </ws-ht:output> 23036 </xdw:taskData> 23037 <xdw:taskEventHistory> 23038 <xdw:taskEvent> 23039 <xdw:id>1</xdw:id> 23040 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 23041 <xdw:identifier>task_2#1</xdw:identifier> 23042 <xdw:eventType>create</xdw:eventType> 23043 <xdw:status>READY</xdw:status> 23044 <xdw:eventData xsi:nil="true"/> 23045 </xdw:taskEvent> 23046 <xdw:taskEvent> 23047 <xdw:id>2</xdw:id> 23048 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 23049 <xdw:identifier>task_2#2</xdw:identifier> 23050 <xdw:eventType>complete</xdw:eventType> 23051 <xdw:status>COMPLETED</xdw:status> 23052 <xdw:eventData xsi:nil="true"/> 23053 </xdw:taskEvent> 23054 </xdw:taskEventHistory> 23055 </xdw:XDWTask> 23056 </xdw:TaskList> 23057 </xdw:XDW.WorkflowDocument> 23058 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 23059 <rlustypes:success>true</rlustypes:success> 23060 <rlustypes:message>One record fetched</rlustypes:message> 23061 </rlustypes:RLUSStatusCode> 23062 </GetResponse> 23063 </soapenv:Body> 23064 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 23065 <soap:Header/> 23066 <soap:Body> 23067 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 23068 <rlustypes:searchByCriteria> 23069 <rlustypes:FilterCriteria> 23070 <rlustypes:Expression> 23071 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 23072 <rlusexp:Operator type="EqualTo"/> 23073 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 23074 </rlustypes:Expression> 23075 </rlustypes:FilterCriteria> 23076 <rlustypes:SearchAttributes> 23077 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 23078 </rlustypes:SearchAttributes> 23079 </rlustypes:searchByCriteria> 23080 </rlustypes:RLUSSearchStruct> 23081 </soap:Body> 23082 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="13114"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="13114"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 23083 <soapenv:Header/> 23084 <soapenv:Body> 23085 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 23086 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 23087 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="d9f0ad63-d8b1-4de5-ac4d-96e4f3aa56e3"/> 23088 <xdw:effectiveTime value="20140613172653+0200"/> 23089 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 23090 <xdw:patient> 23091 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 23092 </xdw:patient> 23093 <xdw:author> 23094 <xdw:assignedAuthor> 23095 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 23096 <hl7v3:assignedPerson/> 23097 </xdw:assignedAuthor> 23098 </xdw:author> 23099 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 23100 <xdw:workflowDocumentSequenceNumber>10</xdw:workflowDocumentSequenceNumber> 23101 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 23102 <xdw:workflowStatusHistory> 23103 <xdw:documentEvent> 23104 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 23105 <xdw:eventType>complete</xdw:eventType> 23106 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 23107 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23108 <xdw:previousStatus>OPEN</xdw:previousStatus> 23109 <xdw:actualStatus>OPEN</xdw:actualStatus> 23110 </xdw:documentEvent> 23111 <xdw:documentEvent> 23112 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 23113 <xdw:eventType>create</xdw:eventType> 23114 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 23115 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23116 <xdw:previousStatus>OPEN</xdw:previousStatus> 23117 <xdw:actualStatus>OPEN</xdw:actualStatus> 23118 </xdw:documentEvent> 23119 <xdw:documentEvent> 23120 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 23121 <xdw:eventType>create</xdw:eventType> 23122 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 23123 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23124 <xdw:previousStatus>OPEN</xdw:previousStatus> 23125 <xdw:actualStatus>OPEN</xdw:actualStatus> 23126 </xdw:documentEvent> 23127 <xdw:documentEvent> 23128 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 23129 <xdw:eventType>create</xdw:eventType> 23130 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 23131 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23132 <xdw:previousStatus>OPEN</xdw:previousStatus> 23133 <xdw:actualStatus>OPEN</xdw:actualStatus> 23134 </xdw:documentEvent> 23135 </xdw:workflowStatusHistory> 23136 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 23137 <xdw:TaskList> 23138 <xdw:XDWTask> 23139 <xdw:taskData> 23140 <ws-ht:taskDetails> 23141 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 23142 <ws-ht:taskType>Requested</ws-ht:taskType> 23143 <ws-ht:name>xdw.creation</ws-ht:name> 23144 <ws-ht:status>COMPLETED</ws-ht:status> 23145 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23146 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 23147 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23148 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 23149 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23150 </ws-ht:taskDetails> 23151 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 23152 <ws-ht:input/> 23153 <ws-ht:output/> 23154 </xdw:taskData> 23155 <xdw:taskEventHistory> 23156 <xdw:taskEvent> 23157 <xdw:id>1</xdw:id> 23158 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 23159 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 23160 <xdw:eventType>complete</xdw:eventType> 23161 <xdw:status>COMPLETED</xdw:status> 23162 <xdw:eventData xsi:nil="true"/> 23163 </xdw:taskEvent> 23164 </xdw:taskEventHistory> 23165 </xdw:XDWTask> 23166 <xdw:XDWTask> 23167 <xdw:taskData> 23168 <ws-ht:taskDetails> 23169 <ws-ht:id>task_0</ws-ht:id> 23170 <ws-ht:taskType>ttype</ws-ht:taskType> 23171 <ws-ht:name>tname_0</ws-ht:name> 23172 <ws-ht:status>COMPLETED</ws-ht:status> 23173 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23174 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 23175 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23176 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 23177 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23178 </ws-ht:taskDetails> 23179 <ws-ht:description>Undocumented task</ws-ht:description> 23180 <ws-ht:input/> 23181 <ws-ht:output> 23182 <ws-ht:part name="documentReference"> 23183 <ws-ht:attachment> 23184 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 23185 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 23186 <ws-ht:accessType>RLUS</ws-ht:accessType> 23187 <ws-ht:contentType>application/xml</ws-ht:contentType> 23188 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 23189 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 23190 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 23191 </ws-ht:attachment> 23192 </ws-ht:part> 23193 </ws-ht:output> 23194 </xdw:taskData> 23195 <xdw:taskEventHistory> 23196 <xdw:taskEvent> 23197 <xdw:id>1</xdw:id> 23198 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 23199 <xdw:identifier>task_0#1</xdw:identifier> 23200 <xdw:eventType>create</xdw:eventType> 23201 <xdw:status>READY</xdw:status> 23202 <xdw:eventData xsi:nil="true"/> 23203 </xdw:taskEvent> 23204 <xdw:taskEvent> 23205 <xdw:id>2</xdw:id> 23206 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 23207 <xdw:identifier>task_0#2</xdw:identifier> 23208 <xdw:eventType>complete</xdw:eventType> 23209 <xdw:status>COMPLETED</xdw:status> 23210 <xdw:eventData xsi:nil="true"/> 23211 </xdw:taskEvent> 23212 </xdw:taskEventHistory> 23213 </xdw:XDWTask> 23214 <xdw:XDWTask> 23215 <xdw:taskData> 23216 <ws-ht:taskDetails> 23217 <ws-ht:id>task_1</ws-ht:id> 23218 <ws-ht:taskType>ttype</ws-ht:taskType> 23219 <ws-ht:name>tname_1</ws-ht:name> 23220 <ws-ht:status>COMPLETED</ws-ht:status> 23221 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23222 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 23223 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23224 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 23225 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23226 </ws-ht:taskDetails> 23227 <ws-ht:description>Undocumented task</ws-ht:description> 23228 <ws-ht:input/> 23229 <ws-ht:output> 23230 <ws-ht:part name="documentReference"> 23231 <ws-ht:attachment> 23232 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 23233 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 23234 <ws-ht:accessType>RLUS</ws-ht:accessType> 23235 <ws-ht:contentType>application/xml</ws-ht:contentType> 23236 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 23237 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 23238 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 23239 </ws-ht:attachment> 23240 </ws-ht:part> 23241 </ws-ht:output> 23242 </xdw:taskData> 23243 <xdw:taskEventHistory> 23244 <xdw:taskEvent> 23245 <xdw:id>1</xdw:id> 23246 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 23247 <xdw:identifier>task_1#1</xdw:identifier> 23248 <xdw:eventType>create</xdw:eventType> 23249 <xdw:status>READY</xdw:status> 23250 <xdw:eventData xsi:nil="true"/> 23251 </xdw:taskEvent> 23252 <xdw:taskEvent> 23253 <xdw:id>2</xdw:id> 23254 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 23255 <xdw:identifier>task_1#2</xdw:identifier> 23256 <xdw:eventType>complete</xdw:eventType> 23257 <xdw:status>COMPLETED</xdw:status> 23258 <xdw:eventData xsi:nil="true"/> 23259 </xdw:taskEvent> 23260 </xdw:taskEventHistory> 23261 </xdw:XDWTask> 23262 <xdw:XDWTask> 23263 <xdw:taskData> 23264 <ws-ht:taskDetails> 23265 <ws-ht:id>task_2</ws-ht:id> 23266 <ws-ht:taskType>ttype</ws-ht:taskType> 23267 <ws-ht:name>tname_2</ws-ht:name> 23268 <ws-ht:status>COMPLETED</ws-ht:status> 23269 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23270 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 23271 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23272 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 23273 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23274 </ws-ht:taskDetails> 23275 <ws-ht:description>Undocumented task</ws-ht:description> 23276 <ws-ht:input/> 23277 <ws-ht:output> 23278 <ws-ht:part name="documentReference"> 23279 <ws-ht:attachment> 23280 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 23281 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 23282 <ws-ht:accessType>RLUS</ws-ht:accessType> 23283 <ws-ht:contentType>application/xml</ws-ht:contentType> 23284 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 23285 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 23286 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 23287 </ws-ht:attachment> 23288 </ws-ht:part> 23289 </ws-ht:output> 23290 </xdw:taskData> 23291 <xdw:taskEventHistory> 23292 <xdw:taskEvent> 23293 <xdw:id>1</xdw:id> 23294 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 23295 <xdw:identifier>task_2#1</xdw:identifier> 23296 <xdw:eventType>create</xdw:eventType> 23297 <xdw:status>READY</xdw:status> 23298 <xdw:eventData xsi:nil="true"/> 23299 </xdw:taskEvent> 23300 <xdw:taskEvent> 23301 <xdw:id>2</xdw:id> 23302 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 23303 <xdw:identifier>task_2#2</xdw:identifier> 23304 <xdw:eventType>complete</xdw:eventType> 23305 <xdw:status>COMPLETED</xdw:status> 23306 <xdw:eventData xsi:nil="true"/> 23307 </xdw:taskEvent> 23308 </xdw:taskEventHistory> 23309 </xdw:XDWTask> 23310 </xdw:TaskList> 23311 </xdw:XDW.WorkflowDocument> 23312 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 23313 <rlustypes:success>true</rlustypes:success> 23314 <rlustypes:message>One record fetched</rlustypes:message> 23315 </rlustypes:RLUSStatusCode> 23316 </GetResponse> 23317 </soapenv:Body> 23318 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="15388"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="15388"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 23319 <soap:Header/> 23320 <soap:Body> 23321 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 23322 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 23323 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="c0d03e23-a62d-44ed-a18a-47394bb4c2f9"/> 23324 <xdw:effectiveTime value="20140613172654+0200"/> 23325 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 23326 <xdw:patient> 23327 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 23328 </xdw:patient> 23329 <xdw:author> 23330 <xdw:assignedAuthor> 23331 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 23332 <hl7v3:assignedPerson/> 23333 </xdw:assignedAuthor> 23334 </xdw:author> 23335 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 23336 <xdw:workflowDocumentSequenceNumber>11</xdw:workflowDocumentSequenceNumber> 23337 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 23338 <xdw:workflowStatusHistory> 23339 <xdw:documentEvent> 23340 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 23341 <xdw:eventType>complete</xdw:eventType> 23342 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 23343 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23344 <xdw:previousStatus>OPEN</xdw:previousStatus> 23345 <xdw:actualStatus>OPEN</xdw:actualStatus> 23346 </xdw:documentEvent> 23347 <xdw:documentEvent> 23348 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 23349 <xdw:eventType>create</xdw:eventType> 23350 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 23351 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23352 <xdw:previousStatus>OPEN</xdw:previousStatus> 23353 <xdw:actualStatus>OPEN</xdw:actualStatus> 23354 </xdw:documentEvent> 23355 <xdw:documentEvent> 23356 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 23357 <xdw:eventType>create</xdw:eventType> 23358 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 23359 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23360 <xdw:previousStatus>OPEN</xdw:previousStatus> 23361 <xdw:actualStatus>OPEN</xdw:actualStatus> 23362 </xdw:documentEvent> 23363 <xdw:documentEvent> 23364 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 23365 <xdw:eventType>create</xdw:eventType> 23366 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 23367 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23368 <xdw:previousStatus>OPEN</xdw:previousStatus> 23369 <xdw:actualStatus>OPEN</xdw:actualStatus> 23370 </xdw:documentEvent> 23371 <xdw:documentEvent> 23372 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 23373 <xdw:eventType>create</xdw:eventType> 23374 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 23375 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23376 <xdw:previousStatus>OPEN</xdw:previousStatus> 23377 <xdw:actualStatus>OPEN</xdw:actualStatus> 23378 </xdw:documentEvent> 23379 </xdw:workflowStatusHistory> 23380 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 23381 <xdw:TaskList> 23382 <xdw:XDWTask> 23383 <xdw:taskData> 23384 <ws-ht:taskDetails> 23385 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 23386 <ws-ht:taskType>Requested</ws-ht:taskType> 23387 <ws-ht:name>xdw.creation</ws-ht:name> 23388 <ws-ht:status>COMPLETED</ws-ht:status> 23389 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23390 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 23391 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23392 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 23393 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23394 </ws-ht:taskDetails> 23395 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 23396 <ws-ht:input/> 23397 <ws-ht:output/> 23398 </xdw:taskData> 23399 <xdw:taskEventHistory> 23400 <xdw:taskEvent> 23401 <xdw:id>1</xdw:id> 23402 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 23403 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 23404 <xdw:eventType>complete</xdw:eventType> 23405 <xdw:status>COMPLETED</xdw:status> 23406 <xdw:eventData xsi:nil="true"/> 23407 </xdw:taskEvent> 23408 </xdw:taskEventHistory> 23409 </xdw:XDWTask> 23410 <xdw:XDWTask> 23411 <xdw:taskData> 23412 <ws-ht:taskDetails> 23413 <ws-ht:id>task_0</ws-ht:id> 23414 <ws-ht:taskType>ttype</ws-ht:taskType> 23415 <ws-ht:name>tname_0</ws-ht:name> 23416 <ws-ht:status>COMPLETED</ws-ht:status> 23417 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23418 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 23419 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23420 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 23421 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23422 </ws-ht:taskDetails> 23423 <ws-ht:description>Undocumented task</ws-ht:description> 23424 <ws-ht:input/> 23425 <ws-ht:output> 23426 <ws-ht:part name="documentReference"> 23427 <ws-ht:attachment> 23428 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 23429 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 23430 <ws-ht:accessType>RLUS</ws-ht:accessType> 23431 <ws-ht:contentType>application/xml</ws-ht:contentType> 23432 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 23433 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 23434 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 23435 </ws-ht:attachment> 23436 </ws-ht:part> 23437 </ws-ht:output> 23438 </xdw:taskData> 23439 <xdw:taskEventHistory> 23440 <xdw:taskEvent> 23441 <xdw:id>1</xdw:id> 23442 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 23443 <xdw:identifier>task_0#1</xdw:identifier> 23444 <xdw:eventType>create</xdw:eventType> 23445 <xdw:status>READY</xdw:status> 23446 <xdw:eventData xsi:nil="true"/> 23447 </xdw:taskEvent> 23448 <xdw:taskEvent> 23449 <xdw:id>2</xdw:id> 23450 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 23451 <xdw:identifier>task_0#2</xdw:identifier> 23452 <xdw:eventType>complete</xdw:eventType> 23453 <xdw:status>COMPLETED</xdw:status> 23454 <xdw:eventData xsi:nil="true"/> 23455 </xdw:taskEvent> 23456 </xdw:taskEventHistory> 23457 </xdw:XDWTask> 23458 <xdw:XDWTask> 23459 <xdw:taskData> 23460 <ws-ht:taskDetails> 23461 <ws-ht:id>task_1</ws-ht:id> 23462 <ws-ht:taskType>ttype</ws-ht:taskType> 23463 <ws-ht:name>tname_1</ws-ht:name> 23464 <ws-ht:status>COMPLETED</ws-ht:status> 23465 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23466 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 23467 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23468 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 23469 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23470 </ws-ht:taskDetails> 23471 <ws-ht:description>Undocumented task</ws-ht:description> 23472 <ws-ht:input/> 23473 <ws-ht:output> 23474 <ws-ht:part name="documentReference"> 23475 <ws-ht:attachment> 23476 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 23477 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 23478 <ws-ht:accessType>RLUS</ws-ht:accessType> 23479 <ws-ht:contentType>application/xml</ws-ht:contentType> 23480 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 23481 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 23482 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 23483 </ws-ht:attachment> 23484 </ws-ht:part> 23485 </ws-ht:output> 23486 </xdw:taskData> 23487 <xdw:taskEventHistory> 23488 <xdw:taskEvent> 23489 <xdw:id>1</xdw:id> 23490 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 23491 <xdw:identifier>task_1#1</xdw:identifier> 23492 <xdw:eventType>create</xdw:eventType> 23493 <xdw:status>READY</xdw:status> 23494 <xdw:eventData xsi:nil="true"/> 23495 </xdw:taskEvent> 23496 <xdw:taskEvent> 23497 <xdw:id>2</xdw:id> 23498 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 23499 <xdw:identifier>task_1#2</xdw:identifier> 23500 <xdw:eventType>complete</xdw:eventType> 23501 <xdw:status>COMPLETED</xdw:status> 23502 <xdw:eventData xsi:nil="true"/> 23503 </xdw:taskEvent> 23504 </xdw:taskEventHistory> 23505 </xdw:XDWTask> 23506 <xdw:XDWTask> 23507 <xdw:taskData> 23508 <ws-ht:taskDetails> 23509 <ws-ht:id>task_2</ws-ht:id> 23510 <ws-ht:taskType>ttype</ws-ht:taskType> 23511 <ws-ht:name>tname_2</ws-ht:name> 23512 <ws-ht:status>COMPLETED</ws-ht:status> 23513 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23514 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 23515 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23516 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 23517 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23518 </ws-ht:taskDetails> 23519 <ws-ht:description>Undocumented task</ws-ht:description> 23520 <ws-ht:input/> 23521 <ws-ht:output> 23522 <ws-ht:part name="documentReference"> 23523 <ws-ht:attachment> 23524 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 23525 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 23526 <ws-ht:accessType>RLUS</ws-ht:accessType> 23527 <ws-ht:contentType>application/xml</ws-ht:contentType> 23528 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 23529 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 23530 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 23531 </ws-ht:attachment> 23532 </ws-ht:part> 23533 </ws-ht:output> 23534 </xdw:taskData> 23535 <xdw:taskEventHistory> 23536 <xdw:taskEvent> 23537 <xdw:id>1</xdw:id> 23538 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 23539 <xdw:identifier>task_2#1</xdw:identifier> 23540 <xdw:eventType>create</xdw:eventType> 23541 <xdw:status>READY</xdw:status> 23542 <xdw:eventData xsi:nil="true"/> 23543 </xdw:taskEvent> 23544 <xdw:taskEvent> 23545 <xdw:id>2</xdw:id> 23546 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 23547 <xdw:identifier>task_2#2</xdw:identifier> 23548 <xdw:eventType>complete</xdw:eventType> 23549 <xdw:status>COMPLETED</xdw:status> 23550 <xdw:eventData xsi:nil="true"/> 23551 </xdw:taskEvent> 23552 </xdw:taskEventHistory> 23553 </xdw:XDWTask> 23554 <xdw:XDWTask> 23555 <xdw:taskData> 23556 <ws-ht:taskDetails> 23557 <ws-ht:id>task_3</ws-ht:id> 23558 <ws-ht:taskType>ttype</ws-ht:taskType> 23559 <ws-ht:name>tname_3</ws-ht:name> 23560 <ws-ht:status>READY</ws-ht:status> 23561 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23562 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 23563 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23564 <ws-ht:lastModifiedTime>2014-06-13T17:26:54.979+02:00</ws-ht:lastModifiedTime> 23565 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23566 </ws-ht:taskDetails> 23567 <ws-ht:description>Undocumented task</ws-ht:description> 23568 <ws-ht:input/> 23569 <ws-ht:output/> 23570 </xdw:taskData> 23571 <xdw:taskEventHistory> 23572 <xdw:taskEvent> 23573 <xdw:id>1</xdw:id> 23574 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 23575 <xdw:identifier>task_3#1</xdw:identifier> 23576 <xdw:eventType>create</xdw:eventType> 23577 <xdw:status>READY</xdw:status> 23578 <xdw:eventData xsi:nil="true"/> 23579 </xdw:taskEvent> 23580 </xdw:taskEventHistory> 23581 </xdw:XDWTask> 23582 </xdw:TaskList> 23583 </xdw:XDW.WorkflowDocument> 23584 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 23585 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 23586 <rlustypes:SecurityContext> 23587 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 23588 </rlustypes:SecurityContext> 23589 <rlustypes:CBRContext> 23590 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 23591 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 23592 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 23593 </rlustypes:CBRContext> 23594 </rlustypes:RLUSPutRequestSrcStruct> 23595 <writeCommandEnum>UPDATE</writeCommandEnum> 23596 </PutRequest> 23597 </soap:Body> 23598 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 23599 <soapenv:Header/> 23600 <soapenv:Body> 23601 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 23602 <rlustypes:success>true</rlustypes:success> 23603 <rlustypes:message/> 23604 </rlustypes:RLUSStatusCode> 23605 </soapenv:Body> 23606 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 23607 <soap:Header/> 23608 <soap:Body> 23609 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 23610 <rlustypes:searchByCriteria> 23611 <rlustypes:FilterCriteria> 23612 <rlustypes:Expression> 23613 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 23614 <rlusexp:Operator type="EqualTo"/> 23615 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 23616 </rlustypes:Expression> 23617 </rlustypes:FilterCriteria> 23618 <rlustypes:SearchAttributes> 23619 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 23620 </rlustypes:SearchAttributes> 23621 </rlustypes:searchByCriteria> 23622 </rlustypes:RLUSSearchStruct> 23623 </soap:Body> 23624 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="14950"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="14950"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 23625 <soapenv:Header/> 23626 <soapenv:Body> 23627 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 23628 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 23629 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="c0d03e23-a62d-44ed-a18a-47394bb4c2f9"/> 23630 <xdw:effectiveTime value="20140613172654+0200"/> 23631 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 23632 <xdw:patient> 23633 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 23634 </xdw:patient> 23635 <xdw:author> 23636 <xdw:assignedAuthor> 23637 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 23638 <hl7v3:assignedPerson/> 23639 </xdw:assignedAuthor> 23640 </xdw:author> 23641 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 23642 <xdw:workflowDocumentSequenceNumber>11</xdw:workflowDocumentSequenceNumber> 23643 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 23644 <xdw:workflowStatusHistory> 23645 <xdw:documentEvent> 23646 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 23647 <xdw:eventType>complete</xdw:eventType> 23648 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 23649 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23650 <xdw:previousStatus>OPEN</xdw:previousStatus> 23651 <xdw:actualStatus>OPEN</xdw:actualStatus> 23652 </xdw:documentEvent> 23653 <xdw:documentEvent> 23654 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 23655 <xdw:eventType>create</xdw:eventType> 23656 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 23657 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23658 <xdw:previousStatus>OPEN</xdw:previousStatus> 23659 <xdw:actualStatus>OPEN</xdw:actualStatus> 23660 </xdw:documentEvent> 23661 <xdw:documentEvent> 23662 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 23663 <xdw:eventType>create</xdw:eventType> 23664 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 23665 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23666 <xdw:previousStatus>OPEN</xdw:previousStatus> 23667 <xdw:actualStatus>OPEN</xdw:actualStatus> 23668 </xdw:documentEvent> 23669 <xdw:documentEvent> 23670 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 23671 <xdw:eventType>create</xdw:eventType> 23672 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 23673 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23674 <xdw:previousStatus>OPEN</xdw:previousStatus> 23675 <xdw:actualStatus>OPEN</xdw:actualStatus> 23676 </xdw:documentEvent> 23677 <xdw:documentEvent> 23678 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 23679 <xdw:eventType>create</xdw:eventType> 23680 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 23681 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 23682 <xdw:previousStatus>OPEN</xdw:previousStatus> 23683 <xdw:actualStatus>OPEN</xdw:actualStatus> 23684 </xdw:documentEvent> 23685 </xdw:workflowStatusHistory> 23686 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 23687 <xdw:TaskList> 23688 <xdw:XDWTask> 23689 <xdw:taskData> 23690 <ws-ht:taskDetails> 23691 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 23692 <ws-ht:taskType>Requested</ws-ht:taskType> 23693 <ws-ht:name>xdw.creation</ws-ht:name> 23694 <ws-ht:status>COMPLETED</ws-ht:status> 23695 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23696 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 23697 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23698 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 23699 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23700 </ws-ht:taskDetails> 23701 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 23702 <ws-ht:input/> 23703 <ws-ht:output/> 23704 </xdw:taskData> 23705 <xdw:taskEventHistory> 23706 <xdw:taskEvent> 23707 <xdw:id>1</xdw:id> 23708 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 23709 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 23710 <xdw:eventType>complete</xdw:eventType> 23711 <xdw:status>COMPLETED</xdw:status> 23712 <xdw:eventData xsi:nil="true"/> 23713 </xdw:taskEvent> 23714 </xdw:taskEventHistory> 23715 </xdw:XDWTask> 23716 <xdw:XDWTask> 23717 <xdw:taskData> 23718 <ws-ht:taskDetails> 23719 <ws-ht:id>task_0</ws-ht:id> 23720 <ws-ht:taskType>ttype</ws-ht:taskType> 23721 <ws-ht:name>tname_0</ws-ht:name> 23722 <ws-ht:status>COMPLETED</ws-ht:status> 23723 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23724 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 23725 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23726 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 23727 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23728 </ws-ht:taskDetails> 23729 <ws-ht:description>Undocumented task</ws-ht:description> 23730 <ws-ht:input/> 23731 <ws-ht:output> 23732 <ws-ht:part name="documentReference"> 23733 <ws-ht:attachment> 23734 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 23735 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 23736 <ws-ht:accessType>RLUS</ws-ht:accessType> 23737 <ws-ht:contentType>application/xml</ws-ht:contentType> 23738 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 23739 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 23740 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 23741 </ws-ht:attachment> 23742 </ws-ht:part> 23743 </ws-ht:output> 23744 </xdw:taskData> 23745 <xdw:taskEventHistory> 23746 <xdw:taskEvent> 23747 <xdw:id>1</xdw:id> 23748 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 23749 <xdw:identifier>task_0#1</xdw:identifier> 23750 <xdw:eventType>create</xdw:eventType> 23751 <xdw:status>READY</xdw:status> 23752 <xdw:eventData xsi:nil="true"/> 23753 </xdw:taskEvent> 23754 <xdw:taskEvent> 23755 <xdw:id>2</xdw:id> 23756 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 23757 <xdw:identifier>task_0#2</xdw:identifier> 23758 <xdw:eventType>complete</xdw:eventType> 23759 <xdw:status>COMPLETED</xdw:status> 23760 <xdw:eventData xsi:nil="true"/> 23761 </xdw:taskEvent> 23762 </xdw:taskEventHistory> 23763 </xdw:XDWTask> 23764 <xdw:XDWTask> 23765 <xdw:taskData> 23766 <ws-ht:taskDetails> 23767 <ws-ht:id>task_1</ws-ht:id> 23768 <ws-ht:taskType>ttype</ws-ht:taskType> 23769 <ws-ht:name>tname_1</ws-ht:name> 23770 <ws-ht:status>COMPLETED</ws-ht:status> 23771 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23772 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 23773 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23774 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 23775 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23776 </ws-ht:taskDetails> 23777 <ws-ht:description>Undocumented task</ws-ht:description> 23778 <ws-ht:input/> 23779 <ws-ht:output> 23780 <ws-ht:part name="documentReference"> 23781 <ws-ht:attachment> 23782 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 23783 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 23784 <ws-ht:accessType>RLUS</ws-ht:accessType> 23785 <ws-ht:contentType>application/xml</ws-ht:contentType> 23786 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 23787 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 23788 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 23789 </ws-ht:attachment> 23790 </ws-ht:part> 23791 </ws-ht:output> 23792 </xdw:taskData> 23793 <xdw:taskEventHistory> 23794 <xdw:taskEvent> 23795 <xdw:id>1</xdw:id> 23796 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 23797 <xdw:identifier>task_1#1</xdw:identifier> 23798 <xdw:eventType>create</xdw:eventType> 23799 <xdw:status>READY</xdw:status> 23800 <xdw:eventData xsi:nil="true"/> 23801 </xdw:taskEvent> 23802 <xdw:taskEvent> 23803 <xdw:id>2</xdw:id> 23804 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 23805 <xdw:identifier>task_1#2</xdw:identifier> 23806 <xdw:eventType>complete</xdw:eventType> 23807 <xdw:status>COMPLETED</xdw:status> 23808 <xdw:eventData xsi:nil="true"/> 23809 </xdw:taskEvent> 23810 </xdw:taskEventHistory> 23811 </xdw:XDWTask> 23812 <xdw:XDWTask> 23813 <xdw:taskData> 23814 <ws-ht:taskDetails> 23815 <ws-ht:id>task_2</ws-ht:id> 23816 <ws-ht:taskType>ttype</ws-ht:taskType> 23817 <ws-ht:name>tname_2</ws-ht:name> 23818 <ws-ht:status>COMPLETED</ws-ht:status> 23819 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23820 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 23821 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23822 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 23823 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23824 </ws-ht:taskDetails> 23825 <ws-ht:description>Undocumented task</ws-ht:description> 23826 <ws-ht:input/> 23827 <ws-ht:output> 23828 <ws-ht:part name="documentReference"> 23829 <ws-ht:attachment> 23830 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 23831 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 23832 <ws-ht:accessType>RLUS</ws-ht:accessType> 23833 <ws-ht:contentType>application/xml</ws-ht:contentType> 23834 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 23835 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 23836 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 23837 </ws-ht:attachment> 23838 </ws-ht:part> 23839 </ws-ht:output> 23840 </xdw:taskData> 23841 <xdw:taskEventHistory> 23842 <xdw:taskEvent> 23843 <xdw:id>1</xdw:id> 23844 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 23845 <xdw:identifier>task_2#1</xdw:identifier> 23846 <xdw:eventType>create</xdw:eventType> 23847 <xdw:status>READY</xdw:status> 23848 <xdw:eventData xsi:nil="true"/> 23849 </xdw:taskEvent> 23850 <xdw:taskEvent> 23851 <xdw:id>2</xdw:id> 23852 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 23853 <xdw:identifier>task_2#2</xdw:identifier> 23854 <xdw:eventType>complete</xdw:eventType> 23855 <xdw:status>COMPLETED</xdw:status> 23856 <xdw:eventData xsi:nil="true"/> 23857 </xdw:taskEvent> 23858 </xdw:taskEventHistory> 23859 </xdw:XDWTask> 23860 <xdw:XDWTask> 23861 <xdw:taskData> 23862 <ws-ht:taskDetails> 23863 <ws-ht:id>task_3</ws-ht:id> 23864 <ws-ht:taskType>ttype</ws-ht:taskType> 23865 <ws-ht:name>tname_3</ws-ht:name> 23866 <ws-ht:status>READY</ws-ht:status> 23867 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 23868 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 23869 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 23870 <ws-ht:lastModifiedTime>2014-06-13T17:26:54.979+02:00</ws-ht:lastModifiedTime> 23871 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 23872 </ws-ht:taskDetails> 23873 <ws-ht:description>Undocumented task</ws-ht:description> 23874 <ws-ht:input/> 23875 <ws-ht:output/> 23876 </xdw:taskData> 23877 <xdw:taskEventHistory> 23878 <xdw:taskEvent> 23879 <xdw:id>1</xdw:id> 23880 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 23881 <xdw:identifier>task_3#1</xdw:identifier> 23882 <xdw:eventType>create</xdw:eventType> 23883 <xdw:status>READY</xdw:status> 23884 <xdw:eventData xsi:nil="true"/> 23885 </xdw:taskEvent> 23886 </xdw:taskEventHistory> 23887 </xdw:XDWTask> 23888 </xdw:TaskList> 23889 </xdw:XDW.WorkflowDocument> 23890 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 23891 <rlustypes:success>true</rlustypes:success> 23892 <rlustypes:message>One record fetched</rlustypes:message> 23893 </rlustypes:RLUSStatusCode> 23894 </GetResponse> 23895 </soapenv:Body> 23896 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41798</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/cda2report"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 23897 <soap:Header></soap:Header> 23898 <soap:Body> 23899 <PutRequest xmlns="urn:dedalus:rlus:cda2report:types"> 23900 <ClinicalDocument xmlns="urn:hl7-org:v3"> 23901 <realmCode code="IT"></realmCode> 23902 <typeId root="2.16.840.1.113883.1.3" extension="POCD_HD000040"></typeId> 23903 <templateId root="2.16.840.1.113883.2.9.10.2.10" extension="ITPRF_REF_LABCH-001"></templateId> 23904 <id root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-003"></id> 23905 <code codeSystem="2.16.840.1.113883.6.1" code="11502-2" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Laboratory Report"></code> 23906 <effectiveTime value="20140606121152+0100"></effectiveTime> 23907 <!-- N o R o V --> 23908 <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></confidentialityCode> 23909 <languageCode code="it-IT"></languageCode> 23910 <setId root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-003"></setId> 23911 <versionNumber value="1"></versionNumber> 23912 <recordTarget> 23913 <patientRole> 23914 <id extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 23915 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="PZNGZL62H58D524R" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 23916 <hl7v3:patient xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212"> 23917 <hl7v3:name> 23918 <hl7v3:given>Graziella</hl7v3:given> 23919 <hl7v3:family>Paziente</hl7v3:family> 23920 </hl7v3:name> 23921 <hl7v3:administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 23922 <hl7v3:birthTime value="19620618093000+0100"></hl7v3:birthTime> 23923 </hl7v3:patient> 23924 </patientRole> 23925 </recordTarget> 23926 <author> 23927 <time value="20140606121152+0100"></time> 23928 <assignedAuthor> 23929 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 23930 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 23931 </assignedAuthor> 23932 </author> 23933 <custodian> 23934 <assignedCustodian> 23935 <representedCustodianOrganization> 23936 <id root="2.16.840.1.113883.2.9.3.12" extension="2.16.840.1.113883.2.9.3.12.4"></id> 23937 </representedCustodianOrganization> 23938 </assignedCustodian> 23939 </custodian> 23940 <legalAuthenticator> 23941 <time value="20140606121152+0100"></time> 23942 <signatureCode code="S"></signatureCode> 23943 <assignedEntity> 23944 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 23945 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 23946 </assignedEntity> 23947 </legalAuthenticator> 23948 <component> 23949 <structuredBody> 23950 <component> 23951 <section> 23952 <code code="18723-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Hematology Studies"></code> 23953 <title>Esami ematochimici</title> 23954 <text>Valori nella norma</text> 23955 </section> 23956 </component> 23957 </structuredBody> 23958 </component> 23959 </ClinicalDocument> 23960 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 23961 <rlustypes:RLUSsemantic-signifierName>cda2report</rlustypes:RLUSsemantic-signifierName> 23962 <rlustypes:SecurityContext> 23963 <rlustypes:SourceIdentity identityName="admin"></rlustypes:SourceIdentity> 23964 </rlustypes:SecurityContext> 23965 <rlustypes:CBRContext> 23966 <rlustypes:CBRName>Testing App</rlustypes:CBRName> 23967 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 23968 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 23969 </rlustypes:CBRContext> 23970 </rlustypes:RLUSPutRequestSrcStruct> 23971 <writeCommandEnum>INSERT</writeCommandEnum> 23972 </PutRequest> 23973 </soap:Body> 23974 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 23975 <soapenv:Header/> 23976 <soapenv:Body> 23977 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 23978 <rlustypes:success>true</rlustypes:success> 23979 <rlustypes:message/> 23980 </rlustypes:RLUSStatusCode> 23981 </soapenv:Body> 23982 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 23983 <soap:Header/> 23984 <soap:Body> 23985 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 23986 <rlustypes:searchByCriteria> 23987 <rlustypes:FilterCriteria> 23988 <rlustypes:Expression> 23989 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 23990 <rlusexp:Operator type="EqualTo"/> 23991 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 23992 </rlustypes:Expression> 23993 </rlustypes:FilterCriteria> 23994 <rlustypes:SearchAttributes> 23995 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 23996 </rlustypes:SearchAttributes> 23997 </rlustypes:searchByCriteria> 23998 </rlustypes:RLUSSearchStruct> 23999 </soap:Body> 24000 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="14950"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="14950"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 24001 <soapenv:Header/> 24002 <soapenv:Body> 24003 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 24004 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 24005 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="c0d03e23-a62d-44ed-a18a-47394bb4c2f9"/> 24006 <xdw:effectiveTime value="20140613172654+0200"/> 24007 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 24008 <xdw:patient> 24009 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 24010 </xdw:patient> 24011 <xdw:author> 24012 <xdw:assignedAuthor> 24013 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 24014 <hl7v3:assignedPerson/> 24015 </xdw:assignedAuthor> 24016 </xdw:author> 24017 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 24018 <xdw:workflowDocumentSequenceNumber>11</xdw:workflowDocumentSequenceNumber> 24019 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 24020 <xdw:workflowStatusHistory> 24021 <xdw:documentEvent> 24022 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 24023 <xdw:eventType>complete</xdw:eventType> 24024 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 24025 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24026 <xdw:previousStatus>OPEN</xdw:previousStatus> 24027 <xdw:actualStatus>OPEN</xdw:actualStatus> 24028 </xdw:documentEvent> 24029 <xdw:documentEvent> 24030 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 24031 <xdw:eventType>create</xdw:eventType> 24032 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 24033 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24034 <xdw:previousStatus>OPEN</xdw:previousStatus> 24035 <xdw:actualStatus>OPEN</xdw:actualStatus> 24036 </xdw:documentEvent> 24037 <xdw:documentEvent> 24038 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 24039 <xdw:eventType>create</xdw:eventType> 24040 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 24041 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24042 <xdw:previousStatus>OPEN</xdw:previousStatus> 24043 <xdw:actualStatus>OPEN</xdw:actualStatus> 24044 </xdw:documentEvent> 24045 <xdw:documentEvent> 24046 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 24047 <xdw:eventType>create</xdw:eventType> 24048 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 24049 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24050 <xdw:previousStatus>OPEN</xdw:previousStatus> 24051 <xdw:actualStatus>OPEN</xdw:actualStatus> 24052 </xdw:documentEvent> 24053 <xdw:documentEvent> 24054 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 24055 <xdw:eventType>create</xdw:eventType> 24056 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 24057 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24058 <xdw:previousStatus>OPEN</xdw:previousStatus> 24059 <xdw:actualStatus>OPEN</xdw:actualStatus> 24060 </xdw:documentEvent> 24061 </xdw:workflowStatusHistory> 24062 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 24063 <xdw:TaskList> 24064 <xdw:XDWTask> 24065 <xdw:taskData> 24066 <ws-ht:taskDetails> 24067 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 24068 <ws-ht:taskType>Requested</ws-ht:taskType> 24069 <ws-ht:name>xdw.creation</ws-ht:name> 24070 <ws-ht:status>COMPLETED</ws-ht:status> 24071 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24072 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 24073 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24074 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 24075 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24076 </ws-ht:taskDetails> 24077 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 24078 <ws-ht:input/> 24079 <ws-ht:output/> 24080 </xdw:taskData> 24081 <xdw:taskEventHistory> 24082 <xdw:taskEvent> 24083 <xdw:id>1</xdw:id> 24084 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 24085 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 24086 <xdw:eventType>complete</xdw:eventType> 24087 <xdw:status>COMPLETED</xdw:status> 24088 <xdw:eventData xsi:nil="true"/> 24089 </xdw:taskEvent> 24090 </xdw:taskEventHistory> 24091 </xdw:XDWTask> 24092 <xdw:XDWTask> 24093 <xdw:taskData> 24094 <ws-ht:taskDetails> 24095 <ws-ht:id>task_0</ws-ht:id> 24096 <ws-ht:taskType>ttype</ws-ht:taskType> 24097 <ws-ht:name>tname_0</ws-ht:name> 24098 <ws-ht:status>COMPLETED</ws-ht:status> 24099 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24100 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 24101 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24102 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 24103 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24104 </ws-ht:taskDetails> 24105 <ws-ht:description>Undocumented task</ws-ht:description> 24106 <ws-ht:input/> 24107 <ws-ht:output> 24108 <ws-ht:part name="documentReference"> 24109 <ws-ht:attachment> 24110 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 24111 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 24112 <ws-ht:accessType>RLUS</ws-ht:accessType> 24113 <ws-ht:contentType>application/xml</ws-ht:contentType> 24114 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24115 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 24116 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24117 </ws-ht:attachment> 24118 </ws-ht:part> 24119 </ws-ht:output> 24120 </xdw:taskData> 24121 <xdw:taskEventHistory> 24122 <xdw:taskEvent> 24123 <xdw:id>1</xdw:id> 24124 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 24125 <xdw:identifier>task_0#1</xdw:identifier> 24126 <xdw:eventType>create</xdw:eventType> 24127 <xdw:status>READY</xdw:status> 24128 <xdw:eventData xsi:nil="true"/> 24129 </xdw:taskEvent> 24130 <xdw:taskEvent> 24131 <xdw:id>2</xdw:id> 24132 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 24133 <xdw:identifier>task_0#2</xdw:identifier> 24134 <xdw:eventType>complete</xdw:eventType> 24135 <xdw:status>COMPLETED</xdw:status> 24136 <xdw:eventData xsi:nil="true"/> 24137 </xdw:taskEvent> 24138 </xdw:taskEventHistory> 24139 </xdw:XDWTask> 24140 <xdw:XDWTask> 24141 <xdw:taskData> 24142 <ws-ht:taskDetails> 24143 <ws-ht:id>task_1</ws-ht:id> 24144 <ws-ht:taskType>ttype</ws-ht:taskType> 24145 <ws-ht:name>tname_1</ws-ht:name> 24146 <ws-ht:status>COMPLETED</ws-ht:status> 24147 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24148 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 24149 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24150 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 24151 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24152 </ws-ht:taskDetails> 24153 <ws-ht:description>Undocumented task</ws-ht:description> 24154 <ws-ht:input/> 24155 <ws-ht:output> 24156 <ws-ht:part name="documentReference"> 24157 <ws-ht:attachment> 24158 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 24159 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 24160 <ws-ht:accessType>RLUS</ws-ht:accessType> 24161 <ws-ht:contentType>application/xml</ws-ht:contentType> 24162 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24163 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 24164 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24165 </ws-ht:attachment> 24166 </ws-ht:part> 24167 </ws-ht:output> 24168 </xdw:taskData> 24169 <xdw:taskEventHistory> 24170 <xdw:taskEvent> 24171 <xdw:id>1</xdw:id> 24172 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 24173 <xdw:identifier>task_1#1</xdw:identifier> 24174 <xdw:eventType>create</xdw:eventType> 24175 <xdw:status>READY</xdw:status> 24176 <xdw:eventData xsi:nil="true"/> 24177 </xdw:taskEvent> 24178 <xdw:taskEvent> 24179 <xdw:id>2</xdw:id> 24180 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 24181 <xdw:identifier>task_1#2</xdw:identifier> 24182 <xdw:eventType>complete</xdw:eventType> 24183 <xdw:status>COMPLETED</xdw:status> 24184 <xdw:eventData xsi:nil="true"/> 24185 </xdw:taskEvent> 24186 </xdw:taskEventHistory> 24187 </xdw:XDWTask> 24188 <xdw:XDWTask> 24189 <xdw:taskData> 24190 <ws-ht:taskDetails> 24191 <ws-ht:id>task_2</ws-ht:id> 24192 <ws-ht:taskType>ttype</ws-ht:taskType> 24193 <ws-ht:name>tname_2</ws-ht:name> 24194 <ws-ht:status>COMPLETED</ws-ht:status> 24195 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24196 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 24197 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24198 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 24199 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24200 </ws-ht:taskDetails> 24201 <ws-ht:description>Undocumented task</ws-ht:description> 24202 <ws-ht:input/> 24203 <ws-ht:output> 24204 <ws-ht:part name="documentReference"> 24205 <ws-ht:attachment> 24206 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 24207 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 24208 <ws-ht:accessType>RLUS</ws-ht:accessType> 24209 <ws-ht:contentType>application/xml</ws-ht:contentType> 24210 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24211 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 24212 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24213 </ws-ht:attachment> 24214 </ws-ht:part> 24215 </ws-ht:output> 24216 </xdw:taskData> 24217 <xdw:taskEventHistory> 24218 <xdw:taskEvent> 24219 <xdw:id>1</xdw:id> 24220 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 24221 <xdw:identifier>task_2#1</xdw:identifier> 24222 <xdw:eventType>create</xdw:eventType> 24223 <xdw:status>READY</xdw:status> 24224 <xdw:eventData xsi:nil="true"/> 24225 </xdw:taskEvent> 24226 <xdw:taskEvent> 24227 <xdw:id>2</xdw:id> 24228 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 24229 <xdw:identifier>task_2#2</xdw:identifier> 24230 <xdw:eventType>complete</xdw:eventType> 24231 <xdw:status>COMPLETED</xdw:status> 24232 <xdw:eventData xsi:nil="true"/> 24233 </xdw:taskEvent> 24234 </xdw:taskEventHistory> 24235 </xdw:XDWTask> 24236 <xdw:XDWTask> 24237 <xdw:taskData> 24238 <ws-ht:taskDetails> 24239 <ws-ht:id>task_3</ws-ht:id> 24240 <ws-ht:taskType>ttype</ws-ht:taskType> 24241 <ws-ht:name>tname_3</ws-ht:name> 24242 <ws-ht:status>READY</ws-ht:status> 24243 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24244 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 24245 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24246 <ws-ht:lastModifiedTime>2014-06-13T17:26:54.979+02:00</ws-ht:lastModifiedTime> 24247 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24248 </ws-ht:taskDetails> 24249 <ws-ht:description>Undocumented task</ws-ht:description> 24250 <ws-ht:input/> 24251 <ws-ht:output/> 24252 </xdw:taskData> 24253 <xdw:taskEventHistory> 24254 <xdw:taskEvent> 24255 <xdw:id>1</xdw:id> 24256 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 24257 <xdw:identifier>task_3#1</xdw:identifier> 24258 <xdw:eventType>create</xdw:eventType> 24259 <xdw:status>READY</xdw:status> 24260 <xdw:eventData xsi:nil="true"/> 24261 </xdw:taskEvent> 24262 </xdw:taskEventHistory> 24263 </xdw:XDWTask> 24264 </xdw:TaskList> 24265 </xdw:XDW.WorkflowDocument> 24266 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 24267 <rlustypes:success>true</rlustypes:success> 24268 <rlustypes:message>One record fetched</rlustypes:message> 24269 </rlustypes:RLUSStatusCode> 24270 </GetResponse> 24271 </soapenv:Body> 24272 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 24273 <soap:Header/> 24274 <soap:Body> 24275 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 24276 <rlustypes:searchByCriteria> 24277 <rlustypes:FilterCriteria> 24278 <rlustypes:Expression> 24279 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 24280 <rlusexp:Operator type="EqualTo"/> 24281 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 24282 </rlustypes:Expression> 24283 </rlustypes:FilterCriteria> 24284 <rlustypes:SearchAttributes> 24285 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 24286 </rlustypes:SearchAttributes> 24287 </rlustypes:searchByCriteria> 24288 </rlustypes:RLUSSearchStruct> 24289 </soap:Body> 24290 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="14950"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="14950"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 24291 <soapenv:Header/> 24292 <soapenv:Body> 24293 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 24294 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 24295 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="c0d03e23-a62d-44ed-a18a-47394bb4c2f9"/> 24296 <xdw:effectiveTime value="20140613172654+0200"/> 24297 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 24298 <xdw:patient> 24299 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 24300 </xdw:patient> 24301 <xdw:author> 24302 <xdw:assignedAuthor> 24303 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 24304 <hl7v3:assignedPerson/> 24305 </xdw:assignedAuthor> 24306 </xdw:author> 24307 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 24308 <xdw:workflowDocumentSequenceNumber>11</xdw:workflowDocumentSequenceNumber> 24309 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 24310 <xdw:workflowStatusHistory> 24311 <xdw:documentEvent> 24312 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 24313 <xdw:eventType>complete</xdw:eventType> 24314 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 24315 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24316 <xdw:previousStatus>OPEN</xdw:previousStatus> 24317 <xdw:actualStatus>OPEN</xdw:actualStatus> 24318 </xdw:documentEvent> 24319 <xdw:documentEvent> 24320 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 24321 <xdw:eventType>create</xdw:eventType> 24322 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 24323 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24324 <xdw:previousStatus>OPEN</xdw:previousStatus> 24325 <xdw:actualStatus>OPEN</xdw:actualStatus> 24326 </xdw:documentEvent> 24327 <xdw:documentEvent> 24328 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 24329 <xdw:eventType>create</xdw:eventType> 24330 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 24331 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24332 <xdw:previousStatus>OPEN</xdw:previousStatus> 24333 <xdw:actualStatus>OPEN</xdw:actualStatus> 24334 </xdw:documentEvent> 24335 <xdw:documentEvent> 24336 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 24337 <xdw:eventType>create</xdw:eventType> 24338 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 24339 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24340 <xdw:previousStatus>OPEN</xdw:previousStatus> 24341 <xdw:actualStatus>OPEN</xdw:actualStatus> 24342 </xdw:documentEvent> 24343 <xdw:documentEvent> 24344 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 24345 <xdw:eventType>create</xdw:eventType> 24346 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 24347 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24348 <xdw:previousStatus>OPEN</xdw:previousStatus> 24349 <xdw:actualStatus>OPEN</xdw:actualStatus> 24350 </xdw:documentEvent> 24351 </xdw:workflowStatusHistory> 24352 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 24353 <xdw:TaskList> 24354 <xdw:XDWTask> 24355 <xdw:taskData> 24356 <ws-ht:taskDetails> 24357 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 24358 <ws-ht:taskType>Requested</ws-ht:taskType> 24359 <ws-ht:name>xdw.creation</ws-ht:name> 24360 <ws-ht:status>COMPLETED</ws-ht:status> 24361 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24362 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 24363 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24364 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 24365 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24366 </ws-ht:taskDetails> 24367 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 24368 <ws-ht:input/> 24369 <ws-ht:output/> 24370 </xdw:taskData> 24371 <xdw:taskEventHistory> 24372 <xdw:taskEvent> 24373 <xdw:id>1</xdw:id> 24374 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 24375 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 24376 <xdw:eventType>complete</xdw:eventType> 24377 <xdw:status>COMPLETED</xdw:status> 24378 <xdw:eventData xsi:nil="true"/> 24379 </xdw:taskEvent> 24380 </xdw:taskEventHistory> 24381 </xdw:XDWTask> 24382 <xdw:XDWTask> 24383 <xdw:taskData> 24384 <ws-ht:taskDetails> 24385 <ws-ht:id>task_0</ws-ht:id> 24386 <ws-ht:taskType>ttype</ws-ht:taskType> 24387 <ws-ht:name>tname_0</ws-ht:name> 24388 <ws-ht:status>COMPLETED</ws-ht:status> 24389 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24390 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 24391 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24392 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 24393 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24394 </ws-ht:taskDetails> 24395 <ws-ht:description>Undocumented task</ws-ht:description> 24396 <ws-ht:input/> 24397 <ws-ht:output> 24398 <ws-ht:part name="documentReference"> 24399 <ws-ht:attachment> 24400 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 24401 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 24402 <ws-ht:accessType>RLUS</ws-ht:accessType> 24403 <ws-ht:contentType>application/xml</ws-ht:contentType> 24404 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24405 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 24406 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24407 </ws-ht:attachment> 24408 </ws-ht:part> 24409 </ws-ht:output> 24410 </xdw:taskData> 24411 <xdw:taskEventHistory> 24412 <xdw:taskEvent> 24413 <xdw:id>1</xdw:id> 24414 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 24415 <xdw:identifier>task_0#1</xdw:identifier> 24416 <xdw:eventType>create</xdw:eventType> 24417 <xdw:status>READY</xdw:status> 24418 <xdw:eventData xsi:nil="true"/> 24419 </xdw:taskEvent> 24420 <xdw:taskEvent> 24421 <xdw:id>2</xdw:id> 24422 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 24423 <xdw:identifier>task_0#2</xdw:identifier> 24424 <xdw:eventType>complete</xdw:eventType> 24425 <xdw:status>COMPLETED</xdw:status> 24426 <xdw:eventData xsi:nil="true"/> 24427 </xdw:taskEvent> 24428 </xdw:taskEventHistory> 24429 </xdw:XDWTask> 24430 <xdw:XDWTask> 24431 <xdw:taskData> 24432 <ws-ht:taskDetails> 24433 <ws-ht:id>task_1</ws-ht:id> 24434 <ws-ht:taskType>ttype</ws-ht:taskType> 24435 <ws-ht:name>tname_1</ws-ht:name> 24436 <ws-ht:status>COMPLETED</ws-ht:status> 24437 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24438 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 24439 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24440 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 24441 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24442 </ws-ht:taskDetails> 24443 <ws-ht:description>Undocumented task</ws-ht:description> 24444 <ws-ht:input/> 24445 <ws-ht:output> 24446 <ws-ht:part name="documentReference"> 24447 <ws-ht:attachment> 24448 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 24449 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 24450 <ws-ht:accessType>RLUS</ws-ht:accessType> 24451 <ws-ht:contentType>application/xml</ws-ht:contentType> 24452 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24453 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 24454 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24455 </ws-ht:attachment> 24456 </ws-ht:part> 24457 </ws-ht:output> 24458 </xdw:taskData> 24459 <xdw:taskEventHistory> 24460 <xdw:taskEvent> 24461 <xdw:id>1</xdw:id> 24462 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 24463 <xdw:identifier>task_1#1</xdw:identifier> 24464 <xdw:eventType>create</xdw:eventType> 24465 <xdw:status>READY</xdw:status> 24466 <xdw:eventData xsi:nil="true"/> 24467 </xdw:taskEvent> 24468 <xdw:taskEvent> 24469 <xdw:id>2</xdw:id> 24470 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 24471 <xdw:identifier>task_1#2</xdw:identifier> 24472 <xdw:eventType>complete</xdw:eventType> 24473 <xdw:status>COMPLETED</xdw:status> 24474 <xdw:eventData xsi:nil="true"/> 24475 </xdw:taskEvent> 24476 </xdw:taskEventHistory> 24477 </xdw:XDWTask> 24478 <xdw:XDWTask> 24479 <xdw:taskData> 24480 <ws-ht:taskDetails> 24481 <ws-ht:id>task_2</ws-ht:id> 24482 <ws-ht:taskType>ttype</ws-ht:taskType> 24483 <ws-ht:name>tname_2</ws-ht:name> 24484 <ws-ht:status>COMPLETED</ws-ht:status> 24485 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24486 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 24487 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24488 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 24489 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24490 </ws-ht:taskDetails> 24491 <ws-ht:description>Undocumented task</ws-ht:description> 24492 <ws-ht:input/> 24493 <ws-ht:output> 24494 <ws-ht:part name="documentReference"> 24495 <ws-ht:attachment> 24496 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 24497 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 24498 <ws-ht:accessType>RLUS</ws-ht:accessType> 24499 <ws-ht:contentType>application/xml</ws-ht:contentType> 24500 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24501 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 24502 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24503 </ws-ht:attachment> 24504 </ws-ht:part> 24505 </ws-ht:output> 24506 </xdw:taskData> 24507 <xdw:taskEventHistory> 24508 <xdw:taskEvent> 24509 <xdw:id>1</xdw:id> 24510 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 24511 <xdw:identifier>task_2#1</xdw:identifier> 24512 <xdw:eventType>create</xdw:eventType> 24513 <xdw:status>READY</xdw:status> 24514 <xdw:eventData xsi:nil="true"/> 24515 </xdw:taskEvent> 24516 <xdw:taskEvent> 24517 <xdw:id>2</xdw:id> 24518 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 24519 <xdw:identifier>task_2#2</xdw:identifier> 24520 <xdw:eventType>complete</xdw:eventType> 24521 <xdw:status>COMPLETED</xdw:status> 24522 <xdw:eventData xsi:nil="true"/> 24523 </xdw:taskEvent> 24524 </xdw:taskEventHistory> 24525 </xdw:XDWTask> 24526 <xdw:XDWTask> 24527 <xdw:taskData> 24528 <ws-ht:taskDetails> 24529 <ws-ht:id>task_3</ws-ht:id> 24530 <ws-ht:taskType>ttype</ws-ht:taskType> 24531 <ws-ht:name>tname_3</ws-ht:name> 24532 <ws-ht:status>READY</ws-ht:status> 24533 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24534 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 24535 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24536 <ws-ht:lastModifiedTime>2014-06-13T17:26:54.979+02:00</ws-ht:lastModifiedTime> 24537 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24538 </ws-ht:taskDetails> 24539 <ws-ht:description>Undocumented task</ws-ht:description> 24540 <ws-ht:input/> 24541 <ws-ht:output/> 24542 </xdw:taskData> 24543 <xdw:taskEventHistory> 24544 <xdw:taskEvent> 24545 <xdw:id>1</xdw:id> 24546 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 24547 <xdw:identifier>task_3#1</xdw:identifier> 24548 <xdw:eventType>create</xdw:eventType> 24549 <xdw:status>READY</xdw:status> 24550 <xdw:eventData xsi:nil="true"/> 24551 </xdw:taskEvent> 24552 </xdw:taskEventHistory> 24553 </xdw:XDWTask> 24554 </xdw:TaskList> 24555 </xdw:XDW.WorkflowDocument> 24556 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 24557 <rlustypes:success>true</rlustypes:success> 24558 <rlustypes:message>One record fetched</rlustypes:message> 24559 </rlustypes:RLUSStatusCode> 24560 </GetResponse> 24561 </soapenv:Body> 24562 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="16157"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="16157"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 24563 <soap:Header/> 24564 <soap:Body> 24565 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 24566 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 24567 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="31cda878-2f4c-4242-b891-945647a5af79"/> 24568 <xdw:effectiveTime value="20140613172658+0200"/> 24569 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 24570 <xdw:patient> 24571 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 24572 </xdw:patient> 24573 <xdw:author> 24574 <xdw:assignedAuthor> 24575 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 24576 <hl7v3:assignedPerson/> 24577 </xdw:assignedAuthor> 24578 </xdw:author> 24579 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 24580 <xdw:workflowDocumentSequenceNumber>12</xdw:workflowDocumentSequenceNumber> 24581 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 24582 <xdw:workflowStatusHistory> 24583 <xdw:documentEvent> 24584 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 24585 <xdw:eventType>complete</xdw:eventType> 24586 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 24587 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24588 <xdw:previousStatus>OPEN</xdw:previousStatus> 24589 <xdw:actualStatus>OPEN</xdw:actualStatus> 24590 </xdw:documentEvent> 24591 <xdw:documentEvent> 24592 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 24593 <xdw:eventType>create</xdw:eventType> 24594 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 24595 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24596 <xdw:previousStatus>OPEN</xdw:previousStatus> 24597 <xdw:actualStatus>OPEN</xdw:actualStatus> 24598 </xdw:documentEvent> 24599 <xdw:documentEvent> 24600 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 24601 <xdw:eventType>create</xdw:eventType> 24602 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 24603 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24604 <xdw:previousStatus>OPEN</xdw:previousStatus> 24605 <xdw:actualStatus>OPEN</xdw:actualStatus> 24606 </xdw:documentEvent> 24607 <xdw:documentEvent> 24608 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 24609 <xdw:eventType>create</xdw:eventType> 24610 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 24611 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24612 <xdw:previousStatus>OPEN</xdw:previousStatus> 24613 <xdw:actualStatus>OPEN</xdw:actualStatus> 24614 </xdw:documentEvent> 24615 <xdw:documentEvent> 24616 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 24617 <xdw:eventType>create</xdw:eventType> 24618 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 24619 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24620 <xdw:previousStatus>OPEN</xdw:previousStatus> 24621 <xdw:actualStatus>OPEN</xdw:actualStatus> 24622 </xdw:documentEvent> 24623 </xdw:workflowStatusHistory> 24624 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 24625 <xdw:TaskList> 24626 <xdw:XDWTask> 24627 <xdw:taskData> 24628 <ws-ht:taskDetails> 24629 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 24630 <ws-ht:taskType>Requested</ws-ht:taskType> 24631 <ws-ht:name>xdw.creation</ws-ht:name> 24632 <ws-ht:status>COMPLETED</ws-ht:status> 24633 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24634 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 24635 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24636 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 24637 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24638 </ws-ht:taskDetails> 24639 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 24640 <ws-ht:input/> 24641 <ws-ht:output/> 24642 </xdw:taskData> 24643 <xdw:taskEventHistory> 24644 <xdw:taskEvent> 24645 <xdw:id>1</xdw:id> 24646 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 24647 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 24648 <xdw:eventType>complete</xdw:eventType> 24649 <xdw:status>COMPLETED</xdw:status> 24650 <xdw:eventData xsi:nil="true"/> 24651 </xdw:taskEvent> 24652 </xdw:taskEventHistory> 24653 </xdw:XDWTask> 24654 <xdw:XDWTask> 24655 <xdw:taskData> 24656 <ws-ht:taskDetails> 24657 <ws-ht:id>task_0</ws-ht:id> 24658 <ws-ht:taskType>ttype</ws-ht:taskType> 24659 <ws-ht:name>tname_0</ws-ht:name> 24660 <ws-ht:status>COMPLETED</ws-ht:status> 24661 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24662 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 24663 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24664 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 24665 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24666 </ws-ht:taskDetails> 24667 <ws-ht:description>Undocumented task</ws-ht:description> 24668 <ws-ht:input/> 24669 <ws-ht:output> 24670 <ws-ht:part name="documentReference"> 24671 <ws-ht:attachment> 24672 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 24673 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 24674 <ws-ht:accessType>RLUS</ws-ht:accessType> 24675 <ws-ht:contentType>application/xml</ws-ht:contentType> 24676 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24677 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 24678 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24679 </ws-ht:attachment> 24680 </ws-ht:part> 24681 </ws-ht:output> 24682 </xdw:taskData> 24683 <xdw:taskEventHistory> 24684 <xdw:taskEvent> 24685 <xdw:id>1</xdw:id> 24686 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 24687 <xdw:identifier>task_0#1</xdw:identifier> 24688 <xdw:eventType>create</xdw:eventType> 24689 <xdw:status>READY</xdw:status> 24690 <xdw:eventData xsi:nil="true"/> 24691 </xdw:taskEvent> 24692 <xdw:taskEvent> 24693 <xdw:id>2</xdw:id> 24694 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 24695 <xdw:identifier>task_0#2</xdw:identifier> 24696 <xdw:eventType>complete</xdw:eventType> 24697 <xdw:status>COMPLETED</xdw:status> 24698 <xdw:eventData xsi:nil="true"/> 24699 </xdw:taskEvent> 24700 </xdw:taskEventHistory> 24701 </xdw:XDWTask> 24702 <xdw:XDWTask> 24703 <xdw:taskData> 24704 <ws-ht:taskDetails> 24705 <ws-ht:id>task_1</ws-ht:id> 24706 <ws-ht:taskType>ttype</ws-ht:taskType> 24707 <ws-ht:name>tname_1</ws-ht:name> 24708 <ws-ht:status>COMPLETED</ws-ht:status> 24709 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24710 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 24711 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24712 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 24713 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24714 </ws-ht:taskDetails> 24715 <ws-ht:description>Undocumented task</ws-ht:description> 24716 <ws-ht:input/> 24717 <ws-ht:output> 24718 <ws-ht:part name="documentReference"> 24719 <ws-ht:attachment> 24720 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 24721 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 24722 <ws-ht:accessType>RLUS</ws-ht:accessType> 24723 <ws-ht:contentType>application/xml</ws-ht:contentType> 24724 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24725 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 24726 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24727 </ws-ht:attachment> 24728 </ws-ht:part> 24729 </ws-ht:output> 24730 </xdw:taskData> 24731 <xdw:taskEventHistory> 24732 <xdw:taskEvent> 24733 <xdw:id>1</xdw:id> 24734 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 24735 <xdw:identifier>task_1#1</xdw:identifier> 24736 <xdw:eventType>create</xdw:eventType> 24737 <xdw:status>READY</xdw:status> 24738 <xdw:eventData xsi:nil="true"/> 24739 </xdw:taskEvent> 24740 <xdw:taskEvent> 24741 <xdw:id>2</xdw:id> 24742 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 24743 <xdw:identifier>task_1#2</xdw:identifier> 24744 <xdw:eventType>complete</xdw:eventType> 24745 <xdw:status>COMPLETED</xdw:status> 24746 <xdw:eventData xsi:nil="true"/> 24747 </xdw:taskEvent> 24748 </xdw:taskEventHistory> 24749 </xdw:XDWTask> 24750 <xdw:XDWTask> 24751 <xdw:taskData> 24752 <ws-ht:taskDetails> 24753 <ws-ht:id>task_2</ws-ht:id> 24754 <ws-ht:taskType>ttype</ws-ht:taskType> 24755 <ws-ht:name>tname_2</ws-ht:name> 24756 <ws-ht:status>COMPLETED</ws-ht:status> 24757 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24758 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 24759 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24760 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 24761 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24762 </ws-ht:taskDetails> 24763 <ws-ht:description>Undocumented task</ws-ht:description> 24764 <ws-ht:input/> 24765 <ws-ht:output> 24766 <ws-ht:part name="documentReference"> 24767 <ws-ht:attachment> 24768 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 24769 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 24770 <ws-ht:accessType>RLUS</ws-ht:accessType> 24771 <ws-ht:contentType>application/xml</ws-ht:contentType> 24772 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24773 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 24774 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24775 </ws-ht:attachment> 24776 </ws-ht:part> 24777 </ws-ht:output> 24778 </xdw:taskData> 24779 <xdw:taskEventHistory> 24780 <xdw:taskEvent> 24781 <xdw:id>1</xdw:id> 24782 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 24783 <xdw:identifier>task_2#1</xdw:identifier> 24784 <xdw:eventType>create</xdw:eventType> 24785 <xdw:status>READY</xdw:status> 24786 <xdw:eventData xsi:nil="true"/> 24787 </xdw:taskEvent> 24788 <xdw:taskEvent> 24789 <xdw:id>2</xdw:id> 24790 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 24791 <xdw:identifier>task_2#2</xdw:identifier> 24792 <xdw:eventType>complete</xdw:eventType> 24793 <xdw:status>COMPLETED</xdw:status> 24794 <xdw:eventData xsi:nil="true"/> 24795 </xdw:taskEvent> 24796 </xdw:taskEventHistory> 24797 </xdw:XDWTask> 24798 <xdw:XDWTask> 24799 <xdw:taskData> 24800 <ws-ht:taskDetails> 24801 <ws-ht:id>task_3</ws-ht:id> 24802 <ws-ht:taskType>ttype</ws-ht:taskType> 24803 <ws-ht:name>tname_3</ws-ht:name> 24804 <ws-ht:status>READY</ws-ht:status> 24805 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24806 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 24807 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24808 <ws-ht:lastModifiedTime>2014-06-13T17:26:54.979+02:00</ws-ht:lastModifiedTime> 24809 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24810 </ws-ht:taskDetails> 24811 <ws-ht:description>Undocumented task</ws-ht:description> 24812 <ws-ht:input/> 24813 <ws-ht:output> 24814 <ws-ht:part name="documentReference"> 24815 <ws-ht:attachment> 24816 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 24817 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 24818 <ws-ht:accessType>RLUS</ws-ht:accessType> 24819 <ws-ht:contentType>application/xml</ws-ht:contentType> 24820 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24821 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 24822 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24823 </ws-ht:attachment> 24824 </ws-ht:part> 24825 </ws-ht:output> 24826 </xdw:taskData> 24827 <xdw:taskEventHistory> 24828 <xdw:taskEvent> 24829 <xdw:id>1</xdw:id> 24830 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 24831 <xdw:identifier>task_3#1</xdw:identifier> 24832 <xdw:eventType>create</xdw:eventType> 24833 <xdw:status>READY</xdw:status> 24834 <xdw:eventData xsi:nil="true"/> 24835 </xdw:taskEvent> 24836 </xdw:taskEventHistory> 24837 </xdw:XDWTask> 24838 </xdw:TaskList> 24839 </xdw:XDW.WorkflowDocument> 24840 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 24841 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 24842 <rlustypes:SecurityContext> 24843 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 24844 </rlustypes:SecurityContext> 24845 <rlustypes:CBRContext> 24846 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 24847 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 24848 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 24849 </rlustypes:CBRContext> 24850 </rlustypes:RLUSPutRequestSrcStruct> 24851 <writeCommandEnum>UPDATE</writeCommandEnum> 24852 </PutRequest> 24853 </soap:Body> 24854 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 24855 <soapenv:Header/> 24856 <soapenv:Body> 24857 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 24858 <rlustypes:success>true</rlustypes:success> 24859 <rlustypes:message/> 24860 </rlustypes:RLUSStatusCode> 24861 </soapenv:Body> 24862 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 24863 <soap:Header/> 24864 <soap:Body> 24865 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 24866 <rlustypes:searchByCriteria> 24867 <rlustypes:FilterCriteria> 24868 <rlustypes:Expression> 24869 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 24870 <rlusexp:Operator type="EqualTo"/> 24871 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 24872 </rlustypes:Expression> 24873 </rlustypes:FilterCriteria> 24874 <rlustypes:SearchAttributes> 24875 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 24876 </rlustypes:SearchAttributes> 24877 </rlustypes:searchByCriteria> 24878 </rlustypes:RLUSSearchStruct> 24879 </soap:Body> 24880 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="15719"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="15719"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 24881 <soapenv:Header/> 24882 <soapenv:Body> 24883 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 24884 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 24885 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="31cda878-2f4c-4242-b891-945647a5af79"/> 24886 <xdw:effectiveTime value="20140613172658+0200"/> 24887 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 24888 <xdw:patient> 24889 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 24890 </xdw:patient> 24891 <xdw:author> 24892 <xdw:assignedAuthor> 24893 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 24894 <hl7v3:assignedPerson/> 24895 </xdw:assignedAuthor> 24896 </xdw:author> 24897 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 24898 <xdw:workflowDocumentSequenceNumber>12</xdw:workflowDocumentSequenceNumber> 24899 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 24900 <xdw:workflowStatusHistory> 24901 <xdw:documentEvent> 24902 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 24903 <xdw:eventType>complete</xdw:eventType> 24904 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 24905 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24906 <xdw:previousStatus>OPEN</xdw:previousStatus> 24907 <xdw:actualStatus>OPEN</xdw:actualStatus> 24908 </xdw:documentEvent> 24909 <xdw:documentEvent> 24910 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 24911 <xdw:eventType>create</xdw:eventType> 24912 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 24913 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24914 <xdw:previousStatus>OPEN</xdw:previousStatus> 24915 <xdw:actualStatus>OPEN</xdw:actualStatus> 24916 </xdw:documentEvent> 24917 <xdw:documentEvent> 24918 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 24919 <xdw:eventType>create</xdw:eventType> 24920 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 24921 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24922 <xdw:previousStatus>OPEN</xdw:previousStatus> 24923 <xdw:actualStatus>OPEN</xdw:actualStatus> 24924 </xdw:documentEvent> 24925 <xdw:documentEvent> 24926 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 24927 <xdw:eventType>create</xdw:eventType> 24928 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 24929 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24930 <xdw:previousStatus>OPEN</xdw:previousStatus> 24931 <xdw:actualStatus>OPEN</xdw:actualStatus> 24932 </xdw:documentEvent> 24933 <xdw:documentEvent> 24934 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 24935 <xdw:eventType>create</xdw:eventType> 24936 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 24937 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 24938 <xdw:previousStatus>OPEN</xdw:previousStatus> 24939 <xdw:actualStatus>OPEN</xdw:actualStatus> 24940 </xdw:documentEvent> 24941 </xdw:workflowStatusHistory> 24942 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 24943 <xdw:TaskList> 24944 <xdw:XDWTask> 24945 <xdw:taskData> 24946 <ws-ht:taskDetails> 24947 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 24948 <ws-ht:taskType>Requested</ws-ht:taskType> 24949 <ws-ht:name>xdw.creation</ws-ht:name> 24950 <ws-ht:status>COMPLETED</ws-ht:status> 24951 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24952 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 24953 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24954 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 24955 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24956 </ws-ht:taskDetails> 24957 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 24958 <ws-ht:input/> 24959 <ws-ht:output/> 24960 </xdw:taskData> 24961 <xdw:taskEventHistory> 24962 <xdw:taskEvent> 24963 <xdw:id>1</xdw:id> 24964 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 24965 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 24966 <xdw:eventType>complete</xdw:eventType> 24967 <xdw:status>COMPLETED</xdw:status> 24968 <xdw:eventData xsi:nil="true"/> 24969 </xdw:taskEvent> 24970 </xdw:taskEventHistory> 24971 </xdw:XDWTask> 24972 <xdw:XDWTask> 24973 <xdw:taskData> 24974 <ws-ht:taskDetails> 24975 <ws-ht:id>task_0</ws-ht:id> 24976 <ws-ht:taskType>ttype</ws-ht:taskType> 24977 <ws-ht:name>tname_0</ws-ht:name> 24978 <ws-ht:status>COMPLETED</ws-ht:status> 24979 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 24980 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 24981 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 24982 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 24983 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 24984 </ws-ht:taskDetails> 24985 <ws-ht:description>Undocumented task</ws-ht:description> 24986 <ws-ht:input/> 24987 <ws-ht:output> 24988 <ws-ht:part name="documentReference"> 24989 <ws-ht:attachment> 24990 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 24991 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 24992 <ws-ht:accessType>RLUS</ws-ht:accessType> 24993 <ws-ht:contentType>application/xml</ws-ht:contentType> 24994 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 24995 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 24996 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 24997 </ws-ht:attachment> 24998 </ws-ht:part> 24999 </ws-ht:output> 25000 </xdw:taskData> 25001 <xdw:taskEventHistory> 25002 <xdw:taskEvent> 25003 <xdw:id>1</xdw:id> 25004 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 25005 <xdw:identifier>task_0#1</xdw:identifier> 25006 <xdw:eventType>create</xdw:eventType> 25007 <xdw:status>READY</xdw:status> 25008 <xdw:eventData xsi:nil="true"/> 25009 </xdw:taskEvent> 25010 <xdw:taskEvent> 25011 <xdw:id>2</xdw:id> 25012 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 25013 <xdw:identifier>task_0#2</xdw:identifier> 25014 <xdw:eventType>complete</xdw:eventType> 25015 <xdw:status>COMPLETED</xdw:status> 25016 <xdw:eventData xsi:nil="true"/> 25017 </xdw:taskEvent> 25018 </xdw:taskEventHistory> 25019 </xdw:XDWTask> 25020 <xdw:XDWTask> 25021 <xdw:taskData> 25022 <ws-ht:taskDetails> 25023 <ws-ht:id>task_1</ws-ht:id> 25024 <ws-ht:taskType>ttype</ws-ht:taskType> 25025 <ws-ht:name>tname_1</ws-ht:name> 25026 <ws-ht:status>COMPLETED</ws-ht:status> 25027 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25028 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 25029 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25030 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 25031 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25032 </ws-ht:taskDetails> 25033 <ws-ht:description>Undocumented task</ws-ht:description> 25034 <ws-ht:input/> 25035 <ws-ht:output> 25036 <ws-ht:part name="documentReference"> 25037 <ws-ht:attachment> 25038 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 25039 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 25040 <ws-ht:accessType>RLUS</ws-ht:accessType> 25041 <ws-ht:contentType>application/xml</ws-ht:contentType> 25042 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25043 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 25044 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25045 </ws-ht:attachment> 25046 </ws-ht:part> 25047 </ws-ht:output> 25048 </xdw:taskData> 25049 <xdw:taskEventHistory> 25050 <xdw:taskEvent> 25051 <xdw:id>1</xdw:id> 25052 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 25053 <xdw:identifier>task_1#1</xdw:identifier> 25054 <xdw:eventType>create</xdw:eventType> 25055 <xdw:status>READY</xdw:status> 25056 <xdw:eventData xsi:nil="true"/> 25057 </xdw:taskEvent> 25058 <xdw:taskEvent> 25059 <xdw:id>2</xdw:id> 25060 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 25061 <xdw:identifier>task_1#2</xdw:identifier> 25062 <xdw:eventType>complete</xdw:eventType> 25063 <xdw:status>COMPLETED</xdw:status> 25064 <xdw:eventData xsi:nil="true"/> 25065 </xdw:taskEvent> 25066 </xdw:taskEventHistory> 25067 </xdw:XDWTask> 25068 <xdw:XDWTask> 25069 <xdw:taskData> 25070 <ws-ht:taskDetails> 25071 <ws-ht:id>task_2</ws-ht:id> 25072 <ws-ht:taskType>ttype</ws-ht:taskType> 25073 <ws-ht:name>tname_2</ws-ht:name> 25074 <ws-ht:status>COMPLETED</ws-ht:status> 25075 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25076 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 25077 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25078 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 25079 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25080 </ws-ht:taskDetails> 25081 <ws-ht:description>Undocumented task</ws-ht:description> 25082 <ws-ht:input/> 25083 <ws-ht:output> 25084 <ws-ht:part name="documentReference"> 25085 <ws-ht:attachment> 25086 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 25087 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 25088 <ws-ht:accessType>RLUS</ws-ht:accessType> 25089 <ws-ht:contentType>application/xml</ws-ht:contentType> 25090 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25091 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 25092 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25093 </ws-ht:attachment> 25094 </ws-ht:part> 25095 </ws-ht:output> 25096 </xdw:taskData> 25097 <xdw:taskEventHistory> 25098 <xdw:taskEvent> 25099 <xdw:id>1</xdw:id> 25100 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 25101 <xdw:identifier>task_2#1</xdw:identifier> 25102 <xdw:eventType>create</xdw:eventType> 25103 <xdw:status>READY</xdw:status> 25104 <xdw:eventData xsi:nil="true"/> 25105 </xdw:taskEvent> 25106 <xdw:taskEvent> 25107 <xdw:id>2</xdw:id> 25108 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 25109 <xdw:identifier>task_2#2</xdw:identifier> 25110 <xdw:eventType>complete</xdw:eventType> 25111 <xdw:status>COMPLETED</xdw:status> 25112 <xdw:eventData xsi:nil="true"/> 25113 </xdw:taskEvent> 25114 </xdw:taskEventHistory> 25115 </xdw:XDWTask> 25116 <xdw:XDWTask> 25117 <xdw:taskData> 25118 <ws-ht:taskDetails> 25119 <ws-ht:id>task_3</ws-ht:id> 25120 <ws-ht:taskType>ttype</ws-ht:taskType> 25121 <ws-ht:name>tname_3</ws-ht:name> 25122 <ws-ht:status>READY</ws-ht:status> 25123 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25124 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 25125 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25126 <ws-ht:lastModifiedTime>2014-06-13T17:26:54.979+02:00</ws-ht:lastModifiedTime> 25127 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25128 </ws-ht:taskDetails> 25129 <ws-ht:description>Undocumented task</ws-ht:description> 25130 <ws-ht:input/> 25131 <ws-ht:output> 25132 <ws-ht:part name="documentReference"> 25133 <ws-ht:attachment> 25134 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 25135 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 25136 <ws-ht:accessType>RLUS</ws-ht:accessType> 25137 <ws-ht:contentType>application/xml</ws-ht:contentType> 25138 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25139 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 25140 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25141 </ws-ht:attachment> 25142 </ws-ht:part> 25143 </ws-ht:output> 25144 </xdw:taskData> 25145 <xdw:taskEventHistory> 25146 <xdw:taskEvent> 25147 <xdw:id>1</xdw:id> 25148 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 25149 <xdw:identifier>task_3#1</xdw:identifier> 25150 <xdw:eventType>create</xdw:eventType> 25151 <xdw:status>READY</xdw:status> 25152 <xdw:eventData xsi:nil="true"/> 25153 </xdw:taskEvent> 25154 </xdw:taskEventHistory> 25155 </xdw:XDWTask> 25156 </xdw:TaskList> 25157 </xdw:XDW.WorkflowDocument> 25158 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 25159 <rlustypes:success>true</rlustypes:success> 25160 <rlustypes:message>One record fetched</rlustypes:message> 25161 </rlustypes:RLUSStatusCode> 25162 </GetResponse> 25163 </soapenv:Body> 25164 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 25165 <soap:Header/> 25166 <soap:Body> 25167 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 25168 <rlustypes:searchByCriteria> 25169 <rlustypes:FilterCriteria> 25170 <rlustypes:Expression> 25171 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 25172 <rlusexp:Operator type="EqualTo"/> 25173 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 25174 </rlustypes:Expression> 25175 </rlustypes:FilterCriteria> 25176 <rlustypes:SearchAttributes> 25177 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 25178 </rlustypes:SearchAttributes> 25179 </rlustypes:searchByCriteria> 25180 </rlustypes:RLUSSearchStruct> 25181 </soap:Body> 25182 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="15719"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="15719"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 25183 <soapenv:Header/> 25184 <soapenv:Body> 25185 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 25186 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 25187 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="31cda878-2f4c-4242-b891-945647a5af79"/> 25188 <xdw:effectiveTime value="20140613172658+0200"/> 25189 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 25190 <xdw:patient> 25191 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 25192 </xdw:patient> 25193 <xdw:author> 25194 <xdw:assignedAuthor> 25195 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 25196 <hl7v3:assignedPerson/> 25197 </xdw:assignedAuthor> 25198 </xdw:author> 25199 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 25200 <xdw:workflowDocumentSequenceNumber>12</xdw:workflowDocumentSequenceNumber> 25201 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 25202 <xdw:workflowStatusHistory> 25203 <xdw:documentEvent> 25204 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 25205 <xdw:eventType>complete</xdw:eventType> 25206 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 25207 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25208 <xdw:previousStatus>OPEN</xdw:previousStatus> 25209 <xdw:actualStatus>OPEN</xdw:actualStatus> 25210 </xdw:documentEvent> 25211 <xdw:documentEvent> 25212 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 25213 <xdw:eventType>create</xdw:eventType> 25214 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 25215 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25216 <xdw:previousStatus>OPEN</xdw:previousStatus> 25217 <xdw:actualStatus>OPEN</xdw:actualStatus> 25218 </xdw:documentEvent> 25219 <xdw:documentEvent> 25220 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 25221 <xdw:eventType>create</xdw:eventType> 25222 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 25223 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25224 <xdw:previousStatus>OPEN</xdw:previousStatus> 25225 <xdw:actualStatus>OPEN</xdw:actualStatus> 25226 </xdw:documentEvent> 25227 <xdw:documentEvent> 25228 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 25229 <xdw:eventType>create</xdw:eventType> 25230 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 25231 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25232 <xdw:previousStatus>OPEN</xdw:previousStatus> 25233 <xdw:actualStatus>OPEN</xdw:actualStatus> 25234 </xdw:documentEvent> 25235 <xdw:documentEvent> 25236 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 25237 <xdw:eventType>create</xdw:eventType> 25238 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 25239 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25240 <xdw:previousStatus>OPEN</xdw:previousStatus> 25241 <xdw:actualStatus>OPEN</xdw:actualStatus> 25242 </xdw:documentEvent> 25243 </xdw:workflowStatusHistory> 25244 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 25245 <xdw:TaskList> 25246 <xdw:XDWTask> 25247 <xdw:taskData> 25248 <ws-ht:taskDetails> 25249 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 25250 <ws-ht:taskType>Requested</ws-ht:taskType> 25251 <ws-ht:name>xdw.creation</ws-ht:name> 25252 <ws-ht:status>COMPLETED</ws-ht:status> 25253 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25254 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 25255 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25256 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 25257 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25258 </ws-ht:taskDetails> 25259 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 25260 <ws-ht:input/> 25261 <ws-ht:output/> 25262 </xdw:taskData> 25263 <xdw:taskEventHistory> 25264 <xdw:taskEvent> 25265 <xdw:id>1</xdw:id> 25266 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 25267 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 25268 <xdw:eventType>complete</xdw:eventType> 25269 <xdw:status>COMPLETED</xdw:status> 25270 <xdw:eventData xsi:nil="true"/> 25271 </xdw:taskEvent> 25272 </xdw:taskEventHistory> 25273 </xdw:XDWTask> 25274 <xdw:XDWTask> 25275 <xdw:taskData> 25276 <ws-ht:taskDetails> 25277 <ws-ht:id>task_0</ws-ht:id> 25278 <ws-ht:taskType>ttype</ws-ht:taskType> 25279 <ws-ht:name>tname_0</ws-ht:name> 25280 <ws-ht:status>COMPLETED</ws-ht:status> 25281 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25282 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 25283 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25284 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 25285 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25286 </ws-ht:taskDetails> 25287 <ws-ht:description>Undocumented task</ws-ht:description> 25288 <ws-ht:input/> 25289 <ws-ht:output> 25290 <ws-ht:part name="documentReference"> 25291 <ws-ht:attachment> 25292 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 25293 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 25294 <ws-ht:accessType>RLUS</ws-ht:accessType> 25295 <ws-ht:contentType>application/xml</ws-ht:contentType> 25296 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25297 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 25298 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25299 </ws-ht:attachment> 25300 </ws-ht:part> 25301 </ws-ht:output> 25302 </xdw:taskData> 25303 <xdw:taskEventHistory> 25304 <xdw:taskEvent> 25305 <xdw:id>1</xdw:id> 25306 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 25307 <xdw:identifier>task_0#1</xdw:identifier> 25308 <xdw:eventType>create</xdw:eventType> 25309 <xdw:status>READY</xdw:status> 25310 <xdw:eventData xsi:nil="true"/> 25311 </xdw:taskEvent> 25312 <xdw:taskEvent> 25313 <xdw:id>2</xdw:id> 25314 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 25315 <xdw:identifier>task_0#2</xdw:identifier> 25316 <xdw:eventType>complete</xdw:eventType> 25317 <xdw:status>COMPLETED</xdw:status> 25318 <xdw:eventData xsi:nil="true"/> 25319 </xdw:taskEvent> 25320 </xdw:taskEventHistory> 25321 </xdw:XDWTask> 25322 <xdw:XDWTask> 25323 <xdw:taskData> 25324 <ws-ht:taskDetails> 25325 <ws-ht:id>task_1</ws-ht:id> 25326 <ws-ht:taskType>ttype</ws-ht:taskType> 25327 <ws-ht:name>tname_1</ws-ht:name> 25328 <ws-ht:status>COMPLETED</ws-ht:status> 25329 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25330 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 25331 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25332 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 25333 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25334 </ws-ht:taskDetails> 25335 <ws-ht:description>Undocumented task</ws-ht:description> 25336 <ws-ht:input/> 25337 <ws-ht:output> 25338 <ws-ht:part name="documentReference"> 25339 <ws-ht:attachment> 25340 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 25341 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 25342 <ws-ht:accessType>RLUS</ws-ht:accessType> 25343 <ws-ht:contentType>application/xml</ws-ht:contentType> 25344 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25345 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 25346 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25347 </ws-ht:attachment> 25348 </ws-ht:part> 25349 </ws-ht:output> 25350 </xdw:taskData> 25351 <xdw:taskEventHistory> 25352 <xdw:taskEvent> 25353 <xdw:id>1</xdw:id> 25354 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 25355 <xdw:identifier>task_1#1</xdw:identifier> 25356 <xdw:eventType>create</xdw:eventType> 25357 <xdw:status>READY</xdw:status> 25358 <xdw:eventData xsi:nil="true"/> 25359 </xdw:taskEvent> 25360 <xdw:taskEvent> 25361 <xdw:id>2</xdw:id> 25362 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 25363 <xdw:identifier>task_1#2</xdw:identifier> 25364 <xdw:eventType>complete</xdw:eventType> 25365 <xdw:status>COMPLETED</xdw:status> 25366 <xdw:eventData xsi:nil="true"/> 25367 </xdw:taskEvent> 25368 </xdw:taskEventHistory> 25369 </xdw:XDWTask> 25370 <xdw:XDWTask> 25371 <xdw:taskData> 25372 <ws-ht:taskDetails> 25373 <ws-ht:id>task_2</ws-ht:id> 25374 <ws-ht:taskType>ttype</ws-ht:taskType> 25375 <ws-ht:name>tname_2</ws-ht:name> 25376 <ws-ht:status>COMPLETED</ws-ht:status> 25377 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25378 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 25379 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25380 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 25381 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25382 </ws-ht:taskDetails> 25383 <ws-ht:description>Undocumented task</ws-ht:description> 25384 <ws-ht:input/> 25385 <ws-ht:output> 25386 <ws-ht:part name="documentReference"> 25387 <ws-ht:attachment> 25388 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 25389 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 25390 <ws-ht:accessType>RLUS</ws-ht:accessType> 25391 <ws-ht:contentType>application/xml</ws-ht:contentType> 25392 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25393 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 25394 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25395 </ws-ht:attachment> 25396 </ws-ht:part> 25397 </ws-ht:output> 25398 </xdw:taskData> 25399 <xdw:taskEventHistory> 25400 <xdw:taskEvent> 25401 <xdw:id>1</xdw:id> 25402 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 25403 <xdw:identifier>task_2#1</xdw:identifier> 25404 <xdw:eventType>create</xdw:eventType> 25405 <xdw:status>READY</xdw:status> 25406 <xdw:eventData xsi:nil="true"/> 25407 </xdw:taskEvent> 25408 <xdw:taskEvent> 25409 <xdw:id>2</xdw:id> 25410 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 25411 <xdw:identifier>task_2#2</xdw:identifier> 25412 <xdw:eventType>complete</xdw:eventType> 25413 <xdw:status>COMPLETED</xdw:status> 25414 <xdw:eventData xsi:nil="true"/> 25415 </xdw:taskEvent> 25416 </xdw:taskEventHistory> 25417 </xdw:XDWTask> 25418 <xdw:XDWTask> 25419 <xdw:taskData> 25420 <ws-ht:taskDetails> 25421 <ws-ht:id>task_3</ws-ht:id> 25422 <ws-ht:taskType>ttype</ws-ht:taskType> 25423 <ws-ht:name>tname_3</ws-ht:name> 25424 <ws-ht:status>READY</ws-ht:status> 25425 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25426 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 25427 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25428 <ws-ht:lastModifiedTime>2014-06-13T17:26:54.979+02:00</ws-ht:lastModifiedTime> 25429 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25430 </ws-ht:taskDetails> 25431 <ws-ht:description>Undocumented task</ws-ht:description> 25432 <ws-ht:input/> 25433 <ws-ht:output> 25434 <ws-ht:part name="documentReference"> 25435 <ws-ht:attachment> 25436 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 25437 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 25438 <ws-ht:accessType>RLUS</ws-ht:accessType> 25439 <ws-ht:contentType>application/xml</ws-ht:contentType> 25440 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25441 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 25442 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25443 </ws-ht:attachment> 25444 </ws-ht:part> 25445 </ws-ht:output> 25446 </xdw:taskData> 25447 <xdw:taskEventHistory> 25448 <xdw:taskEvent> 25449 <xdw:id>1</xdw:id> 25450 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 25451 <xdw:identifier>task_3#1</xdw:identifier> 25452 <xdw:eventType>create</xdw:eventType> 25453 <xdw:status>READY</xdw:status> 25454 <xdw:eventData xsi:nil="true"/> 25455 </xdw:taskEvent> 25456 </xdw:taskEventHistory> 25457 </xdw:XDWTask> 25458 </xdw:TaskList> 25459 </xdw:XDW.WorkflowDocument> 25460 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 25461 <rlustypes:success>true</rlustypes:success> 25462 <rlustypes:message>One record fetched</rlustypes:message> 25463 </rlustypes:RLUSStatusCode> 25464 </GetResponse> 25465 </soapenv:Body> 25466 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="16547"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="16547"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 25467 <soap:Header/> 25468 <soap:Body> 25469 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 25470 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 25471 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="40de14aa-b0fe-465c-b960-f0b5f6c22ea5"/> 25472 <xdw:effectiveTime value="20140613172659+0200"/> 25473 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 25474 <xdw:patient> 25475 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 25476 </xdw:patient> 25477 <xdw:author> 25478 <xdw:assignedAuthor> 25479 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 25480 <hl7v3:assignedPerson/> 25481 </xdw:assignedAuthor> 25482 </xdw:author> 25483 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 25484 <xdw:workflowDocumentSequenceNumber>13</xdw:workflowDocumentSequenceNumber> 25485 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 25486 <xdw:workflowStatusHistory> 25487 <xdw:documentEvent> 25488 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 25489 <xdw:eventType>complete</xdw:eventType> 25490 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 25491 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25492 <xdw:previousStatus>OPEN</xdw:previousStatus> 25493 <xdw:actualStatus>OPEN</xdw:actualStatus> 25494 </xdw:documentEvent> 25495 <xdw:documentEvent> 25496 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 25497 <xdw:eventType>create</xdw:eventType> 25498 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 25499 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25500 <xdw:previousStatus>OPEN</xdw:previousStatus> 25501 <xdw:actualStatus>OPEN</xdw:actualStatus> 25502 </xdw:documentEvent> 25503 <xdw:documentEvent> 25504 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 25505 <xdw:eventType>create</xdw:eventType> 25506 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 25507 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25508 <xdw:previousStatus>OPEN</xdw:previousStatus> 25509 <xdw:actualStatus>OPEN</xdw:actualStatus> 25510 </xdw:documentEvent> 25511 <xdw:documentEvent> 25512 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 25513 <xdw:eventType>create</xdw:eventType> 25514 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 25515 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25516 <xdw:previousStatus>OPEN</xdw:previousStatus> 25517 <xdw:actualStatus>OPEN</xdw:actualStatus> 25518 </xdw:documentEvent> 25519 <xdw:documentEvent> 25520 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 25521 <xdw:eventType>create</xdw:eventType> 25522 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 25523 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25524 <xdw:previousStatus>OPEN</xdw:previousStatus> 25525 <xdw:actualStatus>OPEN</xdw:actualStatus> 25526 </xdw:documentEvent> 25527 </xdw:workflowStatusHistory> 25528 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 25529 <xdw:TaskList> 25530 <xdw:XDWTask> 25531 <xdw:taskData> 25532 <ws-ht:taskDetails> 25533 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 25534 <ws-ht:taskType>Requested</ws-ht:taskType> 25535 <ws-ht:name>xdw.creation</ws-ht:name> 25536 <ws-ht:status>COMPLETED</ws-ht:status> 25537 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25538 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 25539 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25540 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 25541 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25542 </ws-ht:taskDetails> 25543 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 25544 <ws-ht:input/> 25545 <ws-ht:output/> 25546 </xdw:taskData> 25547 <xdw:taskEventHistory> 25548 <xdw:taskEvent> 25549 <xdw:id>1</xdw:id> 25550 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 25551 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 25552 <xdw:eventType>complete</xdw:eventType> 25553 <xdw:status>COMPLETED</xdw:status> 25554 <xdw:eventData xsi:nil="true"/> 25555 </xdw:taskEvent> 25556 </xdw:taskEventHistory> 25557 </xdw:XDWTask> 25558 <xdw:XDWTask> 25559 <xdw:taskData> 25560 <ws-ht:taskDetails> 25561 <ws-ht:id>task_0</ws-ht:id> 25562 <ws-ht:taskType>ttype</ws-ht:taskType> 25563 <ws-ht:name>tname_0</ws-ht:name> 25564 <ws-ht:status>COMPLETED</ws-ht:status> 25565 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25566 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 25567 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25568 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 25569 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25570 </ws-ht:taskDetails> 25571 <ws-ht:description>Undocumented task</ws-ht:description> 25572 <ws-ht:input/> 25573 <ws-ht:output> 25574 <ws-ht:part name="documentReference"> 25575 <ws-ht:attachment> 25576 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 25577 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 25578 <ws-ht:accessType>RLUS</ws-ht:accessType> 25579 <ws-ht:contentType>application/xml</ws-ht:contentType> 25580 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25581 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 25582 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25583 </ws-ht:attachment> 25584 </ws-ht:part> 25585 </ws-ht:output> 25586 </xdw:taskData> 25587 <xdw:taskEventHistory> 25588 <xdw:taskEvent> 25589 <xdw:id>1</xdw:id> 25590 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 25591 <xdw:identifier>task_0#1</xdw:identifier> 25592 <xdw:eventType>create</xdw:eventType> 25593 <xdw:status>READY</xdw:status> 25594 <xdw:eventData xsi:nil="true"/> 25595 </xdw:taskEvent> 25596 <xdw:taskEvent> 25597 <xdw:id>2</xdw:id> 25598 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 25599 <xdw:identifier>task_0#2</xdw:identifier> 25600 <xdw:eventType>complete</xdw:eventType> 25601 <xdw:status>COMPLETED</xdw:status> 25602 <xdw:eventData xsi:nil="true"/> 25603 </xdw:taskEvent> 25604 </xdw:taskEventHistory> 25605 </xdw:XDWTask> 25606 <xdw:XDWTask> 25607 <xdw:taskData> 25608 <ws-ht:taskDetails> 25609 <ws-ht:id>task_1</ws-ht:id> 25610 <ws-ht:taskType>ttype</ws-ht:taskType> 25611 <ws-ht:name>tname_1</ws-ht:name> 25612 <ws-ht:status>COMPLETED</ws-ht:status> 25613 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25614 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 25615 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25616 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 25617 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25618 </ws-ht:taskDetails> 25619 <ws-ht:description>Undocumented task</ws-ht:description> 25620 <ws-ht:input/> 25621 <ws-ht:output> 25622 <ws-ht:part name="documentReference"> 25623 <ws-ht:attachment> 25624 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 25625 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 25626 <ws-ht:accessType>RLUS</ws-ht:accessType> 25627 <ws-ht:contentType>application/xml</ws-ht:contentType> 25628 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25629 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 25630 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25631 </ws-ht:attachment> 25632 </ws-ht:part> 25633 </ws-ht:output> 25634 </xdw:taskData> 25635 <xdw:taskEventHistory> 25636 <xdw:taskEvent> 25637 <xdw:id>1</xdw:id> 25638 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 25639 <xdw:identifier>task_1#1</xdw:identifier> 25640 <xdw:eventType>create</xdw:eventType> 25641 <xdw:status>READY</xdw:status> 25642 <xdw:eventData xsi:nil="true"/> 25643 </xdw:taskEvent> 25644 <xdw:taskEvent> 25645 <xdw:id>2</xdw:id> 25646 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 25647 <xdw:identifier>task_1#2</xdw:identifier> 25648 <xdw:eventType>complete</xdw:eventType> 25649 <xdw:status>COMPLETED</xdw:status> 25650 <xdw:eventData xsi:nil="true"/> 25651 </xdw:taskEvent> 25652 </xdw:taskEventHistory> 25653 </xdw:XDWTask> 25654 <xdw:XDWTask> 25655 <xdw:taskData> 25656 <ws-ht:taskDetails> 25657 <ws-ht:id>task_2</ws-ht:id> 25658 <ws-ht:taskType>ttype</ws-ht:taskType> 25659 <ws-ht:name>tname_2</ws-ht:name> 25660 <ws-ht:status>COMPLETED</ws-ht:status> 25661 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25662 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 25663 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25664 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 25665 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25666 </ws-ht:taskDetails> 25667 <ws-ht:description>Undocumented task</ws-ht:description> 25668 <ws-ht:input/> 25669 <ws-ht:output> 25670 <ws-ht:part name="documentReference"> 25671 <ws-ht:attachment> 25672 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 25673 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 25674 <ws-ht:accessType>RLUS</ws-ht:accessType> 25675 <ws-ht:contentType>application/xml</ws-ht:contentType> 25676 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25677 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 25678 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25679 </ws-ht:attachment> 25680 </ws-ht:part> 25681 </ws-ht:output> 25682 </xdw:taskData> 25683 <xdw:taskEventHistory> 25684 <xdw:taskEvent> 25685 <xdw:id>1</xdw:id> 25686 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 25687 <xdw:identifier>task_2#1</xdw:identifier> 25688 <xdw:eventType>create</xdw:eventType> 25689 <xdw:status>READY</xdw:status> 25690 <xdw:eventData xsi:nil="true"/> 25691 </xdw:taskEvent> 25692 <xdw:taskEvent> 25693 <xdw:id>2</xdw:id> 25694 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 25695 <xdw:identifier>task_2#2</xdw:identifier> 25696 <xdw:eventType>complete</xdw:eventType> 25697 <xdw:status>COMPLETED</xdw:status> 25698 <xdw:eventData xsi:nil="true"/> 25699 </xdw:taskEvent> 25700 </xdw:taskEventHistory> 25701 </xdw:XDWTask> 25702 <xdw:XDWTask> 25703 <xdw:taskData> 25704 <ws-ht:taskDetails> 25705 <ws-ht:id>task_3</ws-ht:id> 25706 <ws-ht:taskType>ttype</ws-ht:taskType> 25707 <ws-ht:name>tname_3</ws-ht:name> 25708 <ws-ht:status>COMPLETED</ws-ht:status> 25709 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25710 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 25711 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25712 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 25713 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25714 </ws-ht:taskDetails> 25715 <ws-ht:description>Undocumented task</ws-ht:description> 25716 <ws-ht:input/> 25717 <ws-ht:output> 25718 <ws-ht:part name="documentReference"> 25719 <ws-ht:attachment> 25720 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 25721 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 25722 <ws-ht:accessType>RLUS</ws-ht:accessType> 25723 <ws-ht:contentType>application/xml</ws-ht:contentType> 25724 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25725 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 25726 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25727 </ws-ht:attachment> 25728 </ws-ht:part> 25729 </ws-ht:output> 25730 </xdw:taskData> 25731 <xdw:taskEventHistory> 25732 <xdw:taskEvent> 25733 <xdw:id>1</xdw:id> 25734 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 25735 <xdw:identifier>task_3#1</xdw:identifier> 25736 <xdw:eventType>create</xdw:eventType> 25737 <xdw:status>READY</xdw:status> 25738 <xdw:eventData xsi:nil="true"/> 25739 </xdw:taskEvent> 25740 <xdw:taskEvent> 25741 <xdw:id>2</xdw:id> 25742 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 25743 <xdw:identifier>task_3#2</xdw:identifier> 25744 <xdw:eventType>complete</xdw:eventType> 25745 <xdw:status>COMPLETED</xdw:status> 25746 <xdw:eventData xsi:nil="true"/> 25747 </xdw:taskEvent> 25748 </xdw:taskEventHistory> 25749 </xdw:XDWTask> 25750 </xdw:TaskList> 25751 </xdw:XDW.WorkflowDocument> 25752 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 25753 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 25754 <rlustypes:SecurityContext> 25755 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 25756 </rlustypes:SecurityContext> 25757 <rlustypes:CBRContext> 25758 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 25759 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 25760 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 25761 </rlustypes:CBRContext> 25762 </rlustypes:RLUSPutRequestSrcStruct> 25763 <writeCommandEnum>UPDATE</writeCommandEnum> 25764 </PutRequest> 25765 </soap:Body> 25766 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 25767 <soapenv:Header/> 25768 <soapenv:Body> 25769 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 25770 <rlustypes:success>true</rlustypes:success> 25771 <rlustypes:message/> 25772 </rlustypes:RLUSStatusCode> 25773 </soapenv:Body> 25774 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 25775 <soap:Header/> 25776 <soap:Body> 25777 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 25778 <rlustypes:searchByCriteria> 25779 <rlustypes:FilterCriteria> 25780 <rlustypes:Expression> 25781 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 25782 <rlusexp:Operator type="EqualTo"/> 25783 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 25784 </rlustypes:Expression> 25785 </rlustypes:FilterCriteria> 25786 <rlustypes:SearchAttributes> 25787 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 25788 </rlustypes:SearchAttributes> 25789 </rlustypes:searchByCriteria> 25790 </rlustypes:RLUSSearchStruct> 25791 </soap:Body> 25792 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="16109"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="16109"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 25793 <soapenv:Header/> 25794 <soapenv:Body> 25795 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 25796 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 25797 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="40de14aa-b0fe-465c-b960-f0b5f6c22ea5"/> 25798 <xdw:effectiveTime value="20140613172659+0200"/> 25799 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 25800 <xdw:patient> 25801 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 25802 </xdw:patient> 25803 <xdw:author> 25804 <xdw:assignedAuthor> 25805 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 25806 <hl7v3:assignedPerson/> 25807 </xdw:assignedAuthor> 25808 </xdw:author> 25809 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 25810 <xdw:workflowDocumentSequenceNumber>13</xdw:workflowDocumentSequenceNumber> 25811 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 25812 <xdw:workflowStatusHistory> 25813 <xdw:documentEvent> 25814 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 25815 <xdw:eventType>complete</xdw:eventType> 25816 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 25817 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25818 <xdw:previousStatus>OPEN</xdw:previousStatus> 25819 <xdw:actualStatus>OPEN</xdw:actualStatus> 25820 </xdw:documentEvent> 25821 <xdw:documentEvent> 25822 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 25823 <xdw:eventType>create</xdw:eventType> 25824 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 25825 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25826 <xdw:previousStatus>OPEN</xdw:previousStatus> 25827 <xdw:actualStatus>OPEN</xdw:actualStatus> 25828 </xdw:documentEvent> 25829 <xdw:documentEvent> 25830 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 25831 <xdw:eventType>create</xdw:eventType> 25832 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 25833 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25834 <xdw:previousStatus>OPEN</xdw:previousStatus> 25835 <xdw:actualStatus>OPEN</xdw:actualStatus> 25836 </xdw:documentEvent> 25837 <xdw:documentEvent> 25838 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 25839 <xdw:eventType>create</xdw:eventType> 25840 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 25841 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25842 <xdw:previousStatus>OPEN</xdw:previousStatus> 25843 <xdw:actualStatus>OPEN</xdw:actualStatus> 25844 </xdw:documentEvent> 25845 <xdw:documentEvent> 25846 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 25847 <xdw:eventType>create</xdw:eventType> 25848 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 25849 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 25850 <xdw:previousStatus>OPEN</xdw:previousStatus> 25851 <xdw:actualStatus>OPEN</xdw:actualStatus> 25852 </xdw:documentEvent> 25853 </xdw:workflowStatusHistory> 25854 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 25855 <xdw:TaskList> 25856 <xdw:XDWTask> 25857 <xdw:taskData> 25858 <ws-ht:taskDetails> 25859 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 25860 <ws-ht:taskType>Requested</ws-ht:taskType> 25861 <ws-ht:name>xdw.creation</ws-ht:name> 25862 <ws-ht:status>COMPLETED</ws-ht:status> 25863 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25864 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 25865 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25866 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 25867 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25868 </ws-ht:taskDetails> 25869 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 25870 <ws-ht:input/> 25871 <ws-ht:output/> 25872 </xdw:taskData> 25873 <xdw:taskEventHistory> 25874 <xdw:taskEvent> 25875 <xdw:id>1</xdw:id> 25876 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 25877 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 25878 <xdw:eventType>complete</xdw:eventType> 25879 <xdw:status>COMPLETED</xdw:status> 25880 <xdw:eventData xsi:nil="true"/> 25881 </xdw:taskEvent> 25882 </xdw:taskEventHistory> 25883 </xdw:XDWTask> 25884 <xdw:XDWTask> 25885 <xdw:taskData> 25886 <ws-ht:taskDetails> 25887 <ws-ht:id>task_0</ws-ht:id> 25888 <ws-ht:taskType>ttype</ws-ht:taskType> 25889 <ws-ht:name>tname_0</ws-ht:name> 25890 <ws-ht:status>COMPLETED</ws-ht:status> 25891 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25892 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 25893 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25894 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 25895 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25896 </ws-ht:taskDetails> 25897 <ws-ht:description>Undocumented task</ws-ht:description> 25898 <ws-ht:input/> 25899 <ws-ht:output> 25900 <ws-ht:part name="documentReference"> 25901 <ws-ht:attachment> 25902 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 25903 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 25904 <ws-ht:accessType>RLUS</ws-ht:accessType> 25905 <ws-ht:contentType>application/xml</ws-ht:contentType> 25906 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25907 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 25908 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25909 </ws-ht:attachment> 25910 </ws-ht:part> 25911 </ws-ht:output> 25912 </xdw:taskData> 25913 <xdw:taskEventHistory> 25914 <xdw:taskEvent> 25915 <xdw:id>1</xdw:id> 25916 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 25917 <xdw:identifier>task_0#1</xdw:identifier> 25918 <xdw:eventType>create</xdw:eventType> 25919 <xdw:status>READY</xdw:status> 25920 <xdw:eventData xsi:nil="true"/> 25921 </xdw:taskEvent> 25922 <xdw:taskEvent> 25923 <xdw:id>2</xdw:id> 25924 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 25925 <xdw:identifier>task_0#2</xdw:identifier> 25926 <xdw:eventType>complete</xdw:eventType> 25927 <xdw:status>COMPLETED</xdw:status> 25928 <xdw:eventData xsi:nil="true"/> 25929 </xdw:taskEvent> 25930 </xdw:taskEventHistory> 25931 </xdw:XDWTask> 25932 <xdw:XDWTask> 25933 <xdw:taskData> 25934 <ws-ht:taskDetails> 25935 <ws-ht:id>task_1</ws-ht:id> 25936 <ws-ht:taskType>ttype</ws-ht:taskType> 25937 <ws-ht:name>tname_1</ws-ht:name> 25938 <ws-ht:status>COMPLETED</ws-ht:status> 25939 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25940 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 25941 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25942 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 25943 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25944 </ws-ht:taskDetails> 25945 <ws-ht:description>Undocumented task</ws-ht:description> 25946 <ws-ht:input/> 25947 <ws-ht:output> 25948 <ws-ht:part name="documentReference"> 25949 <ws-ht:attachment> 25950 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 25951 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 25952 <ws-ht:accessType>RLUS</ws-ht:accessType> 25953 <ws-ht:contentType>application/xml</ws-ht:contentType> 25954 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 25955 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 25956 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 25957 </ws-ht:attachment> 25958 </ws-ht:part> 25959 </ws-ht:output> 25960 </xdw:taskData> 25961 <xdw:taskEventHistory> 25962 <xdw:taskEvent> 25963 <xdw:id>1</xdw:id> 25964 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 25965 <xdw:identifier>task_1#1</xdw:identifier> 25966 <xdw:eventType>create</xdw:eventType> 25967 <xdw:status>READY</xdw:status> 25968 <xdw:eventData xsi:nil="true"/> 25969 </xdw:taskEvent> 25970 <xdw:taskEvent> 25971 <xdw:id>2</xdw:id> 25972 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 25973 <xdw:identifier>task_1#2</xdw:identifier> 25974 <xdw:eventType>complete</xdw:eventType> 25975 <xdw:status>COMPLETED</xdw:status> 25976 <xdw:eventData xsi:nil="true"/> 25977 </xdw:taskEvent> 25978 </xdw:taskEventHistory> 25979 </xdw:XDWTask> 25980 <xdw:XDWTask> 25981 <xdw:taskData> 25982 <ws-ht:taskDetails> 25983 <ws-ht:id>task_2</ws-ht:id> 25984 <ws-ht:taskType>ttype</ws-ht:taskType> 25985 <ws-ht:name>tname_2</ws-ht:name> 25986 <ws-ht:status>COMPLETED</ws-ht:status> 25987 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 25988 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 25989 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 25990 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 25991 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 25992 </ws-ht:taskDetails> 25993 <ws-ht:description>Undocumented task</ws-ht:description> 25994 <ws-ht:input/> 25995 <ws-ht:output> 25996 <ws-ht:part name="documentReference"> 25997 <ws-ht:attachment> 25998 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 25999 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 26000 <ws-ht:accessType>RLUS</ws-ht:accessType> 26001 <ws-ht:contentType>application/xml</ws-ht:contentType> 26002 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26003 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 26004 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26005 </ws-ht:attachment> 26006 </ws-ht:part> 26007 </ws-ht:output> 26008 </xdw:taskData> 26009 <xdw:taskEventHistory> 26010 <xdw:taskEvent> 26011 <xdw:id>1</xdw:id> 26012 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 26013 <xdw:identifier>task_2#1</xdw:identifier> 26014 <xdw:eventType>create</xdw:eventType> 26015 <xdw:status>READY</xdw:status> 26016 <xdw:eventData xsi:nil="true"/> 26017 </xdw:taskEvent> 26018 <xdw:taskEvent> 26019 <xdw:id>2</xdw:id> 26020 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 26021 <xdw:identifier>task_2#2</xdw:identifier> 26022 <xdw:eventType>complete</xdw:eventType> 26023 <xdw:status>COMPLETED</xdw:status> 26024 <xdw:eventData xsi:nil="true"/> 26025 </xdw:taskEvent> 26026 </xdw:taskEventHistory> 26027 </xdw:XDWTask> 26028 <xdw:XDWTask> 26029 <xdw:taskData> 26030 <ws-ht:taskDetails> 26031 <ws-ht:id>task_3</ws-ht:id> 26032 <ws-ht:taskType>ttype</ws-ht:taskType> 26033 <ws-ht:name>tname_3</ws-ht:name> 26034 <ws-ht:status>COMPLETED</ws-ht:status> 26035 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26036 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 26037 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26038 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 26039 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26040 </ws-ht:taskDetails> 26041 <ws-ht:description>Undocumented task</ws-ht:description> 26042 <ws-ht:input/> 26043 <ws-ht:output> 26044 <ws-ht:part name="documentReference"> 26045 <ws-ht:attachment> 26046 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 26047 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 26048 <ws-ht:accessType>RLUS</ws-ht:accessType> 26049 <ws-ht:contentType>application/xml</ws-ht:contentType> 26050 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26051 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 26052 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26053 </ws-ht:attachment> 26054 </ws-ht:part> 26055 </ws-ht:output> 26056 </xdw:taskData> 26057 <xdw:taskEventHistory> 26058 <xdw:taskEvent> 26059 <xdw:id>1</xdw:id> 26060 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 26061 <xdw:identifier>task_3#1</xdw:identifier> 26062 <xdw:eventType>create</xdw:eventType> 26063 <xdw:status>READY</xdw:status> 26064 <xdw:eventData xsi:nil="true"/> 26065 </xdw:taskEvent> 26066 <xdw:taskEvent> 26067 <xdw:id>2</xdw:id> 26068 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 26069 <xdw:identifier>task_3#2</xdw:identifier> 26070 <xdw:eventType>complete</xdw:eventType> 26071 <xdw:status>COMPLETED</xdw:status> 26072 <xdw:eventData xsi:nil="true"/> 26073 </xdw:taskEvent> 26074 </xdw:taskEventHistory> 26075 </xdw:XDWTask> 26076 </xdw:TaskList> 26077 </xdw:XDW.WorkflowDocument> 26078 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 26079 <rlustypes:success>true</rlustypes:success> 26080 <rlustypes:message>One record fetched</rlustypes:message> 26081 </rlustypes:RLUSStatusCode> 26082 </GetResponse> 26083 </soapenv:Body> 26084 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 26085 <soap:Header/> 26086 <soap:Body> 26087 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 26088 <rlustypes:searchByCriteria> 26089 <rlustypes:FilterCriteria> 26090 <rlustypes:Expression> 26091 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 26092 <rlusexp:Operator type="EqualTo"/> 26093 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 26094 </rlustypes:Expression> 26095 </rlustypes:FilterCriteria> 26096 <rlustypes:SearchAttributes> 26097 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 26098 </rlustypes:SearchAttributes> 26099 </rlustypes:searchByCriteria> 26100 </rlustypes:RLUSSearchStruct> 26101 </soap:Body> 26102 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="16109"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="16109"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 26103 <soapenv:Header/> 26104 <soapenv:Body> 26105 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 26106 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 26107 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="40de14aa-b0fe-465c-b960-f0b5f6c22ea5"/> 26108 <xdw:effectiveTime value="20140613172659+0200"/> 26109 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 26110 <xdw:patient> 26111 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 26112 </xdw:patient> 26113 <xdw:author> 26114 <xdw:assignedAuthor> 26115 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 26116 <hl7v3:assignedPerson/> 26117 </xdw:assignedAuthor> 26118 </xdw:author> 26119 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 26120 <xdw:workflowDocumentSequenceNumber>13</xdw:workflowDocumentSequenceNumber> 26121 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 26122 <xdw:workflowStatusHistory> 26123 <xdw:documentEvent> 26124 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 26125 <xdw:eventType>complete</xdw:eventType> 26126 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 26127 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26128 <xdw:previousStatus>OPEN</xdw:previousStatus> 26129 <xdw:actualStatus>OPEN</xdw:actualStatus> 26130 </xdw:documentEvent> 26131 <xdw:documentEvent> 26132 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 26133 <xdw:eventType>create</xdw:eventType> 26134 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 26135 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26136 <xdw:previousStatus>OPEN</xdw:previousStatus> 26137 <xdw:actualStatus>OPEN</xdw:actualStatus> 26138 </xdw:documentEvent> 26139 <xdw:documentEvent> 26140 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 26141 <xdw:eventType>create</xdw:eventType> 26142 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 26143 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26144 <xdw:previousStatus>OPEN</xdw:previousStatus> 26145 <xdw:actualStatus>OPEN</xdw:actualStatus> 26146 </xdw:documentEvent> 26147 <xdw:documentEvent> 26148 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 26149 <xdw:eventType>create</xdw:eventType> 26150 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 26151 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26152 <xdw:previousStatus>OPEN</xdw:previousStatus> 26153 <xdw:actualStatus>OPEN</xdw:actualStatus> 26154 </xdw:documentEvent> 26155 <xdw:documentEvent> 26156 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 26157 <xdw:eventType>create</xdw:eventType> 26158 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 26159 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26160 <xdw:previousStatus>OPEN</xdw:previousStatus> 26161 <xdw:actualStatus>OPEN</xdw:actualStatus> 26162 </xdw:documentEvent> 26163 </xdw:workflowStatusHistory> 26164 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 26165 <xdw:TaskList> 26166 <xdw:XDWTask> 26167 <xdw:taskData> 26168 <ws-ht:taskDetails> 26169 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 26170 <ws-ht:taskType>Requested</ws-ht:taskType> 26171 <ws-ht:name>xdw.creation</ws-ht:name> 26172 <ws-ht:status>COMPLETED</ws-ht:status> 26173 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26174 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 26175 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26176 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 26177 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26178 </ws-ht:taskDetails> 26179 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 26180 <ws-ht:input/> 26181 <ws-ht:output/> 26182 </xdw:taskData> 26183 <xdw:taskEventHistory> 26184 <xdw:taskEvent> 26185 <xdw:id>1</xdw:id> 26186 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 26187 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 26188 <xdw:eventType>complete</xdw:eventType> 26189 <xdw:status>COMPLETED</xdw:status> 26190 <xdw:eventData xsi:nil="true"/> 26191 </xdw:taskEvent> 26192 </xdw:taskEventHistory> 26193 </xdw:XDWTask> 26194 <xdw:XDWTask> 26195 <xdw:taskData> 26196 <ws-ht:taskDetails> 26197 <ws-ht:id>task_0</ws-ht:id> 26198 <ws-ht:taskType>ttype</ws-ht:taskType> 26199 <ws-ht:name>tname_0</ws-ht:name> 26200 <ws-ht:status>COMPLETED</ws-ht:status> 26201 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26202 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 26203 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26204 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 26205 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26206 </ws-ht:taskDetails> 26207 <ws-ht:description>Undocumented task</ws-ht:description> 26208 <ws-ht:input/> 26209 <ws-ht:output> 26210 <ws-ht:part name="documentReference"> 26211 <ws-ht:attachment> 26212 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 26213 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 26214 <ws-ht:accessType>RLUS</ws-ht:accessType> 26215 <ws-ht:contentType>application/xml</ws-ht:contentType> 26216 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26217 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 26218 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26219 </ws-ht:attachment> 26220 </ws-ht:part> 26221 </ws-ht:output> 26222 </xdw:taskData> 26223 <xdw:taskEventHistory> 26224 <xdw:taskEvent> 26225 <xdw:id>1</xdw:id> 26226 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 26227 <xdw:identifier>task_0#1</xdw:identifier> 26228 <xdw:eventType>create</xdw:eventType> 26229 <xdw:status>READY</xdw:status> 26230 <xdw:eventData xsi:nil="true"/> 26231 </xdw:taskEvent> 26232 <xdw:taskEvent> 26233 <xdw:id>2</xdw:id> 26234 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 26235 <xdw:identifier>task_0#2</xdw:identifier> 26236 <xdw:eventType>complete</xdw:eventType> 26237 <xdw:status>COMPLETED</xdw:status> 26238 <xdw:eventData xsi:nil="true"/> 26239 </xdw:taskEvent> 26240 </xdw:taskEventHistory> 26241 </xdw:XDWTask> 26242 <xdw:XDWTask> 26243 <xdw:taskData> 26244 <ws-ht:taskDetails> 26245 <ws-ht:id>task_1</ws-ht:id> 26246 <ws-ht:taskType>ttype</ws-ht:taskType> 26247 <ws-ht:name>tname_1</ws-ht:name> 26248 <ws-ht:status>COMPLETED</ws-ht:status> 26249 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26250 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 26251 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26252 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 26253 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26254 </ws-ht:taskDetails> 26255 <ws-ht:description>Undocumented task</ws-ht:description> 26256 <ws-ht:input/> 26257 <ws-ht:output> 26258 <ws-ht:part name="documentReference"> 26259 <ws-ht:attachment> 26260 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 26261 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 26262 <ws-ht:accessType>RLUS</ws-ht:accessType> 26263 <ws-ht:contentType>application/xml</ws-ht:contentType> 26264 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26265 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 26266 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26267 </ws-ht:attachment> 26268 </ws-ht:part> 26269 </ws-ht:output> 26270 </xdw:taskData> 26271 <xdw:taskEventHistory> 26272 <xdw:taskEvent> 26273 <xdw:id>1</xdw:id> 26274 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 26275 <xdw:identifier>task_1#1</xdw:identifier> 26276 <xdw:eventType>create</xdw:eventType> 26277 <xdw:status>READY</xdw:status> 26278 <xdw:eventData xsi:nil="true"/> 26279 </xdw:taskEvent> 26280 <xdw:taskEvent> 26281 <xdw:id>2</xdw:id> 26282 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 26283 <xdw:identifier>task_1#2</xdw:identifier> 26284 <xdw:eventType>complete</xdw:eventType> 26285 <xdw:status>COMPLETED</xdw:status> 26286 <xdw:eventData xsi:nil="true"/> 26287 </xdw:taskEvent> 26288 </xdw:taskEventHistory> 26289 </xdw:XDWTask> 26290 <xdw:XDWTask> 26291 <xdw:taskData> 26292 <ws-ht:taskDetails> 26293 <ws-ht:id>task_2</ws-ht:id> 26294 <ws-ht:taskType>ttype</ws-ht:taskType> 26295 <ws-ht:name>tname_2</ws-ht:name> 26296 <ws-ht:status>COMPLETED</ws-ht:status> 26297 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26298 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 26299 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26300 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 26301 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26302 </ws-ht:taskDetails> 26303 <ws-ht:description>Undocumented task</ws-ht:description> 26304 <ws-ht:input/> 26305 <ws-ht:output> 26306 <ws-ht:part name="documentReference"> 26307 <ws-ht:attachment> 26308 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 26309 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 26310 <ws-ht:accessType>RLUS</ws-ht:accessType> 26311 <ws-ht:contentType>application/xml</ws-ht:contentType> 26312 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26313 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 26314 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26315 </ws-ht:attachment> 26316 </ws-ht:part> 26317 </ws-ht:output> 26318 </xdw:taskData> 26319 <xdw:taskEventHistory> 26320 <xdw:taskEvent> 26321 <xdw:id>1</xdw:id> 26322 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 26323 <xdw:identifier>task_2#1</xdw:identifier> 26324 <xdw:eventType>create</xdw:eventType> 26325 <xdw:status>READY</xdw:status> 26326 <xdw:eventData xsi:nil="true"/> 26327 </xdw:taskEvent> 26328 <xdw:taskEvent> 26329 <xdw:id>2</xdw:id> 26330 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 26331 <xdw:identifier>task_2#2</xdw:identifier> 26332 <xdw:eventType>complete</xdw:eventType> 26333 <xdw:status>COMPLETED</xdw:status> 26334 <xdw:eventData xsi:nil="true"/> 26335 </xdw:taskEvent> 26336 </xdw:taskEventHistory> 26337 </xdw:XDWTask> 26338 <xdw:XDWTask> 26339 <xdw:taskData> 26340 <ws-ht:taskDetails> 26341 <ws-ht:id>task_3</ws-ht:id> 26342 <ws-ht:taskType>ttype</ws-ht:taskType> 26343 <ws-ht:name>tname_3</ws-ht:name> 26344 <ws-ht:status>COMPLETED</ws-ht:status> 26345 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26346 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 26347 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26348 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 26349 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26350 </ws-ht:taskDetails> 26351 <ws-ht:description>Undocumented task</ws-ht:description> 26352 <ws-ht:input/> 26353 <ws-ht:output> 26354 <ws-ht:part name="documentReference"> 26355 <ws-ht:attachment> 26356 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 26357 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 26358 <ws-ht:accessType>RLUS</ws-ht:accessType> 26359 <ws-ht:contentType>application/xml</ws-ht:contentType> 26360 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26361 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 26362 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26363 </ws-ht:attachment> 26364 </ws-ht:part> 26365 </ws-ht:output> 26366 </xdw:taskData> 26367 <xdw:taskEventHistory> 26368 <xdw:taskEvent> 26369 <xdw:id>1</xdw:id> 26370 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 26371 <xdw:identifier>task_3#1</xdw:identifier> 26372 <xdw:eventType>create</xdw:eventType> 26373 <xdw:status>READY</xdw:status> 26374 <xdw:eventData xsi:nil="true"/> 26375 </xdw:taskEvent> 26376 <xdw:taskEvent> 26377 <xdw:id>2</xdw:id> 26378 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 26379 <xdw:identifier>task_3#2</xdw:identifier> 26380 <xdw:eventType>complete</xdw:eventType> 26381 <xdw:status>COMPLETED</xdw:status> 26382 <xdw:eventData xsi:nil="true"/> 26383 </xdw:taskEvent> 26384 </xdw:taskEventHistory> 26385 </xdw:XDWTask> 26386 </xdw:TaskList> 26387 </xdw:XDW.WorkflowDocument> 26388 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 26389 <rlustypes:success>true</rlustypes:success> 26390 <rlustypes:message>One record fetched</rlustypes:message> 26391 </rlustypes:RLUSStatusCode> 26392 </GetResponse> 26393 </soapenv:Body> 26394 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 26395 <soap:Header/> 26396 <soap:Body> 26397 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 26398 <rlustypes:searchByCriteria> 26399 <rlustypes:FilterCriteria> 26400 <rlustypes:Expression> 26401 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 26402 <rlusexp:Operator type="EqualTo"/> 26403 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 26404 </rlustypes:Expression> 26405 </rlustypes:FilterCriteria> 26406 <rlustypes:SearchAttributes> 26407 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 26408 </rlustypes:SearchAttributes> 26409 </rlustypes:searchByCriteria> 26410 </rlustypes:RLUSSearchStruct> 26411 </soap:Body> 26412 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="16109"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="16109"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 26413 <soapenv:Header/> 26414 <soapenv:Body> 26415 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 26416 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 26417 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="40de14aa-b0fe-465c-b960-f0b5f6c22ea5"/> 26418 <xdw:effectiveTime value="20140613172659+0200"/> 26419 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 26420 <xdw:patient> 26421 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 26422 </xdw:patient> 26423 <xdw:author> 26424 <xdw:assignedAuthor> 26425 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 26426 <hl7v3:assignedPerson/> 26427 </xdw:assignedAuthor> 26428 </xdw:author> 26429 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 26430 <xdw:workflowDocumentSequenceNumber>13</xdw:workflowDocumentSequenceNumber> 26431 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 26432 <xdw:workflowStatusHistory> 26433 <xdw:documentEvent> 26434 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 26435 <xdw:eventType>complete</xdw:eventType> 26436 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 26437 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26438 <xdw:previousStatus>OPEN</xdw:previousStatus> 26439 <xdw:actualStatus>OPEN</xdw:actualStatus> 26440 </xdw:documentEvent> 26441 <xdw:documentEvent> 26442 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 26443 <xdw:eventType>create</xdw:eventType> 26444 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 26445 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26446 <xdw:previousStatus>OPEN</xdw:previousStatus> 26447 <xdw:actualStatus>OPEN</xdw:actualStatus> 26448 </xdw:documentEvent> 26449 <xdw:documentEvent> 26450 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 26451 <xdw:eventType>create</xdw:eventType> 26452 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 26453 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26454 <xdw:previousStatus>OPEN</xdw:previousStatus> 26455 <xdw:actualStatus>OPEN</xdw:actualStatus> 26456 </xdw:documentEvent> 26457 <xdw:documentEvent> 26458 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 26459 <xdw:eventType>create</xdw:eventType> 26460 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 26461 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26462 <xdw:previousStatus>OPEN</xdw:previousStatus> 26463 <xdw:actualStatus>OPEN</xdw:actualStatus> 26464 </xdw:documentEvent> 26465 <xdw:documentEvent> 26466 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 26467 <xdw:eventType>create</xdw:eventType> 26468 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 26469 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26470 <xdw:previousStatus>OPEN</xdw:previousStatus> 26471 <xdw:actualStatus>OPEN</xdw:actualStatus> 26472 </xdw:documentEvent> 26473 </xdw:workflowStatusHistory> 26474 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 26475 <xdw:TaskList> 26476 <xdw:XDWTask> 26477 <xdw:taskData> 26478 <ws-ht:taskDetails> 26479 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 26480 <ws-ht:taskType>Requested</ws-ht:taskType> 26481 <ws-ht:name>xdw.creation</ws-ht:name> 26482 <ws-ht:status>COMPLETED</ws-ht:status> 26483 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26484 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 26485 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26486 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 26487 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26488 </ws-ht:taskDetails> 26489 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 26490 <ws-ht:input/> 26491 <ws-ht:output/> 26492 </xdw:taskData> 26493 <xdw:taskEventHistory> 26494 <xdw:taskEvent> 26495 <xdw:id>1</xdw:id> 26496 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 26497 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 26498 <xdw:eventType>complete</xdw:eventType> 26499 <xdw:status>COMPLETED</xdw:status> 26500 <xdw:eventData xsi:nil="true"/> 26501 </xdw:taskEvent> 26502 </xdw:taskEventHistory> 26503 </xdw:XDWTask> 26504 <xdw:XDWTask> 26505 <xdw:taskData> 26506 <ws-ht:taskDetails> 26507 <ws-ht:id>task_0</ws-ht:id> 26508 <ws-ht:taskType>ttype</ws-ht:taskType> 26509 <ws-ht:name>tname_0</ws-ht:name> 26510 <ws-ht:status>COMPLETED</ws-ht:status> 26511 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26512 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 26513 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26514 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 26515 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26516 </ws-ht:taskDetails> 26517 <ws-ht:description>Undocumented task</ws-ht:description> 26518 <ws-ht:input/> 26519 <ws-ht:output> 26520 <ws-ht:part name="documentReference"> 26521 <ws-ht:attachment> 26522 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 26523 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 26524 <ws-ht:accessType>RLUS</ws-ht:accessType> 26525 <ws-ht:contentType>application/xml</ws-ht:contentType> 26526 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26527 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 26528 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26529 </ws-ht:attachment> 26530 </ws-ht:part> 26531 </ws-ht:output> 26532 </xdw:taskData> 26533 <xdw:taskEventHistory> 26534 <xdw:taskEvent> 26535 <xdw:id>1</xdw:id> 26536 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 26537 <xdw:identifier>task_0#1</xdw:identifier> 26538 <xdw:eventType>create</xdw:eventType> 26539 <xdw:status>READY</xdw:status> 26540 <xdw:eventData xsi:nil="true"/> 26541 </xdw:taskEvent> 26542 <xdw:taskEvent> 26543 <xdw:id>2</xdw:id> 26544 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 26545 <xdw:identifier>task_0#2</xdw:identifier> 26546 <xdw:eventType>complete</xdw:eventType> 26547 <xdw:status>COMPLETED</xdw:status> 26548 <xdw:eventData xsi:nil="true"/> 26549 </xdw:taskEvent> 26550 </xdw:taskEventHistory> 26551 </xdw:XDWTask> 26552 <xdw:XDWTask> 26553 <xdw:taskData> 26554 <ws-ht:taskDetails> 26555 <ws-ht:id>task_1</ws-ht:id> 26556 <ws-ht:taskType>ttype</ws-ht:taskType> 26557 <ws-ht:name>tname_1</ws-ht:name> 26558 <ws-ht:status>COMPLETED</ws-ht:status> 26559 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26560 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 26561 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26562 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 26563 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26564 </ws-ht:taskDetails> 26565 <ws-ht:description>Undocumented task</ws-ht:description> 26566 <ws-ht:input/> 26567 <ws-ht:output> 26568 <ws-ht:part name="documentReference"> 26569 <ws-ht:attachment> 26570 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 26571 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 26572 <ws-ht:accessType>RLUS</ws-ht:accessType> 26573 <ws-ht:contentType>application/xml</ws-ht:contentType> 26574 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26575 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 26576 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26577 </ws-ht:attachment> 26578 </ws-ht:part> 26579 </ws-ht:output> 26580 </xdw:taskData> 26581 <xdw:taskEventHistory> 26582 <xdw:taskEvent> 26583 <xdw:id>1</xdw:id> 26584 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 26585 <xdw:identifier>task_1#1</xdw:identifier> 26586 <xdw:eventType>create</xdw:eventType> 26587 <xdw:status>READY</xdw:status> 26588 <xdw:eventData xsi:nil="true"/> 26589 </xdw:taskEvent> 26590 <xdw:taskEvent> 26591 <xdw:id>2</xdw:id> 26592 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 26593 <xdw:identifier>task_1#2</xdw:identifier> 26594 <xdw:eventType>complete</xdw:eventType> 26595 <xdw:status>COMPLETED</xdw:status> 26596 <xdw:eventData xsi:nil="true"/> 26597 </xdw:taskEvent> 26598 </xdw:taskEventHistory> 26599 </xdw:XDWTask> 26600 <xdw:XDWTask> 26601 <xdw:taskData> 26602 <ws-ht:taskDetails> 26603 <ws-ht:id>task_2</ws-ht:id> 26604 <ws-ht:taskType>ttype</ws-ht:taskType> 26605 <ws-ht:name>tname_2</ws-ht:name> 26606 <ws-ht:status>COMPLETED</ws-ht:status> 26607 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26608 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 26609 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26610 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 26611 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26612 </ws-ht:taskDetails> 26613 <ws-ht:description>Undocumented task</ws-ht:description> 26614 <ws-ht:input/> 26615 <ws-ht:output> 26616 <ws-ht:part name="documentReference"> 26617 <ws-ht:attachment> 26618 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 26619 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 26620 <ws-ht:accessType>RLUS</ws-ht:accessType> 26621 <ws-ht:contentType>application/xml</ws-ht:contentType> 26622 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26623 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 26624 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26625 </ws-ht:attachment> 26626 </ws-ht:part> 26627 </ws-ht:output> 26628 </xdw:taskData> 26629 <xdw:taskEventHistory> 26630 <xdw:taskEvent> 26631 <xdw:id>1</xdw:id> 26632 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 26633 <xdw:identifier>task_2#1</xdw:identifier> 26634 <xdw:eventType>create</xdw:eventType> 26635 <xdw:status>READY</xdw:status> 26636 <xdw:eventData xsi:nil="true"/> 26637 </xdw:taskEvent> 26638 <xdw:taskEvent> 26639 <xdw:id>2</xdw:id> 26640 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 26641 <xdw:identifier>task_2#2</xdw:identifier> 26642 <xdw:eventType>complete</xdw:eventType> 26643 <xdw:status>COMPLETED</xdw:status> 26644 <xdw:eventData xsi:nil="true"/> 26645 </xdw:taskEvent> 26646 </xdw:taskEventHistory> 26647 </xdw:XDWTask> 26648 <xdw:XDWTask> 26649 <xdw:taskData> 26650 <ws-ht:taskDetails> 26651 <ws-ht:id>task_3</ws-ht:id> 26652 <ws-ht:taskType>ttype</ws-ht:taskType> 26653 <ws-ht:name>tname_3</ws-ht:name> 26654 <ws-ht:status>COMPLETED</ws-ht:status> 26655 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26656 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 26657 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26658 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 26659 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26660 </ws-ht:taskDetails> 26661 <ws-ht:description>Undocumented task</ws-ht:description> 26662 <ws-ht:input/> 26663 <ws-ht:output> 26664 <ws-ht:part name="documentReference"> 26665 <ws-ht:attachment> 26666 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 26667 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 26668 <ws-ht:accessType>RLUS</ws-ht:accessType> 26669 <ws-ht:contentType>application/xml</ws-ht:contentType> 26670 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26671 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 26672 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26673 </ws-ht:attachment> 26674 </ws-ht:part> 26675 </ws-ht:output> 26676 </xdw:taskData> 26677 <xdw:taskEventHistory> 26678 <xdw:taskEvent> 26679 <xdw:id>1</xdw:id> 26680 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 26681 <xdw:identifier>task_3#1</xdw:identifier> 26682 <xdw:eventType>create</xdw:eventType> 26683 <xdw:status>READY</xdw:status> 26684 <xdw:eventData xsi:nil="true"/> 26685 </xdw:taskEvent> 26686 <xdw:taskEvent> 26687 <xdw:id>2</xdw:id> 26688 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 26689 <xdw:identifier>task_3#2</xdw:identifier> 26690 <xdw:eventType>complete</xdw:eventType> 26691 <xdw:status>COMPLETED</xdw:status> 26692 <xdw:eventData xsi:nil="true"/> 26693 </xdw:taskEvent> 26694 </xdw:taskEventHistory> 26695 </xdw:XDWTask> 26696 </xdw:TaskList> 26697 </xdw:XDW.WorkflowDocument> 26698 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 26699 <rlustypes:success>true</rlustypes:success> 26700 <rlustypes:message>One record fetched</rlustypes:message> 26701 </rlustypes:RLUSStatusCode> 26702 </GetResponse> 26703 </soapenv:Body> 26704 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="18383"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="18383"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 26705 <soap:Header/> 26706 <soap:Body> 26707 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 26708 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 26709 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="30ef0286-ba02-4a9e-88f7-96f0c7ab990e"/> 26710 <xdw:effectiveTime value="20140613172701+0200"/> 26711 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 26712 <xdw:patient> 26713 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 26714 </xdw:patient> 26715 <xdw:author> 26716 <xdw:assignedAuthor> 26717 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 26718 <hl7v3:assignedPerson/> 26719 </xdw:assignedAuthor> 26720 </xdw:author> 26721 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 26722 <xdw:workflowDocumentSequenceNumber>14</xdw:workflowDocumentSequenceNumber> 26723 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 26724 <xdw:workflowStatusHistory> 26725 <xdw:documentEvent> 26726 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 26727 <xdw:eventType>complete</xdw:eventType> 26728 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 26729 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26730 <xdw:previousStatus>OPEN</xdw:previousStatus> 26731 <xdw:actualStatus>OPEN</xdw:actualStatus> 26732 </xdw:documentEvent> 26733 <xdw:documentEvent> 26734 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 26735 <xdw:eventType>create</xdw:eventType> 26736 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 26737 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26738 <xdw:previousStatus>OPEN</xdw:previousStatus> 26739 <xdw:actualStatus>OPEN</xdw:actualStatus> 26740 </xdw:documentEvent> 26741 <xdw:documentEvent> 26742 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 26743 <xdw:eventType>create</xdw:eventType> 26744 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 26745 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26746 <xdw:previousStatus>OPEN</xdw:previousStatus> 26747 <xdw:actualStatus>OPEN</xdw:actualStatus> 26748 </xdw:documentEvent> 26749 <xdw:documentEvent> 26750 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 26751 <xdw:eventType>create</xdw:eventType> 26752 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 26753 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26754 <xdw:previousStatus>OPEN</xdw:previousStatus> 26755 <xdw:actualStatus>OPEN</xdw:actualStatus> 26756 </xdw:documentEvent> 26757 <xdw:documentEvent> 26758 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 26759 <xdw:eventType>create</xdw:eventType> 26760 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 26761 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26762 <xdw:previousStatus>OPEN</xdw:previousStatus> 26763 <xdw:actualStatus>OPEN</xdw:actualStatus> 26764 </xdw:documentEvent> 26765 <xdw:documentEvent> 26766 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 26767 <xdw:eventType>create</xdw:eventType> 26768 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 26769 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 26770 <xdw:previousStatus>OPEN</xdw:previousStatus> 26771 <xdw:actualStatus>OPEN</xdw:actualStatus> 26772 </xdw:documentEvent> 26773 </xdw:workflowStatusHistory> 26774 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 26775 <xdw:TaskList> 26776 <xdw:XDWTask> 26777 <xdw:taskData> 26778 <ws-ht:taskDetails> 26779 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 26780 <ws-ht:taskType>Requested</ws-ht:taskType> 26781 <ws-ht:name>xdw.creation</ws-ht:name> 26782 <ws-ht:status>COMPLETED</ws-ht:status> 26783 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26784 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 26785 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26786 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 26787 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26788 </ws-ht:taskDetails> 26789 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 26790 <ws-ht:input/> 26791 <ws-ht:output/> 26792 </xdw:taskData> 26793 <xdw:taskEventHistory> 26794 <xdw:taskEvent> 26795 <xdw:id>1</xdw:id> 26796 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 26797 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 26798 <xdw:eventType>complete</xdw:eventType> 26799 <xdw:status>COMPLETED</xdw:status> 26800 <xdw:eventData xsi:nil="true"/> 26801 </xdw:taskEvent> 26802 </xdw:taskEventHistory> 26803 </xdw:XDWTask> 26804 <xdw:XDWTask> 26805 <xdw:taskData> 26806 <ws-ht:taskDetails> 26807 <ws-ht:id>task_0</ws-ht:id> 26808 <ws-ht:taskType>ttype</ws-ht:taskType> 26809 <ws-ht:name>tname_0</ws-ht:name> 26810 <ws-ht:status>COMPLETED</ws-ht:status> 26811 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26812 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 26813 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26814 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 26815 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26816 </ws-ht:taskDetails> 26817 <ws-ht:description>Undocumented task</ws-ht:description> 26818 <ws-ht:input/> 26819 <ws-ht:output> 26820 <ws-ht:part name="documentReference"> 26821 <ws-ht:attachment> 26822 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 26823 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 26824 <ws-ht:accessType>RLUS</ws-ht:accessType> 26825 <ws-ht:contentType>application/xml</ws-ht:contentType> 26826 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26827 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 26828 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26829 </ws-ht:attachment> 26830 </ws-ht:part> 26831 </ws-ht:output> 26832 </xdw:taskData> 26833 <xdw:taskEventHistory> 26834 <xdw:taskEvent> 26835 <xdw:id>1</xdw:id> 26836 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 26837 <xdw:identifier>task_0#1</xdw:identifier> 26838 <xdw:eventType>create</xdw:eventType> 26839 <xdw:status>READY</xdw:status> 26840 <xdw:eventData xsi:nil="true"/> 26841 </xdw:taskEvent> 26842 <xdw:taskEvent> 26843 <xdw:id>2</xdw:id> 26844 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 26845 <xdw:identifier>task_0#2</xdw:identifier> 26846 <xdw:eventType>complete</xdw:eventType> 26847 <xdw:status>COMPLETED</xdw:status> 26848 <xdw:eventData xsi:nil="true"/> 26849 </xdw:taskEvent> 26850 </xdw:taskEventHistory> 26851 </xdw:XDWTask> 26852 <xdw:XDWTask> 26853 <xdw:taskData> 26854 <ws-ht:taskDetails> 26855 <ws-ht:id>task_1</ws-ht:id> 26856 <ws-ht:taskType>ttype</ws-ht:taskType> 26857 <ws-ht:name>tname_1</ws-ht:name> 26858 <ws-ht:status>COMPLETED</ws-ht:status> 26859 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26860 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 26861 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26862 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 26863 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26864 </ws-ht:taskDetails> 26865 <ws-ht:description>Undocumented task</ws-ht:description> 26866 <ws-ht:input/> 26867 <ws-ht:output> 26868 <ws-ht:part name="documentReference"> 26869 <ws-ht:attachment> 26870 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 26871 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 26872 <ws-ht:accessType>RLUS</ws-ht:accessType> 26873 <ws-ht:contentType>application/xml</ws-ht:contentType> 26874 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26875 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 26876 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26877 </ws-ht:attachment> 26878 </ws-ht:part> 26879 </ws-ht:output> 26880 </xdw:taskData> 26881 <xdw:taskEventHistory> 26882 <xdw:taskEvent> 26883 <xdw:id>1</xdw:id> 26884 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 26885 <xdw:identifier>task_1#1</xdw:identifier> 26886 <xdw:eventType>create</xdw:eventType> 26887 <xdw:status>READY</xdw:status> 26888 <xdw:eventData xsi:nil="true"/> 26889 </xdw:taskEvent> 26890 <xdw:taskEvent> 26891 <xdw:id>2</xdw:id> 26892 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 26893 <xdw:identifier>task_1#2</xdw:identifier> 26894 <xdw:eventType>complete</xdw:eventType> 26895 <xdw:status>COMPLETED</xdw:status> 26896 <xdw:eventData xsi:nil="true"/> 26897 </xdw:taskEvent> 26898 </xdw:taskEventHistory> 26899 </xdw:XDWTask> 26900 <xdw:XDWTask> 26901 <xdw:taskData> 26902 <ws-ht:taskDetails> 26903 <ws-ht:id>task_2</ws-ht:id> 26904 <ws-ht:taskType>ttype</ws-ht:taskType> 26905 <ws-ht:name>tname_2</ws-ht:name> 26906 <ws-ht:status>COMPLETED</ws-ht:status> 26907 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26908 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 26909 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26910 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 26911 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26912 </ws-ht:taskDetails> 26913 <ws-ht:description>Undocumented task</ws-ht:description> 26914 <ws-ht:input/> 26915 <ws-ht:output> 26916 <ws-ht:part name="documentReference"> 26917 <ws-ht:attachment> 26918 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 26919 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 26920 <ws-ht:accessType>RLUS</ws-ht:accessType> 26921 <ws-ht:contentType>application/xml</ws-ht:contentType> 26922 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26923 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 26924 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26925 </ws-ht:attachment> 26926 </ws-ht:part> 26927 </ws-ht:output> 26928 </xdw:taskData> 26929 <xdw:taskEventHistory> 26930 <xdw:taskEvent> 26931 <xdw:id>1</xdw:id> 26932 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 26933 <xdw:identifier>task_2#1</xdw:identifier> 26934 <xdw:eventType>create</xdw:eventType> 26935 <xdw:status>READY</xdw:status> 26936 <xdw:eventData xsi:nil="true"/> 26937 </xdw:taskEvent> 26938 <xdw:taskEvent> 26939 <xdw:id>2</xdw:id> 26940 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 26941 <xdw:identifier>task_2#2</xdw:identifier> 26942 <xdw:eventType>complete</xdw:eventType> 26943 <xdw:status>COMPLETED</xdw:status> 26944 <xdw:eventData xsi:nil="true"/> 26945 </xdw:taskEvent> 26946 </xdw:taskEventHistory> 26947 </xdw:XDWTask> 26948 <xdw:XDWTask> 26949 <xdw:taskData> 26950 <ws-ht:taskDetails> 26951 <ws-ht:id>task_3</ws-ht:id> 26952 <ws-ht:taskType>ttype</ws-ht:taskType> 26953 <ws-ht:name>tname_3</ws-ht:name> 26954 <ws-ht:status>COMPLETED</ws-ht:status> 26955 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 26956 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 26957 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 26958 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 26959 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 26960 </ws-ht:taskDetails> 26961 <ws-ht:description>Undocumented task</ws-ht:description> 26962 <ws-ht:input/> 26963 <ws-ht:output> 26964 <ws-ht:part name="documentReference"> 26965 <ws-ht:attachment> 26966 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 26967 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 26968 <ws-ht:accessType>RLUS</ws-ht:accessType> 26969 <ws-ht:contentType>application/xml</ws-ht:contentType> 26970 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 26971 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 26972 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 26973 </ws-ht:attachment> 26974 </ws-ht:part> 26975 </ws-ht:output> 26976 </xdw:taskData> 26977 <xdw:taskEventHistory> 26978 <xdw:taskEvent> 26979 <xdw:id>1</xdw:id> 26980 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 26981 <xdw:identifier>task_3#1</xdw:identifier> 26982 <xdw:eventType>create</xdw:eventType> 26983 <xdw:status>READY</xdw:status> 26984 <xdw:eventData xsi:nil="true"/> 26985 </xdw:taskEvent> 26986 <xdw:taskEvent> 26987 <xdw:id>2</xdw:id> 26988 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 26989 <xdw:identifier>task_3#2</xdw:identifier> 26990 <xdw:eventType>complete</xdw:eventType> 26991 <xdw:status>COMPLETED</xdw:status> 26992 <xdw:eventData xsi:nil="true"/> 26993 </xdw:taskEvent> 26994 </xdw:taskEventHistory> 26995 </xdw:XDWTask> 26996 <xdw:XDWTask> 26997 <xdw:taskData> 26998 <ws-ht:taskDetails> 26999 <ws-ht:id>task_4</ws-ht:id> 27000 <ws-ht:taskType>ttype</ws-ht:taskType> 27001 <ws-ht:name>tname_4</ws-ht:name> 27002 <ws-ht:status>READY</ws-ht:status> 27003 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27004 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 27005 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27006 <ws-ht:lastModifiedTime>2014-06-13T17:27:01.491+02:00</ws-ht:lastModifiedTime> 27007 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27008 </ws-ht:taskDetails> 27009 <ws-ht:description>Undocumented task</ws-ht:description> 27010 <ws-ht:input/> 27011 <ws-ht:output/> 27012 </xdw:taskData> 27013 <xdw:taskEventHistory> 27014 <xdw:taskEvent> 27015 <xdw:id>1</xdw:id> 27016 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 27017 <xdw:identifier>task_4#1</xdw:identifier> 27018 <xdw:eventType>create</xdw:eventType> 27019 <xdw:status>READY</xdw:status> 27020 <xdw:eventData xsi:nil="true"/> 27021 </xdw:taskEvent> 27022 </xdw:taskEventHistory> 27023 </xdw:XDWTask> 27024 </xdw:TaskList> 27025 </xdw:XDW.WorkflowDocument> 27026 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 27027 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 27028 <rlustypes:SecurityContext> 27029 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 27030 </rlustypes:SecurityContext> 27031 <rlustypes:CBRContext> 27032 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 27033 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 27034 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 27035 </rlustypes:CBRContext> 27036 </rlustypes:RLUSPutRequestSrcStruct> 27037 <writeCommandEnum>UPDATE</writeCommandEnum> 27038 </PutRequest> 27039 </soap:Body> 27040 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 27041 <soapenv:Header/> 27042 <soapenv:Body> 27043 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 27044 <rlustypes:success>true</rlustypes:success> 27045 <rlustypes:message/> 27046 </rlustypes:RLUSStatusCode> 27047 </soapenv:Body> 27048 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 27049 <soap:Header/> 27050 <soap:Body> 27051 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 27052 <rlustypes:searchByCriteria> 27053 <rlustypes:FilterCriteria> 27054 <rlustypes:Expression> 27055 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 27056 <rlusexp:Operator type="EqualTo"/> 27057 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 27058 </rlustypes:Expression> 27059 </rlustypes:FilterCriteria> 27060 <rlustypes:SearchAttributes> 27061 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 27062 </rlustypes:SearchAttributes> 27063 </rlustypes:searchByCriteria> 27064 </rlustypes:RLUSSearchStruct> 27065 </soap:Body> 27066 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="17945"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="17945"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 27067 <soapenv:Header/> 27068 <soapenv:Body> 27069 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 27070 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 27071 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="30ef0286-ba02-4a9e-88f7-96f0c7ab990e"/> 27072 <xdw:effectiveTime value="20140613172701+0200"/> 27073 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 27074 <xdw:patient> 27075 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 27076 </xdw:patient> 27077 <xdw:author> 27078 <xdw:assignedAuthor> 27079 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 27080 <hl7v3:assignedPerson/> 27081 </xdw:assignedAuthor> 27082 </xdw:author> 27083 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 27084 <xdw:workflowDocumentSequenceNumber>14</xdw:workflowDocumentSequenceNumber> 27085 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 27086 <xdw:workflowStatusHistory> 27087 <xdw:documentEvent> 27088 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 27089 <xdw:eventType>complete</xdw:eventType> 27090 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 27091 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27092 <xdw:previousStatus>OPEN</xdw:previousStatus> 27093 <xdw:actualStatus>OPEN</xdw:actualStatus> 27094 </xdw:documentEvent> 27095 <xdw:documentEvent> 27096 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 27097 <xdw:eventType>create</xdw:eventType> 27098 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 27099 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27100 <xdw:previousStatus>OPEN</xdw:previousStatus> 27101 <xdw:actualStatus>OPEN</xdw:actualStatus> 27102 </xdw:documentEvent> 27103 <xdw:documentEvent> 27104 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 27105 <xdw:eventType>create</xdw:eventType> 27106 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 27107 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27108 <xdw:previousStatus>OPEN</xdw:previousStatus> 27109 <xdw:actualStatus>OPEN</xdw:actualStatus> 27110 </xdw:documentEvent> 27111 <xdw:documentEvent> 27112 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 27113 <xdw:eventType>create</xdw:eventType> 27114 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 27115 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27116 <xdw:previousStatus>OPEN</xdw:previousStatus> 27117 <xdw:actualStatus>OPEN</xdw:actualStatus> 27118 </xdw:documentEvent> 27119 <xdw:documentEvent> 27120 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 27121 <xdw:eventType>create</xdw:eventType> 27122 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 27123 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27124 <xdw:previousStatus>OPEN</xdw:previousStatus> 27125 <xdw:actualStatus>OPEN</xdw:actualStatus> 27126 </xdw:documentEvent> 27127 <xdw:documentEvent> 27128 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 27129 <xdw:eventType>create</xdw:eventType> 27130 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 27131 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27132 <xdw:previousStatus>OPEN</xdw:previousStatus> 27133 <xdw:actualStatus>OPEN</xdw:actualStatus> 27134 </xdw:documentEvent> 27135 </xdw:workflowStatusHistory> 27136 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 27137 <xdw:TaskList> 27138 <xdw:XDWTask> 27139 <xdw:taskData> 27140 <ws-ht:taskDetails> 27141 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 27142 <ws-ht:taskType>Requested</ws-ht:taskType> 27143 <ws-ht:name>xdw.creation</ws-ht:name> 27144 <ws-ht:status>COMPLETED</ws-ht:status> 27145 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27146 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 27147 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27148 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 27149 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27150 </ws-ht:taskDetails> 27151 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 27152 <ws-ht:input/> 27153 <ws-ht:output/> 27154 </xdw:taskData> 27155 <xdw:taskEventHistory> 27156 <xdw:taskEvent> 27157 <xdw:id>1</xdw:id> 27158 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 27159 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 27160 <xdw:eventType>complete</xdw:eventType> 27161 <xdw:status>COMPLETED</xdw:status> 27162 <xdw:eventData xsi:nil="true"/> 27163 </xdw:taskEvent> 27164 </xdw:taskEventHistory> 27165 </xdw:XDWTask> 27166 <xdw:XDWTask> 27167 <xdw:taskData> 27168 <ws-ht:taskDetails> 27169 <ws-ht:id>task_0</ws-ht:id> 27170 <ws-ht:taskType>ttype</ws-ht:taskType> 27171 <ws-ht:name>tname_0</ws-ht:name> 27172 <ws-ht:status>COMPLETED</ws-ht:status> 27173 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27174 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 27175 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27176 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 27177 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27178 </ws-ht:taskDetails> 27179 <ws-ht:description>Undocumented task</ws-ht:description> 27180 <ws-ht:input/> 27181 <ws-ht:output> 27182 <ws-ht:part name="documentReference"> 27183 <ws-ht:attachment> 27184 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 27185 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 27186 <ws-ht:accessType>RLUS</ws-ht:accessType> 27187 <ws-ht:contentType>application/xml</ws-ht:contentType> 27188 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 27189 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 27190 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 27191 </ws-ht:attachment> 27192 </ws-ht:part> 27193 </ws-ht:output> 27194 </xdw:taskData> 27195 <xdw:taskEventHistory> 27196 <xdw:taskEvent> 27197 <xdw:id>1</xdw:id> 27198 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 27199 <xdw:identifier>task_0#1</xdw:identifier> 27200 <xdw:eventType>create</xdw:eventType> 27201 <xdw:status>READY</xdw:status> 27202 <xdw:eventData xsi:nil="true"/> 27203 </xdw:taskEvent> 27204 <xdw:taskEvent> 27205 <xdw:id>2</xdw:id> 27206 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 27207 <xdw:identifier>task_0#2</xdw:identifier> 27208 <xdw:eventType>complete</xdw:eventType> 27209 <xdw:status>COMPLETED</xdw:status> 27210 <xdw:eventData xsi:nil="true"/> 27211 </xdw:taskEvent> 27212 </xdw:taskEventHistory> 27213 </xdw:XDWTask> 27214 <xdw:XDWTask> 27215 <xdw:taskData> 27216 <ws-ht:taskDetails> 27217 <ws-ht:id>task_1</ws-ht:id> 27218 <ws-ht:taskType>ttype</ws-ht:taskType> 27219 <ws-ht:name>tname_1</ws-ht:name> 27220 <ws-ht:status>COMPLETED</ws-ht:status> 27221 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27222 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 27223 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27224 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 27225 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27226 </ws-ht:taskDetails> 27227 <ws-ht:description>Undocumented task</ws-ht:description> 27228 <ws-ht:input/> 27229 <ws-ht:output> 27230 <ws-ht:part name="documentReference"> 27231 <ws-ht:attachment> 27232 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 27233 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 27234 <ws-ht:accessType>RLUS</ws-ht:accessType> 27235 <ws-ht:contentType>application/xml</ws-ht:contentType> 27236 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 27237 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 27238 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 27239 </ws-ht:attachment> 27240 </ws-ht:part> 27241 </ws-ht:output> 27242 </xdw:taskData> 27243 <xdw:taskEventHistory> 27244 <xdw:taskEvent> 27245 <xdw:id>1</xdw:id> 27246 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 27247 <xdw:identifier>task_1#1</xdw:identifier> 27248 <xdw:eventType>create</xdw:eventType> 27249 <xdw:status>READY</xdw:status> 27250 <xdw:eventData xsi:nil="true"/> 27251 </xdw:taskEvent> 27252 <xdw:taskEvent> 27253 <xdw:id>2</xdw:id> 27254 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 27255 <xdw:identifier>task_1#2</xdw:identifier> 27256 <xdw:eventType>complete</xdw:eventType> 27257 <xdw:status>COMPLETED</xdw:status> 27258 <xdw:eventData xsi:nil="true"/> 27259 </xdw:taskEvent> 27260 </xdw:taskEventHistory> 27261 </xdw:XDWTask> 27262 <xdw:XDWTask> 27263 <xdw:taskData> 27264 <ws-ht:taskDetails> 27265 <ws-ht:id>task_2</ws-ht:id> 27266 <ws-ht:taskType>ttype</ws-ht:taskType> 27267 <ws-ht:name>tname_2</ws-ht:name> 27268 <ws-ht:status>COMPLETED</ws-ht:status> 27269 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27270 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 27271 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27272 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 27273 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27274 </ws-ht:taskDetails> 27275 <ws-ht:description>Undocumented task</ws-ht:description> 27276 <ws-ht:input/> 27277 <ws-ht:output> 27278 <ws-ht:part name="documentReference"> 27279 <ws-ht:attachment> 27280 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 27281 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 27282 <ws-ht:accessType>RLUS</ws-ht:accessType> 27283 <ws-ht:contentType>application/xml</ws-ht:contentType> 27284 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 27285 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 27286 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 27287 </ws-ht:attachment> 27288 </ws-ht:part> 27289 </ws-ht:output> 27290 </xdw:taskData> 27291 <xdw:taskEventHistory> 27292 <xdw:taskEvent> 27293 <xdw:id>1</xdw:id> 27294 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 27295 <xdw:identifier>task_2#1</xdw:identifier> 27296 <xdw:eventType>create</xdw:eventType> 27297 <xdw:status>READY</xdw:status> 27298 <xdw:eventData xsi:nil="true"/> 27299 </xdw:taskEvent> 27300 <xdw:taskEvent> 27301 <xdw:id>2</xdw:id> 27302 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 27303 <xdw:identifier>task_2#2</xdw:identifier> 27304 <xdw:eventType>complete</xdw:eventType> 27305 <xdw:status>COMPLETED</xdw:status> 27306 <xdw:eventData xsi:nil="true"/> 27307 </xdw:taskEvent> 27308 </xdw:taskEventHistory> 27309 </xdw:XDWTask> 27310 <xdw:XDWTask> 27311 <xdw:taskData> 27312 <ws-ht:taskDetails> 27313 <ws-ht:id>task_3</ws-ht:id> 27314 <ws-ht:taskType>ttype</ws-ht:taskType> 27315 <ws-ht:name>tname_3</ws-ht:name> 27316 <ws-ht:status>COMPLETED</ws-ht:status> 27317 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27318 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 27319 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27320 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 27321 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27322 </ws-ht:taskDetails> 27323 <ws-ht:description>Undocumented task</ws-ht:description> 27324 <ws-ht:input/> 27325 <ws-ht:output> 27326 <ws-ht:part name="documentReference"> 27327 <ws-ht:attachment> 27328 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 27329 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 27330 <ws-ht:accessType>RLUS</ws-ht:accessType> 27331 <ws-ht:contentType>application/xml</ws-ht:contentType> 27332 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 27333 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 27334 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 27335 </ws-ht:attachment> 27336 </ws-ht:part> 27337 </ws-ht:output> 27338 </xdw:taskData> 27339 <xdw:taskEventHistory> 27340 <xdw:taskEvent> 27341 <xdw:id>1</xdw:id> 27342 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 27343 <xdw:identifier>task_3#1</xdw:identifier> 27344 <xdw:eventType>create</xdw:eventType> 27345 <xdw:status>READY</xdw:status> 27346 <xdw:eventData xsi:nil="true"/> 27347 </xdw:taskEvent> 27348 <xdw:taskEvent> 27349 <xdw:id>2</xdw:id> 27350 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 27351 <xdw:identifier>task_3#2</xdw:identifier> 27352 <xdw:eventType>complete</xdw:eventType> 27353 <xdw:status>COMPLETED</xdw:status> 27354 <xdw:eventData xsi:nil="true"/> 27355 </xdw:taskEvent> 27356 </xdw:taskEventHistory> 27357 </xdw:XDWTask> 27358 <xdw:XDWTask> 27359 <xdw:taskData> 27360 <ws-ht:taskDetails> 27361 <ws-ht:id>task_4</ws-ht:id> 27362 <ws-ht:taskType>ttype</ws-ht:taskType> 27363 <ws-ht:name>tname_4</ws-ht:name> 27364 <ws-ht:status>READY</ws-ht:status> 27365 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27366 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 27367 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27368 <ws-ht:lastModifiedTime>2014-06-13T17:27:01.491+02:00</ws-ht:lastModifiedTime> 27369 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27370 </ws-ht:taskDetails> 27371 <ws-ht:description>Undocumented task</ws-ht:description> 27372 <ws-ht:input/> 27373 <ws-ht:output/> 27374 </xdw:taskData> 27375 <xdw:taskEventHistory> 27376 <xdw:taskEvent> 27377 <xdw:id>1</xdw:id> 27378 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 27379 <xdw:identifier>task_4#1</xdw:identifier> 27380 <xdw:eventType>create</xdw:eventType> 27381 <xdw:status>READY</xdw:status> 27382 <xdw:eventData xsi:nil="true"/> 27383 </xdw:taskEvent> 27384 </xdw:taskEventHistory> 27385 </xdw:XDWTask> 27386 </xdw:TaskList> 27387 </xdw:XDW.WorkflowDocument> 27388 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 27389 <rlustypes:success>true</rlustypes:success> 27390 <rlustypes:message>One record fetched</rlustypes:message> 27391 </rlustypes:RLUSStatusCode> 27392 </GetResponse> 27393 </soapenv:Body> 27394 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.8</ip><host>10.0.0.8</host><port>41798</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/cda2report"><headers><header key="Max-Forwards" value="10"/><header key="Host" value="10.0.0.9:6000"/><header key="Transfer-Encoding" value="chunked"/><header key="SOAPAction" value=""urn:put""/><header key="X-Forwarded-For" value="217.174.120.185"/><header key="X-Forwarded-Server" value="hssplabs.dedalus.eu"/><header key="User-Agent" value="Synapse-PT-HttpComponents-NIO"/><header key="Connection" value="keep-alive"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Content-Type" value="text/xml"/><header key="X-Forwarded-Host" value="hssplabs.dedalus.eu"/></headers><content type="text/xml" length="-1"><data><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:dedalus:xtest" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:http="http://expath.org/ns/http-client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 27395 <soap:Header></soap:Header> 27396 <soap:Body> 27397 <PutRequest xmlns="urn:dedalus:rlus:cda2report:types"> 27398 <ClinicalDocument xmlns="urn:hl7-org:v3"> 27399 <realmCode code="IT"></realmCode> 27400 <typeId root="2.16.840.1.113883.1.3" extension="POCD_HD000040"></typeId> 27401 <templateId root="2.16.840.1.113883.2.9.10.2.10" extension="ITPRF_REF_RADIO-001"></templateId> 27402 <id root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-004"></id> 27403 <code codeSystem="2.16.840.1.113883.6.1" code="18748-4" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study Report Diagnostic Imaging"></code> 27404 <effectiveTime value="20140606114243+0100"></effectiveTime> 27405 <confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality"></confidentialityCode> 27406 <languageCode code="it-IT"></languageCode> 27407 <setId root="2.16.840.1.113883.2.9.3.12.4.4" extension="divjrus7-f34b-431e-835a-a897c0e5-004"></setId> 27408 <versionNumber value="1"></versionNumber> 27409 <recordTarget> 27410 <patientRole> 27411 <id extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 27412 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="PZNGZL62H58D524R" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 27413 <hl7v3:patient xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212"> 27414 <hl7v3:name> 27415 <hl7v3:given>Graziella</hl7v3:given> 27416 <hl7v3:family>Paziente</hl7v3:family> 27417 </hl7v3:name> 27418 <hl7v3:administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"></hl7v3:administrativeGenderCode> 27419 <hl7v3:birthTime value="19620618093000+0100"></hl7v3:birthTime> 27420 </hl7v3:patient> 27421 </patientRole> 27422 </recordTarget> 27423 <author> 27424 <time value="20140606114243+0100"></time> 27425 <assignedAuthor> 27426 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 27427 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 27428 </assignedAuthor> 27429 </author> 27430 <custodian> 27431 <assignedCustodian> 27432 <representedCustodianOrganization> 27433 <id root="2.16.840.1.113883.2.9.3.12" extension="2.16.840.1.113883.2.9.3.12.4"></id> 27434 </representedCustodianOrganization> 27435 </assignedCustodian> 27436 </custodian> 27437 <legalAuthenticator> 27438 <time value="20140606114243+0100"></time> 27439 <signatureCode code="S"></signatureCode> 27440 <assignedEntity> 27441 <id extension="1234e645-0c3a-40e0-88c1-76af81c6d732" root="2.16.840.1.113883.2.9.3.12.4.1"></id> 27442 <hl7v3:id xmlns:hl7v3="urn:hl7-org:v3" xmlns="http://www.omg.org/spec/IXS/201212" extension="MDCXXX69X23X793X" root="2.16.840.1.113883.2.9.4.3.2"></hl7v3:id> 27443 </assignedEntity> 27444 </legalAuthenticator> 27445 <component> 27446 <structuredBody> 27447 <component> 27448 <section> 27449 <code code="18782-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" displayName="Study observation"></code> 27450 <title>Scintigrafia miocardica con 123I-MIBG</title> 27451 <text> 27452 <paragraph> 27453 <content>Conservata concentrazione del radiocomposto in sede miocardica sia in fase precoce che in fase tardiva. Valori H/M nella norma.</content> 27454 </paragraph> 27455 <table border="0"> 27456 <tbody> 27457 <tr> 27458 <td>Acquisizione precoce: H/M=1.67 (v.n. 1.94 ᅡᄆ 0.18)</td> 27459 <td>Acquisizione tardiva: H/M=1.72 (v.n. 2.02 ᅡᄆ 0.19)</td> 27460 </tr> 27461 </tbody> 27462 </table> 27463 </text> 27464 </section> 27465 </component> 27466 </structuredBody> 27467 </component> 27468 </ClinicalDocument> 27469 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 27470 <rlustypes:RLUSsemantic-signifierName>cda2report</rlustypes:RLUSsemantic-signifierName> 27471 <rlustypes:SecurityContext> 27472 <rlustypes:SourceIdentity identityName="admin"></rlustypes:SourceIdentity> 27473 </rlustypes:SecurityContext> 27474 <rlustypes:CBRContext> 27475 <rlustypes:CBRName>Testing App</rlustypes:CBRName> 27476 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 27477 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 27478 </rlustypes:CBRContext> 27479 </rlustypes:RLUSPutRequestSrcStruct> 27480 <writeCommandEnum>INSERT</writeCommandEnum> 27481 </PutRequest> 27482 </soap:Body> 27483 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 27484 <soapenv:Header/> 27485 <soapenv:Body> 27486 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 27487 <rlustypes:success>true</rlustypes:success> 27488 <rlustypes:message/> 27489 </rlustypes:RLUSStatusCode> 27490 </soapenv:Body> 27491 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 27492 <soap:Header/> 27493 <soap:Body> 27494 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 27495 <rlustypes:searchByCriteria> 27496 <rlustypes:FilterCriteria> 27497 <rlustypes:Expression> 27498 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 27499 <rlusexp:Operator type="EqualTo"/> 27500 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 27501 </rlustypes:Expression> 27502 </rlustypes:FilterCriteria> 27503 <rlustypes:SearchAttributes> 27504 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 27505 </rlustypes:SearchAttributes> 27506 </rlustypes:searchByCriteria> 27507 </rlustypes:RLUSSearchStruct> 27508 </soap:Body> 27509 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="17945"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="17945"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 27510 <soapenv:Header/> 27511 <soapenv:Body> 27512 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 27513 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 27514 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="30ef0286-ba02-4a9e-88f7-96f0c7ab990e"/> 27515 <xdw:effectiveTime value="20140613172701+0200"/> 27516 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 27517 <xdw:patient> 27518 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 27519 </xdw:patient> 27520 <xdw:author> 27521 <xdw:assignedAuthor> 27522 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 27523 <hl7v3:assignedPerson/> 27524 </xdw:assignedAuthor> 27525 </xdw:author> 27526 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 27527 <xdw:workflowDocumentSequenceNumber>14</xdw:workflowDocumentSequenceNumber> 27528 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 27529 <xdw:workflowStatusHistory> 27530 <xdw:documentEvent> 27531 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 27532 <xdw:eventType>complete</xdw:eventType> 27533 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 27534 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27535 <xdw:previousStatus>OPEN</xdw:previousStatus> 27536 <xdw:actualStatus>OPEN</xdw:actualStatus> 27537 </xdw:documentEvent> 27538 <xdw:documentEvent> 27539 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 27540 <xdw:eventType>create</xdw:eventType> 27541 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 27542 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27543 <xdw:previousStatus>OPEN</xdw:previousStatus> 27544 <xdw:actualStatus>OPEN</xdw:actualStatus> 27545 </xdw:documentEvent> 27546 <xdw:documentEvent> 27547 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 27548 <xdw:eventType>create</xdw:eventType> 27549 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 27550 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27551 <xdw:previousStatus>OPEN</xdw:previousStatus> 27552 <xdw:actualStatus>OPEN</xdw:actualStatus> 27553 </xdw:documentEvent> 27554 <xdw:documentEvent> 27555 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 27556 <xdw:eventType>create</xdw:eventType> 27557 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 27558 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27559 <xdw:previousStatus>OPEN</xdw:previousStatus> 27560 <xdw:actualStatus>OPEN</xdw:actualStatus> 27561 </xdw:documentEvent> 27562 <xdw:documentEvent> 27563 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 27564 <xdw:eventType>create</xdw:eventType> 27565 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 27566 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27567 <xdw:previousStatus>OPEN</xdw:previousStatus> 27568 <xdw:actualStatus>OPEN</xdw:actualStatus> 27569 </xdw:documentEvent> 27570 <xdw:documentEvent> 27571 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 27572 <xdw:eventType>create</xdw:eventType> 27573 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 27574 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27575 <xdw:previousStatus>OPEN</xdw:previousStatus> 27576 <xdw:actualStatus>OPEN</xdw:actualStatus> 27577 </xdw:documentEvent> 27578 </xdw:workflowStatusHistory> 27579 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 27580 <xdw:TaskList> 27581 <xdw:XDWTask> 27582 <xdw:taskData> 27583 <ws-ht:taskDetails> 27584 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 27585 <ws-ht:taskType>Requested</ws-ht:taskType> 27586 <ws-ht:name>xdw.creation</ws-ht:name> 27587 <ws-ht:status>COMPLETED</ws-ht:status> 27588 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27589 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 27590 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27591 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 27592 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27593 </ws-ht:taskDetails> 27594 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 27595 <ws-ht:input/> 27596 <ws-ht:output/> 27597 </xdw:taskData> 27598 <xdw:taskEventHistory> 27599 <xdw:taskEvent> 27600 <xdw:id>1</xdw:id> 27601 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 27602 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 27603 <xdw:eventType>complete</xdw:eventType> 27604 <xdw:status>COMPLETED</xdw:status> 27605 <xdw:eventData xsi:nil="true"/> 27606 </xdw:taskEvent> 27607 </xdw:taskEventHistory> 27608 </xdw:XDWTask> 27609 <xdw:XDWTask> 27610 <xdw:taskData> 27611 <ws-ht:taskDetails> 27612 <ws-ht:id>task_0</ws-ht:id> 27613 <ws-ht:taskType>ttype</ws-ht:taskType> 27614 <ws-ht:name>tname_0</ws-ht:name> 27615 <ws-ht:status>COMPLETED</ws-ht:status> 27616 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27617 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 27618 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27619 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 27620 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27621 </ws-ht:taskDetails> 27622 <ws-ht:description>Undocumented task</ws-ht:description> 27623 <ws-ht:input/> 27624 <ws-ht:output> 27625 <ws-ht:part name="documentReference"> 27626 <ws-ht:attachment> 27627 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 27628 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 27629 <ws-ht:accessType>RLUS</ws-ht:accessType> 27630 <ws-ht:contentType>application/xml</ws-ht:contentType> 27631 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 27632 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 27633 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 27634 </ws-ht:attachment> 27635 </ws-ht:part> 27636 </ws-ht:output> 27637 </xdw:taskData> 27638 <xdw:taskEventHistory> 27639 <xdw:taskEvent> 27640 <xdw:id>1</xdw:id> 27641 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 27642 <xdw:identifier>task_0#1</xdw:identifier> 27643 <xdw:eventType>create</xdw:eventType> 27644 <xdw:status>READY</xdw:status> 27645 <xdw:eventData xsi:nil="true"/> 27646 </xdw:taskEvent> 27647 <xdw:taskEvent> 27648 <xdw:id>2</xdw:id> 27649 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 27650 <xdw:identifier>task_0#2</xdw:identifier> 27651 <xdw:eventType>complete</xdw:eventType> 27652 <xdw:status>COMPLETED</xdw:status> 27653 <xdw:eventData xsi:nil="true"/> 27654 </xdw:taskEvent> 27655 </xdw:taskEventHistory> 27656 </xdw:XDWTask> 27657 <xdw:XDWTask> 27658 <xdw:taskData> 27659 <ws-ht:taskDetails> 27660 <ws-ht:id>task_1</ws-ht:id> 27661 <ws-ht:taskType>ttype</ws-ht:taskType> 27662 <ws-ht:name>tname_1</ws-ht:name> 27663 <ws-ht:status>COMPLETED</ws-ht:status> 27664 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27665 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 27666 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27667 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 27668 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27669 </ws-ht:taskDetails> 27670 <ws-ht:description>Undocumented task</ws-ht:description> 27671 <ws-ht:input/> 27672 <ws-ht:output> 27673 <ws-ht:part name="documentReference"> 27674 <ws-ht:attachment> 27675 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 27676 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 27677 <ws-ht:accessType>RLUS</ws-ht:accessType> 27678 <ws-ht:contentType>application/xml</ws-ht:contentType> 27679 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 27680 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 27681 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 27682 </ws-ht:attachment> 27683 </ws-ht:part> 27684 </ws-ht:output> 27685 </xdw:taskData> 27686 <xdw:taskEventHistory> 27687 <xdw:taskEvent> 27688 <xdw:id>1</xdw:id> 27689 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 27690 <xdw:identifier>task_1#1</xdw:identifier> 27691 <xdw:eventType>create</xdw:eventType> 27692 <xdw:status>READY</xdw:status> 27693 <xdw:eventData xsi:nil="true"/> 27694 </xdw:taskEvent> 27695 <xdw:taskEvent> 27696 <xdw:id>2</xdw:id> 27697 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 27698 <xdw:identifier>task_1#2</xdw:identifier> 27699 <xdw:eventType>complete</xdw:eventType> 27700 <xdw:status>COMPLETED</xdw:status> 27701 <xdw:eventData xsi:nil="true"/> 27702 </xdw:taskEvent> 27703 </xdw:taskEventHistory> 27704 </xdw:XDWTask> 27705 <xdw:XDWTask> 27706 <xdw:taskData> 27707 <ws-ht:taskDetails> 27708 <ws-ht:id>task_2</ws-ht:id> 27709 <ws-ht:taskType>ttype</ws-ht:taskType> 27710 <ws-ht:name>tname_2</ws-ht:name> 27711 <ws-ht:status>COMPLETED</ws-ht:status> 27712 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27713 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 27714 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27715 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 27716 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27717 </ws-ht:taskDetails> 27718 <ws-ht:description>Undocumented task</ws-ht:description> 27719 <ws-ht:input/> 27720 <ws-ht:output> 27721 <ws-ht:part name="documentReference"> 27722 <ws-ht:attachment> 27723 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 27724 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 27725 <ws-ht:accessType>RLUS</ws-ht:accessType> 27726 <ws-ht:contentType>application/xml</ws-ht:contentType> 27727 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 27728 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 27729 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 27730 </ws-ht:attachment> 27731 </ws-ht:part> 27732 </ws-ht:output> 27733 </xdw:taskData> 27734 <xdw:taskEventHistory> 27735 <xdw:taskEvent> 27736 <xdw:id>1</xdw:id> 27737 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 27738 <xdw:identifier>task_2#1</xdw:identifier> 27739 <xdw:eventType>create</xdw:eventType> 27740 <xdw:status>READY</xdw:status> 27741 <xdw:eventData xsi:nil="true"/> 27742 </xdw:taskEvent> 27743 <xdw:taskEvent> 27744 <xdw:id>2</xdw:id> 27745 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 27746 <xdw:identifier>task_2#2</xdw:identifier> 27747 <xdw:eventType>complete</xdw:eventType> 27748 <xdw:status>COMPLETED</xdw:status> 27749 <xdw:eventData xsi:nil="true"/> 27750 </xdw:taskEvent> 27751 </xdw:taskEventHistory> 27752 </xdw:XDWTask> 27753 <xdw:XDWTask> 27754 <xdw:taskData> 27755 <ws-ht:taskDetails> 27756 <ws-ht:id>task_3</ws-ht:id> 27757 <ws-ht:taskType>ttype</ws-ht:taskType> 27758 <ws-ht:name>tname_3</ws-ht:name> 27759 <ws-ht:status>COMPLETED</ws-ht:status> 27760 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27761 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 27762 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27763 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 27764 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27765 </ws-ht:taskDetails> 27766 <ws-ht:description>Undocumented task</ws-ht:description> 27767 <ws-ht:input/> 27768 <ws-ht:output> 27769 <ws-ht:part name="documentReference"> 27770 <ws-ht:attachment> 27771 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 27772 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 27773 <ws-ht:accessType>RLUS</ws-ht:accessType> 27774 <ws-ht:contentType>application/xml</ws-ht:contentType> 27775 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 27776 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 27777 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 27778 </ws-ht:attachment> 27779 </ws-ht:part> 27780 </ws-ht:output> 27781 </xdw:taskData> 27782 <xdw:taskEventHistory> 27783 <xdw:taskEvent> 27784 <xdw:id>1</xdw:id> 27785 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 27786 <xdw:identifier>task_3#1</xdw:identifier> 27787 <xdw:eventType>create</xdw:eventType> 27788 <xdw:status>READY</xdw:status> 27789 <xdw:eventData xsi:nil="true"/> 27790 </xdw:taskEvent> 27791 <xdw:taskEvent> 27792 <xdw:id>2</xdw:id> 27793 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 27794 <xdw:identifier>task_3#2</xdw:identifier> 27795 <xdw:eventType>complete</xdw:eventType> 27796 <xdw:status>COMPLETED</xdw:status> 27797 <xdw:eventData xsi:nil="true"/> 27798 </xdw:taskEvent> 27799 </xdw:taskEventHistory> 27800 </xdw:XDWTask> 27801 <xdw:XDWTask> 27802 <xdw:taskData> 27803 <ws-ht:taskDetails> 27804 <ws-ht:id>task_4</ws-ht:id> 27805 <ws-ht:taskType>ttype</ws-ht:taskType> 27806 <ws-ht:name>tname_4</ws-ht:name> 27807 <ws-ht:status>READY</ws-ht:status> 27808 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27809 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 27810 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27811 <ws-ht:lastModifiedTime>2014-06-13T17:27:01.491+02:00</ws-ht:lastModifiedTime> 27812 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27813 </ws-ht:taskDetails> 27814 <ws-ht:description>Undocumented task</ws-ht:description> 27815 <ws-ht:input/> 27816 <ws-ht:output/> 27817 </xdw:taskData> 27818 <xdw:taskEventHistory> 27819 <xdw:taskEvent> 27820 <xdw:id>1</xdw:id> 27821 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 27822 <xdw:identifier>task_4#1</xdw:identifier> 27823 <xdw:eventType>create</xdw:eventType> 27824 <xdw:status>READY</xdw:status> 27825 <xdw:eventData xsi:nil="true"/> 27826 </xdw:taskEvent> 27827 </xdw:taskEventHistory> 27828 </xdw:XDWTask> 27829 </xdw:TaskList> 27830 </xdw:XDW.WorkflowDocument> 27831 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 27832 <rlustypes:success>true</rlustypes:success> 27833 <rlustypes:message>One record fetched</rlustypes:message> 27834 </rlustypes:RLUSStatusCode> 27835 </GetResponse> 27836 </soapenv:Body> 27837 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 27838 <soap:Header/> 27839 <soap:Body> 27840 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 27841 <rlustypes:searchByCriteria> 27842 <rlustypes:FilterCriteria> 27843 <rlustypes:Expression> 27844 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 27845 <rlusexp:Operator type="EqualTo"/> 27846 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 27847 </rlustypes:Expression> 27848 </rlustypes:FilterCriteria> 27849 <rlustypes:SearchAttributes> 27850 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 27851 </rlustypes:SearchAttributes> 27852 </rlustypes:searchByCriteria> 27853 </rlustypes:RLUSSearchStruct> 27854 </soap:Body> 27855 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="17945"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="17945"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 27856 <soapenv:Header/> 27857 <soapenv:Body> 27858 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 27859 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 27860 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="30ef0286-ba02-4a9e-88f7-96f0c7ab990e"/> 27861 <xdw:effectiveTime value="20140613172701+0200"/> 27862 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 27863 <xdw:patient> 27864 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 27865 </xdw:patient> 27866 <xdw:author> 27867 <xdw:assignedAuthor> 27868 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 27869 <hl7v3:assignedPerson/> 27870 </xdw:assignedAuthor> 27871 </xdw:author> 27872 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 27873 <xdw:workflowDocumentSequenceNumber>14</xdw:workflowDocumentSequenceNumber> 27874 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 27875 <xdw:workflowStatusHistory> 27876 <xdw:documentEvent> 27877 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 27878 <xdw:eventType>complete</xdw:eventType> 27879 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 27880 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27881 <xdw:previousStatus>OPEN</xdw:previousStatus> 27882 <xdw:actualStatus>OPEN</xdw:actualStatus> 27883 </xdw:documentEvent> 27884 <xdw:documentEvent> 27885 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 27886 <xdw:eventType>create</xdw:eventType> 27887 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 27888 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27889 <xdw:previousStatus>OPEN</xdw:previousStatus> 27890 <xdw:actualStatus>OPEN</xdw:actualStatus> 27891 </xdw:documentEvent> 27892 <xdw:documentEvent> 27893 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 27894 <xdw:eventType>create</xdw:eventType> 27895 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 27896 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27897 <xdw:previousStatus>OPEN</xdw:previousStatus> 27898 <xdw:actualStatus>OPEN</xdw:actualStatus> 27899 </xdw:documentEvent> 27900 <xdw:documentEvent> 27901 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 27902 <xdw:eventType>create</xdw:eventType> 27903 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 27904 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27905 <xdw:previousStatus>OPEN</xdw:previousStatus> 27906 <xdw:actualStatus>OPEN</xdw:actualStatus> 27907 </xdw:documentEvent> 27908 <xdw:documentEvent> 27909 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 27910 <xdw:eventType>create</xdw:eventType> 27911 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 27912 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27913 <xdw:previousStatus>OPEN</xdw:previousStatus> 27914 <xdw:actualStatus>OPEN</xdw:actualStatus> 27915 </xdw:documentEvent> 27916 <xdw:documentEvent> 27917 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 27918 <xdw:eventType>create</xdw:eventType> 27919 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 27920 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 27921 <xdw:previousStatus>OPEN</xdw:previousStatus> 27922 <xdw:actualStatus>OPEN</xdw:actualStatus> 27923 </xdw:documentEvent> 27924 </xdw:workflowStatusHistory> 27925 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 27926 <xdw:TaskList> 27927 <xdw:XDWTask> 27928 <xdw:taskData> 27929 <ws-ht:taskDetails> 27930 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 27931 <ws-ht:taskType>Requested</ws-ht:taskType> 27932 <ws-ht:name>xdw.creation</ws-ht:name> 27933 <ws-ht:status>COMPLETED</ws-ht:status> 27934 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27935 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 27936 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27937 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 27938 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27939 </ws-ht:taskDetails> 27940 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 27941 <ws-ht:input/> 27942 <ws-ht:output/> 27943 </xdw:taskData> 27944 <xdw:taskEventHistory> 27945 <xdw:taskEvent> 27946 <xdw:id>1</xdw:id> 27947 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 27948 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 27949 <xdw:eventType>complete</xdw:eventType> 27950 <xdw:status>COMPLETED</xdw:status> 27951 <xdw:eventData xsi:nil="true"/> 27952 </xdw:taskEvent> 27953 </xdw:taskEventHistory> 27954 </xdw:XDWTask> 27955 <xdw:XDWTask> 27956 <xdw:taskData> 27957 <ws-ht:taskDetails> 27958 <ws-ht:id>task_0</ws-ht:id> 27959 <ws-ht:taskType>ttype</ws-ht:taskType> 27960 <ws-ht:name>tname_0</ws-ht:name> 27961 <ws-ht:status>COMPLETED</ws-ht:status> 27962 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 27963 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 27964 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 27965 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 27966 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 27967 </ws-ht:taskDetails> 27968 <ws-ht:description>Undocumented task</ws-ht:description> 27969 <ws-ht:input/> 27970 <ws-ht:output> 27971 <ws-ht:part name="documentReference"> 27972 <ws-ht:attachment> 27973 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 27974 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 27975 <ws-ht:accessType>RLUS</ws-ht:accessType> 27976 <ws-ht:contentType>application/xml</ws-ht:contentType> 27977 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 27978 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 27979 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 27980 </ws-ht:attachment> 27981 </ws-ht:part> 27982 </ws-ht:output> 27983 </xdw:taskData> 27984 <xdw:taskEventHistory> 27985 <xdw:taskEvent> 27986 <xdw:id>1</xdw:id> 27987 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 27988 <xdw:identifier>task_0#1</xdw:identifier> 27989 <xdw:eventType>create</xdw:eventType> 27990 <xdw:status>READY</xdw:status> 27991 <xdw:eventData xsi:nil="true"/> 27992 </xdw:taskEvent> 27993 <xdw:taskEvent> 27994 <xdw:id>2</xdw:id> 27995 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 27996 <xdw:identifier>task_0#2</xdw:identifier> 27997 <xdw:eventType>complete</xdw:eventType> 27998 <xdw:status>COMPLETED</xdw:status> 27999 <xdw:eventData xsi:nil="true"/> 28000 </xdw:taskEvent> 28001 </xdw:taskEventHistory> 28002 </xdw:XDWTask> 28003 <xdw:XDWTask> 28004 <xdw:taskData> 28005 <ws-ht:taskDetails> 28006 <ws-ht:id>task_1</ws-ht:id> 28007 <ws-ht:taskType>ttype</ws-ht:taskType> 28008 <ws-ht:name>tname_1</ws-ht:name> 28009 <ws-ht:status>COMPLETED</ws-ht:status> 28010 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28011 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 28012 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28013 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 28014 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28015 </ws-ht:taskDetails> 28016 <ws-ht:description>Undocumented task</ws-ht:description> 28017 <ws-ht:input/> 28018 <ws-ht:output> 28019 <ws-ht:part name="documentReference"> 28020 <ws-ht:attachment> 28021 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 28022 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 28023 <ws-ht:accessType>RLUS</ws-ht:accessType> 28024 <ws-ht:contentType>application/xml</ws-ht:contentType> 28025 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28026 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 28027 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28028 </ws-ht:attachment> 28029 </ws-ht:part> 28030 </ws-ht:output> 28031 </xdw:taskData> 28032 <xdw:taskEventHistory> 28033 <xdw:taskEvent> 28034 <xdw:id>1</xdw:id> 28035 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 28036 <xdw:identifier>task_1#1</xdw:identifier> 28037 <xdw:eventType>create</xdw:eventType> 28038 <xdw:status>READY</xdw:status> 28039 <xdw:eventData xsi:nil="true"/> 28040 </xdw:taskEvent> 28041 <xdw:taskEvent> 28042 <xdw:id>2</xdw:id> 28043 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 28044 <xdw:identifier>task_1#2</xdw:identifier> 28045 <xdw:eventType>complete</xdw:eventType> 28046 <xdw:status>COMPLETED</xdw:status> 28047 <xdw:eventData xsi:nil="true"/> 28048 </xdw:taskEvent> 28049 </xdw:taskEventHistory> 28050 </xdw:XDWTask> 28051 <xdw:XDWTask> 28052 <xdw:taskData> 28053 <ws-ht:taskDetails> 28054 <ws-ht:id>task_2</ws-ht:id> 28055 <ws-ht:taskType>ttype</ws-ht:taskType> 28056 <ws-ht:name>tname_2</ws-ht:name> 28057 <ws-ht:status>COMPLETED</ws-ht:status> 28058 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28059 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 28060 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28061 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 28062 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28063 </ws-ht:taskDetails> 28064 <ws-ht:description>Undocumented task</ws-ht:description> 28065 <ws-ht:input/> 28066 <ws-ht:output> 28067 <ws-ht:part name="documentReference"> 28068 <ws-ht:attachment> 28069 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 28070 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 28071 <ws-ht:accessType>RLUS</ws-ht:accessType> 28072 <ws-ht:contentType>application/xml</ws-ht:contentType> 28073 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28074 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 28075 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28076 </ws-ht:attachment> 28077 </ws-ht:part> 28078 </ws-ht:output> 28079 </xdw:taskData> 28080 <xdw:taskEventHistory> 28081 <xdw:taskEvent> 28082 <xdw:id>1</xdw:id> 28083 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 28084 <xdw:identifier>task_2#1</xdw:identifier> 28085 <xdw:eventType>create</xdw:eventType> 28086 <xdw:status>READY</xdw:status> 28087 <xdw:eventData xsi:nil="true"/> 28088 </xdw:taskEvent> 28089 <xdw:taskEvent> 28090 <xdw:id>2</xdw:id> 28091 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 28092 <xdw:identifier>task_2#2</xdw:identifier> 28093 <xdw:eventType>complete</xdw:eventType> 28094 <xdw:status>COMPLETED</xdw:status> 28095 <xdw:eventData xsi:nil="true"/> 28096 </xdw:taskEvent> 28097 </xdw:taskEventHistory> 28098 </xdw:XDWTask> 28099 <xdw:XDWTask> 28100 <xdw:taskData> 28101 <ws-ht:taskDetails> 28102 <ws-ht:id>task_3</ws-ht:id> 28103 <ws-ht:taskType>ttype</ws-ht:taskType> 28104 <ws-ht:name>tname_3</ws-ht:name> 28105 <ws-ht:status>COMPLETED</ws-ht:status> 28106 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28107 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 28108 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28109 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 28110 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28111 </ws-ht:taskDetails> 28112 <ws-ht:description>Undocumented task</ws-ht:description> 28113 <ws-ht:input/> 28114 <ws-ht:output> 28115 <ws-ht:part name="documentReference"> 28116 <ws-ht:attachment> 28117 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 28118 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 28119 <ws-ht:accessType>RLUS</ws-ht:accessType> 28120 <ws-ht:contentType>application/xml</ws-ht:contentType> 28121 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28122 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 28123 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28124 </ws-ht:attachment> 28125 </ws-ht:part> 28126 </ws-ht:output> 28127 </xdw:taskData> 28128 <xdw:taskEventHistory> 28129 <xdw:taskEvent> 28130 <xdw:id>1</xdw:id> 28131 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 28132 <xdw:identifier>task_3#1</xdw:identifier> 28133 <xdw:eventType>create</xdw:eventType> 28134 <xdw:status>READY</xdw:status> 28135 <xdw:eventData xsi:nil="true"/> 28136 </xdw:taskEvent> 28137 <xdw:taskEvent> 28138 <xdw:id>2</xdw:id> 28139 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 28140 <xdw:identifier>task_3#2</xdw:identifier> 28141 <xdw:eventType>complete</xdw:eventType> 28142 <xdw:status>COMPLETED</xdw:status> 28143 <xdw:eventData xsi:nil="true"/> 28144 </xdw:taskEvent> 28145 </xdw:taskEventHistory> 28146 </xdw:XDWTask> 28147 <xdw:XDWTask> 28148 <xdw:taskData> 28149 <ws-ht:taskDetails> 28150 <ws-ht:id>task_4</ws-ht:id> 28151 <ws-ht:taskType>ttype</ws-ht:taskType> 28152 <ws-ht:name>tname_4</ws-ht:name> 28153 <ws-ht:status>READY</ws-ht:status> 28154 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28155 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 28156 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28157 <ws-ht:lastModifiedTime>2014-06-13T17:27:01.491+02:00</ws-ht:lastModifiedTime> 28158 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28159 </ws-ht:taskDetails> 28160 <ws-ht:description>Undocumented task</ws-ht:description> 28161 <ws-ht:input/> 28162 <ws-ht:output/> 28163 </xdw:taskData> 28164 <xdw:taskEventHistory> 28165 <xdw:taskEvent> 28166 <xdw:id>1</xdw:id> 28167 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 28168 <xdw:identifier>task_4#1</xdw:identifier> 28169 <xdw:eventType>create</xdw:eventType> 28170 <xdw:status>READY</xdw:status> 28171 <xdw:eventData xsi:nil="true"/> 28172 </xdw:taskEvent> 28173 </xdw:taskEventHistory> 28174 </xdw:XDWTask> 28175 </xdw:TaskList> 28176 </xdw:XDW.WorkflowDocument> 28177 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 28178 <rlustypes:success>true</rlustypes:success> 28179 <rlustypes:message>One record fetched</rlustypes:message> 28180 </rlustypes:RLUSStatusCode> 28181 </GetResponse> 28182 </soapenv:Body> 28183 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="19152"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="19152"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 28184 <soap:Header/> 28185 <soap:Body> 28186 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 28187 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 28188 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="10f2ed99-859c-44b1-bae3-29b98a49a6a6"/> 28189 <xdw:effectiveTime value="20140613172704+0200"/> 28190 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 28191 <xdw:patient> 28192 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 28193 </xdw:patient> 28194 <xdw:author> 28195 <xdw:assignedAuthor> 28196 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 28197 <hl7v3:assignedPerson/> 28198 </xdw:assignedAuthor> 28199 </xdw:author> 28200 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 28201 <xdw:workflowDocumentSequenceNumber>15</xdw:workflowDocumentSequenceNumber> 28202 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 28203 <xdw:workflowStatusHistory> 28204 <xdw:documentEvent> 28205 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 28206 <xdw:eventType>complete</xdw:eventType> 28207 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 28208 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28209 <xdw:previousStatus>OPEN</xdw:previousStatus> 28210 <xdw:actualStatus>OPEN</xdw:actualStatus> 28211 </xdw:documentEvent> 28212 <xdw:documentEvent> 28213 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 28214 <xdw:eventType>create</xdw:eventType> 28215 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 28216 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28217 <xdw:previousStatus>OPEN</xdw:previousStatus> 28218 <xdw:actualStatus>OPEN</xdw:actualStatus> 28219 </xdw:documentEvent> 28220 <xdw:documentEvent> 28221 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 28222 <xdw:eventType>create</xdw:eventType> 28223 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 28224 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28225 <xdw:previousStatus>OPEN</xdw:previousStatus> 28226 <xdw:actualStatus>OPEN</xdw:actualStatus> 28227 </xdw:documentEvent> 28228 <xdw:documentEvent> 28229 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 28230 <xdw:eventType>create</xdw:eventType> 28231 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 28232 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28233 <xdw:previousStatus>OPEN</xdw:previousStatus> 28234 <xdw:actualStatus>OPEN</xdw:actualStatus> 28235 </xdw:documentEvent> 28236 <xdw:documentEvent> 28237 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 28238 <xdw:eventType>create</xdw:eventType> 28239 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 28240 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28241 <xdw:previousStatus>OPEN</xdw:previousStatus> 28242 <xdw:actualStatus>OPEN</xdw:actualStatus> 28243 </xdw:documentEvent> 28244 <xdw:documentEvent> 28245 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 28246 <xdw:eventType>create</xdw:eventType> 28247 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 28248 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28249 <xdw:previousStatus>OPEN</xdw:previousStatus> 28250 <xdw:actualStatus>OPEN</xdw:actualStatus> 28251 </xdw:documentEvent> 28252 </xdw:workflowStatusHistory> 28253 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 28254 <xdw:TaskList> 28255 <xdw:XDWTask> 28256 <xdw:taskData> 28257 <ws-ht:taskDetails> 28258 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 28259 <ws-ht:taskType>Requested</ws-ht:taskType> 28260 <ws-ht:name>xdw.creation</ws-ht:name> 28261 <ws-ht:status>COMPLETED</ws-ht:status> 28262 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28263 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 28264 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28265 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 28266 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28267 </ws-ht:taskDetails> 28268 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 28269 <ws-ht:input/> 28270 <ws-ht:output/> 28271 </xdw:taskData> 28272 <xdw:taskEventHistory> 28273 <xdw:taskEvent> 28274 <xdw:id>1</xdw:id> 28275 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 28276 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 28277 <xdw:eventType>complete</xdw:eventType> 28278 <xdw:status>COMPLETED</xdw:status> 28279 <xdw:eventData xsi:nil="true"/> 28280 </xdw:taskEvent> 28281 </xdw:taskEventHistory> 28282 </xdw:XDWTask> 28283 <xdw:XDWTask> 28284 <xdw:taskData> 28285 <ws-ht:taskDetails> 28286 <ws-ht:id>task_0</ws-ht:id> 28287 <ws-ht:taskType>ttype</ws-ht:taskType> 28288 <ws-ht:name>tname_0</ws-ht:name> 28289 <ws-ht:status>COMPLETED</ws-ht:status> 28290 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28291 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 28292 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28293 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 28294 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28295 </ws-ht:taskDetails> 28296 <ws-ht:description>Undocumented task</ws-ht:description> 28297 <ws-ht:input/> 28298 <ws-ht:output> 28299 <ws-ht:part name="documentReference"> 28300 <ws-ht:attachment> 28301 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 28302 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 28303 <ws-ht:accessType>RLUS</ws-ht:accessType> 28304 <ws-ht:contentType>application/xml</ws-ht:contentType> 28305 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28306 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 28307 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28308 </ws-ht:attachment> 28309 </ws-ht:part> 28310 </ws-ht:output> 28311 </xdw:taskData> 28312 <xdw:taskEventHistory> 28313 <xdw:taskEvent> 28314 <xdw:id>1</xdw:id> 28315 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 28316 <xdw:identifier>task_0#1</xdw:identifier> 28317 <xdw:eventType>create</xdw:eventType> 28318 <xdw:status>READY</xdw:status> 28319 <xdw:eventData xsi:nil="true"/> 28320 </xdw:taskEvent> 28321 <xdw:taskEvent> 28322 <xdw:id>2</xdw:id> 28323 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 28324 <xdw:identifier>task_0#2</xdw:identifier> 28325 <xdw:eventType>complete</xdw:eventType> 28326 <xdw:status>COMPLETED</xdw:status> 28327 <xdw:eventData xsi:nil="true"/> 28328 </xdw:taskEvent> 28329 </xdw:taskEventHistory> 28330 </xdw:XDWTask> 28331 <xdw:XDWTask> 28332 <xdw:taskData> 28333 <ws-ht:taskDetails> 28334 <ws-ht:id>task_1</ws-ht:id> 28335 <ws-ht:taskType>ttype</ws-ht:taskType> 28336 <ws-ht:name>tname_1</ws-ht:name> 28337 <ws-ht:status>COMPLETED</ws-ht:status> 28338 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28339 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 28340 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28341 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 28342 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28343 </ws-ht:taskDetails> 28344 <ws-ht:description>Undocumented task</ws-ht:description> 28345 <ws-ht:input/> 28346 <ws-ht:output> 28347 <ws-ht:part name="documentReference"> 28348 <ws-ht:attachment> 28349 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 28350 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 28351 <ws-ht:accessType>RLUS</ws-ht:accessType> 28352 <ws-ht:contentType>application/xml</ws-ht:contentType> 28353 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28354 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 28355 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28356 </ws-ht:attachment> 28357 </ws-ht:part> 28358 </ws-ht:output> 28359 </xdw:taskData> 28360 <xdw:taskEventHistory> 28361 <xdw:taskEvent> 28362 <xdw:id>1</xdw:id> 28363 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 28364 <xdw:identifier>task_1#1</xdw:identifier> 28365 <xdw:eventType>create</xdw:eventType> 28366 <xdw:status>READY</xdw:status> 28367 <xdw:eventData xsi:nil="true"/> 28368 </xdw:taskEvent> 28369 <xdw:taskEvent> 28370 <xdw:id>2</xdw:id> 28371 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 28372 <xdw:identifier>task_1#2</xdw:identifier> 28373 <xdw:eventType>complete</xdw:eventType> 28374 <xdw:status>COMPLETED</xdw:status> 28375 <xdw:eventData xsi:nil="true"/> 28376 </xdw:taskEvent> 28377 </xdw:taskEventHistory> 28378 </xdw:XDWTask> 28379 <xdw:XDWTask> 28380 <xdw:taskData> 28381 <ws-ht:taskDetails> 28382 <ws-ht:id>task_2</ws-ht:id> 28383 <ws-ht:taskType>ttype</ws-ht:taskType> 28384 <ws-ht:name>tname_2</ws-ht:name> 28385 <ws-ht:status>COMPLETED</ws-ht:status> 28386 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28387 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 28388 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28389 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 28390 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28391 </ws-ht:taskDetails> 28392 <ws-ht:description>Undocumented task</ws-ht:description> 28393 <ws-ht:input/> 28394 <ws-ht:output> 28395 <ws-ht:part name="documentReference"> 28396 <ws-ht:attachment> 28397 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 28398 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 28399 <ws-ht:accessType>RLUS</ws-ht:accessType> 28400 <ws-ht:contentType>application/xml</ws-ht:contentType> 28401 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28402 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 28403 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28404 </ws-ht:attachment> 28405 </ws-ht:part> 28406 </ws-ht:output> 28407 </xdw:taskData> 28408 <xdw:taskEventHistory> 28409 <xdw:taskEvent> 28410 <xdw:id>1</xdw:id> 28411 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 28412 <xdw:identifier>task_2#1</xdw:identifier> 28413 <xdw:eventType>create</xdw:eventType> 28414 <xdw:status>READY</xdw:status> 28415 <xdw:eventData xsi:nil="true"/> 28416 </xdw:taskEvent> 28417 <xdw:taskEvent> 28418 <xdw:id>2</xdw:id> 28419 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 28420 <xdw:identifier>task_2#2</xdw:identifier> 28421 <xdw:eventType>complete</xdw:eventType> 28422 <xdw:status>COMPLETED</xdw:status> 28423 <xdw:eventData xsi:nil="true"/> 28424 </xdw:taskEvent> 28425 </xdw:taskEventHistory> 28426 </xdw:XDWTask> 28427 <xdw:XDWTask> 28428 <xdw:taskData> 28429 <ws-ht:taskDetails> 28430 <ws-ht:id>task_3</ws-ht:id> 28431 <ws-ht:taskType>ttype</ws-ht:taskType> 28432 <ws-ht:name>tname_3</ws-ht:name> 28433 <ws-ht:status>COMPLETED</ws-ht:status> 28434 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28435 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 28436 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28437 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 28438 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28439 </ws-ht:taskDetails> 28440 <ws-ht:description>Undocumented task</ws-ht:description> 28441 <ws-ht:input/> 28442 <ws-ht:output> 28443 <ws-ht:part name="documentReference"> 28444 <ws-ht:attachment> 28445 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 28446 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 28447 <ws-ht:accessType>RLUS</ws-ht:accessType> 28448 <ws-ht:contentType>application/xml</ws-ht:contentType> 28449 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28450 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 28451 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28452 </ws-ht:attachment> 28453 </ws-ht:part> 28454 </ws-ht:output> 28455 </xdw:taskData> 28456 <xdw:taskEventHistory> 28457 <xdw:taskEvent> 28458 <xdw:id>1</xdw:id> 28459 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 28460 <xdw:identifier>task_3#1</xdw:identifier> 28461 <xdw:eventType>create</xdw:eventType> 28462 <xdw:status>READY</xdw:status> 28463 <xdw:eventData xsi:nil="true"/> 28464 </xdw:taskEvent> 28465 <xdw:taskEvent> 28466 <xdw:id>2</xdw:id> 28467 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 28468 <xdw:identifier>task_3#2</xdw:identifier> 28469 <xdw:eventType>complete</xdw:eventType> 28470 <xdw:status>COMPLETED</xdw:status> 28471 <xdw:eventData xsi:nil="true"/> 28472 </xdw:taskEvent> 28473 </xdw:taskEventHistory> 28474 </xdw:XDWTask> 28475 <xdw:XDWTask> 28476 <xdw:taskData> 28477 <ws-ht:taskDetails> 28478 <ws-ht:id>task_4</ws-ht:id> 28479 <ws-ht:taskType>ttype</ws-ht:taskType> 28480 <ws-ht:name>tname_4</ws-ht:name> 28481 <ws-ht:status>READY</ws-ht:status> 28482 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28483 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 28484 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28485 <ws-ht:lastModifiedTime>2014-06-13T17:27:01.491+02:00</ws-ht:lastModifiedTime> 28486 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28487 </ws-ht:taskDetails> 28488 <ws-ht:description>Undocumented task</ws-ht:description> 28489 <ws-ht:input/> 28490 <ws-ht:output> 28491 <ws-ht:part name="documentReference"> 28492 <ws-ht:attachment> 28493 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 28494 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 28495 <ws-ht:accessType>RLUS</ws-ht:accessType> 28496 <ws-ht:contentType>application/xml</ws-ht:contentType> 28497 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28498 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 28499 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28500 </ws-ht:attachment> 28501 </ws-ht:part> 28502 </ws-ht:output> 28503 </xdw:taskData> 28504 <xdw:taskEventHistory> 28505 <xdw:taskEvent> 28506 <xdw:id>1</xdw:id> 28507 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 28508 <xdw:identifier>task_4#1</xdw:identifier> 28509 <xdw:eventType>create</xdw:eventType> 28510 <xdw:status>READY</xdw:status> 28511 <xdw:eventData xsi:nil="true"/> 28512 </xdw:taskEvent> 28513 </xdw:taskEventHistory> 28514 </xdw:XDWTask> 28515 </xdw:TaskList> 28516 </xdw:XDW.WorkflowDocument> 28517 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 28518 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 28519 <rlustypes:SecurityContext> 28520 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 28521 </rlustypes:SecurityContext> 28522 <rlustypes:CBRContext> 28523 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 28524 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 28525 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 28526 </rlustypes:CBRContext> 28527 </rlustypes:RLUSPutRequestSrcStruct> 28528 <writeCommandEnum>UPDATE</writeCommandEnum> 28529 </PutRequest> 28530 </soap:Body> 28531 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 28532 <soapenv:Header/> 28533 <soapenv:Body> 28534 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 28535 <rlustypes:success>true</rlustypes:success> 28536 <rlustypes:message/> 28537 </rlustypes:RLUSStatusCode> 28538 </soapenv:Body> 28539 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 28540 <soap:Header/> 28541 <soap:Body> 28542 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 28543 <rlustypes:searchByCriteria> 28544 <rlustypes:FilterCriteria> 28545 <rlustypes:Expression> 28546 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 28547 <rlusexp:Operator type="EqualTo"/> 28548 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 28549 </rlustypes:Expression> 28550 </rlustypes:FilterCriteria> 28551 <rlustypes:SearchAttributes> 28552 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 28553 </rlustypes:SearchAttributes> 28554 </rlustypes:searchByCriteria> 28555 </rlustypes:RLUSSearchStruct> 28556 </soap:Body> 28557 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="18714"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="18714"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 28558 <soapenv:Header/> 28559 <soapenv:Body> 28560 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 28561 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 28562 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="10f2ed99-859c-44b1-bae3-29b98a49a6a6"/> 28563 <xdw:effectiveTime value="20140613172704+0200"/> 28564 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 28565 <xdw:patient> 28566 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 28567 </xdw:patient> 28568 <xdw:author> 28569 <xdw:assignedAuthor> 28570 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 28571 <hl7v3:assignedPerson/> 28572 </xdw:assignedAuthor> 28573 </xdw:author> 28574 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 28575 <xdw:workflowDocumentSequenceNumber>15</xdw:workflowDocumentSequenceNumber> 28576 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 28577 <xdw:workflowStatusHistory> 28578 <xdw:documentEvent> 28579 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 28580 <xdw:eventType>complete</xdw:eventType> 28581 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 28582 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28583 <xdw:previousStatus>OPEN</xdw:previousStatus> 28584 <xdw:actualStatus>OPEN</xdw:actualStatus> 28585 </xdw:documentEvent> 28586 <xdw:documentEvent> 28587 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 28588 <xdw:eventType>create</xdw:eventType> 28589 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 28590 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28591 <xdw:previousStatus>OPEN</xdw:previousStatus> 28592 <xdw:actualStatus>OPEN</xdw:actualStatus> 28593 </xdw:documentEvent> 28594 <xdw:documentEvent> 28595 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 28596 <xdw:eventType>create</xdw:eventType> 28597 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 28598 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28599 <xdw:previousStatus>OPEN</xdw:previousStatus> 28600 <xdw:actualStatus>OPEN</xdw:actualStatus> 28601 </xdw:documentEvent> 28602 <xdw:documentEvent> 28603 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 28604 <xdw:eventType>create</xdw:eventType> 28605 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 28606 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28607 <xdw:previousStatus>OPEN</xdw:previousStatus> 28608 <xdw:actualStatus>OPEN</xdw:actualStatus> 28609 </xdw:documentEvent> 28610 <xdw:documentEvent> 28611 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 28612 <xdw:eventType>create</xdw:eventType> 28613 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 28614 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28615 <xdw:previousStatus>OPEN</xdw:previousStatus> 28616 <xdw:actualStatus>OPEN</xdw:actualStatus> 28617 </xdw:documentEvent> 28618 <xdw:documentEvent> 28619 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 28620 <xdw:eventType>create</xdw:eventType> 28621 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 28622 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28623 <xdw:previousStatus>OPEN</xdw:previousStatus> 28624 <xdw:actualStatus>OPEN</xdw:actualStatus> 28625 </xdw:documentEvent> 28626 </xdw:workflowStatusHistory> 28627 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 28628 <xdw:TaskList> 28629 <xdw:XDWTask> 28630 <xdw:taskData> 28631 <ws-ht:taskDetails> 28632 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 28633 <ws-ht:taskType>Requested</ws-ht:taskType> 28634 <ws-ht:name>xdw.creation</ws-ht:name> 28635 <ws-ht:status>COMPLETED</ws-ht:status> 28636 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28637 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 28638 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28639 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 28640 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28641 </ws-ht:taskDetails> 28642 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 28643 <ws-ht:input/> 28644 <ws-ht:output/> 28645 </xdw:taskData> 28646 <xdw:taskEventHistory> 28647 <xdw:taskEvent> 28648 <xdw:id>1</xdw:id> 28649 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 28650 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 28651 <xdw:eventType>complete</xdw:eventType> 28652 <xdw:status>COMPLETED</xdw:status> 28653 <xdw:eventData xsi:nil="true"/> 28654 </xdw:taskEvent> 28655 </xdw:taskEventHistory> 28656 </xdw:XDWTask> 28657 <xdw:XDWTask> 28658 <xdw:taskData> 28659 <ws-ht:taskDetails> 28660 <ws-ht:id>task_0</ws-ht:id> 28661 <ws-ht:taskType>ttype</ws-ht:taskType> 28662 <ws-ht:name>tname_0</ws-ht:name> 28663 <ws-ht:status>COMPLETED</ws-ht:status> 28664 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28665 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 28666 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28667 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 28668 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28669 </ws-ht:taskDetails> 28670 <ws-ht:description>Undocumented task</ws-ht:description> 28671 <ws-ht:input/> 28672 <ws-ht:output> 28673 <ws-ht:part name="documentReference"> 28674 <ws-ht:attachment> 28675 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 28676 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 28677 <ws-ht:accessType>RLUS</ws-ht:accessType> 28678 <ws-ht:contentType>application/xml</ws-ht:contentType> 28679 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28680 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 28681 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28682 </ws-ht:attachment> 28683 </ws-ht:part> 28684 </ws-ht:output> 28685 </xdw:taskData> 28686 <xdw:taskEventHistory> 28687 <xdw:taskEvent> 28688 <xdw:id>1</xdw:id> 28689 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 28690 <xdw:identifier>task_0#1</xdw:identifier> 28691 <xdw:eventType>create</xdw:eventType> 28692 <xdw:status>READY</xdw:status> 28693 <xdw:eventData xsi:nil="true"/> 28694 </xdw:taskEvent> 28695 <xdw:taskEvent> 28696 <xdw:id>2</xdw:id> 28697 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 28698 <xdw:identifier>task_0#2</xdw:identifier> 28699 <xdw:eventType>complete</xdw:eventType> 28700 <xdw:status>COMPLETED</xdw:status> 28701 <xdw:eventData xsi:nil="true"/> 28702 </xdw:taskEvent> 28703 </xdw:taskEventHistory> 28704 </xdw:XDWTask> 28705 <xdw:XDWTask> 28706 <xdw:taskData> 28707 <ws-ht:taskDetails> 28708 <ws-ht:id>task_1</ws-ht:id> 28709 <ws-ht:taskType>ttype</ws-ht:taskType> 28710 <ws-ht:name>tname_1</ws-ht:name> 28711 <ws-ht:status>COMPLETED</ws-ht:status> 28712 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28713 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 28714 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28715 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 28716 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28717 </ws-ht:taskDetails> 28718 <ws-ht:description>Undocumented task</ws-ht:description> 28719 <ws-ht:input/> 28720 <ws-ht:output> 28721 <ws-ht:part name="documentReference"> 28722 <ws-ht:attachment> 28723 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 28724 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 28725 <ws-ht:accessType>RLUS</ws-ht:accessType> 28726 <ws-ht:contentType>application/xml</ws-ht:contentType> 28727 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28728 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 28729 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28730 </ws-ht:attachment> 28731 </ws-ht:part> 28732 </ws-ht:output> 28733 </xdw:taskData> 28734 <xdw:taskEventHistory> 28735 <xdw:taskEvent> 28736 <xdw:id>1</xdw:id> 28737 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 28738 <xdw:identifier>task_1#1</xdw:identifier> 28739 <xdw:eventType>create</xdw:eventType> 28740 <xdw:status>READY</xdw:status> 28741 <xdw:eventData xsi:nil="true"/> 28742 </xdw:taskEvent> 28743 <xdw:taskEvent> 28744 <xdw:id>2</xdw:id> 28745 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 28746 <xdw:identifier>task_1#2</xdw:identifier> 28747 <xdw:eventType>complete</xdw:eventType> 28748 <xdw:status>COMPLETED</xdw:status> 28749 <xdw:eventData xsi:nil="true"/> 28750 </xdw:taskEvent> 28751 </xdw:taskEventHistory> 28752 </xdw:XDWTask> 28753 <xdw:XDWTask> 28754 <xdw:taskData> 28755 <ws-ht:taskDetails> 28756 <ws-ht:id>task_2</ws-ht:id> 28757 <ws-ht:taskType>ttype</ws-ht:taskType> 28758 <ws-ht:name>tname_2</ws-ht:name> 28759 <ws-ht:status>COMPLETED</ws-ht:status> 28760 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28761 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 28762 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28763 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 28764 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28765 </ws-ht:taskDetails> 28766 <ws-ht:description>Undocumented task</ws-ht:description> 28767 <ws-ht:input/> 28768 <ws-ht:output> 28769 <ws-ht:part name="documentReference"> 28770 <ws-ht:attachment> 28771 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 28772 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 28773 <ws-ht:accessType>RLUS</ws-ht:accessType> 28774 <ws-ht:contentType>application/xml</ws-ht:contentType> 28775 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28776 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 28777 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28778 </ws-ht:attachment> 28779 </ws-ht:part> 28780 </ws-ht:output> 28781 </xdw:taskData> 28782 <xdw:taskEventHistory> 28783 <xdw:taskEvent> 28784 <xdw:id>1</xdw:id> 28785 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 28786 <xdw:identifier>task_2#1</xdw:identifier> 28787 <xdw:eventType>create</xdw:eventType> 28788 <xdw:status>READY</xdw:status> 28789 <xdw:eventData xsi:nil="true"/> 28790 </xdw:taskEvent> 28791 <xdw:taskEvent> 28792 <xdw:id>2</xdw:id> 28793 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 28794 <xdw:identifier>task_2#2</xdw:identifier> 28795 <xdw:eventType>complete</xdw:eventType> 28796 <xdw:status>COMPLETED</xdw:status> 28797 <xdw:eventData xsi:nil="true"/> 28798 </xdw:taskEvent> 28799 </xdw:taskEventHistory> 28800 </xdw:XDWTask> 28801 <xdw:XDWTask> 28802 <xdw:taskData> 28803 <ws-ht:taskDetails> 28804 <ws-ht:id>task_3</ws-ht:id> 28805 <ws-ht:taskType>ttype</ws-ht:taskType> 28806 <ws-ht:name>tname_3</ws-ht:name> 28807 <ws-ht:status>COMPLETED</ws-ht:status> 28808 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28809 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 28810 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28811 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 28812 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28813 </ws-ht:taskDetails> 28814 <ws-ht:description>Undocumented task</ws-ht:description> 28815 <ws-ht:input/> 28816 <ws-ht:output> 28817 <ws-ht:part name="documentReference"> 28818 <ws-ht:attachment> 28819 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 28820 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 28821 <ws-ht:accessType>RLUS</ws-ht:accessType> 28822 <ws-ht:contentType>application/xml</ws-ht:contentType> 28823 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28824 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 28825 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28826 </ws-ht:attachment> 28827 </ws-ht:part> 28828 </ws-ht:output> 28829 </xdw:taskData> 28830 <xdw:taskEventHistory> 28831 <xdw:taskEvent> 28832 <xdw:id>1</xdw:id> 28833 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 28834 <xdw:identifier>task_3#1</xdw:identifier> 28835 <xdw:eventType>create</xdw:eventType> 28836 <xdw:status>READY</xdw:status> 28837 <xdw:eventData xsi:nil="true"/> 28838 </xdw:taskEvent> 28839 <xdw:taskEvent> 28840 <xdw:id>2</xdw:id> 28841 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 28842 <xdw:identifier>task_3#2</xdw:identifier> 28843 <xdw:eventType>complete</xdw:eventType> 28844 <xdw:status>COMPLETED</xdw:status> 28845 <xdw:eventData xsi:nil="true"/> 28846 </xdw:taskEvent> 28847 </xdw:taskEventHistory> 28848 </xdw:XDWTask> 28849 <xdw:XDWTask> 28850 <xdw:taskData> 28851 <ws-ht:taskDetails> 28852 <ws-ht:id>task_4</ws-ht:id> 28853 <ws-ht:taskType>ttype</ws-ht:taskType> 28854 <ws-ht:name>tname_4</ws-ht:name> 28855 <ws-ht:status>READY</ws-ht:status> 28856 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28857 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 28858 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28859 <ws-ht:lastModifiedTime>2014-06-13T17:27:01.491+02:00</ws-ht:lastModifiedTime> 28860 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28861 </ws-ht:taskDetails> 28862 <ws-ht:description>Undocumented task</ws-ht:description> 28863 <ws-ht:input/> 28864 <ws-ht:output> 28865 <ws-ht:part name="documentReference"> 28866 <ws-ht:attachment> 28867 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 28868 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 28869 <ws-ht:accessType>RLUS</ws-ht:accessType> 28870 <ws-ht:contentType>application/xml</ws-ht:contentType> 28871 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 28872 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 28873 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 28874 </ws-ht:attachment> 28875 </ws-ht:part> 28876 </ws-ht:output> 28877 </xdw:taskData> 28878 <xdw:taskEventHistory> 28879 <xdw:taskEvent> 28880 <xdw:id>1</xdw:id> 28881 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 28882 <xdw:identifier>task_4#1</xdw:identifier> 28883 <xdw:eventType>create</xdw:eventType> 28884 <xdw:status>READY</xdw:status> 28885 <xdw:eventData xsi:nil="true"/> 28886 </xdw:taskEvent> 28887 </xdw:taskEventHistory> 28888 </xdw:XDWTask> 28889 </xdw:TaskList> 28890 </xdw:XDW.WorkflowDocument> 28891 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 28892 <rlustypes:success>true</rlustypes:success> 28893 <rlustypes:message>One record fetched</rlustypes:message> 28894 </rlustypes:RLUSStatusCode> 28895 </GetResponse> 28896 </soapenv:Body> 28897 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 28898 <soap:Header/> 28899 <soap:Body> 28900 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 28901 <rlustypes:searchByCriteria> 28902 <rlustypes:FilterCriteria> 28903 <rlustypes:Expression> 28904 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 28905 <rlusexp:Operator type="EqualTo"/> 28906 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 28907 </rlustypes:Expression> 28908 </rlustypes:FilterCriteria> 28909 <rlustypes:SearchAttributes> 28910 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 28911 </rlustypes:SearchAttributes> 28912 </rlustypes:searchByCriteria> 28913 </rlustypes:RLUSSearchStruct> 28914 </soap:Body> 28915 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="18714"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="18714"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 28916 <soapenv:Header/> 28917 <soapenv:Body> 28918 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 28919 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 28920 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="10f2ed99-859c-44b1-bae3-29b98a49a6a6"/> 28921 <xdw:effectiveTime value="20140613172704+0200"/> 28922 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 28923 <xdw:patient> 28924 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 28925 </xdw:patient> 28926 <xdw:author> 28927 <xdw:assignedAuthor> 28928 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 28929 <hl7v3:assignedPerson/> 28930 </xdw:assignedAuthor> 28931 </xdw:author> 28932 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 28933 <xdw:workflowDocumentSequenceNumber>15</xdw:workflowDocumentSequenceNumber> 28934 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 28935 <xdw:workflowStatusHistory> 28936 <xdw:documentEvent> 28937 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 28938 <xdw:eventType>complete</xdw:eventType> 28939 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 28940 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28941 <xdw:previousStatus>OPEN</xdw:previousStatus> 28942 <xdw:actualStatus>OPEN</xdw:actualStatus> 28943 </xdw:documentEvent> 28944 <xdw:documentEvent> 28945 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 28946 <xdw:eventType>create</xdw:eventType> 28947 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 28948 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28949 <xdw:previousStatus>OPEN</xdw:previousStatus> 28950 <xdw:actualStatus>OPEN</xdw:actualStatus> 28951 </xdw:documentEvent> 28952 <xdw:documentEvent> 28953 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 28954 <xdw:eventType>create</xdw:eventType> 28955 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 28956 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28957 <xdw:previousStatus>OPEN</xdw:previousStatus> 28958 <xdw:actualStatus>OPEN</xdw:actualStatus> 28959 </xdw:documentEvent> 28960 <xdw:documentEvent> 28961 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 28962 <xdw:eventType>create</xdw:eventType> 28963 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 28964 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28965 <xdw:previousStatus>OPEN</xdw:previousStatus> 28966 <xdw:actualStatus>OPEN</xdw:actualStatus> 28967 </xdw:documentEvent> 28968 <xdw:documentEvent> 28969 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 28970 <xdw:eventType>create</xdw:eventType> 28971 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 28972 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28973 <xdw:previousStatus>OPEN</xdw:previousStatus> 28974 <xdw:actualStatus>OPEN</xdw:actualStatus> 28975 </xdw:documentEvent> 28976 <xdw:documentEvent> 28977 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 28978 <xdw:eventType>create</xdw:eventType> 28979 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 28980 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 28981 <xdw:previousStatus>OPEN</xdw:previousStatus> 28982 <xdw:actualStatus>OPEN</xdw:actualStatus> 28983 </xdw:documentEvent> 28984 </xdw:workflowStatusHistory> 28985 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 28986 <xdw:TaskList> 28987 <xdw:XDWTask> 28988 <xdw:taskData> 28989 <ws-ht:taskDetails> 28990 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 28991 <ws-ht:taskType>Requested</ws-ht:taskType> 28992 <ws-ht:name>xdw.creation</ws-ht:name> 28993 <ws-ht:status>COMPLETED</ws-ht:status> 28994 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 28995 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 28996 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 28997 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 28998 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 28999 </ws-ht:taskDetails> 29000 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 29001 <ws-ht:input/> 29002 <ws-ht:output/> 29003 </xdw:taskData> 29004 <xdw:taskEventHistory> 29005 <xdw:taskEvent> 29006 <xdw:id>1</xdw:id> 29007 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 29008 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 29009 <xdw:eventType>complete</xdw:eventType> 29010 <xdw:status>COMPLETED</xdw:status> 29011 <xdw:eventData xsi:nil="true"/> 29012 </xdw:taskEvent> 29013 </xdw:taskEventHistory> 29014 </xdw:XDWTask> 29015 <xdw:XDWTask> 29016 <xdw:taskData> 29017 <ws-ht:taskDetails> 29018 <ws-ht:id>task_0</ws-ht:id> 29019 <ws-ht:taskType>ttype</ws-ht:taskType> 29020 <ws-ht:name>tname_0</ws-ht:name> 29021 <ws-ht:status>COMPLETED</ws-ht:status> 29022 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29023 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 29024 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29025 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 29026 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29027 </ws-ht:taskDetails> 29028 <ws-ht:description>Undocumented task</ws-ht:description> 29029 <ws-ht:input/> 29030 <ws-ht:output> 29031 <ws-ht:part name="documentReference"> 29032 <ws-ht:attachment> 29033 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 29034 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 29035 <ws-ht:accessType>RLUS</ws-ht:accessType> 29036 <ws-ht:contentType>application/xml</ws-ht:contentType> 29037 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29038 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 29039 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29040 </ws-ht:attachment> 29041 </ws-ht:part> 29042 </ws-ht:output> 29043 </xdw:taskData> 29044 <xdw:taskEventHistory> 29045 <xdw:taskEvent> 29046 <xdw:id>1</xdw:id> 29047 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 29048 <xdw:identifier>task_0#1</xdw:identifier> 29049 <xdw:eventType>create</xdw:eventType> 29050 <xdw:status>READY</xdw:status> 29051 <xdw:eventData xsi:nil="true"/> 29052 </xdw:taskEvent> 29053 <xdw:taskEvent> 29054 <xdw:id>2</xdw:id> 29055 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 29056 <xdw:identifier>task_0#2</xdw:identifier> 29057 <xdw:eventType>complete</xdw:eventType> 29058 <xdw:status>COMPLETED</xdw:status> 29059 <xdw:eventData xsi:nil="true"/> 29060 </xdw:taskEvent> 29061 </xdw:taskEventHistory> 29062 </xdw:XDWTask> 29063 <xdw:XDWTask> 29064 <xdw:taskData> 29065 <ws-ht:taskDetails> 29066 <ws-ht:id>task_1</ws-ht:id> 29067 <ws-ht:taskType>ttype</ws-ht:taskType> 29068 <ws-ht:name>tname_1</ws-ht:name> 29069 <ws-ht:status>COMPLETED</ws-ht:status> 29070 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29071 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 29072 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29073 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 29074 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29075 </ws-ht:taskDetails> 29076 <ws-ht:description>Undocumented task</ws-ht:description> 29077 <ws-ht:input/> 29078 <ws-ht:output> 29079 <ws-ht:part name="documentReference"> 29080 <ws-ht:attachment> 29081 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 29082 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 29083 <ws-ht:accessType>RLUS</ws-ht:accessType> 29084 <ws-ht:contentType>application/xml</ws-ht:contentType> 29085 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29086 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 29087 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29088 </ws-ht:attachment> 29089 </ws-ht:part> 29090 </ws-ht:output> 29091 </xdw:taskData> 29092 <xdw:taskEventHistory> 29093 <xdw:taskEvent> 29094 <xdw:id>1</xdw:id> 29095 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 29096 <xdw:identifier>task_1#1</xdw:identifier> 29097 <xdw:eventType>create</xdw:eventType> 29098 <xdw:status>READY</xdw:status> 29099 <xdw:eventData xsi:nil="true"/> 29100 </xdw:taskEvent> 29101 <xdw:taskEvent> 29102 <xdw:id>2</xdw:id> 29103 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 29104 <xdw:identifier>task_1#2</xdw:identifier> 29105 <xdw:eventType>complete</xdw:eventType> 29106 <xdw:status>COMPLETED</xdw:status> 29107 <xdw:eventData xsi:nil="true"/> 29108 </xdw:taskEvent> 29109 </xdw:taskEventHistory> 29110 </xdw:XDWTask> 29111 <xdw:XDWTask> 29112 <xdw:taskData> 29113 <ws-ht:taskDetails> 29114 <ws-ht:id>task_2</ws-ht:id> 29115 <ws-ht:taskType>ttype</ws-ht:taskType> 29116 <ws-ht:name>tname_2</ws-ht:name> 29117 <ws-ht:status>COMPLETED</ws-ht:status> 29118 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29119 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 29120 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29121 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 29122 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29123 </ws-ht:taskDetails> 29124 <ws-ht:description>Undocumented task</ws-ht:description> 29125 <ws-ht:input/> 29126 <ws-ht:output> 29127 <ws-ht:part name="documentReference"> 29128 <ws-ht:attachment> 29129 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 29130 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 29131 <ws-ht:accessType>RLUS</ws-ht:accessType> 29132 <ws-ht:contentType>application/xml</ws-ht:contentType> 29133 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29134 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 29135 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29136 </ws-ht:attachment> 29137 </ws-ht:part> 29138 </ws-ht:output> 29139 </xdw:taskData> 29140 <xdw:taskEventHistory> 29141 <xdw:taskEvent> 29142 <xdw:id>1</xdw:id> 29143 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 29144 <xdw:identifier>task_2#1</xdw:identifier> 29145 <xdw:eventType>create</xdw:eventType> 29146 <xdw:status>READY</xdw:status> 29147 <xdw:eventData xsi:nil="true"/> 29148 </xdw:taskEvent> 29149 <xdw:taskEvent> 29150 <xdw:id>2</xdw:id> 29151 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 29152 <xdw:identifier>task_2#2</xdw:identifier> 29153 <xdw:eventType>complete</xdw:eventType> 29154 <xdw:status>COMPLETED</xdw:status> 29155 <xdw:eventData xsi:nil="true"/> 29156 </xdw:taskEvent> 29157 </xdw:taskEventHistory> 29158 </xdw:XDWTask> 29159 <xdw:XDWTask> 29160 <xdw:taskData> 29161 <ws-ht:taskDetails> 29162 <ws-ht:id>task_3</ws-ht:id> 29163 <ws-ht:taskType>ttype</ws-ht:taskType> 29164 <ws-ht:name>tname_3</ws-ht:name> 29165 <ws-ht:status>COMPLETED</ws-ht:status> 29166 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29167 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 29168 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29169 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 29170 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29171 </ws-ht:taskDetails> 29172 <ws-ht:description>Undocumented task</ws-ht:description> 29173 <ws-ht:input/> 29174 <ws-ht:output> 29175 <ws-ht:part name="documentReference"> 29176 <ws-ht:attachment> 29177 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 29178 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 29179 <ws-ht:accessType>RLUS</ws-ht:accessType> 29180 <ws-ht:contentType>application/xml</ws-ht:contentType> 29181 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29182 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 29183 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29184 </ws-ht:attachment> 29185 </ws-ht:part> 29186 </ws-ht:output> 29187 </xdw:taskData> 29188 <xdw:taskEventHistory> 29189 <xdw:taskEvent> 29190 <xdw:id>1</xdw:id> 29191 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 29192 <xdw:identifier>task_3#1</xdw:identifier> 29193 <xdw:eventType>create</xdw:eventType> 29194 <xdw:status>READY</xdw:status> 29195 <xdw:eventData xsi:nil="true"/> 29196 </xdw:taskEvent> 29197 <xdw:taskEvent> 29198 <xdw:id>2</xdw:id> 29199 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 29200 <xdw:identifier>task_3#2</xdw:identifier> 29201 <xdw:eventType>complete</xdw:eventType> 29202 <xdw:status>COMPLETED</xdw:status> 29203 <xdw:eventData xsi:nil="true"/> 29204 </xdw:taskEvent> 29205 </xdw:taskEventHistory> 29206 </xdw:XDWTask> 29207 <xdw:XDWTask> 29208 <xdw:taskData> 29209 <ws-ht:taskDetails> 29210 <ws-ht:id>task_4</ws-ht:id> 29211 <ws-ht:taskType>ttype</ws-ht:taskType> 29212 <ws-ht:name>tname_4</ws-ht:name> 29213 <ws-ht:status>READY</ws-ht:status> 29214 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29215 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 29216 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29217 <ws-ht:lastModifiedTime>2014-06-13T17:27:01.491+02:00</ws-ht:lastModifiedTime> 29218 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29219 </ws-ht:taskDetails> 29220 <ws-ht:description>Undocumented task</ws-ht:description> 29221 <ws-ht:input/> 29222 <ws-ht:output> 29223 <ws-ht:part name="documentReference"> 29224 <ws-ht:attachment> 29225 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 29226 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 29227 <ws-ht:accessType>RLUS</ws-ht:accessType> 29228 <ws-ht:contentType>application/xml</ws-ht:contentType> 29229 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29230 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 29231 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29232 </ws-ht:attachment> 29233 </ws-ht:part> 29234 </ws-ht:output> 29235 </xdw:taskData> 29236 <xdw:taskEventHistory> 29237 <xdw:taskEvent> 29238 <xdw:id>1</xdw:id> 29239 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 29240 <xdw:identifier>task_4#1</xdw:identifier> 29241 <xdw:eventType>create</xdw:eventType> 29242 <xdw:status>READY</xdw:status> 29243 <xdw:eventData xsi:nil="true"/> 29244 </xdw:taskEvent> 29245 </xdw:taskEventHistory> 29246 </xdw:XDWTask> 29247 </xdw:TaskList> 29248 </xdw:XDW.WorkflowDocument> 29249 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 29250 <rlustypes:success>true</rlustypes:success> 29251 <rlustypes:message>One record fetched</rlustypes:message> 29252 </rlustypes:RLUSStatusCode> 29253 </GetResponse> 29254 </soapenv:Body> 29255 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="19542"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="19542"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 29256 <soap:Header/> 29257 <soap:Body> 29258 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 29259 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 29260 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="6923860f-28ec-46e2-bcd0-b533d4304f49"/> 29261 <xdw:effectiveTime value="20140613172706+0200"/> 29262 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 29263 <xdw:patient> 29264 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 29265 </xdw:patient> 29266 <xdw:author> 29267 <xdw:assignedAuthor> 29268 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 29269 <hl7v3:assignedPerson/> 29270 </xdw:assignedAuthor> 29271 </xdw:author> 29272 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 29273 <xdw:workflowDocumentSequenceNumber>16</xdw:workflowDocumentSequenceNumber> 29274 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 29275 <xdw:workflowStatusHistory> 29276 <xdw:documentEvent> 29277 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 29278 <xdw:eventType>complete</xdw:eventType> 29279 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 29280 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29281 <xdw:previousStatus>OPEN</xdw:previousStatus> 29282 <xdw:actualStatus>OPEN</xdw:actualStatus> 29283 </xdw:documentEvent> 29284 <xdw:documentEvent> 29285 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 29286 <xdw:eventType>create</xdw:eventType> 29287 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 29288 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29289 <xdw:previousStatus>OPEN</xdw:previousStatus> 29290 <xdw:actualStatus>OPEN</xdw:actualStatus> 29291 </xdw:documentEvent> 29292 <xdw:documentEvent> 29293 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 29294 <xdw:eventType>create</xdw:eventType> 29295 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 29296 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29297 <xdw:previousStatus>OPEN</xdw:previousStatus> 29298 <xdw:actualStatus>OPEN</xdw:actualStatus> 29299 </xdw:documentEvent> 29300 <xdw:documentEvent> 29301 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 29302 <xdw:eventType>create</xdw:eventType> 29303 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 29304 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29305 <xdw:previousStatus>OPEN</xdw:previousStatus> 29306 <xdw:actualStatus>OPEN</xdw:actualStatus> 29307 </xdw:documentEvent> 29308 <xdw:documentEvent> 29309 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 29310 <xdw:eventType>create</xdw:eventType> 29311 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 29312 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29313 <xdw:previousStatus>OPEN</xdw:previousStatus> 29314 <xdw:actualStatus>OPEN</xdw:actualStatus> 29315 </xdw:documentEvent> 29316 <xdw:documentEvent> 29317 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 29318 <xdw:eventType>create</xdw:eventType> 29319 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 29320 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29321 <xdw:previousStatus>OPEN</xdw:previousStatus> 29322 <xdw:actualStatus>OPEN</xdw:actualStatus> 29323 </xdw:documentEvent> 29324 </xdw:workflowStatusHistory> 29325 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 29326 <xdw:TaskList> 29327 <xdw:XDWTask> 29328 <xdw:taskData> 29329 <ws-ht:taskDetails> 29330 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 29331 <ws-ht:taskType>Requested</ws-ht:taskType> 29332 <ws-ht:name>xdw.creation</ws-ht:name> 29333 <ws-ht:status>COMPLETED</ws-ht:status> 29334 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29335 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 29336 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29337 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 29338 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29339 </ws-ht:taskDetails> 29340 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 29341 <ws-ht:input/> 29342 <ws-ht:output/> 29343 </xdw:taskData> 29344 <xdw:taskEventHistory> 29345 <xdw:taskEvent> 29346 <xdw:id>1</xdw:id> 29347 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 29348 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 29349 <xdw:eventType>complete</xdw:eventType> 29350 <xdw:status>COMPLETED</xdw:status> 29351 <xdw:eventData xsi:nil="true"/> 29352 </xdw:taskEvent> 29353 </xdw:taskEventHistory> 29354 </xdw:XDWTask> 29355 <xdw:XDWTask> 29356 <xdw:taskData> 29357 <ws-ht:taskDetails> 29358 <ws-ht:id>task_0</ws-ht:id> 29359 <ws-ht:taskType>ttype</ws-ht:taskType> 29360 <ws-ht:name>tname_0</ws-ht:name> 29361 <ws-ht:status>COMPLETED</ws-ht:status> 29362 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29363 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 29364 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29365 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 29366 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29367 </ws-ht:taskDetails> 29368 <ws-ht:description>Undocumented task</ws-ht:description> 29369 <ws-ht:input/> 29370 <ws-ht:output> 29371 <ws-ht:part name="documentReference"> 29372 <ws-ht:attachment> 29373 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 29374 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 29375 <ws-ht:accessType>RLUS</ws-ht:accessType> 29376 <ws-ht:contentType>application/xml</ws-ht:contentType> 29377 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29378 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 29379 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29380 </ws-ht:attachment> 29381 </ws-ht:part> 29382 </ws-ht:output> 29383 </xdw:taskData> 29384 <xdw:taskEventHistory> 29385 <xdw:taskEvent> 29386 <xdw:id>1</xdw:id> 29387 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 29388 <xdw:identifier>task_0#1</xdw:identifier> 29389 <xdw:eventType>create</xdw:eventType> 29390 <xdw:status>READY</xdw:status> 29391 <xdw:eventData xsi:nil="true"/> 29392 </xdw:taskEvent> 29393 <xdw:taskEvent> 29394 <xdw:id>2</xdw:id> 29395 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 29396 <xdw:identifier>task_0#2</xdw:identifier> 29397 <xdw:eventType>complete</xdw:eventType> 29398 <xdw:status>COMPLETED</xdw:status> 29399 <xdw:eventData xsi:nil="true"/> 29400 </xdw:taskEvent> 29401 </xdw:taskEventHistory> 29402 </xdw:XDWTask> 29403 <xdw:XDWTask> 29404 <xdw:taskData> 29405 <ws-ht:taskDetails> 29406 <ws-ht:id>task_1</ws-ht:id> 29407 <ws-ht:taskType>ttype</ws-ht:taskType> 29408 <ws-ht:name>tname_1</ws-ht:name> 29409 <ws-ht:status>COMPLETED</ws-ht:status> 29410 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29411 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 29412 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29413 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 29414 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29415 </ws-ht:taskDetails> 29416 <ws-ht:description>Undocumented task</ws-ht:description> 29417 <ws-ht:input/> 29418 <ws-ht:output> 29419 <ws-ht:part name="documentReference"> 29420 <ws-ht:attachment> 29421 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 29422 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 29423 <ws-ht:accessType>RLUS</ws-ht:accessType> 29424 <ws-ht:contentType>application/xml</ws-ht:contentType> 29425 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29426 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 29427 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29428 </ws-ht:attachment> 29429 </ws-ht:part> 29430 </ws-ht:output> 29431 </xdw:taskData> 29432 <xdw:taskEventHistory> 29433 <xdw:taskEvent> 29434 <xdw:id>1</xdw:id> 29435 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 29436 <xdw:identifier>task_1#1</xdw:identifier> 29437 <xdw:eventType>create</xdw:eventType> 29438 <xdw:status>READY</xdw:status> 29439 <xdw:eventData xsi:nil="true"/> 29440 </xdw:taskEvent> 29441 <xdw:taskEvent> 29442 <xdw:id>2</xdw:id> 29443 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 29444 <xdw:identifier>task_1#2</xdw:identifier> 29445 <xdw:eventType>complete</xdw:eventType> 29446 <xdw:status>COMPLETED</xdw:status> 29447 <xdw:eventData xsi:nil="true"/> 29448 </xdw:taskEvent> 29449 </xdw:taskEventHistory> 29450 </xdw:XDWTask> 29451 <xdw:XDWTask> 29452 <xdw:taskData> 29453 <ws-ht:taskDetails> 29454 <ws-ht:id>task_2</ws-ht:id> 29455 <ws-ht:taskType>ttype</ws-ht:taskType> 29456 <ws-ht:name>tname_2</ws-ht:name> 29457 <ws-ht:status>COMPLETED</ws-ht:status> 29458 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29459 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 29460 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29461 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 29462 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29463 </ws-ht:taskDetails> 29464 <ws-ht:description>Undocumented task</ws-ht:description> 29465 <ws-ht:input/> 29466 <ws-ht:output> 29467 <ws-ht:part name="documentReference"> 29468 <ws-ht:attachment> 29469 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 29470 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 29471 <ws-ht:accessType>RLUS</ws-ht:accessType> 29472 <ws-ht:contentType>application/xml</ws-ht:contentType> 29473 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29474 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 29475 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29476 </ws-ht:attachment> 29477 </ws-ht:part> 29478 </ws-ht:output> 29479 </xdw:taskData> 29480 <xdw:taskEventHistory> 29481 <xdw:taskEvent> 29482 <xdw:id>1</xdw:id> 29483 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 29484 <xdw:identifier>task_2#1</xdw:identifier> 29485 <xdw:eventType>create</xdw:eventType> 29486 <xdw:status>READY</xdw:status> 29487 <xdw:eventData xsi:nil="true"/> 29488 </xdw:taskEvent> 29489 <xdw:taskEvent> 29490 <xdw:id>2</xdw:id> 29491 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 29492 <xdw:identifier>task_2#2</xdw:identifier> 29493 <xdw:eventType>complete</xdw:eventType> 29494 <xdw:status>COMPLETED</xdw:status> 29495 <xdw:eventData xsi:nil="true"/> 29496 </xdw:taskEvent> 29497 </xdw:taskEventHistory> 29498 </xdw:XDWTask> 29499 <xdw:XDWTask> 29500 <xdw:taskData> 29501 <ws-ht:taskDetails> 29502 <ws-ht:id>task_3</ws-ht:id> 29503 <ws-ht:taskType>ttype</ws-ht:taskType> 29504 <ws-ht:name>tname_3</ws-ht:name> 29505 <ws-ht:status>COMPLETED</ws-ht:status> 29506 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29507 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 29508 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29509 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 29510 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29511 </ws-ht:taskDetails> 29512 <ws-ht:description>Undocumented task</ws-ht:description> 29513 <ws-ht:input/> 29514 <ws-ht:output> 29515 <ws-ht:part name="documentReference"> 29516 <ws-ht:attachment> 29517 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 29518 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 29519 <ws-ht:accessType>RLUS</ws-ht:accessType> 29520 <ws-ht:contentType>application/xml</ws-ht:contentType> 29521 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29522 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 29523 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29524 </ws-ht:attachment> 29525 </ws-ht:part> 29526 </ws-ht:output> 29527 </xdw:taskData> 29528 <xdw:taskEventHistory> 29529 <xdw:taskEvent> 29530 <xdw:id>1</xdw:id> 29531 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 29532 <xdw:identifier>task_3#1</xdw:identifier> 29533 <xdw:eventType>create</xdw:eventType> 29534 <xdw:status>READY</xdw:status> 29535 <xdw:eventData xsi:nil="true"/> 29536 </xdw:taskEvent> 29537 <xdw:taskEvent> 29538 <xdw:id>2</xdw:id> 29539 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 29540 <xdw:identifier>task_3#2</xdw:identifier> 29541 <xdw:eventType>complete</xdw:eventType> 29542 <xdw:status>COMPLETED</xdw:status> 29543 <xdw:eventData xsi:nil="true"/> 29544 </xdw:taskEvent> 29545 </xdw:taskEventHistory> 29546 </xdw:XDWTask> 29547 <xdw:XDWTask> 29548 <xdw:taskData> 29549 <ws-ht:taskDetails> 29550 <ws-ht:id>task_4</ws-ht:id> 29551 <ws-ht:taskType>ttype</ws-ht:taskType> 29552 <ws-ht:name>tname_4</ws-ht:name> 29553 <ws-ht:status>COMPLETED</ws-ht:status> 29554 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29555 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 29556 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29557 <ws-ht:lastModifiedTime>2014-06-13T17:27:06.101+02:00</ws-ht:lastModifiedTime> 29558 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29559 </ws-ht:taskDetails> 29560 <ws-ht:description>Undocumented task</ws-ht:description> 29561 <ws-ht:input/> 29562 <ws-ht:output> 29563 <ws-ht:part name="documentReference"> 29564 <ws-ht:attachment> 29565 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 29566 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 29567 <ws-ht:accessType>RLUS</ws-ht:accessType> 29568 <ws-ht:contentType>application/xml</ws-ht:contentType> 29569 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29570 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 29571 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29572 </ws-ht:attachment> 29573 </ws-ht:part> 29574 </ws-ht:output> 29575 </xdw:taskData> 29576 <xdw:taskEventHistory> 29577 <xdw:taskEvent> 29578 <xdw:id>1</xdw:id> 29579 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 29580 <xdw:identifier>task_4#1</xdw:identifier> 29581 <xdw:eventType>create</xdw:eventType> 29582 <xdw:status>READY</xdw:status> 29583 <xdw:eventData xsi:nil="true"/> 29584 </xdw:taskEvent> 29585 <xdw:taskEvent> 29586 <xdw:id>2</xdw:id> 29587 <xdw:eventTime>2014-06-13T17:27:06.101+02:00</xdw:eventTime> 29588 <xdw:identifier>task_4#2</xdw:identifier> 29589 <xdw:eventType>complete</xdw:eventType> 29590 <xdw:status>COMPLETED</xdw:status> 29591 <xdw:eventData xsi:nil="true"/> 29592 </xdw:taskEvent> 29593 </xdw:taskEventHistory> 29594 </xdw:XDWTask> 29595 </xdw:TaskList> 29596 </xdw:XDW.WorkflowDocument> 29597 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 29598 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 29599 <rlustypes:SecurityContext> 29600 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 29601 </rlustypes:SecurityContext> 29602 <rlustypes:CBRContext> 29603 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 29604 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 29605 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 29606 </rlustypes:CBRContext> 29607 </rlustypes:RLUSPutRequestSrcStruct> 29608 <writeCommandEnum>UPDATE</writeCommandEnum> 29609 </PutRequest> 29610 </soap:Body> 29611 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 29612 <soapenv:Header/> 29613 <soapenv:Body> 29614 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 29615 <rlustypes:success>true</rlustypes:success> 29616 <rlustypes:message/> 29617 </rlustypes:RLUSStatusCode> 29618 </soapenv:Body> 29619 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 29620 <soap:Header/> 29621 <soap:Body> 29622 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 29623 <rlustypes:searchByCriteria> 29624 <rlustypes:FilterCriteria> 29625 <rlustypes:Expression> 29626 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 29627 <rlusexp:Operator type="EqualTo"/> 29628 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 29629 </rlustypes:Expression> 29630 </rlustypes:FilterCriteria> 29631 <rlustypes:SearchAttributes> 29632 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 29633 </rlustypes:SearchAttributes> 29634 </rlustypes:searchByCriteria> 29635 </rlustypes:RLUSSearchStruct> 29636 </soap:Body> 29637 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19104"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19104"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 29638 <soapenv:Header/> 29639 <soapenv:Body> 29640 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 29641 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 29642 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="6923860f-28ec-46e2-bcd0-b533d4304f49"/> 29643 <xdw:effectiveTime value="20140613172706+0200"/> 29644 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 29645 <xdw:patient> 29646 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 29647 </xdw:patient> 29648 <xdw:author> 29649 <xdw:assignedAuthor> 29650 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 29651 <hl7v3:assignedPerson/> 29652 </xdw:assignedAuthor> 29653 </xdw:author> 29654 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 29655 <xdw:workflowDocumentSequenceNumber>16</xdw:workflowDocumentSequenceNumber> 29656 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 29657 <xdw:workflowStatusHistory> 29658 <xdw:documentEvent> 29659 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 29660 <xdw:eventType>complete</xdw:eventType> 29661 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 29662 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29663 <xdw:previousStatus>OPEN</xdw:previousStatus> 29664 <xdw:actualStatus>OPEN</xdw:actualStatus> 29665 </xdw:documentEvent> 29666 <xdw:documentEvent> 29667 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 29668 <xdw:eventType>create</xdw:eventType> 29669 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 29670 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29671 <xdw:previousStatus>OPEN</xdw:previousStatus> 29672 <xdw:actualStatus>OPEN</xdw:actualStatus> 29673 </xdw:documentEvent> 29674 <xdw:documentEvent> 29675 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 29676 <xdw:eventType>create</xdw:eventType> 29677 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 29678 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29679 <xdw:previousStatus>OPEN</xdw:previousStatus> 29680 <xdw:actualStatus>OPEN</xdw:actualStatus> 29681 </xdw:documentEvent> 29682 <xdw:documentEvent> 29683 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 29684 <xdw:eventType>create</xdw:eventType> 29685 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 29686 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29687 <xdw:previousStatus>OPEN</xdw:previousStatus> 29688 <xdw:actualStatus>OPEN</xdw:actualStatus> 29689 </xdw:documentEvent> 29690 <xdw:documentEvent> 29691 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 29692 <xdw:eventType>create</xdw:eventType> 29693 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 29694 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29695 <xdw:previousStatus>OPEN</xdw:previousStatus> 29696 <xdw:actualStatus>OPEN</xdw:actualStatus> 29697 </xdw:documentEvent> 29698 <xdw:documentEvent> 29699 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 29700 <xdw:eventType>create</xdw:eventType> 29701 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 29702 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 29703 <xdw:previousStatus>OPEN</xdw:previousStatus> 29704 <xdw:actualStatus>OPEN</xdw:actualStatus> 29705 </xdw:documentEvent> 29706 </xdw:workflowStatusHistory> 29707 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 29708 <xdw:TaskList> 29709 <xdw:XDWTask> 29710 <xdw:taskData> 29711 <ws-ht:taskDetails> 29712 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 29713 <ws-ht:taskType>Requested</ws-ht:taskType> 29714 <ws-ht:name>xdw.creation</ws-ht:name> 29715 <ws-ht:status>COMPLETED</ws-ht:status> 29716 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29717 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 29718 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29719 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 29720 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29721 </ws-ht:taskDetails> 29722 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 29723 <ws-ht:input/> 29724 <ws-ht:output/> 29725 </xdw:taskData> 29726 <xdw:taskEventHistory> 29727 <xdw:taskEvent> 29728 <xdw:id>1</xdw:id> 29729 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 29730 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 29731 <xdw:eventType>complete</xdw:eventType> 29732 <xdw:status>COMPLETED</xdw:status> 29733 <xdw:eventData xsi:nil="true"/> 29734 </xdw:taskEvent> 29735 </xdw:taskEventHistory> 29736 </xdw:XDWTask> 29737 <xdw:XDWTask> 29738 <xdw:taskData> 29739 <ws-ht:taskDetails> 29740 <ws-ht:id>task_0</ws-ht:id> 29741 <ws-ht:taskType>ttype</ws-ht:taskType> 29742 <ws-ht:name>tname_0</ws-ht:name> 29743 <ws-ht:status>COMPLETED</ws-ht:status> 29744 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29745 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 29746 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29747 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 29748 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29749 </ws-ht:taskDetails> 29750 <ws-ht:description>Undocumented task</ws-ht:description> 29751 <ws-ht:input/> 29752 <ws-ht:output> 29753 <ws-ht:part name="documentReference"> 29754 <ws-ht:attachment> 29755 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 29756 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 29757 <ws-ht:accessType>RLUS</ws-ht:accessType> 29758 <ws-ht:contentType>application/xml</ws-ht:contentType> 29759 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29760 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 29761 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29762 </ws-ht:attachment> 29763 </ws-ht:part> 29764 </ws-ht:output> 29765 </xdw:taskData> 29766 <xdw:taskEventHistory> 29767 <xdw:taskEvent> 29768 <xdw:id>1</xdw:id> 29769 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 29770 <xdw:identifier>task_0#1</xdw:identifier> 29771 <xdw:eventType>create</xdw:eventType> 29772 <xdw:status>READY</xdw:status> 29773 <xdw:eventData xsi:nil="true"/> 29774 </xdw:taskEvent> 29775 <xdw:taskEvent> 29776 <xdw:id>2</xdw:id> 29777 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 29778 <xdw:identifier>task_0#2</xdw:identifier> 29779 <xdw:eventType>complete</xdw:eventType> 29780 <xdw:status>COMPLETED</xdw:status> 29781 <xdw:eventData xsi:nil="true"/> 29782 </xdw:taskEvent> 29783 </xdw:taskEventHistory> 29784 </xdw:XDWTask> 29785 <xdw:XDWTask> 29786 <xdw:taskData> 29787 <ws-ht:taskDetails> 29788 <ws-ht:id>task_1</ws-ht:id> 29789 <ws-ht:taskType>ttype</ws-ht:taskType> 29790 <ws-ht:name>tname_1</ws-ht:name> 29791 <ws-ht:status>COMPLETED</ws-ht:status> 29792 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29793 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 29794 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29795 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 29796 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29797 </ws-ht:taskDetails> 29798 <ws-ht:description>Undocumented task</ws-ht:description> 29799 <ws-ht:input/> 29800 <ws-ht:output> 29801 <ws-ht:part name="documentReference"> 29802 <ws-ht:attachment> 29803 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 29804 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 29805 <ws-ht:accessType>RLUS</ws-ht:accessType> 29806 <ws-ht:contentType>application/xml</ws-ht:contentType> 29807 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29808 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 29809 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29810 </ws-ht:attachment> 29811 </ws-ht:part> 29812 </ws-ht:output> 29813 </xdw:taskData> 29814 <xdw:taskEventHistory> 29815 <xdw:taskEvent> 29816 <xdw:id>1</xdw:id> 29817 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 29818 <xdw:identifier>task_1#1</xdw:identifier> 29819 <xdw:eventType>create</xdw:eventType> 29820 <xdw:status>READY</xdw:status> 29821 <xdw:eventData xsi:nil="true"/> 29822 </xdw:taskEvent> 29823 <xdw:taskEvent> 29824 <xdw:id>2</xdw:id> 29825 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 29826 <xdw:identifier>task_1#2</xdw:identifier> 29827 <xdw:eventType>complete</xdw:eventType> 29828 <xdw:status>COMPLETED</xdw:status> 29829 <xdw:eventData xsi:nil="true"/> 29830 </xdw:taskEvent> 29831 </xdw:taskEventHistory> 29832 </xdw:XDWTask> 29833 <xdw:XDWTask> 29834 <xdw:taskData> 29835 <ws-ht:taskDetails> 29836 <ws-ht:id>task_2</ws-ht:id> 29837 <ws-ht:taskType>ttype</ws-ht:taskType> 29838 <ws-ht:name>tname_2</ws-ht:name> 29839 <ws-ht:status>COMPLETED</ws-ht:status> 29840 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29841 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 29842 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29843 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 29844 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29845 </ws-ht:taskDetails> 29846 <ws-ht:description>Undocumented task</ws-ht:description> 29847 <ws-ht:input/> 29848 <ws-ht:output> 29849 <ws-ht:part name="documentReference"> 29850 <ws-ht:attachment> 29851 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 29852 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 29853 <ws-ht:accessType>RLUS</ws-ht:accessType> 29854 <ws-ht:contentType>application/xml</ws-ht:contentType> 29855 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29856 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 29857 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29858 </ws-ht:attachment> 29859 </ws-ht:part> 29860 </ws-ht:output> 29861 </xdw:taskData> 29862 <xdw:taskEventHistory> 29863 <xdw:taskEvent> 29864 <xdw:id>1</xdw:id> 29865 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 29866 <xdw:identifier>task_2#1</xdw:identifier> 29867 <xdw:eventType>create</xdw:eventType> 29868 <xdw:status>READY</xdw:status> 29869 <xdw:eventData xsi:nil="true"/> 29870 </xdw:taskEvent> 29871 <xdw:taskEvent> 29872 <xdw:id>2</xdw:id> 29873 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 29874 <xdw:identifier>task_2#2</xdw:identifier> 29875 <xdw:eventType>complete</xdw:eventType> 29876 <xdw:status>COMPLETED</xdw:status> 29877 <xdw:eventData xsi:nil="true"/> 29878 </xdw:taskEvent> 29879 </xdw:taskEventHistory> 29880 </xdw:XDWTask> 29881 <xdw:XDWTask> 29882 <xdw:taskData> 29883 <ws-ht:taskDetails> 29884 <ws-ht:id>task_3</ws-ht:id> 29885 <ws-ht:taskType>ttype</ws-ht:taskType> 29886 <ws-ht:name>tname_3</ws-ht:name> 29887 <ws-ht:status>COMPLETED</ws-ht:status> 29888 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29889 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 29890 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29891 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 29892 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29893 </ws-ht:taskDetails> 29894 <ws-ht:description>Undocumented task</ws-ht:description> 29895 <ws-ht:input/> 29896 <ws-ht:output> 29897 <ws-ht:part name="documentReference"> 29898 <ws-ht:attachment> 29899 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 29900 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 29901 <ws-ht:accessType>RLUS</ws-ht:accessType> 29902 <ws-ht:contentType>application/xml</ws-ht:contentType> 29903 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29904 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 29905 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29906 </ws-ht:attachment> 29907 </ws-ht:part> 29908 </ws-ht:output> 29909 </xdw:taskData> 29910 <xdw:taskEventHistory> 29911 <xdw:taskEvent> 29912 <xdw:id>1</xdw:id> 29913 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 29914 <xdw:identifier>task_3#1</xdw:identifier> 29915 <xdw:eventType>create</xdw:eventType> 29916 <xdw:status>READY</xdw:status> 29917 <xdw:eventData xsi:nil="true"/> 29918 </xdw:taskEvent> 29919 <xdw:taskEvent> 29920 <xdw:id>2</xdw:id> 29921 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 29922 <xdw:identifier>task_3#2</xdw:identifier> 29923 <xdw:eventType>complete</xdw:eventType> 29924 <xdw:status>COMPLETED</xdw:status> 29925 <xdw:eventData xsi:nil="true"/> 29926 </xdw:taskEvent> 29927 </xdw:taskEventHistory> 29928 </xdw:XDWTask> 29929 <xdw:XDWTask> 29930 <xdw:taskData> 29931 <ws-ht:taskDetails> 29932 <ws-ht:id>task_4</ws-ht:id> 29933 <ws-ht:taskType>ttype</ws-ht:taskType> 29934 <ws-ht:name>tname_4</ws-ht:name> 29935 <ws-ht:status>COMPLETED</ws-ht:status> 29936 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 29937 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 29938 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 29939 <ws-ht:lastModifiedTime>2014-06-13T17:27:06.101+02:00</ws-ht:lastModifiedTime> 29940 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 29941 </ws-ht:taskDetails> 29942 <ws-ht:description>Undocumented task</ws-ht:description> 29943 <ws-ht:input/> 29944 <ws-ht:output> 29945 <ws-ht:part name="documentReference"> 29946 <ws-ht:attachment> 29947 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 29948 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 29949 <ws-ht:accessType>RLUS</ws-ht:accessType> 29950 <ws-ht:contentType>application/xml</ws-ht:contentType> 29951 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 29952 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 29953 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 29954 </ws-ht:attachment> 29955 </ws-ht:part> 29956 </ws-ht:output> 29957 </xdw:taskData> 29958 <xdw:taskEventHistory> 29959 <xdw:taskEvent> 29960 <xdw:id>1</xdw:id> 29961 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 29962 <xdw:identifier>task_4#1</xdw:identifier> 29963 <xdw:eventType>create</xdw:eventType> 29964 <xdw:status>READY</xdw:status> 29965 <xdw:eventData xsi:nil="true"/> 29966 </xdw:taskEvent> 29967 <xdw:taskEvent> 29968 <xdw:id>2</xdw:id> 29969 <xdw:eventTime>2014-06-13T17:27:06.101+02:00</xdw:eventTime> 29970 <xdw:identifier>task_4#2</xdw:identifier> 29971 <xdw:eventType>complete</xdw:eventType> 29972 <xdw:status>COMPLETED</xdw:status> 29973 <xdw:eventData xsi:nil="true"/> 29974 </xdw:taskEvent> 29975 </xdw:taskEventHistory> 29976 </xdw:XDWTask> 29977 </xdw:TaskList> 29978 </xdw:XDW.WorkflowDocument> 29979 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 29980 <rlustypes:success>true</rlustypes:success> 29981 <rlustypes:message>One record fetched</rlustypes:message> 29982 </rlustypes:RLUSStatusCode> 29983 </GetResponse> 29984 </soapenv:Body> 29985 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 29986 <soap:Header/> 29987 <soap:Body> 29988 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 29989 <rlustypes:searchByCriteria> 29990 <rlustypes:FilterCriteria> 29991 <rlustypes:Expression> 29992 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 29993 <rlusexp:Operator type="EqualTo"/> 29994 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 29995 </rlustypes:Expression> 29996 </rlustypes:FilterCriteria> 29997 <rlustypes:SearchAttributes> 29998 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 29999 </rlustypes:SearchAttributes> 30000 </rlustypes:searchByCriteria> 30001 </rlustypes:RLUSSearchStruct> 30002 </soap:Body> 30003 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19104"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19104"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 30004 <soapenv:Header/> 30005 <soapenv:Body> 30006 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 30007 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 30008 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="6923860f-28ec-46e2-bcd0-b533d4304f49"/> 30009 <xdw:effectiveTime value="20140613172706+0200"/> 30010 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 30011 <xdw:patient> 30012 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 30013 </xdw:patient> 30014 <xdw:author> 30015 <xdw:assignedAuthor> 30016 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 30017 <hl7v3:assignedPerson/> 30018 </xdw:assignedAuthor> 30019 </xdw:author> 30020 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 30021 <xdw:workflowDocumentSequenceNumber>16</xdw:workflowDocumentSequenceNumber> 30022 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 30023 <xdw:workflowStatusHistory> 30024 <xdw:documentEvent> 30025 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 30026 <xdw:eventType>complete</xdw:eventType> 30027 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 30028 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30029 <xdw:previousStatus>OPEN</xdw:previousStatus> 30030 <xdw:actualStatus>OPEN</xdw:actualStatus> 30031 </xdw:documentEvent> 30032 <xdw:documentEvent> 30033 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 30034 <xdw:eventType>create</xdw:eventType> 30035 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 30036 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30037 <xdw:previousStatus>OPEN</xdw:previousStatus> 30038 <xdw:actualStatus>OPEN</xdw:actualStatus> 30039 </xdw:documentEvent> 30040 <xdw:documentEvent> 30041 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 30042 <xdw:eventType>create</xdw:eventType> 30043 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 30044 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30045 <xdw:previousStatus>OPEN</xdw:previousStatus> 30046 <xdw:actualStatus>OPEN</xdw:actualStatus> 30047 </xdw:documentEvent> 30048 <xdw:documentEvent> 30049 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 30050 <xdw:eventType>create</xdw:eventType> 30051 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 30052 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30053 <xdw:previousStatus>OPEN</xdw:previousStatus> 30054 <xdw:actualStatus>OPEN</xdw:actualStatus> 30055 </xdw:documentEvent> 30056 <xdw:documentEvent> 30057 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 30058 <xdw:eventType>create</xdw:eventType> 30059 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 30060 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30061 <xdw:previousStatus>OPEN</xdw:previousStatus> 30062 <xdw:actualStatus>OPEN</xdw:actualStatus> 30063 </xdw:documentEvent> 30064 <xdw:documentEvent> 30065 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 30066 <xdw:eventType>create</xdw:eventType> 30067 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 30068 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30069 <xdw:previousStatus>OPEN</xdw:previousStatus> 30070 <xdw:actualStatus>OPEN</xdw:actualStatus> 30071 </xdw:documentEvent> 30072 </xdw:workflowStatusHistory> 30073 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 30074 <xdw:TaskList> 30075 <xdw:XDWTask> 30076 <xdw:taskData> 30077 <ws-ht:taskDetails> 30078 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 30079 <ws-ht:taskType>Requested</ws-ht:taskType> 30080 <ws-ht:name>xdw.creation</ws-ht:name> 30081 <ws-ht:status>COMPLETED</ws-ht:status> 30082 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30083 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 30084 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30085 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 30086 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30087 </ws-ht:taskDetails> 30088 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 30089 <ws-ht:input/> 30090 <ws-ht:output/> 30091 </xdw:taskData> 30092 <xdw:taskEventHistory> 30093 <xdw:taskEvent> 30094 <xdw:id>1</xdw:id> 30095 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 30096 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 30097 <xdw:eventType>complete</xdw:eventType> 30098 <xdw:status>COMPLETED</xdw:status> 30099 <xdw:eventData xsi:nil="true"/> 30100 </xdw:taskEvent> 30101 </xdw:taskEventHistory> 30102 </xdw:XDWTask> 30103 <xdw:XDWTask> 30104 <xdw:taskData> 30105 <ws-ht:taskDetails> 30106 <ws-ht:id>task_0</ws-ht:id> 30107 <ws-ht:taskType>ttype</ws-ht:taskType> 30108 <ws-ht:name>tname_0</ws-ht:name> 30109 <ws-ht:status>COMPLETED</ws-ht:status> 30110 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30111 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 30112 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30113 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 30114 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30115 </ws-ht:taskDetails> 30116 <ws-ht:description>Undocumented task</ws-ht:description> 30117 <ws-ht:input/> 30118 <ws-ht:output> 30119 <ws-ht:part name="documentReference"> 30120 <ws-ht:attachment> 30121 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 30122 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 30123 <ws-ht:accessType>RLUS</ws-ht:accessType> 30124 <ws-ht:contentType>application/xml</ws-ht:contentType> 30125 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30126 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 30127 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30128 </ws-ht:attachment> 30129 </ws-ht:part> 30130 </ws-ht:output> 30131 </xdw:taskData> 30132 <xdw:taskEventHistory> 30133 <xdw:taskEvent> 30134 <xdw:id>1</xdw:id> 30135 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 30136 <xdw:identifier>task_0#1</xdw:identifier> 30137 <xdw:eventType>create</xdw:eventType> 30138 <xdw:status>READY</xdw:status> 30139 <xdw:eventData xsi:nil="true"/> 30140 </xdw:taskEvent> 30141 <xdw:taskEvent> 30142 <xdw:id>2</xdw:id> 30143 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 30144 <xdw:identifier>task_0#2</xdw:identifier> 30145 <xdw:eventType>complete</xdw:eventType> 30146 <xdw:status>COMPLETED</xdw:status> 30147 <xdw:eventData xsi:nil="true"/> 30148 </xdw:taskEvent> 30149 </xdw:taskEventHistory> 30150 </xdw:XDWTask> 30151 <xdw:XDWTask> 30152 <xdw:taskData> 30153 <ws-ht:taskDetails> 30154 <ws-ht:id>task_1</ws-ht:id> 30155 <ws-ht:taskType>ttype</ws-ht:taskType> 30156 <ws-ht:name>tname_1</ws-ht:name> 30157 <ws-ht:status>COMPLETED</ws-ht:status> 30158 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30159 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 30160 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30161 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 30162 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30163 </ws-ht:taskDetails> 30164 <ws-ht:description>Undocumented task</ws-ht:description> 30165 <ws-ht:input/> 30166 <ws-ht:output> 30167 <ws-ht:part name="documentReference"> 30168 <ws-ht:attachment> 30169 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 30170 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 30171 <ws-ht:accessType>RLUS</ws-ht:accessType> 30172 <ws-ht:contentType>application/xml</ws-ht:contentType> 30173 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30174 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 30175 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30176 </ws-ht:attachment> 30177 </ws-ht:part> 30178 </ws-ht:output> 30179 </xdw:taskData> 30180 <xdw:taskEventHistory> 30181 <xdw:taskEvent> 30182 <xdw:id>1</xdw:id> 30183 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 30184 <xdw:identifier>task_1#1</xdw:identifier> 30185 <xdw:eventType>create</xdw:eventType> 30186 <xdw:status>READY</xdw:status> 30187 <xdw:eventData xsi:nil="true"/> 30188 </xdw:taskEvent> 30189 <xdw:taskEvent> 30190 <xdw:id>2</xdw:id> 30191 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 30192 <xdw:identifier>task_1#2</xdw:identifier> 30193 <xdw:eventType>complete</xdw:eventType> 30194 <xdw:status>COMPLETED</xdw:status> 30195 <xdw:eventData xsi:nil="true"/> 30196 </xdw:taskEvent> 30197 </xdw:taskEventHistory> 30198 </xdw:XDWTask> 30199 <xdw:XDWTask> 30200 <xdw:taskData> 30201 <ws-ht:taskDetails> 30202 <ws-ht:id>task_2</ws-ht:id> 30203 <ws-ht:taskType>ttype</ws-ht:taskType> 30204 <ws-ht:name>tname_2</ws-ht:name> 30205 <ws-ht:status>COMPLETED</ws-ht:status> 30206 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30207 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 30208 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30209 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 30210 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30211 </ws-ht:taskDetails> 30212 <ws-ht:description>Undocumented task</ws-ht:description> 30213 <ws-ht:input/> 30214 <ws-ht:output> 30215 <ws-ht:part name="documentReference"> 30216 <ws-ht:attachment> 30217 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 30218 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 30219 <ws-ht:accessType>RLUS</ws-ht:accessType> 30220 <ws-ht:contentType>application/xml</ws-ht:contentType> 30221 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30222 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 30223 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30224 </ws-ht:attachment> 30225 </ws-ht:part> 30226 </ws-ht:output> 30227 </xdw:taskData> 30228 <xdw:taskEventHistory> 30229 <xdw:taskEvent> 30230 <xdw:id>1</xdw:id> 30231 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 30232 <xdw:identifier>task_2#1</xdw:identifier> 30233 <xdw:eventType>create</xdw:eventType> 30234 <xdw:status>READY</xdw:status> 30235 <xdw:eventData xsi:nil="true"/> 30236 </xdw:taskEvent> 30237 <xdw:taskEvent> 30238 <xdw:id>2</xdw:id> 30239 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 30240 <xdw:identifier>task_2#2</xdw:identifier> 30241 <xdw:eventType>complete</xdw:eventType> 30242 <xdw:status>COMPLETED</xdw:status> 30243 <xdw:eventData xsi:nil="true"/> 30244 </xdw:taskEvent> 30245 </xdw:taskEventHistory> 30246 </xdw:XDWTask> 30247 <xdw:XDWTask> 30248 <xdw:taskData> 30249 <ws-ht:taskDetails> 30250 <ws-ht:id>task_3</ws-ht:id> 30251 <ws-ht:taskType>ttype</ws-ht:taskType> 30252 <ws-ht:name>tname_3</ws-ht:name> 30253 <ws-ht:status>COMPLETED</ws-ht:status> 30254 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30255 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 30256 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30257 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 30258 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30259 </ws-ht:taskDetails> 30260 <ws-ht:description>Undocumented task</ws-ht:description> 30261 <ws-ht:input/> 30262 <ws-ht:output> 30263 <ws-ht:part name="documentReference"> 30264 <ws-ht:attachment> 30265 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 30266 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 30267 <ws-ht:accessType>RLUS</ws-ht:accessType> 30268 <ws-ht:contentType>application/xml</ws-ht:contentType> 30269 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30270 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 30271 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30272 </ws-ht:attachment> 30273 </ws-ht:part> 30274 </ws-ht:output> 30275 </xdw:taskData> 30276 <xdw:taskEventHistory> 30277 <xdw:taskEvent> 30278 <xdw:id>1</xdw:id> 30279 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 30280 <xdw:identifier>task_3#1</xdw:identifier> 30281 <xdw:eventType>create</xdw:eventType> 30282 <xdw:status>READY</xdw:status> 30283 <xdw:eventData xsi:nil="true"/> 30284 </xdw:taskEvent> 30285 <xdw:taskEvent> 30286 <xdw:id>2</xdw:id> 30287 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 30288 <xdw:identifier>task_3#2</xdw:identifier> 30289 <xdw:eventType>complete</xdw:eventType> 30290 <xdw:status>COMPLETED</xdw:status> 30291 <xdw:eventData xsi:nil="true"/> 30292 </xdw:taskEvent> 30293 </xdw:taskEventHistory> 30294 </xdw:XDWTask> 30295 <xdw:XDWTask> 30296 <xdw:taskData> 30297 <ws-ht:taskDetails> 30298 <ws-ht:id>task_4</ws-ht:id> 30299 <ws-ht:taskType>ttype</ws-ht:taskType> 30300 <ws-ht:name>tname_4</ws-ht:name> 30301 <ws-ht:status>COMPLETED</ws-ht:status> 30302 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30303 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 30304 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30305 <ws-ht:lastModifiedTime>2014-06-13T17:27:06.101+02:00</ws-ht:lastModifiedTime> 30306 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30307 </ws-ht:taskDetails> 30308 <ws-ht:description>Undocumented task</ws-ht:description> 30309 <ws-ht:input/> 30310 <ws-ht:output> 30311 <ws-ht:part name="documentReference"> 30312 <ws-ht:attachment> 30313 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 30314 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 30315 <ws-ht:accessType>RLUS</ws-ht:accessType> 30316 <ws-ht:contentType>application/xml</ws-ht:contentType> 30317 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30318 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 30319 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30320 </ws-ht:attachment> 30321 </ws-ht:part> 30322 </ws-ht:output> 30323 </xdw:taskData> 30324 <xdw:taskEventHistory> 30325 <xdw:taskEvent> 30326 <xdw:id>1</xdw:id> 30327 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 30328 <xdw:identifier>task_4#1</xdw:identifier> 30329 <xdw:eventType>create</xdw:eventType> 30330 <xdw:status>READY</xdw:status> 30331 <xdw:eventData xsi:nil="true"/> 30332 </xdw:taskEvent> 30333 <xdw:taskEvent> 30334 <xdw:id>2</xdw:id> 30335 <xdw:eventTime>2014-06-13T17:27:06.101+02:00</xdw:eventTime> 30336 <xdw:identifier>task_4#2</xdw:identifier> 30337 <xdw:eventType>complete</xdw:eventType> 30338 <xdw:status>COMPLETED</xdw:status> 30339 <xdw:eventData xsi:nil="true"/> 30340 </xdw:taskEvent> 30341 </xdw:taskEventHistory> 30342 </xdw:XDWTask> 30343 </xdw:TaskList> 30344 </xdw:XDW.WorkflowDocument> 30345 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 30346 <rlustypes:success>true</rlustypes:success> 30347 <rlustypes:message>One record fetched</rlustypes:message> 30348 </rlustypes:RLUSStatusCode> 30349 </GetResponse> 30350 </soapenv:Body> 30351 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 30352 <soap:Header/> 30353 <soap:Body> 30354 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 30355 <rlustypes:searchByCriteria> 30356 <rlustypes:FilterCriteria> 30357 <rlustypes:Expression> 30358 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 30359 <rlusexp:Operator type="EqualTo"/> 30360 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 30361 </rlustypes:Expression> 30362 </rlustypes:FilterCriteria> 30363 <rlustypes:SearchAttributes> 30364 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 30365 </rlustypes:SearchAttributes> 30366 </rlustypes:searchByCriteria> 30367 </rlustypes:RLUSSearchStruct> 30368 </soap:Body> 30369 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19104"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19104"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 30370 <soapenv:Header/> 30371 <soapenv:Body> 30372 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 30373 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 30374 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="6923860f-28ec-46e2-bcd0-b533d4304f49"/> 30375 <xdw:effectiveTime value="20140613172706+0200"/> 30376 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 30377 <xdw:patient> 30378 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 30379 </xdw:patient> 30380 <xdw:author> 30381 <xdw:assignedAuthor> 30382 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 30383 <hl7v3:assignedPerson/> 30384 </xdw:assignedAuthor> 30385 </xdw:author> 30386 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 30387 <xdw:workflowDocumentSequenceNumber>16</xdw:workflowDocumentSequenceNumber> 30388 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 30389 <xdw:workflowStatusHistory> 30390 <xdw:documentEvent> 30391 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 30392 <xdw:eventType>complete</xdw:eventType> 30393 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 30394 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30395 <xdw:previousStatus>OPEN</xdw:previousStatus> 30396 <xdw:actualStatus>OPEN</xdw:actualStatus> 30397 </xdw:documentEvent> 30398 <xdw:documentEvent> 30399 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 30400 <xdw:eventType>create</xdw:eventType> 30401 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 30402 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30403 <xdw:previousStatus>OPEN</xdw:previousStatus> 30404 <xdw:actualStatus>OPEN</xdw:actualStatus> 30405 </xdw:documentEvent> 30406 <xdw:documentEvent> 30407 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 30408 <xdw:eventType>create</xdw:eventType> 30409 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 30410 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30411 <xdw:previousStatus>OPEN</xdw:previousStatus> 30412 <xdw:actualStatus>OPEN</xdw:actualStatus> 30413 </xdw:documentEvent> 30414 <xdw:documentEvent> 30415 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 30416 <xdw:eventType>create</xdw:eventType> 30417 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 30418 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30419 <xdw:previousStatus>OPEN</xdw:previousStatus> 30420 <xdw:actualStatus>OPEN</xdw:actualStatus> 30421 </xdw:documentEvent> 30422 <xdw:documentEvent> 30423 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 30424 <xdw:eventType>create</xdw:eventType> 30425 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 30426 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30427 <xdw:previousStatus>OPEN</xdw:previousStatus> 30428 <xdw:actualStatus>OPEN</xdw:actualStatus> 30429 </xdw:documentEvent> 30430 <xdw:documentEvent> 30431 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 30432 <xdw:eventType>create</xdw:eventType> 30433 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 30434 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30435 <xdw:previousStatus>OPEN</xdw:previousStatus> 30436 <xdw:actualStatus>OPEN</xdw:actualStatus> 30437 </xdw:documentEvent> 30438 </xdw:workflowStatusHistory> 30439 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 30440 <xdw:TaskList> 30441 <xdw:XDWTask> 30442 <xdw:taskData> 30443 <ws-ht:taskDetails> 30444 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 30445 <ws-ht:taskType>Requested</ws-ht:taskType> 30446 <ws-ht:name>xdw.creation</ws-ht:name> 30447 <ws-ht:status>COMPLETED</ws-ht:status> 30448 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30449 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 30450 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30451 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 30452 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30453 </ws-ht:taskDetails> 30454 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 30455 <ws-ht:input/> 30456 <ws-ht:output/> 30457 </xdw:taskData> 30458 <xdw:taskEventHistory> 30459 <xdw:taskEvent> 30460 <xdw:id>1</xdw:id> 30461 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 30462 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 30463 <xdw:eventType>complete</xdw:eventType> 30464 <xdw:status>COMPLETED</xdw:status> 30465 <xdw:eventData xsi:nil="true"/> 30466 </xdw:taskEvent> 30467 </xdw:taskEventHistory> 30468 </xdw:XDWTask> 30469 <xdw:XDWTask> 30470 <xdw:taskData> 30471 <ws-ht:taskDetails> 30472 <ws-ht:id>task_0</ws-ht:id> 30473 <ws-ht:taskType>ttype</ws-ht:taskType> 30474 <ws-ht:name>tname_0</ws-ht:name> 30475 <ws-ht:status>COMPLETED</ws-ht:status> 30476 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30477 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 30478 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30479 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 30480 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30481 </ws-ht:taskDetails> 30482 <ws-ht:description>Undocumented task</ws-ht:description> 30483 <ws-ht:input/> 30484 <ws-ht:output> 30485 <ws-ht:part name="documentReference"> 30486 <ws-ht:attachment> 30487 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 30488 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 30489 <ws-ht:accessType>RLUS</ws-ht:accessType> 30490 <ws-ht:contentType>application/xml</ws-ht:contentType> 30491 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30492 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 30493 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30494 </ws-ht:attachment> 30495 </ws-ht:part> 30496 </ws-ht:output> 30497 </xdw:taskData> 30498 <xdw:taskEventHistory> 30499 <xdw:taskEvent> 30500 <xdw:id>1</xdw:id> 30501 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 30502 <xdw:identifier>task_0#1</xdw:identifier> 30503 <xdw:eventType>create</xdw:eventType> 30504 <xdw:status>READY</xdw:status> 30505 <xdw:eventData xsi:nil="true"/> 30506 </xdw:taskEvent> 30507 <xdw:taskEvent> 30508 <xdw:id>2</xdw:id> 30509 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 30510 <xdw:identifier>task_0#2</xdw:identifier> 30511 <xdw:eventType>complete</xdw:eventType> 30512 <xdw:status>COMPLETED</xdw:status> 30513 <xdw:eventData xsi:nil="true"/> 30514 </xdw:taskEvent> 30515 </xdw:taskEventHistory> 30516 </xdw:XDWTask> 30517 <xdw:XDWTask> 30518 <xdw:taskData> 30519 <ws-ht:taskDetails> 30520 <ws-ht:id>task_1</ws-ht:id> 30521 <ws-ht:taskType>ttype</ws-ht:taskType> 30522 <ws-ht:name>tname_1</ws-ht:name> 30523 <ws-ht:status>COMPLETED</ws-ht:status> 30524 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30525 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 30526 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30527 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 30528 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30529 </ws-ht:taskDetails> 30530 <ws-ht:description>Undocumented task</ws-ht:description> 30531 <ws-ht:input/> 30532 <ws-ht:output> 30533 <ws-ht:part name="documentReference"> 30534 <ws-ht:attachment> 30535 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 30536 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 30537 <ws-ht:accessType>RLUS</ws-ht:accessType> 30538 <ws-ht:contentType>application/xml</ws-ht:contentType> 30539 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30540 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 30541 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30542 </ws-ht:attachment> 30543 </ws-ht:part> 30544 </ws-ht:output> 30545 </xdw:taskData> 30546 <xdw:taskEventHistory> 30547 <xdw:taskEvent> 30548 <xdw:id>1</xdw:id> 30549 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 30550 <xdw:identifier>task_1#1</xdw:identifier> 30551 <xdw:eventType>create</xdw:eventType> 30552 <xdw:status>READY</xdw:status> 30553 <xdw:eventData xsi:nil="true"/> 30554 </xdw:taskEvent> 30555 <xdw:taskEvent> 30556 <xdw:id>2</xdw:id> 30557 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 30558 <xdw:identifier>task_1#2</xdw:identifier> 30559 <xdw:eventType>complete</xdw:eventType> 30560 <xdw:status>COMPLETED</xdw:status> 30561 <xdw:eventData xsi:nil="true"/> 30562 </xdw:taskEvent> 30563 </xdw:taskEventHistory> 30564 </xdw:XDWTask> 30565 <xdw:XDWTask> 30566 <xdw:taskData> 30567 <ws-ht:taskDetails> 30568 <ws-ht:id>task_2</ws-ht:id> 30569 <ws-ht:taskType>ttype</ws-ht:taskType> 30570 <ws-ht:name>tname_2</ws-ht:name> 30571 <ws-ht:status>COMPLETED</ws-ht:status> 30572 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30573 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 30574 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30575 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 30576 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30577 </ws-ht:taskDetails> 30578 <ws-ht:description>Undocumented task</ws-ht:description> 30579 <ws-ht:input/> 30580 <ws-ht:output> 30581 <ws-ht:part name="documentReference"> 30582 <ws-ht:attachment> 30583 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 30584 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 30585 <ws-ht:accessType>RLUS</ws-ht:accessType> 30586 <ws-ht:contentType>application/xml</ws-ht:contentType> 30587 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30588 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 30589 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30590 </ws-ht:attachment> 30591 </ws-ht:part> 30592 </ws-ht:output> 30593 </xdw:taskData> 30594 <xdw:taskEventHistory> 30595 <xdw:taskEvent> 30596 <xdw:id>1</xdw:id> 30597 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 30598 <xdw:identifier>task_2#1</xdw:identifier> 30599 <xdw:eventType>create</xdw:eventType> 30600 <xdw:status>READY</xdw:status> 30601 <xdw:eventData xsi:nil="true"/> 30602 </xdw:taskEvent> 30603 <xdw:taskEvent> 30604 <xdw:id>2</xdw:id> 30605 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 30606 <xdw:identifier>task_2#2</xdw:identifier> 30607 <xdw:eventType>complete</xdw:eventType> 30608 <xdw:status>COMPLETED</xdw:status> 30609 <xdw:eventData xsi:nil="true"/> 30610 </xdw:taskEvent> 30611 </xdw:taskEventHistory> 30612 </xdw:XDWTask> 30613 <xdw:XDWTask> 30614 <xdw:taskData> 30615 <ws-ht:taskDetails> 30616 <ws-ht:id>task_3</ws-ht:id> 30617 <ws-ht:taskType>ttype</ws-ht:taskType> 30618 <ws-ht:name>tname_3</ws-ht:name> 30619 <ws-ht:status>COMPLETED</ws-ht:status> 30620 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30621 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 30622 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30623 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 30624 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30625 </ws-ht:taskDetails> 30626 <ws-ht:description>Undocumented task</ws-ht:description> 30627 <ws-ht:input/> 30628 <ws-ht:output> 30629 <ws-ht:part name="documentReference"> 30630 <ws-ht:attachment> 30631 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 30632 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 30633 <ws-ht:accessType>RLUS</ws-ht:accessType> 30634 <ws-ht:contentType>application/xml</ws-ht:contentType> 30635 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30636 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 30637 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30638 </ws-ht:attachment> 30639 </ws-ht:part> 30640 </ws-ht:output> 30641 </xdw:taskData> 30642 <xdw:taskEventHistory> 30643 <xdw:taskEvent> 30644 <xdw:id>1</xdw:id> 30645 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 30646 <xdw:identifier>task_3#1</xdw:identifier> 30647 <xdw:eventType>create</xdw:eventType> 30648 <xdw:status>READY</xdw:status> 30649 <xdw:eventData xsi:nil="true"/> 30650 </xdw:taskEvent> 30651 <xdw:taskEvent> 30652 <xdw:id>2</xdw:id> 30653 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 30654 <xdw:identifier>task_3#2</xdw:identifier> 30655 <xdw:eventType>complete</xdw:eventType> 30656 <xdw:status>COMPLETED</xdw:status> 30657 <xdw:eventData xsi:nil="true"/> 30658 </xdw:taskEvent> 30659 </xdw:taskEventHistory> 30660 </xdw:XDWTask> 30661 <xdw:XDWTask> 30662 <xdw:taskData> 30663 <ws-ht:taskDetails> 30664 <ws-ht:id>task_4</ws-ht:id> 30665 <ws-ht:taskType>ttype</ws-ht:taskType> 30666 <ws-ht:name>tname_4</ws-ht:name> 30667 <ws-ht:status>COMPLETED</ws-ht:status> 30668 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30669 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 30670 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30671 <ws-ht:lastModifiedTime>2014-06-13T17:27:06.101+02:00</ws-ht:lastModifiedTime> 30672 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30673 </ws-ht:taskDetails> 30674 <ws-ht:description>Undocumented task</ws-ht:description> 30675 <ws-ht:input/> 30676 <ws-ht:output> 30677 <ws-ht:part name="documentReference"> 30678 <ws-ht:attachment> 30679 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 30680 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 30681 <ws-ht:accessType>RLUS</ws-ht:accessType> 30682 <ws-ht:contentType>application/xml</ws-ht:contentType> 30683 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30684 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 30685 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30686 </ws-ht:attachment> 30687 </ws-ht:part> 30688 </ws-ht:output> 30689 </xdw:taskData> 30690 <xdw:taskEventHistory> 30691 <xdw:taskEvent> 30692 <xdw:id>1</xdw:id> 30693 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 30694 <xdw:identifier>task_4#1</xdw:identifier> 30695 <xdw:eventType>create</xdw:eventType> 30696 <xdw:status>READY</xdw:status> 30697 <xdw:eventData xsi:nil="true"/> 30698 </xdw:taskEvent> 30699 <xdw:taskEvent> 30700 <xdw:id>2</xdw:id> 30701 <xdw:eventTime>2014-06-13T17:27:06.101+02:00</xdw:eventTime> 30702 <xdw:identifier>task_4#2</xdw:identifier> 30703 <xdw:eventType>complete</xdw:eventType> 30704 <xdw:status>COMPLETED</xdw:status> 30705 <xdw:eventData xsi:nil="true"/> 30706 </xdw:taskEvent> 30707 </xdw:taskEventHistory> 30708 </xdw:XDWTask> 30709 </xdw:TaskList> 30710 </xdw:XDW.WorkflowDocument> 30711 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 30712 <rlustypes:success>true</rlustypes:success> 30713 <rlustypes:message>One record fetched</rlustypes:message> 30714 </rlustypes:RLUSStatusCode> 30715 </GetResponse> 30716 </soapenv:Body> 30717 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="3503"/><header key="SOAPAction" value="urn:locate"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="3503"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 30718 <soap:Header/> 30719 <soap:Body> 30720 <LocateRequest xmlns="urn:dedalus:rlus:xdw:types"> 30721 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 30722 <rlustypes:searchByCriteria> 30723 <rlustypes:FilterCriteria> 30724 <rlustypes:Expression> 30725 <rlusexp:BinaryExpression> 30726 <rlusexp:BinaryTerm text="#document.id.root" type="Text"/> 30727 <rlusexp:Operator type="EqualTo"/> 30728 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.4" type="Text"/> 30729 </rlusexp:BinaryExpression> 30730 <rlusexp:Operator type="And"/> 30731 <rlusexp:BinaryExpression> 30732 <rlusexp:BinaryExpression> 30733 <rlusexp:BinaryTerm text="#patient.id" type="Text"/> 30734 <rlusexp:Operator type="EqualTo"/> 30735 <rlusexp:BinaryTerm text="8d1ddf03-817a-4a95-8845-e9caa4ba0348" type="Text"/> 30736 </rlusexp:BinaryExpression> 30737 <rlusexp:Operator type="And"/> 30738 <rlusexp:BinaryExpression> 30739 <rlusexp:BinaryExpression> 30740 <rlusexp:BinaryTerm text="#document.status" type="Text"/> 30741 <rlusexp:Operator type="EqualTo"/> 30742 <rlusexp:BinaryTerm text="OPEN" type="Text"/> 30743 </rlusexp:BinaryExpression> 30744 <rlusexp:Operator type="And"/> 30745 <rlusexp:BinaryExpression> 30746 <rlusexp:BinaryExpression> 30747 <rlusexp:BinaryTerm text="#document.author.id.root" type="Text"/> 30748 <rlusexp:Operator type="EqualTo"/> 30749 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.2" type="Text"/> 30750 </rlusexp:BinaryExpression> 30751 <rlusexp:Operator type="And"/> 30752 <rlusexp:BinaryExpression> 30753 <rlusexp:BinaryTerm text="#patient.id.root" type="Text"/> 30754 <rlusexp:Operator type="EqualTo"/> 30755 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.1" type="Text"/> 30756 </rlusexp:BinaryExpression> 30757 </rlusexp:BinaryExpression> 30758 </rlusexp:BinaryExpression> 30759 </rlusexp:BinaryExpression> 30760 </rlustypes:Expression> 30761 </rlustypes:FilterCriteria> 30762 <rlustypes:SearchAttributes> 30763 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:id/@root" qualifier="#document.id.root"/> 30764 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:patient/xdw:id/@extension" qualifier="#patient.id"/> 30765 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowStatus/text()" qualifier="#document.status"/> 30766 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:author/xdw:assignedAuthor/*:id/@root" qualifier="#document.author.id.root"/> 30767 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:patient/xdw:id/@root" qualifier="#patient.id.root"/> 30768 </rlustypes:SearchAttributes> 30769 </rlustypes:searchByCriteria> 30770 </rlustypes:RLUSSearchStruct> 30771 <maxResultStreams>1</maxResultStreams> 30772 <previousResultID>-1</previousResultID> 30773 </LocateRequest> 30774 </soap:Body> 30775 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="1202"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="1202"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 30776 <soapenv:Header/> 30777 <soapenv:Body> 30778 <LocateResponse xmlns="urn:dedalus:rlus:xdw:types"> 30779 <RLUStypes:RLUSsemantic-signifierRecordLocationStruct xmlns:RLUStypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 30780 <RLUStypes:RLUSsemantic-signifierName>xdw</RLUStypes:RLUSsemantic-signifierName> 30781 <RLUStypes:semantic-signifierRecordID root="2.16.840.1.113883.2.9.3.12.4.4" extension="89duier8943hw-4no3na00-workflow-doc-2014"/> 30782 <RLUStypes:CBRContext> 30783 <RLUStypes:CBRName>Dedalus</RLUStypes:CBRName> 30784 <RLUStypes:NetworkName>HSSP SERVICES</RLUStypes:NetworkName> 30785 <RLUStypes:NetworkAddress>hsspservices:8984</RLUStypes:NetworkAddress> 30786 </RLUStypes:CBRContext> 30787 </RLUStypes:RLUSsemantic-signifierRecordLocationStruct> 30788 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 30789 <rlustypes:success>true</rlustypes:success> 30790 <rlustypes:message>One record located</rlustypes:message> 30791 </rlustypes:RLUSStatusCode> 30792 <finishedFlag>0</finishedFlag> 30793 </LocateResponse> 30794 </soapenv:Body> 30795 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 30796 <soap:Header/> 30797 <soap:Body> 30798 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 30799 <rlustypes:searchByCriteria> 30800 <rlustypes:FilterCriteria> 30801 <rlustypes:Expression> 30802 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 30803 <rlusexp:Operator type="EqualTo"/> 30804 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 30805 </rlustypes:Expression> 30806 </rlustypes:FilterCriteria> 30807 <rlustypes:SearchAttributes> 30808 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 30809 </rlustypes:SearchAttributes> 30810 </rlustypes:searchByCriteria> 30811 </rlustypes:RLUSSearchStruct> 30812 </soap:Body> 30813 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19104"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19104"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 30814 <soapenv:Header/> 30815 <soapenv:Body> 30816 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 30817 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3"> 30818 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="6923860f-28ec-46e2-bcd0-b533d4304f49"/> 30819 <xdw:effectiveTime value="20140613172706+0200"/> 30820 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="N"/> 30821 <xdw:patient> 30822 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 30823 </xdw:patient> 30824 <xdw:author> 30825 <xdw:assignedAuthor> 30826 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 30827 <hl7v3:assignedPerson/> 30828 </xdw:assignedAuthor> 30829 </xdw:author> 30830 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 30831 <xdw:workflowDocumentSequenceNumber>16</xdw:workflowDocumentSequenceNumber> 30832 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 30833 <xdw:workflowStatusHistory> 30834 <xdw:documentEvent> 30835 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 30836 <xdw:eventType>complete</xdw:eventType> 30837 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 30838 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30839 <xdw:previousStatus>OPEN</xdw:previousStatus> 30840 <xdw:actualStatus>OPEN</xdw:actualStatus> 30841 </xdw:documentEvent> 30842 <xdw:documentEvent> 30843 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 30844 <xdw:eventType>create</xdw:eventType> 30845 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 30846 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30847 <xdw:previousStatus>OPEN</xdw:previousStatus> 30848 <xdw:actualStatus>OPEN</xdw:actualStatus> 30849 </xdw:documentEvent> 30850 <xdw:documentEvent> 30851 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 30852 <xdw:eventType>create</xdw:eventType> 30853 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 30854 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30855 <xdw:previousStatus>OPEN</xdw:previousStatus> 30856 <xdw:actualStatus>OPEN</xdw:actualStatus> 30857 </xdw:documentEvent> 30858 <xdw:documentEvent> 30859 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 30860 <xdw:eventType>create</xdw:eventType> 30861 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 30862 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30863 <xdw:previousStatus>OPEN</xdw:previousStatus> 30864 <xdw:actualStatus>OPEN</xdw:actualStatus> 30865 </xdw:documentEvent> 30866 <xdw:documentEvent> 30867 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 30868 <xdw:eventType>create</xdw:eventType> 30869 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 30870 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30871 <xdw:previousStatus>OPEN</xdw:previousStatus> 30872 <xdw:actualStatus>OPEN</xdw:actualStatus> 30873 </xdw:documentEvent> 30874 <xdw:documentEvent> 30875 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 30876 <xdw:eventType>create</xdw:eventType> 30877 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 30878 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 30879 <xdw:previousStatus>OPEN</xdw:previousStatus> 30880 <xdw:actualStatus>OPEN</xdw:actualStatus> 30881 </xdw:documentEvent> 30882 </xdw:workflowStatusHistory> 30883 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 30884 <xdw:TaskList> 30885 <xdw:XDWTask> 30886 <xdw:taskData> 30887 <ws-ht:taskDetails> 30888 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 30889 <ws-ht:taskType>Requested</ws-ht:taskType> 30890 <ws-ht:name>xdw.creation</ws-ht:name> 30891 <ws-ht:status>COMPLETED</ws-ht:status> 30892 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30893 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 30894 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30895 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 30896 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30897 </ws-ht:taskDetails> 30898 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 30899 <ws-ht:input/> 30900 <ws-ht:output/> 30901 </xdw:taskData> 30902 <xdw:taskEventHistory> 30903 <xdw:taskEvent> 30904 <xdw:id>1</xdw:id> 30905 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 30906 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 30907 <xdw:eventType>complete</xdw:eventType> 30908 <xdw:status>COMPLETED</xdw:status> 30909 <xdw:eventData xsi:nil="true"/> 30910 </xdw:taskEvent> 30911 </xdw:taskEventHistory> 30912 </xdw:XDWTask> 30913 <xdw:XDWTask> 30914 <xdw:taskData> 30915 <ws-ht:taskDetails> 30916 <ws-ht:id>task_0</ws-ht:id> 30917 <ws-ht:taskType>ttype</ws-ht:taskType> 30918 <ws-ht:name>tname_0</ws-ht:name> 30919 <ws-ht:status>COMPLETED</ws-ht:status> 30920 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30921 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 30922 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30923 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 30924 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30925 </ws-ht:taskDetails> 30926 <ws-ht:description>Undocumented task</ws-ht:description> 30927 <ws-ht:input/> 30928 <ws-ht:output> 30929 <ws-ht:part name="documentReference"> 30930 <ws-ht:attachment> 30931 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 30932 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 30933 <ws-ht:accessType>RLUS</ws-ht:accessType> 30934 <ws-ht:contentType>application/xml</ws-ht:contentType> 30935 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30936 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 30937 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30938 </ws-ht:attachment> 30939 </ws-ht:part> 30940 </ws-ht:output> 30941 </xdw:taskData> 30942 <xdw:taskEventHistory> 30943 <xdw:taskEvent> 30944 <xdw:id>1</xdw:id> 30945 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 30946 <xdw:identifier>task_0#1</xdw:identifier> 30947 <xdw:eventType>create</xdw:eventType> 30948 <xdw:status>READY</xdw:status> 30949 <xdw:eventData xsi:nil="true"/> 30950 </xdw:taskEvent> 30951 <xdw:taskEvent> 30952 <xdw:id>2</xdw:id> 30953 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 30954 <xdw:identifier>task_0#2</xdw:identifier> 30955 <xdw:eventType>complete</xdw:eventType> 30956 <xdw:status>COMPLETED</xdw:status> 30957 <xdw:eventData xsi:nil="true"/> 30958 </xdw:taskEvent> 30959 </xdw:taskEventHistory> 30960 </xdw:XDWTask> 30961 <xdw:XDWTask> 30962 <xdw:taskData> 30963 <ws-ht:taskDetails> 30964 <ws-ht:id>task_1</ws-ht:id> 30965 <ws-ht:taskType>ttype</ws-ht:taskType> 30966 <ws-ht:name>tname_1</ws-ht:name> 30967 <ws-ht:status>COMPLETED</ws-ht:status> 30968 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 30969 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 30970 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 30971 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 30972 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 30973 </ws-ht:taskDetails> 30974 <ws-ht:description>Undocumented task</ws-ht:description> 30975 <ws-ht:input/> 30976 <ws-ht:output> 30977 <ws-ht:part name="documentReference"> 30978 <ws-ht:attachment> 30979 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 30980 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 30981 <ws-ht:accessType>RLUS</ws-ht:accessType> 30982 <ws-ht:contentType>application/xml</ws-ht:contentType> 30983 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 30984 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 30985 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 30986 </ws-ht:attachment> 30987 </ws-ht:part> 30988 </ws-ht:output> 30989 </xdw:taskData> 30990 <xdw:taskEventHistory> 30991 <xdw:taskEvent> 30992 <xdw:id>1</xdw:id> 30993 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 30994 <xdw:identifier>task_1#1</xdw:identifier> 30995 <xdw:eventType>create</xdw:eventType> 30996 <xdw:status>READY</xdw:status> 30997 <xdw:eventData xsi:nil="true"/> 30998 </xdw:taskEvent> 30999 <xdw:taskEvent> 31000 <xdw:id>2</xdw:id> 31001 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 31002 <xdw:identifier>task_1#2</xdw:identifier> 31003 <xdw:eventType>complete</xdw:eventType> 31004 <xdw:status>COMPLETED</xdw:status> 31005 <xdw:eventData xsi:nil="true"/> 31006 </xdw:taskEvent> 31007 </xdw:taskEventHistory> 31008 </xdw:XDWTask> 31009 <xdw:XDWTask> 31010 <xdw:taskData> 31011 <ws-ht:taskDetails> 31012 <ws-ht:id>task_2</ws-ht:id> 31013 <ws-ht:taskType>ttype</ws-ht:taskType> 31014 <ws-ht:name>tname_2</ws-ht:name> 31015 <ws-ht:status>COMPLETED</ws-ht:status> 31016 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31017 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 31018 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31019 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 31020 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31021 </ws-ht:taskDetails> 31022 <ws-ht:description>Undocumented task</ws-ht:description> 31023 <ws-ht:input/> 31024 <ws-ht:output> 31025 <ws-ht:part name="documentReference"> 31026 <ws-ht:attachment> 31027 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 31028 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 31029 <ws-ht:accessType>RLUS</ws-ht:accessType> 31030 <ws-ht:contentType>application/xml</ws-ht:contentType> 31031 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31032 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 31033 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31034 </ws-ht:attachment> 31035 </ws-ht:part> 31036 </ws-ht:output> 31037 </xdw:taskData> 31038 <xdw:taskEventHistory> 31039 <xdw:taskEvent> 31040 <xdw:id>1</xdw:id> 31041 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 31042 <xdw:identifier>task_2#1</xdw:identifier> 31043 <xdw:eventType>create</xdw:eventType> 31044 <xdw:status>READY</xdw:status> 31045 <xdw:eventData xsi:nil="true"/> 31046 </xdw:taskEvent> 31047 <xdw:taskEvent> 31048 <xdw:id>2</xdw:id> 31049 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 31050 <xdw:identifier>task_2#2</xdw:identifier> 31051 <xdw:eventType>complete</xdw:eventType> 31052 <xdw:status>COMPLETED</xdw:status> 31053 <xdw:eventData xsi:nil="true"/> 31054 </xdw:taskEvent> 31055 </xdw:taskEventHistory> 31056 </xdw:XDWTask> 31057 <xdw:XDWTask> 31058 <xdw:taskData> 31059 <ws-ht:taskDetails> 31060 <ws-ht:id>task_3</ws-ht:id> 31061 <ws-ht:taskType>ttype</ws-ht:taskType> 31062 <ws-ht:name>tname_3</ws-ht:name> 31063 <ws-ht:status>COMPLETED</ws-ht:status> 31064 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31065 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 31066 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31067 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 31068 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31069 </ws-ht:taskDetails> 31070 <ws-ht:description>Undocumented task</ws-ht:description> 31071 <ws-ht:input/> 31072 <ws-ht:output> 31073 <ws-ht:part name="documentReference"> 31074 <ws-ht:attachment> 31075 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 31076 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 31077 <ws-ht:accessType>RLUS</ws-ht:accessType> 31078 <ws-ht:contentType>application/xml</ws-ht:contentType> 31079 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31080 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 31081 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31082 </ws-ht:attachment> 31083 </ws-ht:part> 31084 </ws-ht:output> 31085 </xdw:taskData> 31086 <xdw:taskEventHistory> 31087 <xdw:taskEvent> 31088 <xdw:id>1</xdw:id> 31089 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 31090 <xdw:identifier>task_3#1</xdw:identifier> 31091 <xdw:eventType>create</xdw:eventType> 31092 <xdw:status>READY</xdw:status> 31093 <xdw:eventData xsi:nil="true"/> 31094 </xdw:taskEvent> 31095 <xdw:taskEvent> 31096 <xdw:id>2</xdw:id> 31097 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 31098 <xdw:identifier>task_3#2</xdw:identifier> 31099 <xdw:eventType>complete</xdw:eventType> 31100 <xdw:status>COMPLETED</xdw:status> 31101 <xdw:eventData xsi:nil="true"/> 31102 </xdw:taskEvent> 31103 </xdw:taskEventHistory> 31104 </xdw:XDWTask> 31105 <xdw:XDWTask> 31106 <xdw:taskData> 31107 <ws-ht:taskDetails> 31108 <ws-ht:id>task_4</ws-ht:id> 31109 <ws-ht:taskType>ttype</ws-ht:taskType> 31110 <ws-ht:name>tname_4</ws-ht:name> 31111 <ws-ht:status>COMPLETED</ws-ht:status> 31112 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31113 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 31114 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31115 <ws-ht:lastModifiedTime>2014-06-13T17:27:06.101+02:00</ws-ht:lastModifiedTime> 31116 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31117 </ws-ht:taskDetails> 31118 <ws-ht:description>Undocumented task</ws-ht:description> 31119 <ws-ht:input/> 31120 <ws-ht:output> 31121 <ws-ht:part name="documentReference"> 31122 <ws-ht:attachment> 31123 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 31124 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 31125 <ws-ht:accessType>RLUS</ws-ht:accessType> 31126 <ws-ht:contentType>application/xml</ws-ht:contentType> 31127 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31128 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 31129 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31130 </ws-ht:attachment> 31131 </ws-ht:part> 31132 </ws-ht:output> 31133 </xdw:taskData> 31134 <xdw:taskEventHistory> 31135 <xdw:taskEvent> 31136 <xdw:id>1</xdw:id> 31137 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 31138 <xdw:identifier>task_4#1</xdw:identifier> 31139 <xdw:eventType>create</xdw:eventType> 31140 <xdw:status>READY</xdw:status> 31141 <xdw:eventData xsi:nil="true"/> 31142 </xdw:taskEvent> 31143 <xdw:taskEvent> 31144 <xdw:id>2</xdw:id> 31145 <xdw:eventTime>2014-06-13T17:27:06.101+02:00</xdw:eventTime> 31146 <xdw:identifier>task_4#2</xdw:identifier> 31147 <xdw:eventType>complete</xdw:eventType> 31148 <xdw:status>COMPLETED</xdw:status> 31149 <xdw:eventData xsi:nil="true"/> 31150 </xdw:taskEvent> 31151 </xdw:taskEventHistory> 31152 </xdw:XDWTask> 31153 </xdw:TaskList> 31154 </xdw:XDW.WorkflowDocument> 31155 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 31156 <rlustypes:success>true</rlustypes:success> 31157 <rlustypes:message>One record fetched</rlustypes:message> 31158 </rlustypes:RLUSStatusCode> 31159 </GetResponse> 31160 </soapenv:Body> 31161 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="19542"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="19542"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 31162 <soap:Header/> 31163 <soap:Body> 31164 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 31165 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 31166 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="3e69291c-1d15-49d6-85c1-02e205d17137"/> 31167 <xdw:effectiveTime value="20140613172711+0200"/> 31168 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="R"/> 31169 <xdw:patient> 31170 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 31171 </xdw:patient> 31172 <xdw:author> 31173 <xdw:assignedAuthor> 31174 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 31175 <hl7v3:assignedPerson/> 31176 </xdw:assignedAuthor> 31177 </xdw:author> 31178 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 31179 <xdw:workflowDocumentSequenceNumber>17</xdw:workflowDocumentSequenceNumber> 31180 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 31181 <xdw:workflowStatusHistory> 31182 <xdw:documentEvent> 31183 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 31184 <xdw:eventType>complete</xdw:eventType> 31185 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 31186 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31187 <xdw:previousStatus>OPEN</xdw:previousStatus> 31188 <xdw:actualStatus>OPEN</xdw:actualStatus> 31189 </xdw:documentEvent> 31190 <xdw:documentEvent> 31191 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 31192 <xdw:eventType>create</xdw:eventType> 31193 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 31194 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31195 <xdw:previousStatus>OPEN</xdw:previousStatus> 31196 <xdw:actualStatus>OPEN</xdw:actualStatus> 31197 </xdw:documentEvent> 31198 <xdw:documentEvent> 31199 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 31200 <xdw:eventType>create</xdw:eventType> 31201 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 31202 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31203 <xdw:previousStatus>OPEN</xdw:previousStatus> 31204 <xdw:actualStatus>OPEN</xdw:actualStatus> 31205 </xdw:documentEvent> 31206 <xdw:documentEvent> 31207 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 31208 <xdw:eventType>create</xdw:eventType> 31209 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 31210 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31211 <xdw:previousStatus>OPEN</xdw:previousStatus> 31212 <xdw:actualStatus>OPEN</xdw:actualStatus> 31213 </xdw:documentEvent> 31214 <xdw:documentEvent> 31215 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 31216 <xdw:eventType>create</xdw:eventType> 31217 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 31218 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31219 <xdw:previousStatus>OPEN</xdw:previousStatus> 31220 <xdw:actualStatus>OPEN</xdw:actualStatus> 31221 </xdw:documentEvent> 31222 <xdw:documentEvent> 31223 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 31224 <xdw:eventType>create</xdw:eventType> 31225 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 31226 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31227 <xdw:previousStatus>OPEN</xdw:previousStatus> 31228 <xdw:actualStatus>OPEN</xdw:actualStatus> 31229 </xdw:documentEvent> 31230 </xdw:workflowStatusHistory> 31231 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 31232 <xdw:TaskList> 31233 <xdw:XDWTask> 31234 <xdw:taskData> 31235 <ws-ht:taskDetails> 31236 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 31237 <ws-ht:taskType>Requested</ws-ht:taskType> 31238 <ws-ht:name>xdw.creation</ws-ht:name> 31239 <ws-ht:status>COMPLETED</ws-ht:status> 31240 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31241 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 31242 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31243 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 31244 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31245 </ws-ht:taskDetails> 31246 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 31247 <ws-ht:input/> 31248 <ws-ht:output/> 31249 </xdw:taskData> 31250 <xdw:taskEventHistory> 31251 <xdw:taskEvent> 31252 <xdw:id>1</xdw:id> 31253 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 31254 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 31255 <xdw:eventType>complete</xdw:eventType> 31256 <xdw:status>COMPLETED</xdw:status> 31257 <xdw:eventData xsi:nil="true"/> 31258 </xdw:taskEvent> 31259 </xdw:taskEventHistory> 31260 </xdw:XDWTask> 31261 <xdw:XDWTask> 31262 <xdw:taskData> 31263 <ws-ht:taskDetails> 31264 <ws-ht:id>task_0</ws-ht:id> 31265 <ws-ht:taskType>ttype</ws-ht:taskType> 31266 <ws-ht:name>tname_0</ws-ht:name> 31267 <ws-ht:status>COMPLETED</ws-ht:status> 31268 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31269 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 31270 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31271 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 31272 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31273 </ws-ht:taskDetails> 31274 <ws-ht:description>Undocumented task</ws-ht:description> 31275 <ws-ht:input/> 31276 <ws-ht:output> 31277 <ws-ht:part name="documentReference"> 31278 <ws-ht:attachment> 31279 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 31280 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 31281 <ws-ht:accessType>RLUS</ws-ht:accessType> 31282 <ws-ht:contentType>application/xml</ws-ht:contentType> 31283 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31284 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 31285 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31286 </ws-ht:attachment> 31287 </ws-ht:part> 31288 </ws-ht:output> 31289 </xdw:taskData> 31290 <xdw:taskEventHistory> 31291 <xdw:taskEvent> 31292 <xdw:id>1</xdw:id> 31293 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 31294 <xdw:identifier>task_0#1</xdw:identifier> 31295 <xdw:eventType>create</xdw:eventType> 31296 <xdw:status>READY</xdw:status> 31297 <xdw:eventData xsi:nil="true"/> 31298 </xdw:taskEvent> 31299 <xdw:taskEvent> 31300 <xdw:id>2</xdw:id> 31301 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 31302 <xdw:identifier>task_0#2</xdw:identifier> 31303 <xdw:eventType>complete</xdw:eventType> 31304 <xdw:status>COMPLETED</xdw:status> 31305 <xdw:eventData xsi:nil="true"/> 31306 </xdw:taskEvent> 31307 </xdw:taskEventHistory> 31308 </xdw:XDWTask> 31309 <xdw:XDWTask> 31310 <xdw:taskData> 31311 <ws-ht:taskDetails> 31312 <ws-ht:id>task_1</ws-ht:id> 31313 <ws-ht:taskType>ttype</ws-ht:taskType> 31314 <ws-ht:name>tname_1</ws-ht:name> 31315 <ws-ht:status>COMPLETED</ws-ht:status> 31316 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31317 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 31318 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31319 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 31320 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31321 </ws-ht:taskDetails> 31322 <ws-ht:description>Undocumented task</ws-ht:description> 31323 <ws-ht:input/> 31324 <ws-ht:output> 31325 <ws-ht:part name="documentReference"> 31326 <ws-ht:attachment> 31327 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 31328 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 31329 <ws-ht:accessType>RLUS</ws-ht:accessType> 31330 <ws-ht:contentType>application/xml</ws-ht:contentType> 31331 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31332 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 31333 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31334 </ws-ht:attachment> 31335 </ws-ht:part> 31336 </ws-ht:output> 31337 </xdw:taskData> 31338 <xdw:taskEventHistory> 31339 <xdw:taskEvent> 31340 <xdw:id>1</xdw:id> 31341 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 31342 <xdw:identifier>task_1#1</xdw:identifier> 31343 <xdw:eventType>create</xdw:eventType> 31344 <xdw:status>READY</xdw:status> 31345 <xdw:eventData xsi:nil="true"/> 31346 </xdw:taskEvent> 31347 <xdw:taskEvent> 31348 <xdw:id>2</xdw:id> 31349 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 31350 <xdw:identifier>task_1#2</xdw:identifier> 31351 <xdw:eventType>complete</xdw:eventType> 31352 <xdw:status>COMPLETED</xdw:status> 31353 <xdw:eventData xsi:nil="true"/> 31354 </xdw:taskEvent> 31355 </xdw:taskEventHistory> 31356 </xdw:XDWTask> 31357 <xdw:XDWTask> 31358 <xdw:taskData> 31359 <ws-ht:taskDetails> 31360 <ws-ht:id>task_2</ws-ht:id> 31361 <ws-ht:taskType>ttype</ws-ht:taskType> 31362 <ws-ht:name>tname_2</ws-ht:name> 31363 <ws-ht:status>COMPLETED</ws-ht:status> 31364 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31365 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 31366 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31367 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 31368 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31369 </ws-ht:taskDetails> 31370 <ws-ht:description>Undocumented task</ws-ht:description> 31371 <ws-ht:input/> 31372 <ws-ht:output> 31373 <ws-ht:part name="documentReference"> 31374 <ws-ht:attachment> 31375 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 31376 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 31377 <ws-ht:accessType>RLUS</ws-ht:accessType> 31378 <ws-ht:contentType>application/xml</ws-ht:contentType> 31379 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31380 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 31381 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31382 </ws-ht:attachment> 31383 </ws-ht:part> 31384 </ws-ht:output> 31385 </xdw:taskData> 31386 <xdw:taskEventHistory> 31387 <xdw:taskEvent> 31388 <xdw:id>1</xdw:id> 31389 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 31390 <xdw:identifier>task_2#1</xdw:identifier> 31391 <xdw:eventType>create</xdw:eventType> 31392 <xdw:status>READY</xdw:status> 31393 <xdw:eventData xsi:nil="true"/> 31394 </xdw:taskEvent> 31395 <xdw:taskEvent> 31396 <xdw:id>2</xdw:id> 31397 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 31398 <xdw:identifier>task_2#2</xdw:identifier> 31399 <xdw:eventType>complete</xdw:eventType> 31400 <xdw:status>COMPLETED</xdw:status> 31401 <xdw:eventData xsi:nil="true"/> 31402 </xdw:taskEvent> 31403 </xdw:taskEventHistory> 31404 </xdw:XDWTask> 31405 <xdw:XDWTask> 31406 <xdw:taskData> 31407 <ws-ht:taskDetails> 31408 <ws-ht:id>task_3</ws-ht:id> 31409 <ws-ht:taskType>ttype</ws-ht:taskType> 31410 <ws-ht:name>tname_3</ws-ht:name> 31411 <ws-ht:status>COMPLETED</ws-ht:status> 31412 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31413 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 31414 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31415 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 31416 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31417 </ws-ht:taskDetails> 31418 <ws-ht:description>Undocumented task</ws-ht:description> 31419 <ws-ht:input/> 31420 <ws-ht:output> 31421 <ws-ht:part name="documentReference"> 31422 <ws-ht:attachment> 31423 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 31424 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 31425 <ws-ht:accessType>RLUS</ws-ht:accessType> 31426 <ws-ht:contentType>application/xml</ws-ht:contentType> 31427 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31428 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 31429 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31430 </ws-ht:attachment> 31431 </ws-ht:part> 31432 </ws-ht:output> 31433 </xdw:taskData> 31434 <xdw:taskEventHistory> 31435 <xdw:taskEvent> 31436 <xdw:id>1</xdw:id> 31437 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 31438 <xdw:identifier>task_3#1</xdw:identifier> 31439 <xdw:eventType>create</xdw:eventType> 31440 <xdw:status>READY</xdw:status> 31441 <xdw:eventData xsi:nil="true"/> 31442 </xdw:taskEvent> 31443 <xdw:taskEvent> 31444 <xdw:id>2</xdw:id> 31445 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 31446 <xdw:identifier>task_3#2</xdw:identifier> 31447 <xdw:eventType>complete</xdw:eventType> 31448 <xdw:status>COMPLETED</xdw:status> 31449 <xdw:eventData xsi:nil="true"/> 31450 </xdw:taskEvent> 31451 </xdw:taskEventHistory> 31452 </xdw:XDWTask> 31453 <xdw:XDWTask> 31454 <xdw:taskData> 31455 <ws-ht:taskDetails> 31456 <ws-ht:id>task_4</ws-ht:id> 31457 <ws-ht:taskType>ttype</ws-ht:taskType> 31458 <ws-ht:name>tname_4</ws-ht:name> 31459 <ws-ht:status>COMPLETED</ws-ht:status> 31460 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31461 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 31462 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31463 <ws-ht:lastModifiedTime>2014-06-13T17:27:06.101+02:00</ws-ht:lastModifiedTime> 31464 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31465 </ws-ht:taskDetails> 31466 <ws-ht:description>Undocumented task</ws-ht:description> 31467 <ws-ht:input/> 31468 <ws-ht:output> 31469 <ws-ht:part name="documentReference"> 31470 <ws-ht:attachment> 31471 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 31472 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 31473 <ws-ht:accessType>RLUS</ws-ht:accessType> 31474 <ws-ht:contentType>application/xml</ws-ht:contentType> 31475 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31476 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 31477 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31478 </ws-ht:attachment> 31479 </ws-ht:part> 31480 </ws-ht:output> 31481 </xdw:taskData> 31482 <xdw:taskEventHistory> 31483 <xdw:taskEvent> 31484 <xdw:id>1</xdw:id> 31485 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 31486 <xdw:identifier>task_4#1</xdw:identifier> 31487 <xdw:eventType>create</xdw:eventType> 31488 <xdw:status>READY</xdw:status> 31489 <xdw:eventData xsi:nil="true"/> 31490 </xdw:taskEvent> 31491 <xdw:taskEvent> 31492 <xdw:id>2</xdw:id> 31493 <xdw:eventTime>2014-06-13T17:27:06.101+02:00</xdw:eventTime> 31494 <xdw:identifier>task_4#2</xdw:identifier> 31495 <xdw:eventType>complete</xdw:eventType> 31496 <xdw:status>COMPLETED</xdw:status> 31497 <xdw:eventData xsi:nil="true"/> 31498 </xdw:taskEvent> 31499 </xdw:taskEventHistory> 31500 </xdw:XDWTask> 31501 </xdw:TaskList> 31502 </xdw:XDW.WorkflowDocument> 31503 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 31504 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 31505 <rlustypes:SecurityContext> 31506 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 31507 </rlustypes:SecurityContext> 31508 <rlustypes:CBRContext> 31509 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 31510 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 31511 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 31512 </rlustypes:CBRContext> 31513 </rlustypes:RLUSPutRequestSrcStruct> 31514 <writeCommandEnum>UPDATE</writeCommandEnum> 31515 </PutRequest> 31516 </soap:Body> 31517 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 31518 <soapenv:Header/> 31519 <soapenv:Body> 31520 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 31521 <rlustypes:success>true</rlustypes:success> 31522 <rlustypes:message/> 31523 </rlustypes:RLUSStatusCode> 31524 </soapenv:Body> 31525 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 31526 <soap:Header/> 31527 <soap:Body> 31528 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 31529 <rlustypes:searchByCriteria> 31530 <rlustypes:FilterCriteria> 31531 <rlustypes:Expression> 31532 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 31533 <rlusexp:Operator type="EqualTo"/> 31534 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 31535 </rlustypes:Expression> 31536 </rlustypes:FilterCriteria> 31537 <rlustypes:SearchAttributes> 31538 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 31539 </rlustypes:SearchAttributes> 31540 </rlustypes:searchByCriteria> 31541 </rlustypes:RLUSSearchStruct> 31542 </soap:Body> 31543 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19104"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19104"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 31544 <soapenv:Header/> 31545 <soapenv:Body> 31546 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 31547 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 31548 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="3e69291c-1d15-49d6-85c1-02e205d17137"/> 31549 <xdw:effectiveTime value="20140613172711+0200"/> 31550 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="R"/> 31551 <xdw:patient> 31552 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 31553 </xdw:patient> 31554 <xdw:author> 31555 <xdw:assignedAuthor> 31556 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 31557 <hl7v3:assignedPerson/> 31558 </xdw:assignedAuthor> 31559 </xdw:author> 31560 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 31561 <xdw:workflowDocumentSequenceNumber>17</xdw:workflowDocumentSequenceNumber> 31562 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 31563 <xdw:workflowStatusHistory> 31564 <xdw:documentEvent> 31565 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 31566 <xdw:eventType>complete</xdw:eventType> 31567 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 31568 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31569 <xdw:previousStatus>OPEN</xdw:previousStatus> 31570 <xdw:actualStatus>OPEN</xdw:actualStatus> 31571 </xdw:documentEvent> 31572 <xdw:documentEvent> 31573 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 31574 <xdw:eventType>create</xdw:eventType> 31575 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 31576 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31577 <xdw:previousStatus>OPEN</xdw:previousStatus> 31578 <xdw:actualStatus>OPEN</xdw:actualStatus> 31579 </xdw:documentEvent> 31580 <xdw:documentEvent> 31581 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 31582 <xdw:eventType>create</xdw:eventType> 31583 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 31584 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31585 <xdw:previousStatus>OPEN</xdw:previousStatus> 31586 <xdw:actualStatus>OPEN</xdw:actualStatus> 31587 </xdw:documentEvent> 31588 <xdw:documentEvent> 31589 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 31590 <xdw:eventType>create</xdw:eventType> 31591 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 31592 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31593 <xdw:previousStatus>OPEN</xdw:previousStatus> 31594 <xdw:actualStatus>OPEN</xdw:actualStatus> 31595 </xdw:documentEvent> 31596 <xdw:documentEvent> 31597 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 31598 <xdw:eventType>create</xdw:eventType> 31599 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 31600 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31601 <xdw:previousStatus>OPEN</xdw:previousStatus> 31602 <xdw:actualStatus>OPEN</xdw:actualStatus> 31603 </xdw:documentEvent> 31604 <xdw:documentEvent> 31605 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 31606 <xdw:eventType>create</xdw:eventType> 31607 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 31608 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31609 <xdw:previousStatus>OPEN</xdw:previousStatus> 31610 <xdw:actualStatus>OPEN</xdw:actualStatus> 31611 </xdw:documentEvent> 31612 </xdw:workflowStatusHistory> 31613 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 31614 <xdw:TaskList> 31615 <xdw:XDWTask> 31616 <xdw:taskData> 31617 <ws-ht:taskDetails> 31618 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 31619 <ws-ht:taskType>Requested</ws-ht:taskType> 31620 <ws-ht:name>xdw.creation</ws-ht:name> 31621 <ws-ht:status>COMPLETED</ws-ht:status> 31622 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31623 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 31624 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31625 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 31626 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31627 </ws-ht:taskDetails> 31628 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 31629 <ws-ht:input/> 31630 <ws-ht:output/> 31631 </xdw:taskData> 31632 <xdw:taskEventHistory> 31633 <xdw:taskEvent> 31634 <xdw:id>1</xdw:id> 31635 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 31636 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 31637 <xdw:eventType>complete</xdw:eventType> 31638 <xdw:status>COMPLETED</xdw:status> 31639 <xdw:eventData xsi:nil="true"/> 31640 </xdw:taskEvent> 31641 </xdw:taskEventHistory> 31642 </xdw:XDWTask> 31643 <xdw:XDWTask> 31644 <xdw:taskData> 31645 <ws-ht:taskDetails> 31646 <ws-ht:id>task_0</ws-ht:id> 31647 <ws-ht:taskType>ttype</ws-ht:taskType> 31648 <ws-ht:name>tname_0</ws-ht:name> 31649 <ws-ht:status>COMPLETED</ws-ht:status> 31650 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31651 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 31652 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31653 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 31654 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31655 </ws-ht:taskDetails> 31656 <ws-ht:description>Undocumented task</ws-ht:description> 31657 <ws-ht:input/> 31658 <ws-ht:output> 31659 <ws-ht:part name="documentReference"> 31660 <ws-ht:attachment> 31661 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 31662 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 31663 <ws-ht:accessType>RLUS</ws-ht:accessType> 31664 <ws-ht:contentType>application/xml</ws-ht:contentType> 31665 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31666 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 31667 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31668 </ws-ht:attachment> 31669 </ws-ht:part> 31670 </ws-ht:output> 31671 </xdw:taskData> 31672 <xdw:taskEventHistory> 31673 <xdw:taskEvent> 31674 <xdw:id>1</xdw:id> 31675 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 31676 <xdw:identifier>task_0#1</xdw:identifier> 31677 <xdw:eventType>create</xdw:eventType> 31678 <xdw:status>READY</xdw:status> 31679 <xdw:eventData xsi:nil="true"/> 31680 </xdw:taskEvent> 31681 <xdw:taskEvent> 31682 <xdw:id>2</xdw:id> 31683 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 31684 <xdw:identifier>task_0#2</xdw:identifier> 31685 <xdw:eventType>complete</xdw:eventType> 31686 <xdw:status>COMPLETED</xdw:status> 31687 <xdw:eventData xsi:nil="true"/> 31688 </xdw:taskEvent> 31689 </xdw:taskEventHistory> 31690 </xdw:XDWTask> 31691 <xdw:XDWTask> 31692 <xdw:taskData> 31693 <ws-ht:taskDetails> 31694 <ws-ht:id>task_1</ws-ht:id> 31695 <ws-ht:taskType>ttype</ws-ht:taskType> 31696 <ws-ht:name>tname_1</ws-ht:name> 31697 <ws-ht:status>COMPLETED</ws-ht:status> 31698 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31699 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 31700 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31701 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 31702 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31703 </ws-ht:taskDetails> 31704 <ws-ht:description>Undocumented task</ws-ht:description> 31705 <ws-ht:input/> 31706 <ws-ht:output> 31707 <ws-ht:part name="documentReference"> 31708 <ws-ht:attachment> 31709 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 31710 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 31711 <ws-ht:accessType>RLUS</ws-ht:accessType> 31712 <ws-ht:contentType>application/xml</ws-ht:contentType> 31713 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31714 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 31715 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31716 </ws-ht:attachment> 31717 </ws-ht:part> 31718 </ws-ht:output> 31719 </xdw:taskData> 31720 <xdw:taskEventHistory> 31721 <xdw:taskEvent> 31722 <xdw:id>1</xdw:id> 31723 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 31724 <xdw:identifier>task_1#1</xdw:identifier> 31725 <xdw:eventType>create</xdw:eventType> 31726 <xdw:status>READY</xdw:status> 31727 <xdw:eventData xsi:nil="true"/> 31728 </xdw:taskEvent> 31729 <xdw:taskEvent> 31730 <xdw:id>2</xdw:id> 31731 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 31732 <xdw:identifier>task_1#2</xdw:identifier> 31733 <xdw:eventType>complete</xdw:eventType> 31734 <xdw:status>COMPLETED</xdw:status> 31735 <xdw:eventData xsi:nil="true"/> 31736 </xdw:taskEvent> 31737 </xdw:taskEventHistory> 31738 </xdw:XDWTask> 31739 <xdw:XDWTask> 31740 <xdw:taskData> 31741 <ws-ht:taskDetails> 31742 <ws-ht:id>task_2</ws-ht:id> 31743 <ws-ht:taskType>ttype</ws-ht:taskType> 31744 <ws-ht:name>tname_2</ws-ht:name> 31745 <ws-ht:status>COMPLETED</ws-ht:status> 31746 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31747 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 31748 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31749 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 31750 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31751 </ws-ht:taskDetails> 31752 <ws-ht:description>Undocumented task</ws-ht:description> 31753 <ws-ht:input/> 31754 <ws-ht:output> 31755 <ws-ht:part name="documentReference"> 31756 <ws-ht:attachment> 31757 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 31758 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 31759 <ws-ht:accessType>RLUS</ws-ht:accessType> 31760 <ws-ht:contentType>application/xml</ws-ht:contentType> 31761 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31762 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 31763 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31764 </ws-ht:attachment> 31765 </ws-ht:part> 31766 </ws-ht:output> 31767 </xdw:taskData> 31768 <xdw:taskEventHistory> 31769 <xdw:taskEvent> 31770 <xdw:id>1</xdw:id> 31771 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 31772 <xdw:identifier>task_2#1</xdw:identifier> 31773 <xdw:eventType>create</xdw:eventType> 31774 <xdw:status>READY</xdw:status> 31775 <xdw:eventData xsi:nil="true"/> 31776 </xdw:taskEvent> 31777 <xdw:taskEvent> 31778 <xdw:id>2</xdw:id> 31779 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 31780 <xdw:identifier>task_2#2</xdw:identifier> 31781 <xdw:eventType>complete</xdw:eventType> 31782 <xdw:status>COMPLETED</xdw:status> 31783 <xdw:eventData xsi:nil="true"/> 31784 </xdw:taskEvent> 31785 </xdw:taskEventHistory> 31786 </xdw:XDWTask> 31787 <xdw:XDWTask> 31788 <xdw:taskData> 31789 <ws-ht:taskDetails> 31790 <ws-ht:id>task_3</ws-ht:id> 31791 <ws-ht:taskType>ttype</ws-ht:taskType> 31792 <ws-ht:name>tname_3</ws-ht:name> 31793 <ws-ht:status>COMPLETED</ws-ht:status> 31794 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31795 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 31796 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31797 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 31798 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31799 </ws-ht:taskDetails> 31800 <ws-ht:description>Undocumented task</ws-ht:description> 31801 <ws-ht:input/> 31802 <ws-ht:output> 31803 <ws-ht:part name="documentReference"> 31804 <ws-ht:attachment> 31805 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 31806 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 31807 <ws-ht:accessType>RLUS</ws-ht:accessType> 31808 <ws-ht:contentType>application/xml</ws-ht:contentType> 31809 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31810 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 31811 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31812 </ws-ht:attachment> 31813 </ws-ht:part> 31814 </ws-ht:output> 31815 </xdw:taskData> 31816 <xdw:taskEventHistory> 31817 <xdw:taskEvent> 31818 <xdw:id>1</xdw:id> 31819 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 31820 <xdw:identifier>task_3#1</xdw:identifier> 31821 <xdw:eventType>create</xdw:eventType> 31822 <xdw:status>READY</xdw:status> 31823 <xdw:eventData xsi:nil="true"/> 31824 </xdw:taskEvent> 31825 <xdw:taskEvent> 31826 <xdw:id>2</xdw:id> 31827 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 31828 <xdw:identifier>task_3#2</xdw:identifier> 31829 <xdw:eventType>complete</xdw:eventType> 31830 <xdw:status>COMPLETED</xdw:status> 31831 <xdw:eventData xsi:nil="true"/> 31832 </xdw:taskEvent> 31833 </xdw:taskEventHistory> 31834 </xdw:XDWTask> 31835 <xdw:XDWTask> 31836 <xdw:taskData> 31837 <ws-ht:taskDetails> 31838 <ws-ht:id>task_4</ws-ht:id> 31839 <ws-ht:taskType>ttype</ws-ht:taskType> 31840 <ws-ht:name>tname_4</ws-ht:name> 31841 <ws-ht:status>COMPLETED</ws-ht:status> 31842 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31843 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 31844 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31845 <ws-ht:lastModifiedTime>2014-06-13T17:27:06.101+02:00</ws-ht:lastModifiedTime> 31846 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31847 </ws-ht:taskDetails> 31848 <ws-ht:description>Undocumented task</ws-ht:description> 31849 <ws-ht:input/> 31850 <ws-ht:output> 31851 <ws-ht:part name="documentReference"> 31852 <ws-ht:attachment> 31853 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 31854 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 31855 <ws-ht:accessType>RLUS</ws-ht:accessType> 31856 <ws-ht:contentType>application/xml</ws-ht:contentType> 31857 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 31858 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 31859 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 31860 </ws-ht:attachment> 31861 </ws-ht:part> 31862 </ws-ht:output> 31863 </xdw:taskData> 31864 <xdw:taskEventHistory> 31865 <xdw:taskEvent> 31866 <xdw:id>1</xdw:id> 31867 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 31868 <xdw:identifier>task_4#1</xdw:identifier> 31869 <xdw:eventType>create</xdw:eventType> 31870 <xdw:status>READY</xdw:status> 31871 <xdw:eventData xsi:nil="true"/> 31872 </xdw:taskEvent> 31873 <xdw:taskEvent> 31874 <xdw:id>2</xdw:id> 31875 <xdw:eventTime>2014-06-13T17:27:06.101+02:00</xdw:eventTime> 31876 <xdw:identifier>task_4#2</xdw:identifier> 31877 <xdw:eventType>complete</xdw:eventType> 31878 <xdw:status>COMPLETED</xdw:status> 31879 <xdw:eventData xsi:nil="true"/> 31880 </xdw:taskEvent> 31881 </xdw:taskEventHistory> 31882 </xdw:XDWTask> 31883 </xdw:TaskList> 31884 </xdw:XDW.WorkflowDocument> 31885 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 31886 <rlustypes:success>true</rlustypes:success> 31887 <rlustypes:message>One record fetched</rlustypes:message> 31888 </rlustypes:RLUSStatusCode> 31889 </GetResponse> 31890 </soapenv:Body> 31891 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="1033"/><header key="SOAPAction" value="urn:get"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="1033"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 31892 <soap:Header/> 31893 <soap:Body> 31894 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 31895 <rlustypes:searchByCriteria> 31896 <rlustypes:FilterCriteria> 31897 <rlustypes:Expression> 31898 <rlusexp:BinaryTerm text="#workflow.instanceid" type="Text"/> 31899 <rlusexp:Operator type="EqualTo"/> 31900 <rlusexp:BinaryTerm text="89duier8943hw-4no3na00-workflow-doc-2014" type="Text"/> 31901 </rlustypes:Expression> 31902 </rlustypes:FilterCriteria> 31903 <rlustypes:SearchAttributes> 31904 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowInstanceID/text()" qualifier="#workflow.instanceid"/> 31905 </rlustypes:SearchAttributes> 31906 </rlustypes:searchByCriteria> 31907 </rlustypes:RLUSSearchStruct> 31908 </soap:Body> 31909 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="19104"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="19104"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 31910 <soapenv:Header/> 31911 <soapenv:Body> 31912 <GetResponse xmlns="urn:dedalus:rlus:xdw:types"> 31913 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hl7v3="urn:hl7-org:v3" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:cda="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 31914 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="3e69291c-1d15-49d6-85c1-02e205d17137"/> 31915 <xdw:effectiveTime value="20140613172711+0200"/> 31916 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="R"/> 31917 <xdw:patient> 31918 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 31919 </xdw:patient> 31920 <xdw:author> 31921 <xdw:assignedAuthor> 31922 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 31923 <hl7v3:assignedPerson/> 31924 </xdw:assignedAuthor> 31925 </xdw:author> 31926 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 31927 <xdw:workflowDocumentSequenceNumber>17</xdw:workflowDocumentSequenceNumber> 31928 <xdw:workflowStatus>OPEN</xdw:workflowStatus> 31929 <xdw:workflowStatusHistory> 31930 <xdw:documentEvent> 31931 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 31932 <xdw:eventType>complete</xdw:eventType> 31933 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 31934 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31935 <xdw:previousStatus>OPEN</xdw:previousStatus> 31936 <xdw:actualStatus>OPEN</xdw:actualStatus> 31937 </xdw:documentEvent> 31938 <xdw:documentEvent> 31939 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 31940 <xdw:eventType>create</xdw:eventType> 31941 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 31942 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31943 <xdw:previousStatus>OPEN</xdw:previousStatus> 31944 <xdw:actualStatus>OPEN</xdw:actualStatus> 31945 </xdw:documentEvent> 31946 <xdw:documentEvent> 31947 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 31948 <xdw:eventType>create</xdw:eventType> 31949 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 31950 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31951 <xdw:previousStatus>OPEN</xdw:previousStatus> 31952 <xdw:actualStatus>OPEN</xdw:actualStatus> 31953 </xdw:documentEvent> 31954 <xdw:documentEvent> 31955 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 31956 <xdw:eventType>create</xdw:eventType> 31957 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 31958 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31959 <xdw:previousStatus>OPEN</xdw:previousStatus> 31960 <xdw:actualStatus>OPEN</xdw:actualStatus> 31961 </xdw:documentEvent> 31962 <xdw:documentEvent> 31963 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 31964 <xdw:eventType>create</xdw:eventType> 31965 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 31966 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31967 <xdw:previousStatus>OPEN</xdw:previousStatus> 31968 <xdw:actualStatus>OPEN</xdw:actualStatus> 31969 </xdw:documentEvent> 31970 <xdw:documentEvent> 31971 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 31972 <xdw:eventType>create</xdw:eventType> 31973 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 31974 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 31975 <xdw:previousStatus>OPEN</xdw:previousStatus> 31976 <xdw:actualStatus>OPEN</xdw:actualStatus> 31977 </xdw:documentEvent> 31978 </xdw:workflowStatusHistory> 31979 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 31980 <xdw:TaskList> 31981 <xdw:XDWTask> 31982 <xdw:taskData> 31983 <ws-ht:taskDetails> 31984 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 31985 <ws-ht:taskType>Requested</ws-ht:taskType> 31986 <ws-ht:name>xdw.creation</ws-ht:name> 31987 <ws-ht:status>COMPLETED</ws-ht:status> 31988 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 31989 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 31990 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 31991 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 31992 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 31993 </ws-ht:taskDetails> 31994 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 31995 <ws-ht:input/> 31996 <ws-ht:output/> 31997 </xdw:taskData> 31998 <xdw:taskEventHistory> 31999 <xdw:taskEvent> 32000 <xdw:id>1</xdw:id> 32001 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 32002 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 32003 <xdw:eventType>complete</xdw:eventType> 32004 <xdw:status>COMPLETED</xdw:status> 32005 <xdw:eventData xsi:nil="true"/> 32006 </xdw:taskEvent> 32007 </xdw:taskEventHistory> 32008 </xdw:XDWTask> 32009 <xdw:XDWTask> 32010 <xdw:taskData> 32011 <ws-ht:taskDetails> 32012 <ws-ht:id>task_0</ws-ht:id> 32013 <ws-ht:taskType>ttype</ws-ht:taskType> 32014 <ws-ht:name>tname_0</ws-ht:name> 32015 <ws-ht:status>COMPLETED</ws-ht:status> 32016 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32017 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 32018 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32019 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 32020 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32021 </ws-ht:taskDetails> 32022 <ws-ht:description>Undocumented task</ws-ht:description> 32023 <ws-ht:input/> 32024 <ws-ht:output> 32025 <ws-ht:part name="documentReference"> 32026 <ws-ht:attachment> 32027 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 32028 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 32029 <ws-ht:accessType>RLUS</ws-ht:accessType> 32030 <ws-ht:contentType>application/xml</ws-ht:contentType> 32031 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 32032 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 32033 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 32034 </ws-ht:attachment> 32035 </ws-ht:part> 32036 </ws-ht:output> 32037 </xdw:taskData> 32038 <xdw:taskEventHistory> 32039 <xdw:taskEvent> 32040 <xdw:id>1</xdw:id> 32041 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 32042 <xdw:identifier>task_0#1</xdw:identifier> 32043 <xdw:eventType>create</xdw:eventType> 32044 <xdw:status>READY</xdw:status> 32045 <xdw:eventData xsi:nil="true"/> 32046 </xdw:taskEvent> 32047 <xdw:taskEvent> 32048 <xdw:id>2</xdw:id> 32049 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 32050 <xdw:identifier>task_0#2</xdw:identifier> 32051 <xdw:eventType>complete</xdw:eventType> 32052 <xdw:status>COMPLETED</xdw:status> 32053 <xdw:eventData xsi:nil="true"/> 32054 </xdw:taskEvent> 32055 </xdw:taskEventHistory> 32056 </xdw:XDWTask> 32057 <xdw:XDWTask> 32058 <xdw:taskData> 32059 <ws-ht:taskDetails> 32060 <ws-ht:id>task_1</ws-ht:id> 32061 <ws-ht:taskType>ttype</ws-ht:taskType> 32062 <ws-ht:name>tname_1</ws-ht:name> 32063 <ws-ht:status>COMPLETED</ws-ht:status> 32064 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32065 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 32066 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32067 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 32068 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32069 </ws-ht:taskDetails> 32070 <ws-ht:description>Undocumented task</ws-ht:description> 32071 <ws-ht:input/> 32072 <ws-ht:output> 32073 <ws-ht:part name="documentReference"> 32074 <ws-ht:attachment> 32075 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 32076 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 32077 <ws-ht:accessType>RLUS</ws-ht:accessType> 32078 <ws-ht:contentType>application/xml</ws-ht:contentType> 32079 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 32080 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 32081 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 32082 </ws-ht:attachment> 32083 </ws-ht:part> 32084 </ws-ht:output> 32085 </xdw:taskData> 32086 <xdw:taskEventHistory> 32087 <xdw:taskEvent> 32088 <xdw:id>1</xdw:id> 32089 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 32090 <xdw:identifier>task_1#1</xdw:identifier> 32091 <xdw:eventType>create</xdw:eventType> 32092 <xdw:status>READY</xdw:status> 32093 <xdw:eventData xsi:nil="true"/> 32094 </xdw:taskEvent> 32095 <xdw:taskEvent> 32096 <xdw:id>2</xdw:id> 32097 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 32098 <xdw:identifier>task_1#2</xdw:identifier> 32099 <xdw:eventType>complete</xdw:eventType> 32100 <xdw:status>COMPLETED</xdw:status> 32101 <xdw:eventData xsi:nil="true"/> 32102 </xdw:taskEvent> 32103 </xdw:taskEventHistory> 32104 </xdw:XDWTask> 32105 <xdw:XDWTask> 32106 <xdw:taskData> 32107 <ws-ht:taskDetails> 32108 <ws-ht:id>task_2</ws-ht:id> 32109 <ws-ht:taskType>ttype</ws-ht:taskType> 32110 <ws-ht:name>tname_2</ws-ht:name> 32111 <ws-ht:status>COMPLETED</ws-ht:status> 32112 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32113 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 32114 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32115 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 32116 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32117 </ws-ht:taskDetails> 32118 <ws-ht:description>Undocumented task</ws-ht:description> 32119 <ws-ht:input/> 32120 <ws-ht:output> 32121 <ws-ht:part name="documentReference"> 32122 <ws-ht:attachment> 32123 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 32124 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 32125 <ws-ht:accessType>RLUS</ws-ht:accessType> 32126 <ws-ht:contentType>application/xml</ws-ht:contentType> 32127 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 32128 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 32129 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 32130 </ws-ht:attachment> 32131 </ws-ht:part> 32132 </ws-ht:output> 32133 </xdw:taskData> 32134 <xdw:taskEventHistory> 32135 <xdw:taskEvent> 32136 <xdw:id>1</xdw:id> 32137 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 32138 <xdw:identifier>task_2#1</xdw:identifier> 32139 <xdw:eventType>create</xdw:eventType> 32140 <xdw:status>READY</xdw:status> 32141 <xdw:eventData xsi:nil="true"/> 32142 </xdw:taskEvent> 32143 <xdw:taskEvent> 32144 <xdw:id>2</xdw:id> 32145 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 32146 <xdw:identifier>task_2#2</xdw:identifier> 32147 <xdw:eventType>complete</xdw:eventType> 32148 <xdw:status>COMPLETED</xdw:status> 32149 <xdw:eventData xsi:nil="true"/> 32150 </xdw:taskEvent> 32151 </xdw:taskEventHistory> 32152 </xdw:XDWTask> 32153 <xdw:XDWTask> 32154 <xdw:taskData> 32155 <ws-ht:taskDetails> 32156 <ws-ht:id>task_3</ws-ht:id> 32157 <ws-ht:taskType>ttype</ws-ht:taskType> 32158 <ws-ht:name>tname_3</ws-ht:name> 32159 <ws-ht:status>COMPLETED</ws-ht:status> 32160 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32161 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 32162 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32163 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 32164 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32165 </ws-ht:taskDetails> 32166 <ws-ht:description>Undocumented task</ws-ht:description> 32167 <ws-ht:input/> 32168 <ws-ht:output> 32169 <ws-ht:part name="documentReference"> 32170 <ws-ht:attachment> 32171 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 32172 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 32173 <ws-ht:accessType>RLUS</ws-ht:accessType> 32174 <ws-ht:contentType>application/xml</ws-ht:contentType> 32175 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 32176 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 32177 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 32178 </ws-ht:attachment> 32179 </ws-ht:part> 32180 </ws-ht:output> 32181 </xdw:taskData> 32182 <xdw:taskEventHistory> 32183 <xdw:taskEvent> 32184 <xdw:id>1</xdw:id> 32185 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 32186 <xdw:identifier>task_3#1</xdw:identifier> 32187 <xdw:eventType>create</xdw:eventType> 32188 <xdw:status>READY</xdw:status> 32189 <xdw:eventData xsi:nil="true"/> 32190 </xdw:taskEvent> 32191 <xdw:taskEvent> 32192 <xdw:id>2</xdw:id> 32193 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 32194 <xdw:identifier>task_3#2</xdw:identifier> 32195 <xdw:eventType>complete</xdw:eventType> 32196 <xdw:status>COMPLETED</xdw:status> 32197 <xdw:eventData xsi:nil="true"/> 32198 </xdw:taskEvent> 32199 </xdw:taskEventHistory> 32200 </xdw:XDWTask> 32201 <xdw:XDWTask> 32202 <xdw:taskData> 32203 <ws-ht:taskDetails> 32204 <ws-ht:id>task_4</ws-ht:id> 32205 <ws-ht:taskType>ttype</ws-ht:taskType> 32206 <ws-ht:name>tname_4</ws-ht:name> 32207 <ws-ht:status>COMPLETED</ws-ht:status> 32208 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32209 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 32210 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32211 <ws-ht:lastModifiedTime>2014-06-13T17:27:06.101+02:00</ws-ht:lastModifiedTime> 32212 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32213 </ws-ht:taskDetails> 32214 <ws-ht:description>Undocumented task</ws-ht:description> 32215 <ws-ht:input/> 32216 <ws-ht:output> 32217 <ws-ht:part name="documentReference"> 32218 <ws-ht:attachment> 32219 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 32220 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 32221 <ws-ht:accessType>RLUS</ws-ht:accessType> 32222 <ws-ht:contentType>application/xml</ws-ht:contentType> 32223 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 32224 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 32225 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 32226 </ws-ht:attachment> 32227 </ws-ht:part> 32228 </ws-ht:output> 32229 </xdw:taskData> 32230 <xdw:taskEventHistory> 32231 <xdw:taskEvent> 32232 <xdw:id>1</xdw:id> 32233 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 32234 <xdw:identifier>task_4#1</xdw:identifier> 32235 <xdw:eventType>create</xdw:eventType> 32236 <xdw:status>READY</xdw:status> 32237 <xdw:eventData xsi:nil="true"/> 32238 </xdw:taskEvent> 32239 <xdw:taskEvent> 32240 <xdw:id>2</xdw:id> 32241 <xdw:eventTime>2014-06-13T17:27:06.101+02:00</xdw:eventTime> 32242 <xdw:identifier>task_4#2</xdw:identifier> 32243 <xdw:eventType>complete</xdw:eventType> 32244 <xdw:status>COMPLETED</xdw:status> 32245 <xdw:eventData xsi:nil="true"/> 32246 </xdw:taskEvent> 32247 </xdw:taskEventHistory> 32248 </xdw:XDWTask> 32249 </xdw:TaskList> 32250 </xdw:XDW.WorkflowDocument> 32251 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 32252 <rlustypes:success>true</rlustypes:success> 32253 <rlustypes:message>One record fetched</rlustypes:message> 32254 </rlustypes:RLUSStatusCode> 32255 </GetResponse> 32256 </soapenv:Body> 32257 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/update/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="21390"/><header key="SOAPAction" value="urn:put"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="21390"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 32258 <soap:Header/> 32259 <soap:Body> 32260 <PutRequest xmlns="urn:dedalus:rlus:xdw:types"> 32261 <xdw:XDW.WorkflowDocument xmlns:xdw="urn:ihe:iti:2011:xdw" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mif="urn:hl7-org:v3/mif" xmlns:cda="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ws-ht="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:hl7v3="urn:hl7-org:v3" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 32262 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.4" extension="1786d4d5-2ad3-416a-98d6-a39ea6ffdedd"/> 32263 <xdw:effectiveTime value="20140613172712+0200"/> 32264 <xdw:confidentialityCode codeSystem="2.16.840.1.113883.5.25" code="R"/> 32265 <xdw:patient> 32266 <xdw:id root="2.16.840.1.113883.2.9.3.12.4.1" extension="8d1ddf03-817a-4a95-8845-e9caa4ba0348" assigningAuthorityName="Dedalus"/> 32267 </xdw:patient> 32268 <xdw:author> 32269 <xdw:assignedAuthor> 32270 <hl7v3:id root="2.16.840.1.113883.2.9.3.12.4.2" extension="1234e645-0c3a-40e0-88c1-76af81c6d732"/> 32271 <hl7v3:assignedPerson/> 32272 </xdw:assignedAuthor> 32273 </xdw:author> 32274 <xdw:workflowInstanceID>89duier8943hw-4no3na00-workflow-doc-2014</xdw:workflowInstanceID> 32275 <xdw:workflowDocumentSequenceNumber>18</xdw:workflowDocumentSequenceNumber> 32276 <xdw:workflowStatus>CLOSED</xdw:workflowStatus> 32277 <xdw:workflowStatusHistory> 32278 <xdw:documentEvent> 32279 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 32280 <xdw:eventType>complete</xdw:eventType> 32281 <xdw:taskEventIdentifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:taskEventIdentifier> 32282 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 32283 <xdw:previousStatus>OPEN</xdw:previousStatus> 32284 <xdw:actualStatus>OPEN</xdw:actualStatus> 32285 </xdw:documentEvent> 32286 <xdw:documentEvent> 32287 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 32288 <xdw:eventType>create</xdw:eventType> 32289 <xdw:taskEventIdentifier>task_0#1</xdw:taskEventIdentifier> 32290 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 32291 <xdw:previousStatus>OPEN</xdw:previousStatus> 32292 <xdw:actualStatus>OPEN</xdw:actualStatus> 32293 </xdw:documentEvent> 32294 <xdw:documentEvent> 32295 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 32296 <xdw:eventType>create</xdw:eventType> 32297 <xdw:taskEventIdentifier>task_1#1</xdw:taskEventIdentifier> 32298 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 32299 <xdw:previousStatus>OPEN</xdw:previousStatus> 32300 <xdw:actualStatus>OPEN</xdw:actualStatus> 32301 </xdw:documentEvent> 32302 <xdw:documentEvent> 32303 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 32304 <xdw:eventType>create</xdw:eventType> 32305 <xdw:taskEventIdentifier>task_2#1</xdw:taskEventIdentifier> 32306 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 32307 <xdw:previousStatus>OPEN</xdw:previousStatus> 32308 <xdw:actualStatus>OPEN</xdw:actualStatus> 32309 </xdw:documentEvent> 32310 <xdw:documentEvent> 32311 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 32312 <xdw:eventType>create</xdw:eventType> 32313 <xdw:taskEventIdentifier>task_3#1</xdw:taskEventIdentifier> 32314 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 32315 <xdw:previousStatus>OPEN</xdw:previousStatus> 32316 <xdw:actualStatus>OPEN</xdw:actualStatus> 32317 </xdw:documentEvent> 32318 <xdw:documentEvent> 32319 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 32320 <xdw:eventType>create</xdw:eventType> 32321 <xdw:taskEventIdentifier>task_4#1</xdw:taskEventIdentifier> 32322 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 32323 <xdw:previousStatus>OPEN</xdw:previousStatus> 32324 <xdw:actualStatus>OPEN</xdw:actualStatus> 32325 </xdw:documentEvent> 32326 <xdw:documentEvent> 32327 <xdw:eventTime>2014-06-13T17:27:12.14+02:00</xdw:eventTime> 32328 <xdw:eventType>complete</xdw:eventType> 32329 <xdw:taskEventIdentifier>task_5#1</xdw:taskEventIdentifier> 32330 <xdw:author>1234e645-0c3a-40e0-88c1-76af81c6d732</xdw:author> 32331 <xdw:previousStatus>OPEN</xdw:previousStatus> 32332 <xdw:actualStatus>CLOSED</xdw:actualStatus> 32333 </xdw:documentEvent> 32334 </xdw:workflowStatusHistory> 32335 <xdw:workflowDefinitionReference>urn:dedalus:xdw:definition:xdw</xdw:workflowDefinitionReference> 32336 <xdw:TaskList> 32337 <xdw:XDWTask> 32338 <xdw:taskData> 32339 <ws-ht:taskDetails> 32340 <ws-ht:id>557c4a21-1de7-4aad-b668-ce525f02ace2</ws-ht:id> 32341 <ws-ht:taskType>Requested</ws-ht:taskType> 32342 <ws-ht:name>xdw.creation</ws-ht:name> 32343 <ws-ht:status>COMPLETED</ws-ht:status> 32344 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32345 <ws-ht:createdTime>2014-06-13T17:26:35.302+02:00</ws-ht:createdTime> 32346 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32347 <ws-ht:lastModifiedTime>2014-06-13T17:26:35.302+02:00</ws-ht:lastModifiedTime> 32348 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32349 </ws-ht:taskDetails> 32350 <ws-ht:description>Creation of XDW document for xdw profile</ws-ht:description> 32351 <ws-ht:input/> 32352 <ws-ht:output/> 32353 </xdw:taskData> 32354 <xdw:taskEventHistory> 32355 <xdw:taskEvent> 32356 <xdw:id>1</xdw:id> 32357 <xdw:eventTime>2014-06-13T17:26:35.302+02:00</xdw:eventTime> 32358 <xdw:identifier>557c4a21-1de7-4aad-b668-ce525f02ace2#1</xdw:identifier> 32359 <xdw:eventType>complete</xdw:eventType> 32360 <xdw:status>COMPLETED</xdw:status> 32361 <xdw:eventData xsi:nil="true"/> 32362 </xdw:taskEvent> 32363 </xdw:taskEventHistory> 32364 </xdw:XDWTask> 32365 <xdw:XDWTask> 32366 <xdw:taskData> 32367 <ws-ht:taskDetails> 32368 <ws-ht:id>task_0</ws-ht:id> 32369 <ws-ht:taskType>ttype</ws-ht:taskType> 32370 <ws-ht:name>tname_0</ws-ht:name> 32371 <ws-ht:status>COMPLETED</ws-ht:status> 32372 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32373 <ws-ht:createdTime>2014-06-13T17:26:37.211+02:00</ws-ht:createdTime> 32374 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32375 <ws-ht:lastModifiedTime>2014-06-13T17:26:42.032+02:00</ws-ht:lastModifiedTime> 32376 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32377 </ws-ht:taskDetails> 32378 <ws-ht:description>Undocumented task</ws-ht:description> 32379 <ws-ht:input/> 32380 <ws-ht:output> 32381 <ws-ht:part name="documentReference"> 32382 <ws-ht:attachment> 32383 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:identifier> 32384 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-000</ws-ht:name> 32385 <ws-ht:accessType>RLUS</ws-ht:accessType> 32386 <ws-ht:contentType>application/xml</ws-ht:contentType> 32387 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 32388 <ws-ht:attachedTime>2014-06-13T17:26:40.709+02:00</ws-ht:attachedTime> 32389 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 32390 </ws-ht:attachment> 32391 </ws-ht:part> 32392 </ws-ht:output> 32393 </xdw:taskData> 32394 <xdw:taskEventHistory> 32395 <xdw:taskEvent> 32396 <xdw:id>1</xdw:id> 32397 <xdw:eventTime>2014-06-13T17:26:37.211+02:00</xdw:eventTime> 32398 <xdw:identifier>task_0#1</xdw:identifier> 32399 <xdw:eventType>create</xdw:eventType> 32400 <xdw:status>READY</xdw:status> 32401 <xdw:eventData xsi:nil="true"/> 32402 </xdw:taskEvent> 32403 <xdw:taskEvent> 32404 <xdw:id>2</xdw:id> 32405 <xdw:eventTime>2014-06-13T17:26:42.032+02:00</xdw:eventTime> 32406 <xdw:identifier>task_0#2</xdw:identifier> 32407 <xdw:eventType>complete</xdw:eventType> 32408 <xdw:status>COMPLETED</xdw:status> 32409 <xdw:eventData xsi:nil="true"/> 32410 </xdw:taskEvent> 32411 </xdw:taskEventHistory> 32412 </xdw:XDWTask> 32413 <xdw:XDWTask> 32414 <xdw:taskData> 32415 <ws-ht:taskDetails> 32416 <ws-ht:id>task_1</ws-ht:id> 32417 <ws-ht:taskType>ttype</ws-ht:taskType> 32418 <ws-ht:name>tname_1</ws-ht:name> 32419 <ws-ht:status>COMPLETED</ws-ht:status> 32420 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32421 <ws-ht:createdTime>2014-06-13T17:26:43.287+02:00</ws-ht:createdTime> 32422 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32423 <ws-ht:lastModifiedTime>2014-06-13T17:26:47.572+02:00</ws-ht:lastModifiedTime> 32424 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32425 </ws-ht:taskDetails> 32426 <ws-ht:description>Undocumented task</ws-ht:description> 32427 <ws-ht:input/> 32428 <ws-ht:output> 32429 <ws-ht:part name="documentReference"> 32430 <ws-ht:attachment> 32431 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:identifier> 32432 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-001</ws-ht:name> 32433 <ws-ht:accessType>RLUS</ws-ht:accessType> 32434 <ws-ht:contentType>application/xml</ws-ht:contentType> 32435 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 32436 <ws-ht:attachedTime>2014-06-13T17:26:46.349+02:00</ws-ht:attachedTime> 32437 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 32438 </ws-ht:attachment> 32439 </ws-ht:part> 32440 </ws-ht:output> 32441 </xdw:taskData> 32442 <xdw:taskEventHistory> 32443 <xdw:taskEvent> 32444 <xdw:id>1</xdw:id> 32445 <xdw:eventTime>2014-06-13T17:26:43.287+02:00</xdw:eventTime> 32446 <xdw:identifier>task_1#1</xdw:identifier> 32447 <xdw:eventType>create</xdw:eventType> 32448 <xdw:status>READY</xdw:status> 32449 <xdw:eventData xsi:nil="true"/> 32450 </xdw:taskEvent> 32451 <xdw:taskEvent> 32452 <xdw:id>2</xdw:id> 32453 <xdw:eventTime>2014-06-13T17:26:47.572+02:00</xdw:eventTime> 32454 <xdw:identifier>task_1#2</xdw:identifier> 32455 <xdw:eventType>complete</xdw:eventType> 32456 <xdw:status>COMPLETED</xdw:status> 32457 <xdw:eventData xsi:nil="true"/> 32458 </xdw:taskEvent> 32459 </xdw:taskEventHistory> 32460 </xdw:XDWTask> 32461 <xdw:XDWTask> 32462 <xdw:taskData> 32463 <ws-ht:taskDetails> 32464 <ws-ht:id>task_2</ws-ht:id> 32465 <ws-ht:taskType>ttype</ws-ht:taskType> 32466 <ws-ht:name>tname_2</ws-ht:name> 32467 <ws-ht:status>COMPLETED</ws-ht:status> 32468 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32469 <ws-ht:createdTime>2014-06-13T17:26:48.851+02:00</ws-ht:createdTime> 32470 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32471 <ws-ht:lastModifiedTime>2014-06-13T17:26:53.5+02:00</ws-ht:lastModifiedTime> 32472 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32473 </ws-ht:taskDetails> 32474 <ws-ht:description>Undocumented task</ws-ht:description> 32475 <ws-ht:input/> 32476 <ws-ht:output> 32477 <ws-ht:part name="documentReference"> 32478 <ws-ht:attachment> 32479 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:identifier> 32480 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-002</ws-ht:name> 32481 <ws-ht:accessType>RLUS</ws-ht:accessType> 32482 <ws-ht:contentType>application/xml</ws-ht:contentType> 32483 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 32484 <ws-ht:attachedTime>2014-06-13T17:26:52.06+02:00</ws-ht:attachedTime> 32485 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 32486 </ws-ht:attachment> 32487 </ws-ht:part> 32488 </ws-ht:output> 32489 </xdw:taskData> 32490 <xdw:taskEventHistory> 32491 <xdw:taskEvent> 32492 <xdw:id>1</xdw:id> 32493 <xdw:eventTime>2014-06-13T17:26:48.851+02:00</xdw:eventTime> 32494 <xdw:identifier>task_2#1</xdw:identifier> 32495 <xdw:eventType>create</xdw:eventType> 32496 <xdw:status>READY</xdw:status> 32497 <xdw:eventData xsi:nil="true"/> 32498 </xdw:taskEvent> 32499 <xdw:taskEvent> 32500 <xdw:id>2</xdw:id> 32501 <xdw:eventTime>2014-06-13T17:26:53.5+02:00</xdw:eventTime> 32502 <xdw:identifier>task_2#2</xdw:identifier> 32503 <xdw:eventType>complete</xdw:eventType> 32504 <xdw:status>COMPLETED</xdw:status> 32505 <xdw:eventData xsi:nil="true"/> 32506 </xdw:taskEvent> 32507 </xdw:taskEventHistory> 32508 </xdw:XDWTask> 32509 <xdw:XDWTask> 32510 <xdw:taskData> 32511 <ws-ht:taskDetails> 32512 <ws-ht:id>task_3</ws-ht:id> 32513 <ws-ht:taskType>ttype</ws-ht:taskType> 32514 <ws-ht:name>tname_3</ws-ht:name> 32515 <ws-ht:status>COMPLETED</ws-ht:status> 32516 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32517 <ws-ht:createdTime>2014-06-13T17:26:54.979+02:00</ws-ht:createdTime> 32518 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32519 <ws-ht:lastModifiedTime>2014-06-13T17:26:59.524+02:00</ws-ht:lastModifiedTime> 32520 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32521 </ws-ht:taskDetails> 32522 <ws-ht:description>Undocumented task</ws-ht:description> 32523 <ws-ht:input/> 32524 <ws-ht:output> 32525 <ws-ht:part name="documentReference"> 32526 <ws-ht:attachment> 32527 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:identifier> 32528 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-003</ws-ht:name> 32529 <ws-ht:accessType>RLUS</ws-ht:accessType> 32530 <ws-ht:contentType>application/xml</ws-ht:contentType> 32531 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 32532 <ws-ht:attachedTime>2014-06-13T17:26:58.104+02:00</ws-ht:attachedTime> 32533 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 32534 </ws-ht:attachment> 32535 </ws-ht:part> 32536 </ws-ht:output> 32537 </xdw:taskData> 32538 <xdw:taskEventHistory> 32539 <xdw:taskEvent> 32540 <xdw:id>1</xdw:id> 32541 <xdw:eventTime>2014-06-13T17:26:54.979+02:00</xdw:eventTime> 32542 <xdw:identifier>task_3#1</xdw:identifier> 32543 <xdw:eventType>create</xdw:eventType> 32544 <xdw:status>READY</xdw:status> 32545 <xdw:eventData xsi:nil="true"/> 32546 </xdw:taskEvent> 32547 <xdw:taskEvent> 32548 <xdw:id>2</xdw:id> 32549 <xdw:eventTime>2014-06-13T17:26:59.524+02:00</xdw:eventTime> 32550 <xdw:identifier>task_3#2</xdw:identifier> 32551 <xdw:eventType>complete</xdw:eventType> 32552 <xdw:status>COMPLETED</xdw:status> 32553 <xdw:eventData xsi:nil="true"/> 32554 </xdw:taskEvent> 32555 </xdw:taskEventHistory> 32556 </xdw:XDWTask> 32557 <xdw:XDWTask> 32558 <xdw:taskData> 32559 <ws-ht:taskDetails> 32560 <ws-ht:id>task_4</ws-ht:id> 32561 <ws-ht:taskType>ttype</ws-ht:taskType> 32562 <ws-ht:name>tname_4</ws-ht:name> 32563 <ws-ht:status>COMPLETED</ws-ht:status> 32564 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32565 <ws-ht:createdTime>2014-06-13T17:27:01.491+02:00</ws-ht:createdTime> 32566 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32567 <ws-ht:lastModifiedTime>2014-06-13T17:27:06.101+02:00</ws-ht:lastModifiedTime> 32568 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32569 </ws-ht:taskDetails> 32570 <ws-ht:description>Undocumented task</ws-ht:description> 32571 <ws-ht:input/> 32572 <ws-ht:output> 32573 <ws-ht:part name="documentReference"> 32574 <ws-ht:attachment> 32575 <ws-ht:identifier>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:identifier> 32576 <ws-ht:name>divjrus7-f34b-431e-835a-a897c0e5-004</ws-ht:name> 32577 <ws-ht:accessType>RLUS</ws-ht:accessType> 32578 <ws-ht:contentType>application/xml</ws-ht:contentType> 32579 <ws-ht:contentCategory>application/xml</ws-ht:contentCategory> 32580 <ws-ht:attachedTime>2014-06-13T17:27:04.874+02:00</ws-ht:attachedTime> 32581 <ws-ht:attachedBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:attachedBy> 32582 </ws-ht:attachment> 32583 </ws-ht:part> 32584 </ws-ht:output> 32585 </xdw:taskData> 32586 <xdw:taskEventHistory> 32587 <xdw:taskEvent> 32588 <xdw:id>1</xdw:id> 32589 <xdw:eventTime>2014-06-13T17:27:01.491+02:00</xdw:eventTime> 32590 <xdw:identifier>task_4#1</xdw:identifier> 32591 <xdw:eventType>create</xdw:eventType> 32592 <xdw:status>READY</xdw:status> 32593 <xdw:eventData xsi:nil="true"/> 32594 </xdw:taskEvent> 32595 <xdw:taskEvent> 32596 <xdw:id>2</xdw:id> 32597 <xdw:eventTime>2014-06-13T17:27:06.101+02:00</xdw:eventTime> 32598 <xdw:identifier>task_4#2</xdw:identifier> 32599 <xdw:eventType>complete</xdw:eventType> 32600 <xdw:status>COMPLETED</xdw:status> 32601 <xdw:eventData xsi:nil="true"/> 32602 </xdw:taskEvent> 32603 </xdw:taskEventHistory> 32604 </xdw:XDWTask> 32605 <xdw:XDWTask> 32606 <xdw:taskData> 32607 <ws-ht:taskDetails> 32608 <ws-ht:id>task_5</ws-ht:id> 32609 <ws-ht:taskType>ttype</ws-ht:taskType> 32610 <ws-ht:name>tname_5</ws-ht:name> 32611 <ws-ht:status>COMPLETED</ws-ht:status> 32612 <ws-ht:actualOwner>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:actualOwner> 32613 <ws-ht:createdTime>2014-06-13T17:27:12.14+02:00</ws-ht:createdTime> 32614 <ws-ht:createdBy>1234e645-0c3a-40e0-88c1-76af81c6d732</ws-ht:createdBy> 32615 <ws-ht:lastModifiedTime>2014-06-13T17:27:12.14+02:00</ws-ht:lastModifiedTime> 32616 <ws-ht:renderingMethodExists>false</ws-ht:renderingMethodExists> 32617 </ws-ht:taskDetails> 32618 <ws-ht:description>Undocumented task</ws-ht:description> 32619 <ws-ht:input/> 32620 <ws-ht:output/> 32621 </xdw:taskData> 32622 <xdw:taskEventHistory> 32623 <xdw:taskEvent> 32624 <xdw:id>1</xdw:id> 32625 <xdw:eventTime>2014-06-13T17:27:12.14+02:00</xdw:eventTime> 32626 <xdw:identifier>task_5#1</xdw:identifier> 32627 <xdw:eventType>complete</xdw:eventType> 32628 <xdw:status>COMPLETED</xdw:status> 32629 <xdw:eventData xsi:nil="true"/> 32630 </xdw:taskEvent> 32631 </xdw:taskEventHistory> 32632 </xdw:XDWTask> 32633 </xdw:TaskList> 32634 </xdw:XDW.WorkflowDocument> 32635 <rlustypes:RLUSPutRequestSrcStruct xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 32636 <rlustypes:RLUSsemantic-signifierName>xdw</rlustypes:RLUSsemantic-signifierName> 32637 <rlustypes:SecurityContext> 32638 <rlustypes:SourceIdentity identityName="DEDALUS_XDW_ENGINE"/> 32639 </rlustypes:SecurityContext> 32640 <rlustypes:CBRContext> 32641 <rlustypes:CBRName>Dedalus XDW Engine</rlustypes:CBRName> 32642 <rlustypes:NetworkName>localhost</rlustypes:NetworkName> 32643 <rlustypes:NetworkAddress>127.0.0.1</rlustypes:NetworkAddress> 32644 </rlustypes:CBRContext> 32645 </rlustypes:RLUSPutRequestSrcStruct> 32646 <writeCommandEnum>UPDATE</writeCommandEnum> 32647 </PutRequest> 32648 </soap:Body> 32649 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="355"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="355"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 32650 <soapenv:Header/> 32651 <soapenv:Body> 32652 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 32653 <rlustypes:success>true</rlustypes:success> 32654 <rlustypes:message/> 32655 </rlustypes:RLUSStatusCode> 32656 </soapenv:Body> 32657 </soapenv:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>10.0.0.9</ip><host>10.0.0.9</host><port>33416</port></sender><receiver><ip>10.0.0.9</ip><host>10.0.0.9</host><port>6000</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://10.0.0.9:6000/midas/rlus/query/xdw"><headers><header key="Host" value="10.0.0.9:6000"/><header key="Content-Length" value="3499"/><header key="SOAPAction" value="urn:list"/><header key="User-Agent" value="sax Java/1.7.0"/><header key="Content-Type" value="text/xml"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/><header key="Connection" value="keep-alive"/></headers><content type="text/xml" length="3499"><data><soap:Envelope xmlns:http="http://expath.org/ns/http-client" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 32658 <soap:Header/> 32659 <soap:Body> 32660 <ListRequest xmlns="urn:dedalus:rlus:xdw:types"> 32661 <rlustypes:RLUSSearchStruct xmlns:rlusexp="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes" semantic-signifiername="xdw"> 32662 <rlustypes:searchByCriteria> 32663 <rlustypes:FilterCriteria> 32664 <rlustypes:Expression> 32665 <rlusexp:BinaryExpression> 32666 <rlusexp:BinaryTerm text="#document.id.root" type="Text"/> 32667 <rlusexp:Operator type="EqualTo"/> 32668 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.4" type="Text"/> 32669 </rlusexp:BinaryExpression> 32670 <rlusexp:Operator type="And"/> 32671 <rlusexp:BinaryExpression> 32672 <rlusexp:BinaryExpression> 32673 <rlusexp:BinaryTerm text="#patient.id" type="Text"/> 32674 <rlusexp:Operator type="EqualTo"/> 32675 <rlusexp:BinaryTerm text="8d1ddf03-817a-4a95-8845-e9caa4ba0348" type="Text"/> 32676 </rlusexp:BinaryExpression> 32677 <rlusexp:Operator type="And"/> 32678 <rlusexp:BinaryExpression> 32679 <rlusexp:BinaryExpression> 32680 <rlusexp:BinaryTerm text="#document.status" type="Text"/> 32681 <rlusexp:Operator type="EqualTo"/> 32682 <rlusexp:BinaryTerm text="OPEN" type="Text"/> 32683 </rlusexp:BinaryExpression> 32684 <rlusexp:Operator type="And"/> 32685 <rlusexp:BinaryExpression> 32686 <rlusexp:BinaryExpression> 32687 <rlusexp:BinaryTerm text="#document.author.id.root" type="Text"/> 32688 <rlusexp:Operator type="EqualTo"/> 32689 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.2" type="Text"/> 32690 </rlusexp:BinaryExpression> 32691 <rlusexp:Operator type="And"/> 32692 <rlusexp:BinaryExpression> 32693 <rlusexp:BinaryTerm text="#patient.id.root" type="Text"/> 32694 <rlusexp:Operator type="EqualTo"/> 32695 <rlusexp:BinaryTerm text="2.16.840.1.113883.2.9.3.12.4.1" type="Text"/> 32696 </rlusexp:BinaryExpression> 32697 </rlusexp:BinaryExpression> 32698 </rlusexp:BinaryExpression> 32699 </rlusexp:BinaryExpression> 32700 </rlustypes:Expression> 32701 </rlustypes:FilterCriteria> 32702 <rlustypes:SearchAttributes> 32703 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:id/@root" qualifier="#document.id.root"/> 32704 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:patient/xdw:id/@extension" qualifier="#patient.id"/> 32705 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:workflowStatus/text()" qualifier="#document.status"/> 32706 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:author/xdw:assignedAuthor/*:id/@root" qualifier="#document.author.id.root"/> 32707 <rlustypes:Field name="xdw/xdw:XDW.WorkflowDocument/xdw:patient/xdw:id/@root" qualifier="#patient.id.root"/> 32708 </rlustypes:SearchAttributes> 32709 </rlustypes:searchByCriteria> 32710 </rlustypes:RLUSSearchStruct> 32711 <maxResultStreams>1</maxResultStreams> 32712 <previousResultID>-1</previousResultID> 32713 </ListRequest> 32714 </soap:Body> 32715 </soap:Envelope></data></content></request><response status="200"><headers><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Jetty(8.1.11.v20130520)"/><header key="Content-Length" value="511"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="511"><data><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 32716 <soapenv:Header/> 32717 <soapenv:Body> 32718 <ListResponse xmlns="urn:dedalus:rlus:xdw:types"> 32719 <rlustypes:RLUSStatusCode xmlns:rlustypes="http://www.omg.org/spec/RLUS/201212/RLUStypes"> 32720 <rlustypes:success>false</rlustypes:success> 32721 <rlustypes:message>No results found!</rlustypes:message> 32722 </rlustypes:RLUSStatusCode> 12379 <resultID>1</resultID> 32723 12380 <finishedFlag>0</finishedFlag> 32724 12381 </ListResponse> 32725 12382 </soapenv:Body> 32726 </soapenv:Envelope></data></content></response></httpExchange> 32727 </session> 12383 </soapenv:Envelope></data></content></response></httpExchange></session> -
trunk/autoquest-plugin-uml-test/src/test/resources/ita_model.uml
r1926 r1927 13 13 <ownedParameter xmi:type="uml:Parameter" xmi:id="_ov6xYMZjEeSM37Q-L6-vug" name="purchaseOrderConfirmationXML" type="_zUagUMZiEeSM37Q-L6-vug"/> 14 14 </ownedOperation> 15 <ownedOperation xmi:type="uml:Operation" xmi:id="_vgWjYMZjEeSM37Q-L6-vug" name=" FinalPurchaseOrderNotification">15 <ownedOperation xmi:type="uml:Operation" xmi:id="_vgWjYMZjEeSM37Q-L6-vug" name="finalPurchaseOrderStatusNotification"> 16 16 <ownedParameter xmi:type="uml:Parameter" xmi:id="_yh9TMMZjEeSM37Q-L6-vug" name="finalPurchaseOrderNotificationXML" type="_zUagUMZiEeSM37Q-L6-vug"/> 17 17 </ownedOperation> 18 <ownedOperation xmi:type="uml:Operation" xmi:id="_0vorsMZjEeSM37Q-L6-vug" name=" InstrutionToReceive">18 <ownedOperation xmi:type="uml:Operation" xmi:id="_0vorsMZjEeSM37Q-L6-vug" name="instrutionToReceive"> 19 19 <ownedParameter xmi:type="uml:Parameter" xmi:id="_26sOAMZjEeSM37Q-L6-vug" name="warehousingInboundInstructionXML" type="_BKBlQMZjEeSM37Q-L6-vug"/> 20 20 </ownedOperation> 21 <ownedOperation xmi:type="uml:Operation" xmi:id="_5DzPkMZjEeSM37Q-L6-vug" name=" DropOffRequest">21 <ownedOperation xmi:type="uml:Operation" xmi:id="_5DzPkMZjEeSM37Q-L6-vug" name="dropOffRequest"> 22 22 <ownedParameter xmi:type="uml:Parameter" xmi:id="_7KdaEMZjEeSM37Q-L6-vug" name="transportPickUpDropOffRequestXML" type="_J2tokMZjEeSM37Q-L6-vug"/> 23 23 </ownedOperation> 24 <ownedOperation xmi:type="uml:Operation" xmi:id="_8tvxwMZjEeSM37Q-L6-vug" name=" DepatchNotificationInbound">24 <ownedOperation xmi:type="uml:Operation" xmi:id="_8tvxwMZjEeSM37Q-L6-vug" name="depatchNotificationInbound"> 25 25 <ownedParameter xmi:type="uml:Parameter" xmi:id="__QcYAMZjEeSM37Q-L6-vug" name="despatchAdviceXML" type="_52mp4MGfEeSgpOzAzVFJPA"/> 26 26 </ownedOperation> 27 <ownedOperation xmi:type="uml:Operation" xmi:id="_BAs0sMZkEeSM37Q-L6-vug" name=" InboudDeliveryStatus">27 <ownedOperation xmi:type="uml:Operation" xmi:id="_BAs0sMZkEeSM37Q-L6-vug" name="inboudDeliveryStatus"> 28 28 <ownedParameter xmi:type="uml:Parameter" xmi:id="_DKsnEMZkEeSM37Q-L6-vug" name="receivingAdviceXML" type="_byn0gMZjEeSM37Q-L6-vug"/> 29 29 </ownedOperation> 30 <ownedOperation xmi:type="uml:Operation" xmi:id="_E_lsIMZkEeSM37Q-L6-vug" name=" ProductSold">30 <ownedOperation xmi:type="uml:Operation" xmi:id="_E_lsIMZkEeSM37Q-L6-vug" name="productSold"> 31 31 <ownedParameter xmi:type="uml:Parameter" xmi:id="_HQvPYMZkEeSM37Q-L6-vug" name="idProduct"> 32 32 <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/> … … 38 38 </packagedElement> 39 39 <packagedElement xmi:type="uml:Interface" xmi:id="_v3NckLEMEeSnYZTmeJXZKg" name="WarehouseInterface"> 40 <ownedOperation xmi:type="uml:Operation" xmi:id="_MJZf0LENEeSnYZTmeJXZKg" name=" InstrutionToReceive">40 <ownedOperation xmi:type="uml:Operation" xmi:id="_MJZf0LENEeSnYZTmeJXZKg" name="instrutionToReceive"> 41 41 <ownedParameter xmi:type="uml:Parameter" xmi:id="_1yASMMZkEeSM37Q-L6-vug" name="warehousingInboundInstructionXML" type="_BKBlQMZjEeSM37Q-L6-vug"/> 42 42 </ownedOperation> 43 <ownedOperation xmi:type="uml:Operation" xmi:id="_59PjkMZkEeSM37Q-L6-vug" name=" DepatchNotificationInbound">43 <ownedOperation xmi:type="uml:Operation" xmi:id="_59PjkMZkEeSM37Q-L6-vug" name="depatchNotificationInbound"> 44 44 <ownedParameter xmi:type="uml:Parameter" xmi:id="_8A3BIMZkEeSM37Q-L6-vug" name="despatchAdviceXML" type="_52mp4MGfEeSgpOzAzVFJPA"/> 45 45 </ownedOperation> 46 <ownedOperation xmi:type="uml:Operation" xmi:id="_9owMAMZkEeSM37Q-L6-vug" name=" InboudDeliveryStatus">46 <ownedOperation xmi:type="uml:Operation" xmi:id="_9owMAMZkEeSM37Q-L6-vug" name="inboudDeliveryStatus"> 47 47 <ownedParameter xmi:type="uml:Parameter" xmi:id="__8kowMZkEeSM37Q-L6-vug" name="receivingAdviceXML" type="_byn0gMZjEeSM37Q-L6-vug"/> 48 48 </ownedOperation> 49 <ownedOperation xmi:type="uml:Operation" xmi:id="_Bcs-wMZlEeSM37Q-L6-vug" name=" OutboundDeliveryStatus">49 <ownedOperation xmi:type="uml:Operation" xmi:id="_Bcs-wMZlEeSM37Q-L6-vug" name="outboundDeliveryStatus"> 50 50 <ownedParameter xmi:type="uml:Parameter" xmi:id="_DqPNUMZlEeSM37Q-L6-vug" name="warehousingOutboundNotificationXML" type="_S6YMAMZkEeSM37Q-L6-vug"/> 51 51 </ownedOperation> 52 <ownedOperation xmi:type="uml:Operation" xmi:id="_Fpvm8MZlEeSM37Q-L6-vug" name=" InventoryStatusInstrution">52 <ownedOperation xmi:type="uml:Operation" xmi:id="_Fpvm8MZlEeSM37Q-L6-vug" name="inventoryStatusInstruction"> 53 53 <ownedParameter xmi:type="uml:Parameter" xmi:id="_H0BtMMZlEeSM37Q-L6-vug" name="inventoryReportStatusXML" type="_a0lCcMZkEeSM37Q-L6-vug"/> 54 54 </ownedOperation> 55 <ownedOperation xmi:type="uml:Operation" xmi:id="_JqanEMZlEeSM37Q-L6-vug" name=" ReceiptNotificationOutBound">55 <ownedOperation xmi:type="uml:Operation" xmi:id="_JqanEMZlEeSM37Q-L6-vug" name="receiptNotificationOutBound"> 56 56 <ownedParameter xmi:type="uml:Parameter" xmi:id="_L4tDkMZlEeSM37Q-L6-vug" name="receivingAdviceXML" type="_VuelIMGfEeSgpOzAzVFJPA"/> 57 57 </ownedOperation> 58 <ownedOperation xmi:type="uml:Operation" xmi:id="_NFql8MZlEeSM37Q-L6-vug" name=" InstructionToDespatch">58 <ownedOperation xmi:type="uml:Operation" xmi:id="_NFql8MZlEeSM37Q-L6-vug" name="instructionToDespatch"> 59 59 <ownedParameter xmi:type="uml:Parameter" xmi:id="_PDEt0MZlEeSM37Q-L6-vug" name="warehousingOutboundInstructionXML" type="_gxWi4MZkEeSM37Q-L6-vug"/> 60 60 </ownedOperation> 61 <ownedOperation xmi:type="uml:Operation" xmi:id="_QhrZ0MZlEeSM37Q-L6-vug" name=" PickUpRequest">61 <ownedOperation xmi:type="uml:Operation" xmi:id="_QhrZ0MZlEeSM37Q-L6-vug" name="pickUpRequest"> 62 62 <ownedParameter xmi:type="uml:Parameter" xmi:id="_TIxX4MZlEeSM37Q-L6-vug" name="transportPickUpDropOffRequestXML" type="_J2tokMZjEeSM37Q-L6-vug"/> 63 63 </ownedOperation> 64 64 </packagedElement> 65 65 <packagedElement xmi:type="uml:Interface" xmi:id="_wimi8LEMEeSnYZTmeJXZKg" name="TransportInterface"> 66 <ownedOperation xmi:type="uml:Operation" xmi:id="_CMyFsLENEeSnYZTmeJXZKg" name=" DropOffConfirmationRequest">66 <ownedOperation xmi:type="uml:Operation" xmi:id="_CMyFsLENEeSnYZTmeJXZKg" name="dropOffConfirmation"> 67 67 <ownedParameter xmi:type="uml:Parameter" xmi:id="_G9ATcLENEeSnYZTmeJXZKg" name="TransportPickUpDropOffConfirmationXML" type="_udxaIMZlEeSM37Q-L6-vug"/> 68 68 </ownedOperation> 69 <ownedOperation xmi:type="uml:Operation" xmi:id="_OQV-MLENEeSnYZTmeJXZKg" name=" PickUpConfirmationRequest">69 <ownedOperation xmi:type="uml:Operation" xmi:id="_OQV-MLENEeSnYZTmeJXZKg" name="pickUpConfirmation"> 70 70 <ownedParameter xmi:type="uml:Parameter" xmi:id="_OQV-MbENEeSnYZTmeJXZKg" name="transportPickUpDropOffConfirmationXML" type="_udxaIMZlEeSM37Q-L6-vug"/> 71 71 </ownedOperation> 72 <ownedOperation xmi:type="uml:Operation" xmi:id="_YGXBELENEeSnYZTmeJXZKg" name="transportInstruction Request">72 <ownedOperation xmi:type="uml:Operation" xmi:id="_YGXBELENEeSnYZTmeJXZKg" name="transportInstruction"> 73 73 <ownedParameter xmi:type="uml:Parameter" xmi:id="_bH9J0LENEeSnYZTmeJXZKg" name="transportInstructionXML" type="_lF2ogMZlEeSM37Q-L6-vug"/> 74 74 </ownedOperation> 75 <ownedOperation xmi:type="uml:Operation" xmi:id="_7U8ykMcCEeSZe4KIZH8Y5w" name=" TransportStatusRequest">75 <ownedOperation xmi:type="uml:Operation" xmi:id="_7U8ykMcCEeSZe4KIZH8Y5w" name="transportStatusRequest"> 76 76 <ownedParameter xmi:type="uml:Parameter" xmi:id="_-h5PsMcCEeSZe4KIZH8Y5w" name="transportStatusRequestXML" type="_2q8P4MZlEeSM37Q-L6-vug"/> 77 77 <ownedParameter xmi:type="uml:Parameter" xmi:id="_BaVccMcDEeSZe4KIZH8Y5w" name="TransportStatusResponse" type="_mYGNUMGgEeSgpOzAzVFJPA" direction="out"/> … … 79 79 </packagedElement> 80 80 <packagedElement xmi:type="uml:Interface" xmi:id="_xI2DkLEMEeSnYZTmeJXZKg" name="MaterialSupplierInterface"> 81 <ownedOperation xmi:type="uml:Operation" xmi:id="_zLZgsMGgEeSgpOzAzVFJPA" name=" ReceiptNotificationInbound">81 <ownedOperation xmi:type="uml:Operation" xmi:id="_zLZgsMGgEeSgpOzAzVFJPA" name="receiptNotificationInbound"> 82 82 <ownedParameter xmi:type="uml:Parameter" xmi:id="_8bhBMMGgEeSgpOzAzVFJPA" name="receivingAdviceXML" type="_VuelIMGfEeSgpOzAzVFJPA"/> 83 83 </ownedOperation> 84 <ownedOperation xmi:type="uml:Operation" xmi:id="_AgddUMGhEeSgpOzAzVFJPA" name=" InventoryReport">84 <ownedOperation xmi:type="uml:Operation" xmi:id="_AgddUMGhEeSgpOzAzVFJPA" name="inventoryReport"> 85 85 <ownedParameter xmi:type="uml:Parameter" xmi:id="_Dzy2UMGhEeSgpOzAzVFJPA" name="inventoryActivityXML" type="_w4wlIMGfEeSgpOzAzVFJPA"/> 86 86 </ownedOperation> 87 <ownedOperation xmi:type="uml:Operation" xmi:id="_FHJUkMGhEeSgpOzAzVFJPA" name=" DespatchNotificationOutbound">87 <ownedOperation xmi:type="uml:Operation" xmi:id="_FHJUkMGhEeSgpOzAzVFJPA" name="despatchNotificationOutbound"> 88 88 <ownedParameter xmi:type="uml:Parameter" xmi:id="_IEQl8MGhEeSgpOzAzVFJPA" name="DespatchAdviceXML" type="_52mp4MGfEeSgpOzAzVFJPA"/> 89 89 </ownedOperation> 90 <ownedOperation xmi:type="uml:Operation" xmi:id="_JZ_p0MGhEeSgpOzAzVFJPA" name=" PurchaseOrder">90 <ownedOperation xmi:type="uml:Operation" xmi:id="_JZ_p0MGhEeSgpOzAzVFJPA" name="purchaseOrder"> 91 91 <ownedParameter xmi:type="uml:Parameter" xmi:id="_MQ0F8MGhEeSgpOzAzVFJPA" name="purchaseOrderXML" type="_YsJasMGgEeSgpOzAzVFJPA"/> 92 92 </ownedOperation> 93 <ownedOperation xmi:type="uml:Operation" xmi:id="_Nt_OkMGhEeSgpOzAzVFJPA" name=" TransportInstructionConfirmation">93 <ownedOperation xmi:type="uml:Operation" xmi:id="_Nt_OkMGhEeSgpOzAzVFJPA" name="transportInstructionConfirmation"> 94 94 <ownedParameter xmi:type="uml:Parameter" xmi:id="_QGq9MMGhEeSgpOzAzVFJPA" name="transportInstructionResponseXML" type="_ePz3kMGgEeSgpOzAzVFJPA"/> 95 95 </ownedOperation> 96 <ownedOperation xmi:type="uml:Operation" xmi:id="_RnLtsMGhEeSgpOzAzVFJPA" name=" TransporStatusNotification">96 <ownedOperation xmi:type="uml:Operation" xmi:id="_RnLtsMGhEeSgpOzAzVFJPA" name="transporStatusNotification"> 97 97 <ownedParameter xmi:type="uml:Parameter" xmi:id="_UFNPUMGhEeSgpOzAzVFJPA" name="transportStatusNotificationXML" type="_mYGNUMGgEeSgpOzAzVFJPA"/> 98 98 </ownedOperation> 99 <ownedOperation xmi:type="uml:Operation" xmi:id="_Wr1TUMGhEeSgpOzAzVFJPA" name=" FinalTransportStatusNotification">99 <ownedOperation xmi:type="uml:Operation" xmi:id="_Wr1TUMGhEeSgpOzAzVFJPA" name="finalTransportStatusNotification"> 100 100 <ownedParameter xmi:type="uml:Parameter" xmi:id="_ZCawMMGhEeSgpOzAzVFJPA" name="transportStatusNotificationXML" type="_mYGNUMGgEeSgpOzAzVFJPA"/> 101 101 </ownedOperation> … … 110 110 </ownedAttribute> 111 111 </packagedElement> 112 <packagedElement xmi:type="uml:Component" xmi:id="_tXV18LEOEeSnYZTmeJXZKg" clientDependency="_ 2NfKoMfgEeSpzN7smHOlWA" name="PointOfSalePortType"/>112 <packagedElement xmi:type="uml:Component" xmi:id="_tXV18LEOEeSnYZTmeJXZKg" clientDependency="_siE_kM1iEeSGIJvkDQlGlw" name="PointOfSalePortType"/> 113 113 <packagedElement xmi:type="uml:Component" xmi:id="_eKs3MLEPEeSnYZTmeJXZKg" name="TransportService"> 114 114 <ownedAttribute xmi:type="uml:Port" xmi:id="_944gMLEPEeSnYZTmeJXZKg" name="transportPort" type="_o9UFMLEPEeSnYZTmeJXZKg" aggregation="composite"/> 115 115 </packagedElement> 116 <packagedElement xmi:type="uml:Component" xmi:id="_o9UFMLEPEeSnYZTmeJXZKg" clientDependency="_ 2kn4QMfgEeSpzN7smHOlWA" name="TransportPortType"/>117 <packagedElement xmi:type="uml:Component" xmi:id="_rU8q8LEPEeSnYZTmeJXZKg" clientDependency="_ 29TeAMfgEeSpzN7smHOlWA" name="WarehousePortType"/>118 <packagedElement xmi:type="uml:Component" xmi:id="_tDepULEPEeSnYZTmeJXZKg" clientDependency="_ 3fMDEMfgEeSpzN7smHOlWA" name="MaterialSupplierPortType"/>116 <packagedElement xmi:type="uml:Component" xmi:id="_o9UFMLEPEeSnYZTmeJXZKg" clientDependency="_0IL1UM1iEeSGIJvkDQlGlw" name="TransportPortType"/> 117 <packagedElement xmi:type="uml:Component" xmi:id="_rU8q8LEPEeSnYZTmeJXZKg" clientDependency="_05fWcM1iEeSGIJvkDQlGlw" name="WarehousePortType"/> 118 <packagedElement xmi:type="uml:Component" xmi:id="_tDepULEPEeSnYZTmeJXZKg" clientDependency="_186iUM1iEeSGIJvkDQlGlw" name="MaterialSupplierPortType"/> 119 119 <packagedElement xmi:type="uml:Component" xmi:id="_4T50sLEPEeSnYZTmeJXZKg" name="WarehouseService"> 120 120 <ownedAttribute xmi:type="uml:Port" xmi:id="_QSCo0LEQEeSnYZTmeJXZKg" name="warehousePort" type="_rU8q8LEPEeSnYZTmeJXZKg" aggregation="composite"/> … … 170 170 </end> 171 171 </ownedConnector> 172 <ownedOperation xmi:type="uml:Operation" xmi:id="_k-fb8LHPEeS0dumc9hw2vw" name="functional_TestCase1"/> 172 173 </packagedElement> 173 174 <packagedElement xmi:type="uml:Component" xmi:id="_hwwbELETEeSnYZTmeJXZKg" name="Logistics_Environment"> … … 219 220 <subvertex xmi:type="uml:State" xmi:id="_FwmnMMcFEeSZe4KIZH8Y5w" name="StatePickUpDropOffConfirmed"/> 220 221 </region> 222 </packagedElement> 223 <packagedElement xmi:type="uml:Interaction" xmi:id="_-N0LILHPEeS0dumc9hw2vw" name="Transport"> 224 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_mr5HEMcGEeSZe4KIZH8Y5w" name="MessageSendTransportInstruction" message="_mrUfUMcGEeSZe4KIZH8Y5w"/> 225 <fragment xmi:type="uml:MessageOccurrenceSpecification" xmi:id="_mr5HEccGEeSZe4KIZH8Y5w" name="MessageRecvTransportInstruction" message="_mrUfUMcGEeSZe4KIZH8Y5w"/> 226 <fragment xmi:type="uml:CombinedFragment" xmi:id="_7POBMMcGEeSZe4KIZH8Y5w" name="isAccepted" covered="_Fd7iwLHQEeS0dumc9hw2vw _M52hwLHQEeS0dumc9hw2vw" interactionOperator="alt"> 227 <operand xmi:type="uml:InteractionOperand" xmi:id="_7Pyo8McGEeSZe4KIZH8Y5w" name="InteractionOperand" covered="_Fd7iwLHQEeS0dumc9hw2vw _M52hwLHQEeS0dumc9hw2vw"> 228 <guard xmi:type="uml:InteractionConstraint" xmi:id="_7P-2MMcGEeSZe4KIZH8Y5w" name=""> 229 <specification xmi:type="uml:LiteralString" xmi:id="_7P-2MccGEeSZe4KIZH8Y5w" value="undefined"/> 230 <maxint xmi:type="uml:LiteralInteger" xmi:id="_7P-2M8cGEeSZe4KIZH8Y5w" value="1"/> 231 <minint xmi:type="uml:LiteralInteger" xmi:id="_7P-2MscGEeSZe4KIZH8Y5w"/> 232 </guard> 233 </operand> 234 </fragment> 235 <lifeline xmi:type="uml:Lifeline" xmi:id="_Fd7iwLHQEeS0dumc9hw2vw" name="LifelineMaterialSupplier" represents="_LGETMLEQEeSnYZTmeJXZKg" coveredBy="_7POBMMcGEeSZe4KIZH8Y5w _7Pyo8McGEeSZe4KIZH8Y5w"/> 236 <lifeline xmi:type="uml:Lifeline" xmi:id="_M52hwLHQEeS0dumc9hw2vw" name="LifelineTransport" represents="_944gMLEPEeSnYZTmeJXZKg" coveredBy="_7POBMMcGEeSZe4KIZH8Y5w _7Pyo8McGEeSZe4KIZH8Y5w"/> 237 <message xmi:type="uml:Message" xmi:id="_mrUfUMcGEeSZe4KIZH8Y5w" name="TransportInstruction" connector="_ZMBvALEVEeSnYZTmeJXZKg" messageSort="asynchCall" receiveEvent="_mr5HEccGEeSZe4KIZH8Y5w" sendEvent="_mr5HEMcGEeSZe4KIZH8Y5w" signature="_YGXBELENEeSnYZTmeJXZKg"/> 221 238 </packagedElement> 222 239 <packagedElement xmi:type="uml:Actor" xmi:id="_jPjZ8MGeEeSgpOzAzVFJPA" name="MaterialSupplier"/> … … 467 484 <ownedAttribute xmi:type="uml:Property" xmi:id="_wgbOYMZlEeSM37Q-L6-vug" name="comments"> 468 485 <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/> 469 <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_cmyB8Mf7EeSpzN7smHOlWA"/>470 <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_cmypAMf7EeSpzN7smHOlWA" value="*"/>471 486 </ownedAttribute> 472 487 <ownedAttribute xmi:type="uml:Property" xmi:id="_wgbOYcZlEeSM37Q-L6-vug" name="accepted"> … … 490 505 <packagedElement xmi:type="uml:CallEvent" xmi:id="_Q2B48McEEeSZe4KIZH8Y5w" name="CallEventDropOffConfirmation" operation="_CMyFsLENEeSnYZTmeJXZKg"/> 491 506 <packagedElement xmi:type="uml:CallEvent" xmi:id="_RAaukMcFEeSZe4KIZH8Y5w" name="CallEventFinalTransportStatusNotification" operation="_Wr1TUMGhEeSgpOzAzVFJPA"/> 492 <packagedElement xmi:type="uml:InterfaceRealization" xmi:id="_ 2NfKoMfgEeSpzN7smHOlWA" name="Realization0" client="_tXV18LEOEeSnYZTmeJXZKg" supplier="__m-9kLELEeSnYZTmeJXZKg" contract="__m-9kLELEeSnYZTmeJXZKg"/>493 <packagedElement xmi:type="uml:InterfaceRealization" xmi:id="_ 2kn4QMfgEeSpzN7smHOlWA" name="Realization1" client="_o9UFMLEPEeSnYZTmeJXZKg" supplier="_wimi8LEMEeSnYZTmeJXZKg" contract="_wimi8LEMEeSnYZTmeJXZKg"/>494 <packagedElement xmi:type="uml:InterfaceRealization" xmi:id="_ 29TeAMfgEeSpzN7smHOlWA" name="Realization2" client="_rU8q8LEPEeSnYZTmeJXZKg" supplier="_v3NckLEMEeSnYZTmeJXZKg" contract="_v3NckLEMEeSnYZTmeJXZKg"/>495 <packagedElement xmi:type="uml:InterfaceRealization" xmi:id="_ 3fMDEMfgEeSpzN7smHOlWA" name="Realization3" client="_tDepULEPEeSnYZTmeJXZKg" supplier="_xI2DkLEMEeSnYZTmeJXZKg" contract="_xI2DkLEMEeSnYZTmeJXZKg"/>507 <packagedElement xmi:type="uml:InterfaceRealization" xmi:id="_siE_kM1iEeSGIJvkDQlGlw" name="Realization0" client="_tXV18LEOEeSnYZTmeJXZKg" supplier="__m-9kLELEeSnYZTmeJXZKg" contract="__m-9kLELEeSnYZTmeJXZKg"/> 508 <packagedElement xmi:type="uml:InterfaceRealization" xmi:id="_0IL1UM1iEeSGIJvkDQlGlw" name="Realization1" client="_o9UFMLEPEeSnYZTmeJXZKg" supplier="_wimi8LEMEeSnYZTmeJXZKg" contract="_wimi8LEMEeSnYZTmeJXZKg"/> 509 <packagedElement xmi:type="uml:InterfaceRealization" xmi:id="_05fWcM1iEeSGIJvkDQlGlw" name="Realization2" client="_rU8q8LEPEeSnYZTmeJXZKg" supplier="_v3NckLEMEeSnYZTmeJXZKg" contract="_v3NckLEMEeSnYZTmeJXZKg"/> 510 <packagedElement xmi:type="uml:InterfaceRealization" xmi:id="_186iUM1iEeSGIJvkDQlGlw" name="Realization3" client="_tDepULEPEeSnYZTmeJXZKg" supplier="_xI2DkLEMEeSnYZTmeJXZKg" contract="_xI2DkLEMEeSnYZTmeJXZKg"/> 496 511 <profileApplication xmi:type="uml:ProfileApplication" xmi:id="_Ca5hkLEKEeSnYZTmeJXZKg"> 497 512 <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_CbqWkLEKEeSnYZTmeJXZKg" source="http://www.eclipse.org/uml2/2.0.0/UML"> … … 519 534 <utp:SUT xmi:id="_LBHaYLETEeSnYZTmeJXZKg" base_Property="_HczmILETEeSnYZTmeJXZKg"/> 520 535 <utp:TestComponent xmi:id="_-93ZALEUEeSnYZTmeJXZKg" base_StructuredClassifier="_hwwbELETEeSnYZTmeJXZKg"/> 536 <utp:TestCase xmi:id="_qXb2kLHPEeS0dumc9hw2vw" base_Operation="_k-fb8LHPEeS0dumc9hw2vw"/> 521 537 </xmi:XMI> -
trunk/autoquest-plugin-uml-test/src/test/resources/ita_properties.prop
r1913 r1927 17 17 clientName.default = Logistics_Environment 18 18 19 test.context = LogisticsTestSuite 20 testcases.prefix = ubt 21 testcases.number = 10 22 testcases.minlenght = 1 23 testcases.maxlength = 100 24 -
trunk/autoquest-plugin-uml-test/src/test/resources/ita_usagejournal.log
r1908 r1927 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <session xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange" > 3 <httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>56755</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><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, 27 Feb 2015 11:27:02GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3130"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="BusinessUnitReferenceImplementationService">3 <httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51317</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:15 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3130"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="BusinessUnitReferenceImplementationService"> 4 4 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService?wsdl=1"></import> 5 5 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="BusinessUnitReferenceImplementationServicePortBinding" type="ns1:IITAMaterialSupplier"> 6 6 <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding> 7 <operation name="receiptNotificationInbound"> 8 <soap:operation soapAction=""></soap:operation> 9 <input> 10 <soap:body use="literal"></soap:body> 11 </input> 12 <output> 13 <soap:body use="literal"></soap:body> 14 </output> 15 </operation> 7 16 <operation name="despatchNotificationOutbound"> 8 17 <soap:operation soapAction=""></soap:operation> … … 15 24 </operation> 16 25 <operation name="transportInstructionConfirmation"> 17 <soap:operation soapAction=""></soap:operation>18 <input>19 <soap:body use="literal"></soap:body>20 </input>21 <output>22 <soap:body use="literal"></soap:body>23 </output>24 </operation>25 <operation name="receiptNotificationInbound">26 26 <soap:operation soapAction=""></soap:operation> 27 27 <input> … … 74 74 </port> 75 75 </service> 76 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>56755</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><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, 27 Feb 2015 11:27:03GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6088"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">76 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51317</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6088"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 77 77 <types> 78 78 <xsd:schema> … … 80 80 </xsd:schema> 81 81 </types> 82 <message name="receiptNotificationInbound"> 83 <part name="parameters" element="tns:receiptNotificationInbound"></part> 84 </message> 85 <message name="receiptNotificationInboundResponse"> 86 <part name="parameters" element="tns:receiptNotificationInboundResponse"></part> 87 </message> 82 88 <message name="despatchNotificationOutbound"> 83 89 <part name="parameters" element="tns:despatchNotificationOutbound"></part> … … 92 98 <part name="parameters" element="tns:transportInstructionConfirmationResponse"></part> 93 99 </message> 94 <message name="receiptNotificationInbound">95 <part name="parameters" element="tns:receiptNotificationInbound"></part>96 </message>97 <message name="receiptNotificationInboundResponse">98 <part name="parameters" element="tns:receiptNotificationInboundResponse"></part>99 </message>100 100 <message name="purchaseOrder"> 101 101 <part name="parameters" element="tns:purchaseOrder"></part> … … 123 123 </message> 124 124 <portType name="IITAMaterialSupplier"> 125 <operation name="receiptNotificationInbound"> 126 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest" message="tns:receiptNotificationInbound"></input> 127 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundResponse" message="tns:receiptNotificationInboundResponse"></output> 128 </operation> 125 129 <operation name="despatchNotificationOutbound"> 126 <input xmlns:ns 1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundRequest" message="tns:despatchNotificationOutbound"></input>127 <output xmlns:ns 2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundResponse" message="tns:despatchNotificationOutboundResponse"></output>130 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundRequest" message="tns:despatchNotificationOutbound"></input> 131 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundResponse" message="tns:despatchNotificationOutboundResponse"></output> 128 132 </operation> 129 133 <operation name="transportInstructionConfirmation"> 130 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest" message="tns:transportInstructionConfirmation"></input> 131 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationResponse" message="tns:transportInstructionConfirmationResponse"></output> 132 </operation> 133 <operation name="receiptNotificationInbound"> 134 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest" message="tns:receiptNotificationInbound"></input> 135 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundResponse" message="tns:receiptNotificationInboundResponse"></output> 134 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest" message="tns:transportInstructionConfirmation"></input> 135 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationResponse" message="tns:transportInstructionConfirmationResponse"></output> 136 136 </operation> 137 137 <operation name="purchaseOrder"> … … 152 152 </operation> 153 153 </portType> 154 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>55733</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><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, 27 Feb 2015 11:27:03GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3130"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="BusinessUnitReferenceImplementationService">154 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51318</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3130"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="BusinessUnitReferenceImplementationService"> 155 155 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService?wsdl=1"></import> 156 156 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="BusinessUnitReferenceImplementationServicePortBinding" type="ns1:IITAMaterialSupplier"> 157 157 <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding> 158 <operation name="receiptNotificationInbound"> 159 <soap:operation soapAction=""></soap:operation> 160 <input> 161 <soap:body use="literal"></soap:body> 162 </input> 163 <output> 164 <soap:body use="literal"></soap:body> 165 </output> 166 </operation> 158 167 <operation name="despatchNotificationOutbound"> 159 168 <soap:operation soapAction=""></soap:operation> … … 166 175 </operation> 167 176 <operation name="transportInstructionConfirmation"> 168 <soap:operation soapAction=""></soap:operation>169 <input>170 <soap:body use="literal"></soap:body>171 </input>172 <output>173 <soap:body use="literal"></soap:body>174 </output>175 </operation>176 <operation name="receiptNotificationInbound">177 177 <soap:operation soapAction=""></soap:operation> 178 178 <input> … … 225 225 </port> 226 226 </service> 227 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>55733</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><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, 27 Feb 2015 11:27:04GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6088"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">227 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51318</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6088"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 228 228 <types> 229 229 <xsd:schema> … … 231 231 </xsd:schema> 232 232 </types> 233 <message name="receiptNotificationInbound"> 234 <part name="parameters" element="tns:receiptNotificationInbound"></part> 235 </message> 236 <message name="receiptNotificationInboundResponse"> 237 <part name="parameters" element="tns:receiptNotificationInboundResponse"></part> 238 </message> 233 239 <message name="despatchNotificationOutbound"> 234 240 <part name="parameters" element="tns:despatchNotificationOutbound"></part> … … 243 249 <part name="parameters" element="tns:transportInstructionConfirmationResponse"></part> 244 250 </message> 245 <message name="receiptNotificationInbound">246 <part name="parameters" element="tns:receiptNotificationInbound"></part>247 </message>248 <message name="receiptNotificationInboundResponse">249 <part name="parameters" element="tns:receiptNotificationInboundResponse"></part>250 </message>251 251 <message name="purchaseOrder"> 252 252 <part name="parameters" element="tns:purchaseOrder"></part> … … 274 274 </message> 275 275 <portType name="IITAMaterialSupplier"> 276 <operation name="receiptNotificationInbound"> 277 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest" message="tns:receiptNotificationInbound"></input> 278 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundResponse" message="tns:receiptNotificationInboundResponse"></output> 279 </operation> 276 280 <operation name="despatchNotificationOutbound"> 277 <input xmlns:ns 1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundRequest" message="tns:despatchNotificationOutbound"></input>278 <output xmlns:ns 2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundResponse" message="tns:despatchNotificationOutboundResponse"></output>281 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundRequest" message="tns:despatchNotificationOutbound"></input> 282 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundResponse" message="tns:despatchNotificationOutboundResponse"></output> 279 283 </operation> 280 284 <operation name="transportInstructionConfirmation"> 281 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest" message="tns:transportInstructionConfirmation"></input> 282 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationResponse" message="tns:transportInstructionConfirmationResponse"></output> 283 </operation> 284 <operation name="receiptNotificationInbound"> 285 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest" message="tns:receiptNotificationInbound"></input> 286 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundResponse" message="tns:receiptNotificationInboundResponse"></output> 285 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest" message="tns:transportInstructionConfirmation"></input> 286 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationResponse" message="tns:transportInstructionConfirmationResponse"></output> 287 287 </operation> 288 288 <operation name="purchaseOrder"> … … 303 303 </operation> 304 304 </portType> 305 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>44183</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><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, 27 Feb 2015 11:27:04GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService">305 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51321</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService"> 306 306 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService?wsdl=1"></import> 307 307 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="WarehouseReferenceImplementationServicePortBinding" type="ns1:IITAWarehouse"> 308 308 <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding> 309 <operation name=" PickUpRequest">309 <operation name="pickUpRequest"> 310 310 <soap:operation soapAction=""></soap:operation> 311 311 <input> … … 385 385 </port> 386 386 </service> 387 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>44183</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><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, 27 Feb 2015 11:27:05GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">387 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51321</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 388 388 <types> 389 389 <xsd:schema> … … 391 391 </xsd:schema> 392 392 </types> 393 <message name=" PickUpRequest">394 <part name="parameters" element="tns: PickUpRequest"></part>395 </message> 396 <message name=" PickUpRequestResponse">397 <part name="parameters" element="tns: PickUpRequestResponse"></part>393 <message name="pickUpRequest"> 394 <part name="parameters" element="tns:pickUpRequest"></part> 395 </message> 396 <message name="pickUpRequestResponse"> 397 <part name="parameters" element="tns:pickUpRequestResponse"></part> 398 398 </message> 399 399 <message name="instrutionToReceive"> … … 440 440 </message> 441 441 <portType name="IITAWarehouse"> 442 <operation name=" PickUpRequest">443 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestRequest" message="tns:PickUpRequest"></input>444 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestResponse" message="tns:PickUpRequestResponse"></output>442 <operation name="pickUpRequest"> 443 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestRequest" message="tns:pickUpRequest"></input> 444 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestResponse" message="tns:pickUpRequestResponse"></output> 445 445 </operation> 446 446 <operation name="instrutionToReceive"> … … 473 473 </operation> 474 474 </portType> 475 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>58171</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><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, 27 Feb 2015 11:27:05GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService">475 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51323</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService"> 476 476 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService?wsdl=1"></import> 477 477 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="WarehouseReferenceImplementationServicePortBinding" type="ns1:IITAWarehouse"> 478 478 <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding> 479 <operation name=" PickUpRequest">479 <operation name="pickUpRequest"> 480 480 <soap:operation soapAction=""></soap:operation> 481 481 <input> … … 555 555 </port> 556 556 </service> 557 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>58171</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><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, 27 Feb 2015 11:27:05GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">557 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51323</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 558 558 <types> 559 559 <xsd:schema> … … 561 561 </xsd:schema> 562 562 </types> 563 <message name=" PickUpRequest">564 <part name="parameters" element="tns: PickUpRequest"></part>565 </message> 566 <message name=" PickUpRequestResponse">567 <part name="parameters" element="tns: PickUpRequestResponse"></part>563 <message name="pickUpRequest"> 564 <part name="parameters" element="tns:pickUpRequest"></part> 565 </message> 566 <message name="pickUpRequestResponse"> 567 <part name="parameters" element="tns:pickUpRequestResponse"></part> 568 568 </message> 569 569 <message name="instrutionToReceive"> … … 610 610 </message> 611 611 <portType name="IITAWarehouse"> 612 <operation name=" PickUpRequest">613 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestRequest" message="tns:PickUpRequest"></input>614 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestResponse" message="tns:PickUpRequestResponse"></output>612 <operation name="pickUpRequest"> 613 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestRequest" message="tns:pickUpRequest"></input> 614 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestResponse" message="tns:pickUpRequestResponse"></output> 615 615 </operation> 616 616 <operation name="instrutionToReceive"> … … 643 643 </operation> 644 644 </portType> 645 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>41304</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><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, 27 Feb 2015 11:27:05GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService">645 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51324</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService"> 646 646 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService?wsdl=1"></import> 647 647 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="WarehouseReferenceImplementationServicePortBinding" type="ns1:IITAWarehouse"> 648 648 <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding> 649 <operation name=" PickUpRequest">649 <operation name="pickUpRequest"> 650 650 <soap:operation soapAction=""></soap:operation> 651 651 <input> … … 725 725 </port> 726 726 </service> 727 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>41304</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><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, 27 Feb 2015 11:27:06GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">727 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51324</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 728 728 <types> 729 729 <xsd:schema> … … 731 731 </xsd:schema> 732 732 </types> 733 <message name=" PickUpRequest">734 <part name="parameters" element="tns: PickUpRequest"></part>735 </message> 736 <message name=" PickUpRequestResponse">737 <part name="parameters" element="tns: PickUpRequestResponse"></part>733 <message name="pickUpRequest"> 734 <part name="parameters" element="tns:pickUpRequest"></part> 735 </message> 736 <message name="pickUpRequestResponse"> 737 <part name="parameters" element="tns:pickUpRequestResponse"></part> 738 738 </message> 739 739 <message name="instrutionToReceive"> … … 780 780 </message> 781 781 <portType name="IITAWarehouse"> 782 <operation name=" PickUpRequest">783 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestRequest" message="tns:PickUpRequest"></input>784 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestResponse" message="tns:PickUpRequestResponse"></output>782 <operation name="pickUpRequest"> 783 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestRequest" message="tns:pickUpRequest"></input> 784 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestResponse" message="tns:pickUpRequestResponse"></output> 785 785 </operation> 786 786 <operation name="instrutionToReceive"> … … 813 813 </operation> 814 814 </portType> 815 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>43347</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><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, 27 Feb 2015 11:27:06GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService">815 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51327</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService"> 816 816 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService?wsdl=1"></import> 817 817 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="TransportReferenceImplementationServicePortBinding" type="ns1:IITATransport"> … … 826 826 </output> 827 827 </operation> 828 <operation name=" PickUpConfirmation">829 <soap:operation soapAction=""></soap:operation> 830 <input> 831 <soap:body use="literal"></soap:body> 832 </input> 833 <output> 834 <soap:body use="literal"></soap:body> 835 </output> 836 </operation> 837 <operation name=" DropOffConfirmation">828 <operation name="pickUpConfirmation"> 829 <soap:operation soapAction=""></soap:operation> 830 <input> 831 <soap:body use="literal"></soap:body> 832 </input> 833 <output> 834 <soap:body use="literal"></soap:body> 835 </output> 836 </operation> 837 <operation name="dropOffConfirmation"> 838 838 <soap:operation soapAction=""></soap:operation> 839 839 <input> … … 859 859 </port> 860 860 </service> 861 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>43347</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><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, 27 Feb 2015 11:27:06GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">861 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51327</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 862 862 <types> 863 863 <xsd:schema> … … 871 871 <part name="parameters" element="tns:transportInstructionResponse"></part> 872 872 </message> 873 <message name=" PickUpConfirmation">874 <part name="parameters" element="tns: PickUpConfirmation"></part>875 </message> 876 <message name=" PickUpConfirmationResponse">877 <part name="parameters" element="tns: PickUpConfirmationResponse"></part>878 </message> 879 <message name=" DropOffConfirmation">880 <part name="parameters" element="tns: DropOffConfirmation"></part>881 </message> 882 <message name=" DropOffConfirmationResponse">883 <part name="parameters" element="tns: DropOffConfirmationResponse"></part>873 <message name="pickUpConfirmation"> 874 <part name="parameters" element="tns:pickUpConfirmation"></part> 875 </message> 876 <message name="pickUpConfirmationResponse"> 877 <part name="parameters" element="tns:pickUpConfirmationResponse"></part> 878 </message> 879 <message name="dropOffConfirmation"> 880 <part name="parameters" element="tns:dropOffConfirmation"></part> 881 </message> 882 <message name="dropOffConfirmationResponse"> 883 <part name="parameters" element="tns:dropOffConfirmationResponse"></part> 884 884 </message> 885 885 <message name="transportStatusRequest"> … … 894 894 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITATransport/transportInstructionResponse" message="tns:transportInstructionResponse"></output> 895 895 </operation> 896 <operation name=" PickUpConfirmation">897 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationRequest" message="tns:PickUpConfirmation"></input>898 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationResponse" message="tns:PickUpConfirmationResponse"></output>899 </operation> 900 <operation name=" DropOffConfirmation">901 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationRequest" message="tns:DropOffConfirmation"></input>902 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationResponse" message="tns:DropOffConfirmationResponse"></output>896 <operation name="pickUpConfirmation"> 897 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationRequest" message="tns:pickUpConfirmation"></input> 898 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationResponse" message="tns:pickUpConfirmationResponse"></output> 899 </operation> 900 <operation name="dropOffConfirmation"> 901 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationRequest" message="tns:dropOffConfirmation"></input> 902 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationResponse" message="tns:dropOffConfirmationResponse"></output> 903 903 </operation> 904 904 <operation name="transportStatusRequest"> … … 907 907 </operation> 908 908 </portType> 909 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>45661</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><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, 27 Feb 2015 11:27:07GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService">909 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51328</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService"> 910 910 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService?wsdl=1"></import> 911 911 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="TransportReferenceImplementationServicePortBinding" type="ns1:IITATransport"> … … 920 920 </output> 921 921 </operation> 922 <operation name=" PickUpConfirmation">923 <soap:operation soapAction=""></soap:operation> 924 <input> 925 <soap:body use="literal"></soap:body> 926 </input> 927 <output> 928 <soap:body use="literal"></soap:body> 929 </output> 930 </operation> 931 <operation name=" DropOffConfirmation">922 <operation name="pickUpConfirmation"> 923 <soap:operation soapAction=""></soap:operation> 924 <input> 925 <soap:body use="literal"></soap:body> 926 </input> 927 <output> 928 <soap:body use="literal"></soap:body> 929 </output> 930 </operation> 931 <operation name="dropOffConfirmation"> 932 932 <soap:operation soapAction=""></soap:operation> 933 933 <input> … … 953 953 </port> 954 954 </service> 955 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>45661</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><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, 27 Feb 2015 11:27:07GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">955 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51328</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 956 956 <types> 957 957 <xsd:schema> … … 965 965 <part name="parameters" element="tns:transportInstructionResponse"></part> 966 966 </message> 967 <message name=" PickUpConfirmation">968 <part name="parameters" element="tns: PickUpConfirmation"></part>969 </message> 970 <message name=" PickUpConfirmationResponse">971 <part name="parameters" element="tns: PickUpConfirmationResponse"></part>972 </message> 973 <message name=" DropOffConfirmation">974 <part name="parameters" element="tns: DropOffConfirmation"></part>975 </message> 976 <message name=" DropOffConfirmationResponse">977 <part name="parameters" element="tns: DropOffConfirmationResponse"></part>967 <message name="pickUpConfirmation"> 968 <part name="parameters" element="tns:pickUpConfirmation"></part> 969 </message> 970 <message name="pickUpConfirmationResponse"> 971 <part name="parameters" element="tns:pickUpConfirmationResponse"></part> 972 </message> 973 <message name="dropOffConfirmation"> 974 <part name="parameters" element="tns:dropOffConfirmation"></part> 975 </message> 976 <message name="dropOffConfirmationResponse"> 977 <part name="parameters" element="tns:dropOffConfirmationResponse"></part> 978 978 </message> 979 979 <message name="transportStatusRequest"> … … 988 988 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITATransport/transportInstructionResponse" message="tns:transportInstructionResponse"></output> 989 989 </operation> 990 <operation name=" PickUpConfirmation">991 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationRequest" message="tns:PickUpConfirmation"></input>992 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationResponse" message="tns:PickUpConfirmationResponse"></output>993 </operation> 994 <operation name=" DropOffConfirmation">995 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationRequest" message="tns:DropOffConfirmation"></input>996 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationResponse" message="tns:DropOffConfirmationResponse"></output>990 <operation name="pickUpConfirmation"> 991 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationRequest" message="tns:pickUpConfirmation"></input> 992 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationResponse" message="tns:pickUpConfirmationResponse"></output> 993 </operation> 994 <operation name="dropOffConfirmation"> 995 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationRequest" message="tns:dropOffConfirmation"></input> 996 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationResponse" message="tns:dropOffConfirmationResponse"></output> 997 997 </operation> 998 998 <operation name="transportStatusRequest"> … … 1001 1001 </operation> 1002 1002 </portType> 1003 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>46500</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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, 27 Feb 2015 11:27:08GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService">1003 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51329</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService"> 1004 1004 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService?wsdl=1"></import> 1005 1005 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="TransportReferenceImplementationServicePortBinding" type="ns1:IITATransport"> … … 1014 1014 </output> 1015 1015 </operation> 1016 <operation name=" PickUpConfirmation">1017 <soap:operation soapAction=""></soap:operation> 1018 <input> 1019 <soap:body use="literal"></soap:body> 1020 </input> 1021 <output> 1022 <soap:body use="literal"></soap:body> 1023 </output> 1024 </operation> 1025 <operation name=" DropOffConfirmation">1016 <operation name="pickUpConfirmation"> 1017 <soap:operation soapAction=""></soap:operation> 1018 <input> 1019 <soap:body use="literal"></soap:body> 1020 </input> 1021 <output> 1022 <soap:body use="literal"></soap:body> 1023 </output> 1024 </operation> 1025 <operation name="dropOffConfirmation"> 1026 1026 <soap:operation soapAction=""></soap:operation> 1027 1027 <input> … … 1047 1047 </port> 1048 1048 </service> 1049 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>46500</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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, 27 Feb 2015 11:27:09GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">1049 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51329</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 1050 1050 <types> 1051 1051 <xsd:schema> … … 1059 1059 <part name="parameters" element="tns:transportInstructionResponse"></part> 1060 1060 </message> 1061 <message name=" PickUpConfirmation">1062 <part name="parameters" element="tns: PickUpConfirmation"></part>1063 </message> 1064 <message name=" PickUpConfirmationResponse">1065 <part name="parameters" element="tns: PickUpConfirmationResponse"></part>1066 </message> 1067 <message name=" DropOffConfirmation">1068 <part name="parameters" element="tns: DropOffConfirmation"></part>1069 </message> 1070 <message name=" DropOffConfirmationResponse">1071 <part name="parameters" element="tns: DropOffConfirmationResponse"></part>1061 <message name="pickUpConfirmation"> 1062 <part name="parameters" element="tns:pickUpConfirmation"></part> 1063 </message> 1064 <message name="pickUpConfirmationResponse"> 1065 <part name="parameters" element="tns:pickUpConfirmationResponse"></part> 1066 </message> 1067 <message name="dropOffConfirmation"> 1068 <part name="parameters" element="tns:dropOffConfirmation"></part> 1069 </message> 1070 <message name="dropOffConfirmationResponse"> 1071 <part name="parameters" element="tns:dropOffConfirmationResponse"></part> 1072 1072 </message> 1073 1073 <message name="transportStatusRequest"> … … 1082 1082 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITATransport/transportInstructionResponse" message="tns:transportInstructionResponse"></output> 1083 1083 </operation> 1084 <operation name=" PickUpConfirmation">1085 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationRequest" message="tns:PickUpConfirmation"></input>1086 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationResponse" message="tns:PickUpConfirmationResponse"></output>1087 </operation> 1088 <operation name=" DropOffConfirmation">1089 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationRequest" message="tns:DropOffConfirmation"></input>1090 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationResponse" message="tns:DropOffConfirmationResponse"></output>1084 <operation name="pickUpConfirmation"> 1085 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationRequest" message="tns:pickUpConfirmation"></input> 1086 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationResponse" message="tns:pickUpConfirmationResponse"></output> 1087 </operation> 1088 <operation name="dropOffConfirmation"> 1089 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationRequest" message="tns:dropOffConfirmation"></input> 1090 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationResponse" message="tns:dropOffConfirmationResponse"></output> 1091 1091 </operation> 1092 1092 <operation name="transportStatusRequest"> … … 1095 1095 </operation> 1096 1096 </portType> 1097 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>48748</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><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, 27 Feb 2015 11:27:10GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService">1097 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51332</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService"> 1098 1098 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService?wsdl=1"></import> 1099 1099 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="PointOfSaleReferenceImplementationServicePortBinding" type="ns1:IITAPointOfSale"> … … 1153 1153 </output> 1154 1154 </operation> 1155 <operation name=" DropOffRequest">1155 <operation name="dropOffRequest"> 1156 1156 <soap:operation soapAction=""></soap:operation> 1157 1157 <input> … … 1168 1168 </port> 1169 1169 </service> 1170 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>48748</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><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, 27 Feb 2015 11:27:11GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">1170 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51332</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 1171 1171 <types> 1172 1172 <xsd:schema> … … 1210 1210 <part name="parameters" element="tns:finalPurchaseOrderStatusNotificationResponse"></part> 1211 1211 </message> 1212 <message name=" DropOffRequest">1213 <part name="parameters" element="tns: DropOffRequest"></part>1214 </message> 1215 <message name=" DropOffRequestResponse">1216 <part name="parameters" element="tns: DropOffRequestResponse"></part>1212 <message name="dropOffRequest"> 1213 <part name="parameters" element="tns:dropOffRequest"></part> 1214 </message> 1215 <message name="dropOffRequestResponse"> 1216 <part name="parameters" element="tns:dropOffRequestResponse"></part> 1217 1217 </message> 1218 1218 <portType name="IITAPointOfSale"> … … 1241 1241 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationResponse" message="tns:finalPurchaseOrderStatusNotificationResponse"></output> 1242 1242 </operation> 1243 <operation name=" DropOffRequest">1244 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/ DropOffRequestRequest" message="tns:DropOffRequest"></input>1245 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/ DropOffRequestResponse" message="tns:DropOffRequestResponse"></output>1243 <operation name="dropOffRequest"> 1244 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestRequest" message="tns:dropOffRequest"></input> 1245 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestResponse" message="tns:dropOffRequestResponse"></output> 1246 1246 </operation> 1247 1247 </portType> 1248 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>37568</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><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, 27 Feb 2015 11:27:12GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService">1248 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51333</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService"> 1249 1249 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService?wsdl=1"></import> 1250 1250 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="PointOfSaleReferenceImplementationServicePortBinding" type="ns1:IITAPointOfSale"> … … 1304 1304 </output> 1305 1305 </operation> 1306 <operation name=" DropOffRequest">1306 <operation name="dropOffRequest"> 1307 1307 <soap:operation soapAction=""></soap:operation> 1308 1308 <input> … … 1319 1319 </port> 1320 1320 </service> 1321 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>37568</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><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, 27 Feb 2015 11:27:13GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">1321 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51333</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 1322 1322 <types> 1323 1323 <xsd:schema> … … 1361 1361 <part name="parameters" element="tns:finalPurchaseOrderStatusNotificationResponse"></part> 1362 1362 </message> 1363 <message name=" DropOffRequest">1364 <part name="parameters" element="tns: DropOffRequest"></part>1365 </message> 1366 <message name=" DropOffRequestResponse">1367 <part name="parameters" element="tns: DropOffRequestResponse"></part>1363 <message name="dropOffRequest"> 1364 <part name="parameters" element="tns:dropOffRequest"></part> 1365 </message> 1366 <message name="dropOffRequestResponse"> 1367 <part name="parameters" element="tns:dropOffRequestResponse"></part> 1368 1368 </message> 1369 1369 <portType name="IITAPointOfSale"> … … 1392 1392 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationResponse" message="tns:finalPurchaseOrderStatusNotificationResponse"></output> 1393 1393 </operation> 1394 <operation name=" DropOffRequest">1395 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/ DropOffRequestRequest" message="tns:DropOffRequest"></input>1396 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/ DropOffRequestResponse" message="tns:DropOffRequestResponse"></output>1394 <operation name="dropOffRequest"> 1395 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestRequest" message="tns:dropOffRequest"></input> 1396 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestResponse" message="tns:dropOffRequestResponse"></output> 1397 1397 </operation> 1398 1398 </portType> 1399 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>57042</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><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, 27 Feb 2015 11:27:14GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService">1399 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51334</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService"> 1400 1400 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService?wsdl=1"></import> 1401 1401 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="PointOfSaleReferenceImplementationServicePortBinding" type="ns1:IITAPointOfSale"> … … 1455 1455 </output> 1456 1456 </operation> 1457 <operation name=" DropOffRequest">1457 <operation name="dropOffRequest"> 1458 1458 <soap:operation soapAction=""></soap:operation> 1459 1459 <input> … … 1470 1470 </port> 1471 1471 </service> 1472 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip> 193.144.226.15</ip><host>193.144.226.15</host><port>57042</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><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, 27 Feb 2015 11:27:16GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">1472 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51334</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.8.0_31"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 1473 1473 <types> 1474 1474 <xsd:schema> … … 1512 1512 <part name="parameters" element="tns:finalPurchaseOrderStatusNotificationResponse"></part> 1513 1513 </message> 1514 <message name=" DropOffRequest">1515 <part name="parameters" element="tns: DropOffRequest"></part>1516 </message> 1517 <message name=" DropOffRequestResponse">1518 <part name="parameters" element="tns: DropOffRequestResponse"></part>1514 <message name="dropOffRequest"> 1515 <part name="parameters" element="tns:dropOffRequest"></part> 1516 </message> 1517 <message name="dropOffRequestResponse"> 1518 <part name="parameters" element="tns:dropOffRequestResponse"></part> 1519 1519 </message> 1520 1520 <portType name="IITAPointOfSale"> … … 1543 1543 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationResponse" message="tns:finalPurchaseOrderStatusNotificationResponse"></output> 1544 1544 </operation> 1545 <operation name=" DropOffRequest">1546 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/ DropOffRequestRequest" message="tns:DropOffRequest"></input>1547 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/ DropOffRequestResponse" message="tns:DropOffRequestResponse"></output>1545 <operation name="dropOffRequest"> 1546 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestRequest" message="tns:dropOffRequest"></input> 1547 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestResponse" message="tns:dropOffRequestResponse"></output> 1548 1548 </operation> 1549 1549 </portType> 1550 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 48748</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="377"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="377"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>true</accepted><comments>Order accepted</comments><idOrder>order-eo0sg</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44218</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="381"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-eo0sg</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44222</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instructionToDespatchRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="393"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="393"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatch xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingOutboundInstructionXML><idInstruction>order-eo0sg-r4e9o</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingOutboundInstructionXML></ns2:instructionToDespatch></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="255"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatchResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instructionToDespatchResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48748</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-eo0sg-wjxsu</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56802</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="415"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="415"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionResponseXML><accepted>true</accepted><comments>Transport accepted</comments><idTransport>order-eo0sg-qthjo</idTransport></transportInstructionResponseXML></ns2:transportInstructionConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56802</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-eo0sg-qthjo</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45695</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="403"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="403"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-eo0sg-qthjo-mlvl0</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>37594</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="442"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="442"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>pointofsale-despatch-p8xl1</idDespatch><idInboundInstruction>order-eo0sg-qthjo-mlvl0</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58214</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>2</dayOfWeek><idPickUpDropOff>order-eo0sg-qthjo-mlvl0</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-eo0sg-qthjo</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45691</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="417"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="417"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>false</accepted><comments>Try other day of week</comments><idPickUpDropOff>order-eo0sg-qthjo-mlvl0</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58210</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>7</dayOfWeek><idPickUpDropOff>order-eo0sg-qthjo-mlvl0</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-eo0sg-qthjo</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45688</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="417"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="417"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>false</accepted><comments>Try other day of week</comments><idPickUpDropOff>order-eo0sg-qthjo-mlvl0</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58208</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>6</dayOfWeek><idPickUpDropOff>order-eo0sg-qthjo-mlvl0</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-eo0sg-qthjo</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56802</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-eo0sg-qthjo</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46536</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/DropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-eo0sg-qthjo-5uxh2</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:DropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41352</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-p8xl1</idDespatch><idInboundInstruction>order-eo0sg-qthjo-mlvl0</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48748</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><finalPurchaseOrderNotificationXML><accepted>true</accepted><comments>Finished - All delivered</comments><idOrder>order-eo0sg</idOrder></finalPurchaseOrderNotificationXML></ns2:finalPurchaseOrderStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="285"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalPurchaseOrderStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55795</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-eo0sg-wjxsu</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>57066</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>3</dayOfWeek><idPickUpDropOff>order-eo0sg-qthjo-5uxh2</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-eo0sg-qthjo</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:DropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43372</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/transportInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="503"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="503"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionXML><destination>destination-point-of-salekjn77</destination><idProduct>POTATOES</idProduct><idTransport>order-eo0sg-qthjo</idTransport><numberOfTrips>1</numberOfTrips><origin>origin-material-supplier-4xnhj</origin><quantity>5000</quantity></transportInstructionXML></ns2:transportInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="253"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55775</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="430"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="430"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>warehouse-despatch-pigzl</idDespatch><idInboundInstruction>order-eo0sg</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44218</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="428"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="428"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>warehouse-despatch-pigzl</idDespatch><idInboundInstruction>order-eo0sg</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44216</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/inventoryStatusInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="312"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="312"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><inventoryReportStatusXML><idProduct>POTATOES</idProduct></inventoryReportStatusXML></ns2:inventoryStatusInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:inventoryStatusInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55771</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="325"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="325"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-eo0sg</idOrder><idProduct>POTATOES</idProduct><quantity>5000</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="377"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="377"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>true</accepted><comments>Order accepted</comments><idOrder>order-qsf1o</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44245</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="381"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-qsf1o</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44249</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instructionToDespatchRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="393"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="393"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatch xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingOutboundInstructionXML><idInstruction>order-qsf1o-gnhgj</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingOutboundInstructionXML></ns2:instructionToDespatch></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="255"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatchResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instructionToDespatchResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-qsf1o-htgl9</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="415"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="415"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionResponseXML><accepted>true</accepted><comments>Transport accepted</comments><idTransport>order-qsf1o-7uqu7</idTransport></transportInstructionResponseXML></ns2:transportInstructionConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-qsf1o-7uqu7</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45714</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="403"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="403"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-qsf1o-7uqu7-v3v17</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>37612</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="442"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="442"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>pointofsale-despatch-ltvdp</idDespatch><idInboundInstruction>order-qsf1o-7uqu7-v3v17</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58234</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>3</dayOfWeek><idPickUpDropOff>order-qsf1o-7uqu7-v3v17</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-qsf1o-7uqu7</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-qsf1o-7uqu7</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46561</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/DropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-qsf1o-7uqu7-rdihl</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:DropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41378</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-ltvdp</idDespatch><idInboundInstruction>order-qsf1o-7uqu7-v3v17</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><finalPurchaseOrderNotificationXML><accepted>true</accepted><comments>Finished - All delivered</comments><idOrder>order-qsf1o</idOrder></finalPurchaseOrderNotificationXML></ns2:finalPurchaseOrderStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="285"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalPurchaseOrderStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55821</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-qsf1o-htgl9</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>57090</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>1</dayOfWeek><idPickUpDropOff>order-qsf1o-7uqu7-rdihl</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-qsf1o-7uqu7</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:DropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46557</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/DropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>false</accepted><comments>Try other day of week</comments><idPickUpDropOff>order-qsf1o-7uqu7-rdihl</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:DropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>57086</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>7</dayOfWeek><idPickUpDropOff>order-qsf1o-7uqu7-rdihl</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-qsf1o-7uqu7</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:DropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46554</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/DropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>false</accepted><comments>Try other day of week</comments><idPickUpDropOff>order-qsf1o-7uqu7-rdihl</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:DropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>57084</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>6</dayOfWeek><idPickUpDropOff>order-qsf1o-7uqu7-rdihl</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-qsf1o-7uqu7</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:DropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43399</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/transportInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="503"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="503"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionXML><destination>destination-point-of-sale58pik</destination><idProduct>POTATOES</idProduct><idTransport>order-qsf1o-7uqu7</idTransport><numberOfTrips>1</numberOfTrips><origin>origin-material-supplier-9fwui</origin><quantity>5000</quantity></transportInstructionXML></ns2:transportInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="253"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55802</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="430"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="430"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>warehouse-despatch-pc62y</idDespatch><idInboundInstruction>order-qsf1o</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44245</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="428"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="428"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>warehouse-despatch-pc62y</idDespatch><idInboundInstruction>order-qsf1o</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44243</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/inventoryStatusInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="312"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="312"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><inventoryReportStatusXML><idProduct>POTATOES</idProduct></inventoryReportStatusXML></ns2:inventoryStatusInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:inventoryStatusInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55797</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="325"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="325"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-qsf1o</idOrder><idProduct>POTATOES</idProduct><quantity>5000</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="377"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="377"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>true</accepted><comments>Order accepted</comments><idOrder>order-8ddz6</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44245</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="381"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-8ddz6</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44266</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instructionToDespatchRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="393"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="393"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatch xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingOutboundInstructionXML><idInstruction>order-8ddz6-4drbl</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingOutboundInstructionXML></ns2:instructionToDespatch></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="255"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatchResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instructionToDespatchResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-8ddz6-mcrf7</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="415"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="415"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionResponseXML><accepted>true</accepted><comments>Transport accepted</comments><idTransport>order-8ddz6-w7x17</idTransport></transportInstructionResponseXML></ns2:transportInstructionConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-8ddz6-w7x17</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45733</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="403"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="403"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-8ddz6-w7x17-9y1iq</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>37631</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="442"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="442"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>pointofsale-despatch-6zld1</idDespatch><idInboundInstruction>order-8ddz6-w7x17-9y1iq</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58253</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>2</dayOfWeek><idPickUpDropOff>order-8ddz6-w7x17-9y1iq</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-8ddz6-w7x17</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45731</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="417"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="417"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>false</accepted><comments>Try other day of week</comments><idPickUpDropOff>order-8ddz6-w7x17-9y1iq</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58251</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>6</dayOfWeek><idPickUpDropOff>order-8ddz6-w7x17-9y1iq</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-8ddz6-w7x17</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-8ddz6-w7x17</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46554</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/DropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-8ddz6-w7x17-42swz</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:DropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41378</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-6zld1</idDespatch><idInboundInstruction>order-8ddz6-w7x17-9y1iq</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><finalPurchaseOrderNotificationXML><accepted>true</accepted><comments>Finished - All delivered</comments><idOrder>order-8ddz6</idOrder></finalPurchaseOrderNotificationXML></ns2:finalPurchaseOrderStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="285"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalPurchaseOrderStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55821</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-8ddz6-mcrf7</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>57084</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>2</dayOfWeek><idPickUpDropOff>order-8ddz6-w7x17-42swz</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-8ddz6-w7x17</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:DropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43399</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/transportInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="503"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="503"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionXML><destination>destination-point-of-salet9ilh</destination><idProduct>POTATOES</idProduct><idTransport>order-8ddz6-w7x17</idTransport><numberOfTrips>1</numberOfTrips><origin>origin-material-supplier-htedx</origin><quantity>5000</quantity></transportInstructionXML></ns2:transportInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="253"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55802</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="430"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="430"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>warehouse-despatch-hyy75</idDespatch><idInboundInstruction>order-8ddz6</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44245</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="428"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="428"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>warehouse-despatch-hyy75</idDespatch><idInboundInstruction>order-8ddz6</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44243</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/inventoryStatusInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="312"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="312"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><inventoryReportStatusXML><idProduct>POTATOES</idProduct></inventoryReportStatusXML></ns2:inventoryStatusInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:inventoryStatusInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55797</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="325"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="325"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-8ddz6</idOrder><idProduct>POTATOES</idProduct><quantity>5000</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="377"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="377"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>true</accepted><comments>Order accepted</comments><idOrder>order-hhp0z</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44245</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="381"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-hhp0z</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44266</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instructionToDespatchRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="393"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="393"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatch xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingOutboundInstructionXML><idInstruction>order-hhp0z-6k1o3</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingOutboundInstructionXML></ns2:instructionToDespatch></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="255"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatchResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instructionToDespatchResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-hhp0z-cl3cq</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="415"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="415"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionResponseXML><accepted>true</accepted><comments>Transport accepted</comments><idTransport>order-hhp0z-fjd7o</idTransport></transportInstructionResponseXML></ns2:transportInstructionConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-hhp0z-fjd7o</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45731</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="403"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="403"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-hhp0z-fjd7o-y3ta4</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41378</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-gda7l</idDespatch><idInboundInstruction>order-hhp0z-fjd7o-y3ta4</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><finalPurchaseOrderNotificationXML><accepted>true</accepted><comments>Finished - All delivered</comments><idOrder>order-hhp0z</idOrder></finalPurchaseOrderNotificationXML></ns2:finalPurchaseOrderStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="285"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalPurchaseOrderStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55821</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-hhp0z-cl3cq</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>37631</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="442"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="442"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>pointofsale-despatch-gda7l</idDespatch><idInboundInstruction>order-hhp0z-fjd7o-y3ta4</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58251</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>5</dayOfWeek><idPickUpDropOff>order-hhp0z-fjd7o-y3ta4</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-hhp0z-fjd7o</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-hhp0z-fjd7o</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46554</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/DropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-hhp0z-fjd7o-vhgzw</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:DropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41378</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-gda7l</idDespatch><idInboundInstruction>order-hhp0z-fjd7o-y3ta4</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55821</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-hhp0z-cl3cq</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="266"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>false</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>57084</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>3</dayOfWeek><idPickUpDropOff>order-hhp0z-fjd7o-vhgzw</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-hhp0z-fjd7o</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:DropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43399</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/transportInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="503"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="503"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionXML><destination>destination-point-of-saleknc32</destination><idProduct>POTATOES</idProduct><idTransport>order-hhp0z-fjd7o</idTransport><numberOfTrips>1</numberOfTrips><origin>origin-material-supplier-qzi7r</origin><quantity>5000</quantity></transportInstructionXML></ns2:transportInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="253"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55802</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="430"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="430"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>warehouse-despatch-6h068</idDespatch><idInboundInstruction>order-hhp0z</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44245</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="428"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="428"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>warehouse-despatch-6h068</idDespatch><idInboundInstruction>order-hhp0z</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44243</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/inventoryStatusInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="312"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="312"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><inventoryReportStatusXML><idProduct>POTATOES</idProduct></inventoryReportStatusXML></ns2:inventoryStatusInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:inventoryStatusInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55797</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="325"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="325"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-hhp0z</idOrder><idProduct>POTATOES</idProduct><quantity>5000</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="377"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="377"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>true</accepted><comments>Order accepted</comments><idOrder>order-tk1f9</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44245</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="381"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-tk1f9</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44266</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instructionToDespatchRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="393"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="393"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatch xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingOutboundInstructionXML><idInstruction>order-tk1f9-cz5od</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingOutboundInstructionXML></ns2:instructionToDespatch></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="255"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatchResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instructionToDespatchResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-tk1f9-xintf</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="415"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="415"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionResponseXML><accepted>true</accepted><comments>Transport accepted</comments><idTransport>order-tk1f9-rhw7e</idTransport></transportInstructionResponseXML></ns2:transportInstructionConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-tk1f9-rhw7e</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45731</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="403"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="403"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-tk1f9-rhw7e-y3wuu</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41378</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-qahk7</idDespatch><idInboundInstruction>order-tk1f9-rhw7e-y3wuu</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><finalPurchaseOrderNotificationXML><accepted>true</accepted><comments>Finished - All delivered</comments><idOrder>order-tk1f9</idOrder></finalPurchaseOrderNotificationXML></ns2:finalPurchaseOrderStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="285"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalPurchaseOrderStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55821</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-tk1f9-xintf</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>37631</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="442"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="442"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>pointofsale-despatch-qahk7</idDespatch><idInboundInstruction>order-tk1f9-rhw7e-y3wuu</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58251</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>5</dayOfWeek><idPickUpDropOff>order-tk1f9-rhw7e-y3wuu</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-tk1f9-rhw7e</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-tk1f9-rhw7e</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46554</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/DropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-tk1f9-rhw7e-k5g21</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:DropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41378</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-qahk7</idDespatch><idInboundInstruction>order-tk1f9-rhw7e-y3wuu</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55821</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-tk1f9-xintf</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="266"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>false</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>57084</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>3</dayOfWeek><idPickUpDropOff>order-tk1f9-rhw7e-k5g21</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-tk1f9-rhw7e</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:DropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43399</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/transportInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="503"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="503"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionXML><destination>destination-point-of-sale64xb1</destination><idProduct>POTATOES</idProduct><idTransport>order-tk1f9-rhw7e</idTransport><numberOfTrips>1</numberOfTrips><origin>origin-material-supplier-aofu2</origin><quantity>5000</quantity></transportInstructionXML></ns2:transportInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="253"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55802</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="430"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="430"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>warehouse-despatch-yyg0c</idDespatch><idInboundInstruction>order-tk1f9</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44245</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="428"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="428"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>warehouse-despatch-yyg0c</idDespatch><idInboundInstruction>order-tk1f9</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44243</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/inventoryStatusInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="312"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="312"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><inventoryReportStatusXML><idProduct>POTATOES</idProduct></inventoryReportStatusXML></ns2:inventoryStatusInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:inventoryStatusInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55797</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="325"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="325"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-tk1f9</idOrder><idProduct>POTATOES</idProduct><quantity>5000</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="377"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="377"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>true</accepted><comments>Order accepted</comments><idOrder>order-3vmdf</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44245</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="381"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-3vmdf</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44266</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instructionToDespatchRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="393"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="393"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatch xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingOutboundInstructionXML><idInstruction>order-3vmdf-g1yzt</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingOutboundInstructionXML></ns2:instructionToDespatch></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="255"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatchResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instructionToDespatchResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-3vmdf-9mqdr</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="415"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="415"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionResponseXML><accepted>true</accepted><comments>Transport accepted</comments><idTransport>order-3vmdf-op30i</idTransport></transportInstructionResponseXML></ns2:transportInstructionConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-3vmdf-op30i</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45731</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="403"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="403"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-3vmdf-op30i-e54v5</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41378</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-51r2x</idDespatch><idInboundInstruction>order-3vmdf-op30i-e54v5</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48784</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><finalPurchaseOrderNotificationXML><accepted>true</accepted><comments>Finished - All delivered</comments><idOrder>order-3vmdf</idOrder></finalPurchaseOrderNotificationXML></ns2:finalPurchaseOrderStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="285"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalPurchaseOrderStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55821</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-3vmdf-9mqdr</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>37631</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="442"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="442"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>pointofsale-despatch-51r2x</idDespatch><idInboundInstruction>order-3vmdf-op30i-e54v5</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58251</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>3</dayOfWeek><idPickUpDropOff>order-3vmdf-op30i-e54v5</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-3vmdf-op30i</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56829</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-3vmdf-op30i</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46554</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/DropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-3vmdf-op30i-ocwc4</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:DropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41378</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-51r2x</idDespatch><idInboundInstruction>order-3vmdf-op30i-e54v5</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55821</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-3vmdf-9mqdr</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="266"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>false</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>57084</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>2</dayOfWeek><idPickUpDropOff>order-3vmdf-op30i-ocwc4</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-3vmdf-op30i</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:DropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43399</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/transportInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="503"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="503"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionXML><destination>destination-point-of-salec7neb</destination><idProduct>POTATOES</idProduct><idTransport>order-3vmdf-op30i</idTransport><numberOfTrips>1</numberOfTrips><origin>origin-material-supplier-xmdfh</origin><quantity>5000</quantity></transportInstructionXML></ns2:transportInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="253"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55802</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="430"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="430"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>warehouse-despatch-aljfv</idDespatch><idInboundInstruction>order-3vmdf</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44245</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="428"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="428"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>warehouse-despatch-aljfv</idDespatch><idInboundInstruction>order-3vmdf</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44243</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/inventoryStatusInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="312"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="312"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><inventoryReportStatusXML><idProduct>POTATOES</idProduct></inventoryReportStatusXML></ns2:inventoryStatusInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:inventoryStatusInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55797</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="325"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="325"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-3vmdf</idOrder><idProduct>POTATOES</idProduct><quantity>5000</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:27:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56856</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><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, 27 Feb 2015 11:28:11GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3130"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="BusinessUnitReferenceImplementationService">1550 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60502</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3130"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="BusinessUnitReferenceImplementationService"> 1551 1551 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService?wsdl=1"></import> 1552 1552 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="BusinessUnitReferenceImplementationServicePortBinding" type="ns1:IITAMaterialSupplier"> … … 1561 1561 </output> 1562 1562 </operation> 1563 <operation name="despatchNotificationOutbound"> 1564 <soap:operation soapAction=""></soap:operation> 1565 <input> 1566 <soap:body use="literal"></soap:body> 1567 </input> 1568 <output> 1569 <soap:body use="literal"></soap:body> 1570 </output> 1571 </operation> 1563 1572 <operation name="transportInstructionConfirmation"> 1564 1573 <soap:operation soapAction=""></soap:operation> … … 1579 1588 </output> 1580 1589 </operation> 1581 <operation name=" despatchNotificationOutbound">1590 <operation name="inventoryReport"> 1582 1591 <soap:operation soapAction=""></soap:operation> 1583 1592 <input> … … 1589 1598 </operation> 1590 1599 <operation name="transporStatusNotification"> 1591 <soap:operation soapAction=""></soap:operation>1592 <input>1593 <soap:body use="literal"></soap:body>1594 </input>1595 <output>1596 <soap:body use="literal"></soap:body>1597 </output>1598 </operation>1599 <operation name="inventoryReport">1600 1600 <soap:operation soapAction=""></soap:operation> 1601 1601 <input> … … 1621 1621 </port> 1622 1622 </service> 1623 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 56856</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><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, 27 Feb 2015 11:28:11GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6088"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">1623 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60502</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6088"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 1624 1624 <types> 1625 1625 <xsd:schema> … … 1633 1633 <part name="parameters" element="tns:receiptNotificationInboundResponse"></part> 1634 1634 </message> 1635 <message name="despatchNotificationOutbound"> 1636 <part name="parameters" element="tns:despatchNotificationOutbound"></part> 1637 </message> 1638 <message name="despatchNotificationOutboundResponse"> 1639 <part name="parameters" element="tns:despatchNotificationOutboundResponse"></part> 1640 </message> 1635 1641 <message name="transportInstructionConfirmation"> 1636 1642 <part name="parameters" element="tns:transportInstructionConfirmation"></part> … … 1645 1651 <part name="parameters" element="tns:purchaseOrderResponse"></part> 1646 1652 </message> 1647 <message name=" despatchNotificationOutbound">1648 <part name="parameters" element="tns: despatchNotificationOutbound"></part>1649 </message> 1650 <message name=" despatchNotificationOutboundResponse">1651 <part name="parameters" element="tns: despatchNotificationOutboundResponse"></part>1653 <message name="inventoryReport"> 1654 <part name="parameters" element="tns:inventoryReport"></part> 1655 </message> 1656 <message name="inventoryReportResponse"> 1657 <part name="parameters" element="tns:inventoryReportResponse"></part> 1652 1658 </message> 1653 1659 <message name="transporStatusNotification"> … … 1656 1662 <message name="transporStatusNotificationResponse"> 1657 1663 <part name="parameters" element="tns:transporStatusNotificationResponse"></part> 1658 </message>1659 <message name="inventoryReport">1660 <part name="parameters" element="tns:inventoryReport"></part>1661 </message>1662 <message name="inventoryReportResponse">1663 <part name="parameters" element="tns:inventoryReportResponse"></part>1664 1664 </message> 1665 1665 <message name="finalTransportStatusNotification"> … … 1674 1674 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundResponse" message="tns:receiptNotificationInboundResponse"></output> 1675 1675 </operation> 1676 <operation name="despatchNotificationOutbound"> 1677 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundRequest" message="tns:despatchNotificationOutbound"></input> 1678 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundResponse" message="tns:despatchNotificationOutboundResponse"></output> 1679 </operation> 1676 1680 <operation name="transportInstructionConfirmation"> 1677 <input xmlns:ns 3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest" message="tns:transportInstructionConfirmation"></input>1678 <output xmlns:ns 4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationResponse" message="tns:transportInstructionConfirmationResponse"></output>1681 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest" message="tns:transportInstructionConfirmation"></input> 1682 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationResponse" message="tns:transportInstructionConfirmationResponse"></output> 1679 1683 </operation> 1680 1684 <operation name="purchaseOrder"> 1681 <input xmlns:ns 5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest" message="tns:purchaseOrder"></input>1682 <output xmlns:ns 6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderResponse" message="tns:purchaseOrderResponse"></output>1683 </operation> 1684 <operation name=" despatchNotificationOutbound">1685 <input xmlns:ns 7="http://www.w3.org/2007/05/addressing/metadata" ns7:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundRequest" message="tns:despatchNotificationOutbound"></input>1686 <output xmlns:ns 8="http://www.w3.org/2007/05/addressing/metadata" ns8:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundResponse" message="tns:despatchNotificationOutboundResponse"></output>1685 <input xmlns:ns7="http://www.w3.org/2007/05/addressing/metadata" ns7:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest" message="tns:purchaseOrder"></input> 1686 <output xmlns:ns8="http://www.w3.org/2007/05/addressing/metadata" ns8:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderResponse" message="tns:purchaseOrderResponse"></output> 1687 </operation> 1688 <operation name="inventoryReport"> 1689 <input xmlns:ns9="http://www.w3.org/2007/05/addressing/metadata" ns9:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/inventoryReportRequest" message="tns:inventoryReport"></input> 1690 <output xmlns:ns10="http://www.w3.org/2007/05/addressing/metadata" ns10:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/inventoryReportResponse" message="tns:inventoryReportResponse"></output> 1687 1691 </operation> 1688 1692 <operation name="transporStatusNotification"> 1689 <input xmlns:ns9="http://www.w3.org/2007/05/addressing/metadata" ns9:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transporStatusNotificationRequest" message="tns:transporStatusNotification"></input> 1690 <output xmlns:ns10="http://www.w3.org/2007/05/addressing/metadata" ns10:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transporStatusNotificationResponse" message="tns:transporStatusNotificationResponse"></output> 1691 </operation> 1692 <operation name="inventoryReport"> 1693 <input xmlns:ns11="http://www.w3.org/2007/05/addressing/metadata" ns11:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/inventoryReportRequest" message="tns:inventoryReport"></input> 1694 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/inventoryReportResponse" message="tns:inventoryReportResponse"></output> 1693 <input xmlns:ns11="http://www.w3.org/2007/05/addressing/metadata" ns11:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transporStatusNotificationRequest" message="tns:transporStatusNotification"></input> 1694 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transporStatusNotificationResponse" message="tns:transporStatusNotificationResponse"></output> 1695 1695 </operation> 1696 1696 <operation name="finalTransportStatusNotification"> … … 1699 1699 </operation> 1700 1700 </portType> 1701 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 55833</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><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, 27 Feb 2015 11:28:11GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3130"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="BusinessUnitReferenceImplementationService">1701 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46296</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3130"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="BusinessUnitReferenceImplementationService"> 1702 1702 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService?wsdl=1"></import> 1703 1703 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="BusinessUnitReferenceImplementationServicePortBinding" type="ns1:IITAMaterialSupplier"> … … 1712 1712 </output> 1713 1713 </operation> 1714 <operation name="despatchNotificationOutbound"> 1715 <soap:operation soapAction=""></soap:operation> 1716 <input> 1717 <soap:body use="literal"></soap:body> 1718 </input> 1719 <output> 1720 <soap:body use="literal"></soap:body> 1721 </output> 1722 </operation> 1714 1723 <operation name="transportInstructionConfirmation"> 1715 1724 <soap:operation soapAction=""></soap:operation> … … 1730 1739 </output> 1731 1740 </operation> 1732 <operation name=" despatchNotificationOutbound">1741 <operation name="inventoryReport"> 1733 1742 <soap:operation soapAction=""></soap:operation> 1734 1743 <input> … … 1740 1749 </operation> 1741 1750 <operation name="transporStatusNotification"> 1742 <soap:operation soapAction=""></soap:operation>1743 <input>1744 <soap:body use="literal"></soap:body>1745 </input>1746 <output>1747 <soap:body use="literal"></soap:body>1748 </output>1749 </operation>1750 <operation name="inventoryReport">1751 1751 <soap:operation soapAction=""></soap:operation> 1752 1752 <input> … … 1772 1772 </port> 1773 1773 </service> 1774 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 55833</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><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, 27 Feb 2015 11:28:11GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6088"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">1774 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46296</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6088"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 1775 1775 <types> 1776 1776 <xsd:schema> … … 1784 1784 <part name="parameters" element="tns:receiptNotificationInboundResponse"></part> 1785 1785 </message> 1786 <message name="despatchNotificationOutbound"> 1787 <part name="parameters" element="tns:despatchNotificationOutbound"></part> 1788 </message> 1789 <message name="despatchNotificationOutboundResponse"> 1790 <part name="parameters" element="tns:despatchNotificationOutboundResponse"></part> 1791 </message> 1786 1792 <message name="transportInstructionConfirmation"> 1787 1793 <part name="parameters" element="tns:transportInstructionConfirmation"></part> … … 1796 1802 <part name="parameters" element="tns:purchaseOrderResponse"></part> 1797 1803 </message> 1798 <message name=" despatchNotificationOutbound">1799 <part name="parameters" element="tns: despatchNotificationOutbound"></part>1800 </message> 1801 <message name=" despatchNotificationOutboundResponse">1802 <part name="parameters" element="tns: despatchNotificationOutboundResponse"></part>1804 <message name="inventoryReport"> 1805 <part name="parameters" element="tns:inventoryReport"></part> 1806 </message> 1807 <message name="inventoryReportResponse"> 1808 <part name="parameters" element="tns:inventoryReportResponse"></part> 1803 1809 </message> 1804 1810 <message name="transporStatusNotification"> … … 1807 1813 <message name="transporStatusNotificationResponse"> 1808 1814 <part name="parameters" element="tns:transporStatusNotificationResponse"></part> 1809 </message>1810 <message name="inventoryReport">1811 <part name="parameters" element="tns:inventoryReport"></part>1812 </message>1813 <message name="inventoryReportResponse">1814 <part name="parameters" element="tns:inventoryReportResponse"></part>1815 1815 </message> 1816 1816 <message name="finalTransportStatusNotification"> … … 1825 1825 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundResponse" message="tns:receiptNotificationInboundResponse"></output> 1826 1826 </operation> 1827 <operation name="despatchNotificationOutbound"> 1828 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundRequest" message="tns:despatchNotificationOutbound"></input> 1829 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundResponse" message="tns:despatchNotificationOutboundResponse"></output> 1830 </operation> 1827 1831 <operation name="transportInstructionConfirmation"> 1828 <input xmlns:ns 3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest" message="tns:transportInstructionConfirmation"></input>1829 <output xmlns:ns 4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationResponse" message="tns:transportInstructionConfirmationResponse"></output>1832 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest" message="tns:transportInstructionConfirmation"></input> 1833 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationResponse" message="tns:transportInstructionConfirmationResponse"></output> 1830 1834 </operation> 1831 1835 <operation name="purchaseOrder"> 1832 <input xmlns:ns 5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest" message="tns:purchaseOrder"></input>1833 <output xmlns:ns 6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderResponse" message="tns:purchaseOrderResponse"></output>1834 </operation> 1835 <operation name=" despatchNotificationOutbound">1836 <input xmlns:ns 7="http://www.w3.org/2007/05/addressing/metadata" ns7:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundRequest" message="tns:despatchNotificationOutbound"></input>1837 <output xmlns:ns 8="http://www.w3.org/2007/05/addressing/metadata" ns8:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/despatchNotificationOutboundResponse" message="tns:despatchNotificationOutboundResponse"></output>1836 <input xmlns:ns7="http://www.w3.org/2007/05/addressing/metadata" ns7:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest" message="tns:purchaseOrder"></input> 1837 <output xmlns:ns8="http://www.w3.org/2007/05/addressing/metadata" ns8:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderResponse" message="tns:purchaseOrderResponse"></output> 1838 </operation> 1839 <operation name="inventoryReport"> 1840 <input xmlns:ns9="http://www.w3.org/2007/05/addressing/metadata" ns9:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/inventoryReportRequest" message="tns:inventoryReport"></input> 1841 <output xmlns:ns10="http://www.w3.org/2007/05/addressing/metadata" ns10:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/inventoryReportResponse" message="tns:inventoryReportResponse"></output> 1838 1842 </operation> 1839 1843 <operation name="transporStatusNotification"> 1840 <input xmlns:ns9="http://www.w3.org/2007/05/addressing/metadata" ns9:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transporStatusNotificationRequest" message="tns:transporStatusNotification"></input> 1841 <output xmlns:ns10="http://www.w3.org/2007/05/addressing/metadata" ns10:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transporStatusNotificationResponse" message="tns:transporStatusNotificationResponse"></output> 1842 </operation> 1843 <operation name="inventoryReport"> 1844 <input xmlns:ns11="http://www.w3.org/2007/05/addressing/metadata" ns11:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/inventoryReportRequest" message="tns:inventoryReport"></input> 1845 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/inventoryReportResponse" message="tns:inventoryReportResponse"></output> 1844 <input xmlns:ns11="http://www.w3.org/2007/05/addressing/metadata" ns11:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transporStatusNotificationRequest" message="tns:transporStatusNotification"></input> 1845 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transporStatusNotificationResponse" message="tns:transporStatusNotificationResponse"></output> 1846 1846 </operation> 1847 1847 <operation name="finalTransportStatusNotification"> … … 1850 1850 </operation> 1851 1851 </portType> 1852 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 44281</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><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, 27 Feb 2015 11:28:12GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService">1852 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>52763</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService"> 1853 1853 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService?wsdl=1"></import> 1854 1854 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="WarehouseReferenceImplementationServicePortBinding" type="ns1:IITAWarehouse"> 1855 1855 <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding> 1856 <operation name=" PickUpRequest">1856 <operation name="pickUpRequest"> 1857 1857 <soap:operation soapAction=""></soap:operation> 1858 1858 <input> … … 1932 1932 </port> 1933 1933 </service> 1934 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 44281</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><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, 27 Feb 2015 11:28:12GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">1934 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>52763</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 1935 1935 <types> 1936 1936 <xsd:schema> … … 1938 1938 </xsd:schema> 1939 1939 </types> 1940 <message name=" PickUpRequest">1941 <part name="parameters" element="tns: PickUpRequest"></part>1942 </message> 1943 <message name=" PickUpRequestResponse">1944 <part name="parameters" element="tns: PickUpRequestResponse"></part>1940 <message name="pickUpRequest"> 1941 <part name="parameters" element="tns:pickUpRequest"></part> 1942 </message> 1943 <message name="pickUpRequestResponse"> 1944 <part name="parameters" element="tns:pickUpRequestResponse"></part> 1945 1945 </message> 1946 1946 <message name="instrutionToReceive"> … … 1987 1987 </message> 1988 1988 <portType name="IITAWarehouse"> 1989 <operation name=" PickUpRequest">1990 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestRequest" message="tns:PickUpRequest"></input>1991 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestResponse" message="tns:PickUpRequestResponse"></output>1989 <operation name="pickUpRequest"> 1990 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestRequest" message="tns:pickUpRequest"></input> 1991 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestResponse" message="tns:pickUpRequestResponse"></output> 1992 1992 </operation> 1993 1993 <operation name="instrutionToReceive"> … … 2020 2020 </operation> 2021 2021 </portType> 2022 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 58267</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><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, 27 Feb 2015 11:28:12GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService">2022 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48982</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService"> 2023 2023 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService?wsdl=1"></import> 2024 2024 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="WarehouseReferenceImplementationServicePortBinding" type="ns1:IITAWarehouse"> 2025 2025 <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding> 2026 <operation name=" PickUpRequest">2026 <operation name="pickUpRequest"> 2027 2027 <soap:operation soapAction=""></soap:operation> 2028 2028 <input> … … 2102 2102 </port> 2103 2103 </service> 2104 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 58267</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><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, 27 Feb 2015 11:28:12GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">2104 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48982</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 2105 2105 <types> 2106 2106 <xsd:schema> … … 2108 2108 </xsd:schema> 2109 2109 </types> 2110 <message name=" PickUpRequest">2111 <part name="parameters" element="tns: PickUpRequest"></part>2112 </message> 2113 <message name=" PickUpRequestResponse">2114 <part name="parameters" element="tns: PickUpRequestResponse"></part>2110 <message name="pickUpRequest"> 2111 <part name="parameters" element="tns:pickUpRequest"></part> 2112 </message> 2113 <message name="pickUpRequestResponse"> 2114 <part name="parameters" element="tns:pickUpRequestResponse"></part> 2115 2115 </message> 2116 2116 <message name="instrutionToReceive"> … … 2157 2157 </message> 2158 2158 <portType name="IITAWarehouse"> 2159 <operation name=" PickUpRequest">2160 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestRequest" message="tns:PickUpRequest"></input>2161 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestResponse" message="tns:PickUpRequestResponse"></output>2159 <operation name="pickUpRequest"> 2160 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestRequest" message="tns:pickUpRequest"></input> 2161 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestResponse" message="tns:pickUpRequestResponse"></output> 2162 2162 </operation> 2163 2163 <operation name="instrutionToReceive"> … … 2190 2190 </operation> 2191 2191 </portType> 2192 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>4 1399</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><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, 27 Feb 2015 11:28:12GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService">2192 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44932</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3297"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="WarehouseReferenceImplementationService"> 2193 2193 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService?wsdl=1"></import> 2194 2194 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="WarehouseReferenceImplementationServicePortBinding" type="ns1:IITAWarehouse"> 2195 2195 <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding> 2196 <operation name=" PickUpRequest">2196 <operation name="pickUpRequest"> 2197 2197 <soap:operation soapAction=""></soap:operation> 2198 2198 <input> … … 2272 2272 </port> 2273 2273 </service> 2274 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>4 1399</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><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, 27 Feb 2015 11:28:12GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">2274 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44932</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6532"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 2275 2275 <types> 2276 2276 <xsd:schema> … … 2278 2278 </xsd:schema> 2279 2279 </types> 2280 <message name=" PickUpRequest">2281 <part name="parameters" element="tns: PickUpRequest"></part>2282 </message> 2283 <message name=" PickUpRequestResponse">2284 <part name="parameters" element="tns: PickUpRequestResponse"></part>2280 <message name="pickUpRequest"> 2281 <part name="parameters" element="tns:pickUpRequest"></part> 2282 </message> 2283 <message name="pickUpRequestResponse"> 2284 <part name="parameters" element="tns:pickUpRequestResponse"></part> 2285 2285 </message> 2286 2286 <message name="instrutionToReceive"> … … 2327 2327 </message> 2328 2328 <portType name="IITAWarehouse"> 2329 <operation name=" PickUpRequest">2330 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestRequest" message="tns:PickUpRequest"></input>2331 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/ PickUpRequestResponse" message="tns:PickUpRequestResponse"></output>2329 <operation name="pickUpRequest"> 2330 <input xmlns:ns1="http://www.w3.org/2007/05/addressing/metadata" ns1:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestRequest" message="tns:pickUpRequest"></input> 2331 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestResponse" message="tns:pickUpRequestResponse"></output> 2332 2332 </operation> 2333 2333 <operation name="instrutionToReceive"> … … 2360 2360 </operation> 2361 2361 </portType> 2362 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>4 3441</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><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, 27 Feb 2015 11:28:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService">2362 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>49563</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService"> 2363 2363 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService?wsdl=1"></import> 2364 2364 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="TransportReferenceImplementationServicePortBinding" type="ns1:IITATransport"> … … 2373 2373 </output> 2374 2374 </operation> 2375 <operation name=" PickUpConfirmation">2376 <soap:operation soapAction=""></soap:operation> 2377 <input> 2378 <soap:body use="literal"></soap:body> 2379 </input> 2380 <output> 2381 <soap:body use="literal"></soap:body> 2382 </output> 2383 </operation> 2384 <operation name=" DropOffConfirmation">2375 <operation name="pickUpConfirmation"> 2376 <soap:operation soapAction=""></soap:operation> 2377 <input> 2378 <soap:body use="literal"></soap:body> 2379 </input> 2380 <output> 2381 <soap:body use="literal"></soap:body> 2382 </output> 2383 </operation> 2384 <operation name="dropOffConfirmation"> 2385 2385 <soap:operation soapAction=""></soap:operation> 2386 2386 <input> … … 2406 2406 </port> 2407 2407 </service> 2408 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>4 3441</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><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, 27 Feb 2015 11:28:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">2408 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>49563</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 2409 2409 <types> 2410 2410 <xsd:schema> … … 2418 2418 <part name="parameters" element="tns:transportInstructionResponse"></part> 2419 2419 </message> 2420 <message name=" PickUpConfirmation">2421 <part name="parameters" element="tns: PickUpConfirmation"></part>2422 </message> 2423 <message name=" PickUpConfirmationResponse">2424 <part name="parameters" element="tns: PickUpConfirmationResponse"></part>2425 </message> 2426 <message name=" DropOffConfirmation">2427 <part name="parameters" element="tns: DropOffConfirmation"></part>2428 </message> 2429 <message name=" DropOffConfirmationResponse">2430 <part name="parameters" element="tns: DropOffConfirmationResponse"></part>2420 <message name="pickUpConfirmation"> 2421 <part name="parameters" element="tns:pickUpConfirmation"></part> 2422 </message> 2423 <message name="pickUpConfirmationResponse"> 2424 <part name="parameters" element="tns:pickUpConfirmationResponse"></part> 2425 </message> 2426 <message name="dropOffConfirmation"> 2427 <part name="parameters" element="tns:dropOffConfirmation"></part> 2428 </message> 2429 <message name="dropOffConfirmationResponse"> 2430 <part name="parameters" element="tns:dropOffConfirmationResponse"></part> 2431 2431 </message> 2432 2432 <message name="transportStatusRequest"> … … 2441 2441 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITATransport/transportInstructionResponse" message="tns:transportInstructionResponse"></output> 2442 2442 </operation> 2443 <operation name=" PickUpConfirmation">2444 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationRequest" message="tns:PickUpConfirmation"></input>2445 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationResponse" message="tns:PickUpConfirmationResponse"></output>2446 </operation> 2447 <operation name=" DropOffConfirmation">2448 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationRequest" message="tns:DropOffConfirmation"></input>2449 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationResponse" message="tns:DropOffConfirmationResponse"></output>2443 <operation name="pickUpConfirmation"> 2444 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationRequest" message="tns:pickUpConfirmation"></input> 2445 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationResponse" message="tns:pickUpConfirmationResponse"></output> 2446 </operation> 2447 <operation name="dropOffConfirmation"> 2448 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationRequest" message="tns:dropOffConfirmation"></input> 2449 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationResponse" message="tns:dropOffConfirmationResponse"></output> 2450 2450 </operation> 2451 2451 <operation name="transportStatusRequest"> … … 2454 2454 </operation> 2455 2455 </portType> 2456 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>4 5754</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><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, 27 Feb 2015 11:28:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService">2456 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41623</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService"> 2457 2457 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService?wsdl=1"></import> 2458 2458 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="TransportReferenceImplementationServicePortBinding" type="ns1:IITATransport"> … … 2467 2467 </output> 2468 2468 </operation> 2469 <operation name=" PickUpConfirmation">2470 <soap:operation soapAction=""></soap:operation> 2471 <input> 2472 <soap:body use="literal"></soap:body> 2473 </input> 2474 <output> 2475 <soap:body use="literal"></soap:body> 2476 </output> 2477 </operation> 2478 <operation name=" DropOffConfirmation">2469 <operation name="pickUpConfirmation"> 2470 <soap:operation soapAction=""></soap:operation> 2471 <input> 2472 <soap:body use="literal"></soap:body> 2473 </input> 2474 <output> 2475 <soap:body use="literal"></soap:body> 2476 </output> 2477 </operation> 2478 <operation name="dropOffConfirmation"> 2479 2479 <soap:operation soapAction=""></soap:operation> 2480 2480 <input> … … 2500 2500 </port> 2501 2501 </service> 2502 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>4 5754</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><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, 27 Feb 2015 11:28:13GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">2502 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41623</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 2503 2503 <types> 2504 2504 <xsd:schema> … … 2512 2512 <part name="parameters" element="tns:transportInstructionResponse"></part> 2513 2513 </message> 2514 <message name=" PickUpConfirmation">2515 <part name="parameters" element="tns: PickUpConfirmation"></part>2516 </message> 2517 <message name=" PickUpConfirmationResponse">2518 <part name="parameters" element="tns: PickUpConfirmationResponse"></part>2519 </message> 2520 <message name=" DropOffConfirmation">2521 <part name="parameters" element="tns: DropOffConfirmation"></part>2522 </message> 2523 <message name=" DropOffConfirmationResponse">2524 <part name="parameters" element="tns: DropOffConfirmationResponse"></part>2514 <message name="pickUpConfirmation"> 2515 <part name="parameters" element="tns:pickUpConfirmation"></part> 2516 </message> 2517 <message name="pickUpConfirmationResponse"> 2518 <part name="parameters" element="tns:pickUpConfirmationResponse"></part> 2519 </message> 2520 <message name="dropOffConfirmation"> 2521 <part name="parameters" element="tns:dropOffConfirmation"></part> 2522 </message> 2523 <message name="dropOffConfirmationResponse"> 2524 <part name="parameters" element="tns:dropOffConfirmationResponse"></part> 2525 2525 </message> 2526 2526 <message name="transportStatusRequest"> … … 2535 2535 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITATransport/transportInstructionResponse" message="tns:transportInstructionResponse"></output> 2536 2536 </operation> 2537 <operation name=" PickUpConfirmation">2538 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationRequest" message="tns:PickUpConfirmation"></input>2539 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationResponse" message="tns:PickUpConfirmationResponse"></output>2540 </operation> 2541 <operation name=" DropOffConfirmation">2542 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationRequest" message="tns:DropOffConfirmation"></input>2543 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationResponse" message="tns:DropOffConfirmationResponse"></output>2537 <operation name="pickUpConfirmation"> 2538 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationRequest" message="tns:pickUpConfirmation"></input> 2539 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationResponse" message="tns:pickUpConfirmationResponse"></output> 2540 </operation> 2541 <operation name="dropOffConfirmation"> 2542 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationRequest" message="tns:dropOffConfirmation"></input> 2543 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationResponse" message="tns:dropOffConfirmationResponse"></output> 2544 2544 </operation> 2545 2545 <operation name="transportStatusRequest"> … … 2548 2548 </operation> 2549 2549 </portType> 2550 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>4 6592</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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, 27 Feb 2015 11:28:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService">2550 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>42508</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="2430"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="TransportReferenceImplementationService"> 2551 2551 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService?wsdl=1"></import> 2552 2552 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="TransportReferenceImplementationServicePortBinding" type="ns1:IITATransport"> … … 2561 2561 </output> 2562 2562 </operation> 2563 <operation name=" PickUpConfirmation">2564 <soap:operation soapAction=""></soap:operation> 2565 <input> 2566 <soap:body use="literal"></soap:body> 2567 </input> 2568 <output> 2569 <soap:body use="literal"></soap:body> 2570 </output> 2571 </operation> 2572 <operation name=" DropOffConfirmation">2563 <operation name="pickUpConfirmation"> 2564 <soap:operation soapAction=""></soap:operation> 2565 <input> 2566 <soap:body use="literal"></soap:body> 2567 </input> 2568 <output> 2569 <soap:body use="literal"></soap:body> 2570 </output> 2571 </operation> 2572 <operation name="dropOffConfirmation"> 2573 2573 <soap:operation soapAction=""></soap:operation> 2574 2574 <input> … … 2594 2594 </port> 2595 2595 </service> 2596 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>4 6592</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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, 27 Feb 2015 11:28:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">2596 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>42508</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3543"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 2597 2597 <types> 2598 2598 <xsd:schema> … … 2606 2606 <part name="parameters" element="tns:transportInstructionResponse"></part> 2607 2607 </message> 2608 <message name=" PickUpConfirmation">2609 <part name="parameters" element="tns: PickUpConfirmation"></part>2610 </message> 2611 <message name=" PickUpConfirmationResponse">2612 <part name="parameters" element="tns: PickUpConfirmationResponse"></part>2613 </message> 2614 <message name=" DropOffConfirmation">2615 <part name="parameters" element="tns: DropOffConfirmation"></part>2616 </message> 2617 <message name=" DropOffConfirmationResponse">2618 <part name="parameters" element="tns: DropOffConfirmationResponse"></part>2608 <message name="pickUpConfirmation"> 2609 <part name="parameters" element="tns:pickUpConfirmation"></part> 2610 </message> 2611 <message name="pickUpConfirmationResponse"> 2612 <part name="parameters" element="tns:pickUpConfirmationResponse"></part> 2613 </message> 2614 <message name="dropOffConfirmation"> 2615 <part name="parameters" element="tns:dropOffConfirmation"></part> 2616 </message> 2617 <message name="dropOffConfirmationResponse"> 2618 <part name="parameters" element="tns:dropOffConfirmationResponse"></part> 2619 2619 </message> 2620 2620 <message name="transportStatusRequest"> … … 2629 2629 <output xmlns:ns2="http://www.w3.org/2007/05/addressing/metadata" ns2:Action="http://org.ita.midas/logisticssaut/IITATransport/transportInstructionResponse" message="tns:transportInstructionResponse"></output> 2630 2630 </operation> 2631 <operation name=" PickUpConfirmation">2632 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationRequest" message="tns:PickUpConfirmation"></input>2633 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/ PickUpConfirmationResponse" message="tns:PickUpConfirmationResponse"></output>2634 </operation> 2635 <operation name=" DropOffConfirmation">2636 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationRequest" message="tns:DropOffConfirmation"></input>2637 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/ DropOffConfirmationResponse" message="tns:DropOffConfirmationResponse"></output>2631 <operation name="pickUpConfirmation"> 2632 <input xmlns:ns3="http://www.w3.org/2007/05/addressing/metadata" ns3:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationRequest" message="tns:pickUpConfirmation"></input> 2633 <output xmlns:ns4="http://www.w3.org/2007/05/addressing/metadata" ns4:Action="http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationResponse" message="tns:pickUpConfirmationResponse"></output> 2634 </operation> 2635 <operation name="dropOffConfirmation"> 2636 <input xmlns:ns5="http://www.w3.org/2007/05/addressing/metadata" ns5:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationRequest" message="tns:dropOffConfirmation"></input> 2637 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationResponse" message="tns:dropOffConfirmationResponse"></output> 2638 2638 </operation> 2639 2639 <operation name="transportStatusRequest"> … … 2642 2642 </operation> 2643 2643 </portType> 2644 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 48839</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><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, 27 Feb 2015 11:28:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService">2644 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60882</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService"> 2645 2645 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService?wsdl=1"></import> 2646 2646 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="PointOfSaleReferenceImplementationServicePortBinding" type="ns1:IITAPointOfSale"> … … 2673 2673 </output> 2674 2674 </operation> 2675 <operation name="productSold"> 2676 <soap:operation soapAction=""></soap:operation> 2677 <input> 2678 <soap:body use="literal"></soap:body> 2679 </input> 2680 <output> 2681 <soap:body use="literal"></soap:body> 2682 </output> 2683 </operation> 2675 2684 <operation name="purchaseOrderConfirmation"> 2676 2685 <soap:operation soapAction=""></soap:operation> … … 2691 2700 </output> 2692 2701 </operation> 2693 <operation name="DropOffRequest"> 2694 <soap:operation soapAction=""></soap:operation> 2695 <input> 2696 <soap:body use="literal"></soap:body> 2697 </input> 2698 <output> 2699 <soap:body use="literal"></soap:body> 2700 </output> 2701 </operation> 2702 <operation name="productSold"> 2702 <operation name="dropOffRequest"> 2703 2703 <soap:operation soapAction=""></soap:operation> 2704 2704 <input> … … 2715 2715 </port> 2716 2716 </service> 2717 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 48839</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><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, 27 Feb 2015 11:28:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">2717 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60882</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 2718 2718 <types> 2719 2719 <xsd:schema> … … 2739 2739 <part name="parameters" element="tns:inboudDeliveryStatusResponse"></part> 2740 2740 </message> 2741 <message name="productSold"> 2742 <part name="parameters" element="tns:productSold"></part> 2743 </message> 2744 <message name="productSoldResponse"> 2745 <part name="parameters" element="tns:productSoldResponse"></part> 2746 </message> 2741 2747 <message name="purchaseOrderConfirmation"> 2742 2748 <part name="parameters" element="tns:purchaseOrderConfirmation"></part> … … 2751 2757 <part name="parameters" element="tns:finalPurchaseOrderStatusNotificationResponse"></part> 2752 2758 </message> 2753 <message name="DropOffRequest"> 2754 <part name="parameters" element="tns:DropOffRequest"></part> 2755 </message> 2756 <message name="DropOffRequestResponse"> 2757 <part name="parameters" element="tns:DropOffRequestResponse"></part> 2758 </message> 2759 <message name="productSold"> 2760 <part name="parameters" element="tns:productSold"></part> 2761 </message> 2762 <message name="productSoldResponse"> 2763 <part name="parameters" element="tns:productSoldResponse"></part> 2759 <message name="dropOffRequest"> 2760 <part name="parameters" element="tns:dropOffRequest"></part> 2761 </message> 2762 <message name="dropOffRequestResponse"> 2763 <part name="parameters" element="tns:dropOffRequestResponse"></part> 2764 2764 </message> 2765 2765 <portType name="IITAPointOfSale"> … … 2776 2776 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/inboudDeliveryStatusResponse" message="tns:inboudDeliveryStatusResponse"></output> 2777 2777 </operation> 2778 <operation name="productSold"> 2779 <input xmlns:ns7="http://www.w3.org/2007/05/addressing/metadata" ns7:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldRequest" message="tns:productSold"></input> 2780 <output xmlns:ns8="http://www.w3.org/2007/05/addressing/metadata" ns8:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldResponse" message="tns:productSoldResponse"></output> 2781 </operation> 2778 2782 <operation name="purchaseOrderConfirmation"> 2779 <input xmlns:ns 7="http://www.w3.org/2007/05/addressing/metadata" ns7:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest" message="tns:purchaseOrderConfirmation"></input>2780 <output xmlns:ns 8="http://www.w3.org/2007/05/addressing/metadata" ns8:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationResponse" message="tns:purchaseOrderConfirmationResponse"></output>2783 <input xmlns:ns9="http://www.w3.org/2007/05/addressing/metadata" ns9:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest" message="tns:purchaseOrderConfirmation"></input> 2784 <output xmlns:ns10="http://www.w3.org/2007/05/addressing/metadata" ns10:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationResponse" message="tns:purchaseOrderConfirmationResponse"></output> 2781 2785 </operation> 2782 2786 <operation name="finalPurchaseOrderStatusNotification"> 2783 <input xmlns:ns9="http://www.w3.org/2007/05/addressing/metadata" ns9:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest" message="tns:finalPurchaseOrderStatusNotification"></input> 2784 <output xmlns:ns10="http://www.w3.org/2007/05/addressing/metadata" ns10:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationResponse" message="tns:finalPurchaseOrderStatusNotificationResponse"></output> 2785 </operation> 2786 <operation name="DropOffRequest"> 2787 <input xmlns:ns11="http://www.w3.org/2007/05/addressing/metadata" ns11:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest" message="tns:DropOffRequest"></input> 2788 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestResponse" message="tns:DropOffRequestResponse"></output> 2789 </operation> 2790 <operation name="productSold"> 2791 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldRequest" message="tns:productSold"></input> 2792 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldResponse" message="tns:productSoldResponse"></output> 2787 <input xmlns:ns11="http://www.w3.org/2007/05/addressing/metadata" ns11:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest" message="tns:finalPurchaseOrderStatusNotification"></input> 2788 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationResponse" message="tns:finalPurchaseOrderStatusNotificationResponse"></output> 2789 </operation> 2790 <operation name="dropOffRequest"> 2791 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestRequest" message="tns:dropOffRequest"></input> 2792 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestResponse" message="tns:dropOffRequestResponse"></output> 2793 2793 </operation> 2794 2794 </portType> 2795 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 37658</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><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, 27 Feb 2015 11:28:13GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService">2795 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43415</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService"> 2796 2796 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService?wsdl=1"></import> 2797 2797 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="PointOfSaleReferenceImplementationServicePortBinding" type="ns1:IITAPointOfSale"> … … 2824 2824 </output> 2825 2825 </operation> 2826 <operation name="productSold"> 2827 <soap:operation soapAction=""></soap:operation> 2828 <input> 2829 <soap:body use="literal"></soap:body> 2830 </input> 2831 <output> 2832 <soap:body use="literal"></soap:body> 2833 </output> 2834 </operation> 2826 2835 <operation name="purchaseOrderConfirmation"> 2827 2836 <soap:operation soapAction=""></soap:operation> … … 2842 2851 </output> 2843 2852 </operation> 2844 <operation name="DropOffRequest"> 2845 <soap:operation soapAction=""></soap:operation> 2846 <input> 2847 <soap:body use="literal"></soap:body> 2848 </input> 2849 <output> 2850 <soap:body use="literal"></soap:body> 2851 </output> 2852 </operation> 2853 <operation name="productSold"> 2853 <operation name="dropOffRequest"> 2854 2854 <soap:operation soapAction=""></soap:operation> 2855 2855 <input> … … 2866 2866 </port> 2867 2867 </service> 2868 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 37658</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><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, 27 Feb 2015 11:28:13GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">2868 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43415</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 2869 2869 <types> 2870 2870 <xsd:schema> … … 2890 2890 <part name="parameters" element="tns:inboudDeliveryStatusResponse"></part> 2891 2891 </message> 2892 <message name="productSold"> 2893 <part name="parameters" element="tns:productSold"></part> 2894 </message> 2895 <message name="productSoldResponse"> 2896 <part name="parameters" element="tns:productSoldResponse"></part> 2897 </message> 2892 2898 <message name="purchaseOrderConfirmation"> 2893 2899 <part name="parameters" element="tns:purchaseOrderConfirmation"></part> … … 2902 2908 <part name="parameters" element="tns:finalPurchaseOrderStatusNotificationResponse"></part> 2903 2909 </message> 2904 <message name="DropOffRequest"> 2905 <part name="parameters" element="tns:DropOffRequest"></part> 2906 </message> 2907 <message name="DropOffRequestResponse"> 2908 <part name="parameters" element="tns:DropOffRequestResponse"></part> 2909 </message> 2910 <message name="productSold"> 2911 <part name="parameters" element="tns:productSold"></part> 2912 </message> 2913 <message name="productSoldResponse"> 2914 <part name="parameters" element="tns:productSoldResponse"></part> 2910 <message name="dropOffRequest"> 2911 <part name="parameters" element="tns:dropOffRequest"></part> 2912 </message> 2913 <message name="dropOffRequestResponse"> 2914 <part name="parameters" element="tns:dropOffRequestResponse"></part> 2915 2915 </message> 2916 2916 <portType name="IITAPointOfSale"> … … 2927 2927 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/inboudDeliveryStatusResponse" message="tns:inboudDeliveryStatusResponse"></output> 2928 2928 </operation> 2929 <operation name="productSold"> 2930 <input xmlns:ns7="http://www.w3.org/2007/05/addressing/metadata" ns7:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldRequest" message="tns:productSold"></input> 2931 <output xmlns:ns8="http://www.w3.org/2007/05/addressing/metadata" ns8:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldResponse" message="tns:productSoldResponse"></output> 2932 </operation> 2929 2933 <operation name="purchaseOrderConfirmation"> 2930 <input xmlns:ns 7="http://www.w3.org/2007/05/addressing/metadata" ns7:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest" message="tns:purchaseOrderConfirmation"></input>2931 <output xmlns:ns 8="http://www.w3.org/2007/05/addressing/metadata" ns8:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationResponse" message="tns:purchaseOrderConfirmationResponse"></output>2934 <input xmlns:ns9="http://www.w3.org/2007/05/addressing/metadata" ns9:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest" message="tns:purchaseOrderConfirmation"></input> 2935 <output xmlns:ns10="http://www.w3.org/2007/05/addressing/metadata" ns10:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationResponse" message="tns:purchaseOrderConfirmationResponse"></output> 2932 2936 </operation> 2933 2937 <operation name="finalPurchaseOrderStatusNotification"> 2934 <input xmlns:ns9="http://www.w3.org/2007/05/addressing/metadata" ns9:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest" message="tns:finalPurchaseOrderStatusNotification"></input> 2935 <output xmlns:ns10="http://www.w3.org/2007/05/addressing/metadata" ns10:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationResponse" message="tns:finalPurchaseOrderStatusNotificationResponse"></output> 2936 </operation> 2937 <operation name="DropOffRequest"> 2938 <input xmlns:ns11="http://www.w3.org/2007/05/addressing/metadata" ns11:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest" message="tns:DropOffRequest"></input> 2939 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestResponse" message="tns:DropOffRequestResponse"></output> 2940 </operation> 2941 <operation name="productSold"> 2942 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldRequest" message="tns:productSold"></input> 2943 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldResponse" message="tns:productSoldResponse"></output> 2938 <input xmlns:ns11="http://www.w3.org/2007/05/addressing/metadata" ns11:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest" message="tns:finalPurchaseOrderStatusNotification"></input> 2939 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationResponse" message="tns:finalPurchaseOrderStatusNotificationResponse"></output> 2940 </operation> 2941 <operation name="dropOffRequest"> 2942 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestRequest" message="tns:dropOffRequest"></input> 2943 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestResponse" message="tns:dropOffRequestResponse"></output> 2944 2944 </operation> 2945 2945 </portType> 2946 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 57131</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><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, 27 Feb 2015 11:28:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService">2946 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60865</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3097"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><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://org.ita.midas.logisticssaut/referenceimplementation" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas.logisticssaut/referenceimplementation" name="PointOfSaleReferenceImplementationService"> 2947 2947 <import namespace="http://org.ita.midas/logisticssaut" location="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService?wsdl=1"></import> 2948 2948 <binding xmlns:ns1="http://org.ita.midas/logisticssaut" name="PointOfSaleReferenceImplementationServicePortBinding" type="ns1:IITAPointOfSale"> … … 2975 2975 </output> 2976 2976 </operation> 2977 <operation name="productSold"> 2978 <soap:operation soapAction=""></soap:operation> 2979 <input> 2980 <soap:body use="literal"></soap:body> 2981 </input> 2982 <output> 2983 <soap:body use="literal"></soap:body> 2984 </output> 2985 </operation> 2977 2986 <operation name="purchaseOrderConfirmation"> 2978 2987 <soap:operation soapAction=""></soap:operation> … … 2993 3002 </output> 2994 3003 </operation> 2995 <operation name="DropOffRequest"> 2996 <soap:operation soapAction=""></soap:operation> 2997 <input> 2998 <soap:body use="literal"></soap:body> 2999 </input> 3000 <output> 3001 <soap:body use="literal"></soap:body> 3002 </output> 3003 </operation> 3004 <operation name="productSold"> 3004 <operation name="dropOffRequest"> 3005 3005 <soap:operation soapAction=""></soap:operation> 3006 3006 <input> … … 3017 3017 </port> 3018 3018 </service> 3019 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 57131</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><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, 27 Feb 2015 11:28:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut">3019 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60865</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService" query="wsdl=1"><headers><header key="User-Agent" value="Java/1.7.0_75"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="5823"><data><?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. --><definitions xmlns:tns="http://org.ita.midas/logisticssaut" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://org.ita.midas/logisticssaut"> 3020 3020 <types> 3021 3021 <xsd:schema> … … 3041 3041 <part name="parameters" element="tns:inboudDeliveryStatusResponse"></part> 3042 3042 </message> 3043 <message name="productSold"> 3044 <part name="parameters" element="tns:productSold"></part> 3045 </message> 3046 <message name="productSoldResponse"> 3047 <part name="parameters" element="tns:productSoldResponse"></part> 3048 </message> 3043 3049 <message name="purchaseOrderConfirmation"> 3044 3050 <part name="parameters" element="tns:purchaseOrderConfirmation"></part> … … 3053 3059 <part name="parameters" element="tns:finalPurchaseOrderStatusNotificationResponse"></part> 3054 3060 </message> 3055 <message name="DropOffRequest"> 3056 <part name="parameters" element="tns:DropOffRequest"></part> 3057 </message> 3058 <message name="DropOffRequestResponse"> 3059 <part name="parameters" element="tns:DropOffRequestResponse"></part> 3060 </message> 3061 <message name="productSold"> 3062 <part name="parameters" element="tns:productSold"></part> 3063 </message> 3064 <message name="productSoldResponse"> 3065 <part name="parameters" element="tns:productSoldResponse"></part> 3061 <message name="dropOffRequest"> 3062 <part name="parameters" element="tns:dropOffRequest"></part> 3063 </message> 3064 <message name="dropOffRequestResponse"> 3065 <part name="parameters" element="tns:dropOffRequestResponse"></part> 3066 3066 </message> 3067 3067 <portType name="IITAPointOfSale"> … … 3078 3078 <output xmlns:ns6="http://www.w3.org/2007/05/addressing/metadata" ns6:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/inboudDeliveryStatusResponse" message="tns:inboudDeliveryStatusResponse"></output> 3079 3079 </operation> 3080 <operation name="productSold"> 3081 <input xmlns:ns7="http://www.w3.org/2007/05/addressing/metadata" ns7:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldRequest" message="tns:productSold"></input> 3082 <output xmlns:ns8="http://www.w3.org/2007/05/addressing/metadata" ns8:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldResponse" message="tns:productSoldResponse"></output> 3083 </operation> 3080 3084 <operation name="purchaseOrderConfirmation"> 3081 <input xmlns:ns 7="http://www.w3.org/2007/05/addressing/metadata" ns7:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest" message="tns:purchaseOrderConfirmation"></input>3082 <output xmlns:ns 8="http://www.w3.org/2007/05/addressing/metadata" ns8:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationResponse" message="tns:purchaseOrderConfirmationResponse"></output>3085 <input xmlns:ns9="http://www.w3.org/2007/05/addressing/metadata" ns9:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest" message="tns:purchaseOrderConfirmation"></input> 3086 <output xmlns:ns10="http://www.w3.org/2007/05/addressing/metadata" ns10:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationResponse" message="tns:purchaseOrderConfirmationResponse"></output> 3083 3087 </operation> 3084 3088 <operation name="finalPurchaseOrderStatusNotification"> 3085 <input xmlns:ns9="http://www.w3.org/2007/05/addressing/metadata" ns9:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest" message="tns:finalPurchaseOrderStatusNotification"></input> 3086 <output xmlns:ns10="http://www.w3.org/2007/05/addressing/metadata" ns10:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationResponse" message="tns:finalPurchaseOrderStatusNotificationResponse"></output> 3087 </operation> 3088 <operation name="DropOffRequest"> 3089 <input xmlns:ns11="http://www.w3.org/2007/05/addressing/metadata" ns11:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest" message="tns:DropOffRequest"></input> 3090 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestResponse" message="tns:DropOffRequestResponse"></output> 3091 </operation> 3092 <operation name="productSold"> 3093 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldRequest" message="tns:productSold"></input> 3094 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/productSoldResponse" message="tns:productSoldResponse"></output> 3089 <input xmlns:ns11="http://www.w3.org/2007/05/addressing/metadata" ns11:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest" message="tns:finalPurchaseOrderStatusNotification"></input> 3090 <output xmlns:ns12="http://www.w3.org/2007/05/addressing/metadata" ns12:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationResponse" message="tns:finalPurchaseOrderStatusNotificationResponse"></output> 3091 </operation> 3092 <operation name="dropOffRequest"> 3093 <input xmlns:ns13="http://www.w3.org/2007/05/addressing/metadata" ns13:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestRequest" message="tns:dropOffRequest"></input> 3094 <output xmlns:ns14="http://www.w3.org/2007/05/addressing/metadata" ns14:Action="http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestResponse" message="tns:dropOffRequestResponse"></output> 3095 3095 </operation> 3096 3096 </portType> 3097 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port> 48839</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="377"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="377"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>true</accepted><comments>Order accepted</comments><idOrder>order-4pw20</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44303</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="381"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-4pw20</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44307</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instructionToDespatchRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="393"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="393"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatch xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingOutboundInstructionXML><idInstruction>order-4pw20-pizo1</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingOutboundInstructionXML></ns2:instructionToDespatch></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="255"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatchResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instructionToDespatchResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48839</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-4pw20-uk67s</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56856</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="415"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="415"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionResponseXML><accepted>true</accepted><comments>Transport accepted</comments><idTransport>order-4pw20-jldjk</idTransport></transportInstructionResponseXML></ns2:transportInstructionConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56856</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-4pw20-jldjk</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45774</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="403"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="403"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-4pw20-jldjk-z79b8</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>37658</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="442"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="442"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>pointofsale-despatch-im5hp</idDespatch><idInboundInstruction>order-4pw20-jldjk-z79b8</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58293</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>4</dayOfWeek><idPickUpDropOff>order-4pw20-jldjk-z79b8</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-4pw20-jldjk</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45754</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="417"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="417"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>false</accepted><comments>Try other day of week</comments><idPickUpDropOff>order-4pw20-jldjk-z79b8</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58267</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>7</dayOfWeek><idPickUpDropOff>order-4pw20-jldjk-z79b8</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-4pw20-jldjk</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56856</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-4pw20-jldjk</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46592</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/DropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-4pw20-jldjk-r7dgb</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:DropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41399</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-im5hp</idDespatch><idInboundInstruction>order-4pw20-jldjk-z79b8</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48839</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><finalPurchaseOrderNotificationXML><accepted>true</accepted><comments>Finished - All delivered</comments><idOrder>order-4pw20</idOrder></finalPurchaseOrderNotificationXML></ns2:finalPurchaseOrderStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="285"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalPurchaseOrderStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55870</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-4pw20-uk67s</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>57131</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>1</dayOfWeek><idPickUpDropOff>order-4pw20-jldjk-r7dgb</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-4pw20-jldjk</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:DropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43441</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/transportInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="503"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="503"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionXML><destination>destination-point-of-saleo1k1m</destination><idProduct>POTATOES</idProduct><idTransport>order-4pw20-jldjk</idTransport><numberOfTrips>1</numberOfTrips><origin>origin-material-supplier-9bb87</origin><quantity>5000</quantity></transportInstructionXML></ns2:transportInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="253"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55861</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="430"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="430"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>warehouse-despatch-s6mdm</idDespatch><idInboundInstruction>order-4pw20</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44303</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="428"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="428"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>warehouse-despatch-s6mdm</idDespatch><idInboundInstruction>order-4pw20</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44281</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/inventoryStatusInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="312"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="312"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><inventoryReportStatusXML><idProduct>POTATOES</idProduct></inventoryReportStatusXML></ns2:inventoryStatusInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:inventoryStatusInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55833</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="325"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="325"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-4pw20</idOrder><idProduct>POTATOES</idProduct><quantity>5000</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48839</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="377"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="377"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>true</accepted><comments>Order accepted</comments><idOrder>order-wl1gp</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44303</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="381"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-wl1gp</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44307</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instructionToDespatchRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="393"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="393"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatch xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingOutboundInstructionXML><idInstruction>order-wl1gp-k5xcz</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingOutboundInstructionXML></ns2:instructionToDespatch></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="255"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatchResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instructionToDespatchResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48839</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-wl1gp-6hlpx</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56856</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="415"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="415"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionResponseXML><accepted>true</accepted><comments>Transport accepted</comments><idTransport>order-wl1gp-wrga7</idTransport></transportInstructionResponseXML></ns2:transportInstructionConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56856</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-wl1gp-wrga7</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>45754</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/PickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="403"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="403"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-wl1gp-wrga7-u31hj</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:PickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41399</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-jjmt7</idDespatch><idInboundInstruction>order-wl1gp-wrga7-u31hj</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>48839</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><finalPurchaseOrderNotificationXML><accepted>true</accepted><comments>Finished - All delivered</comments><idOrder>order-wl1gp</idOrder></finalPurchaseOrderNotificationXML></ns2:finalPurchaseOrderStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="285"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalPurchaseOrderStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55870</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-wl1gp-6hlpx</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>37658</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="442"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="442"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>pointofsale-despatch-jjmt7</idDespatch><idInboundInstruction>order-wl1gp-wrga7-u31hj</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>58267</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/PickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>3</dayOfWeek><idPickUpDropOff>order-wl1gp-wrga7-u31hj</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-wl1gp-wrga7</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:PickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:PickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:PickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>56856</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-wl1gp-wrga7</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46592</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/DropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-wl1gp-wrga7-969q8</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:DropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41399</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-jjmt7</idDespatch><idInboundInstruction>order-wl1gp-wrga7-u31hj</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55870</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-wl1gp-6hlpx</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="266"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>false</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>57131</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/DropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>4</dayOfWeek><idPickUpDropOff>order-wl1gp-wrga7-969q8</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-wl1gp-wrga7</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:DropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:DropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:DropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43441</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/transportInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="503"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="503"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionXML><destination>destination-point-of-saleazy98</destination><idProduct>POTATOES</idProduct><idTransport>order-wl1gp-wrga7</idTransport><numberOfTrips>1</numberOfTrips><origin>origin-material-supplier-sperj</origin><quantity>5000</quantity></transportInstructionXML></ns2:transportInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="253"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55861</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="430"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="430"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>warehouse-despatch-7vw6j</idDespatch><idInboundInstruction>order-wl1gp</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44303</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="428"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="428"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>warehouse-despatch-7vw6j</idDespatch><idInboundInstruction>order-wl1gp</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44281</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/inventoryStatusInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="312"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="312"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><inventoryReportStatusXML><idProduct>POTATOES</idProduct></inventoryReportStatusXML></ns2:inventoryStatusInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:inventoryStatusInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>55833</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="325"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="325"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-wl1gp</idOrder><idProduct>POTATOES</idProduct><quantity>5000</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Fri, 27 Feb 2015 11:28:20GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange></session>3097 </definitions></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60882</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="526"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>false</accepted><comments>Cannot manufacture product UNKNOWN PRODUCT list of products: articlesICanProduce -&gt; [COKE,1000][WATER,3000][MEAT,500][POTATOES,5000][ORANGES,4000][YOGURT,2000]</comments><idOrder>order-l7icw</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51336</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.9-b130926.1035 svn-revision#5f6196f2b90e9460065a4c2f4e30e065b245e51e"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="331"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="331"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-l7icw</idOrder><idProduct>UNKNOWN PRODUCT</idProduct><quantity>100</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60882</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="520"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="520"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>false</accepted><comments>Minimum quantity of order is needed, list of products: articlesICanProduce -&gt; [COKE,1000][WATER,3000][MEAT,500][POTATOES,5000][ORANGES,4000][YOGURT,2000]</comments><idOrder>order-h5u2s</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>62.101.184.205</ip><host>62.101.184.205</host><port>51336</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.9-b130926.1035 svn-revision#5f6196f2b90e9460065a4c2f4e30e065b245e51e"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="319"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="319"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-h5u2s</idOrder><idProduct>COKE</idProduct><quantity>10</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60882</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/purchaseOrderConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="377"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="377"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderConfirmationXML><accepted>true</accepted><comments>Order accepted</comments><idOrder>order-18gog</idOrder></purchaseOrderConfirmationXML></ns2:purchaseOrderConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="263"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>52779</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="381"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="381"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-18gog</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>52783</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/instructionToDespatchRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="393"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="393"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatch xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingOutboundInstructionXML><idInstruction>order-18gog-uw2o2</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingOutboundInstructionXML></ns2:instructionToDespatch></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="255"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instructionToDespatchResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instructionToDespatchResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60882</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/instrutionToReceiveRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceive xmlns:ns2="http://org.ita.midas/logisticssaut"><warehousingInboundInstructionXML><idInstruction>order-18gog-ivnx6</idInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></warehousingInboundInstructionXML></ns2:instrutionToReceive></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:instrutionToReceiveResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:instrutionToReceiveResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60526</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/transportInstructionConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="415"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="415"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionResponseXML><accepted>true</accepted><comments>Transport accepted</comments><idTransport>order-18gog-su93g</idTransport></transportInstructionResponseXML></ns2:transportInstructionConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60526</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-18gog-su93g</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41642</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="403"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="403"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:pickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-18gog-su93g-bivfv</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:pickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:pickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:pickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>43432</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8096</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8096/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8096"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="442"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="442"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>pointofsale-despatch-yhr8k</idDespatch><idInboundInstruction>order-18gog-su93g-bivfv</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>49004</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:pickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>5</dayOfWeek><idPickUpDropOff>order-18gog-su93g-bivfv</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-18gog-su93g</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:pickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:pickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:pickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>41623</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8093</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8093/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/pickUpConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8093"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="417"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="417"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:pickUpConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>false</accepted><comments>Try other day of week</comments><idPickUpDropOff>order-18gog-su93g-bivfv</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:pickUpConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="249"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:pickUpConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:pickUpConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>49003</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8090</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8090/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/pickUpRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8090"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="453"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="453"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:pickUpRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>7</dayOfWeek><idPickUpDropOff>order-18gog-su93g-bivfv</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-18gog-su93g</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:pickUpRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:pickUpRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:pickUpRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60526</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8087</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8087/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/finalTransportStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8087"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="387"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="387"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><transportStatusNotificationXML><comments>Transport done ok</comments><idTransport>order-18gog-su93g</idTransport></transportStatusNotificationXML></ns2:finalTransportStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="277"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalTransportStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalTransportStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>42531</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8094</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8094/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/dropOffConfirmationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8094"/><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><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:dropOffConfirmation xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffConfirmationXML><accepted>true</accepted><comments>Accepted</comments><idPickUpDropOff>order-18gog-su93g-7eybq</idPickUpDropOff></transportPickUpDropOffConfirmationXML></ns2:dropOffConfirmation></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="251"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:dropOffConfirmationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:dropOffConfirmationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>44961</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8091</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8091/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/receiptNotificationOutBoundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8091"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="446"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="446"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>pointofsale-despatch-yhr8k</idDespatch><idInboundInstruction>order-18gog-su93g-bivfv</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationOutBound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="267"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationOutBoundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationOutBoundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60882</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8095</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8095/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/finalPurchaseOrderStatusNotificationRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8095"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="419"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="419"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotification xmlns:ns2="http://org.ita.midas/logisticssaut"><finalPurchaseOrderNotificationXML><accepted>true</accepted><comments>Finished - All delivered</comments><idOrder>order-18gog</idOrder></finalPurchaseOrderNotificationXML></ns2:finalPurchaseOrderStatusNotification></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="285"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:finalPurchaseOrderStatusNotificationResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:finalPurchaseOrderStatusNotificationResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46332</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="413"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="413"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>-</idDespatch><idInboundInstruction>order-18gog-ivnx6</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>60882</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8097</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8097/ws/PointOfSaleReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAPointOfSale/dropOffRequestRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8097"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="455"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="455"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:dropOffRequest xmlns:ns2="http://org.ita.midas/logisticssaut"><transportPickUpDropOffRequestXML><dayOfWeek>4</dayOfWeek><idPickUpDropOff>order-18gog-su93g-7eybq</idPickUpDropOff><idProduct>POTATOES</idProduct><idTransport>order-18gog-su93g</idTransport><quantity>5000</quantity></transportPickUpDropOffRequestXML></ns2:dropOffRequest></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="241"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:dropOffRequestResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:dropOffRequestResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>49563</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8092</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8092/ws/TransportReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITATransport/transportInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8092"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="503"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="503"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><transportInstructionXML><destination>destination-point-of-salerqoxi</destination><idProduct>POTATOES</idProduct><idTransport>order-18gog-su93g</idTransport><numberOfTrips>1</numberOfTrips><origin>origin-material-supplier-pisef</origin><quantity>5000</quantity></transportInstructionXML></ns2:transportInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="253"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:transportInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:transportInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46318</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/receiptNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="430"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="430"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><receivingAdviceXML><idDespatch>warehouse-despatch-8x247</idDespatch><idInboundInstruction>order-18gog</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></receivingAdviceXML></ns2:receiptNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:receiptNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:receiptNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>52779</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/depatchNotificationInboundRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="428"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="428"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInbound xmlns:ns2="http://org.ita.midas/logisticssaut"><despatchAdviceXML><idDespatch>warehouse-despatch-8x247</idDespatch><idInboundInstruction>order-18gog</idInboundInstruction><idProduct>POTATOES</idProduct><quantity>5000</quantity></despatchAdviceXML></ns2:depatchNotificationInbound></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:depatchNotificationInboundResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:depatchNotificationInboundResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>52777</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8089</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8089/ws/WarehouseReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAWarehouse/inventoryStatusInstructionRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8089"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="312"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="312"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstruction xmlns:ns2="http://org.ita.midas/logisticssaut"><inventoryReportStatusXML><idProduct>POTATOES</idProduct></inventoryReportStatusXML></ns2:inventoryStatusInstruction></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="265"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:inventoryStatusInstructionResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:inventoryStatusInstructionResponse></S:Body></S:Envelope></data></content></response></httpExchange><httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>193.144.226.15</ip><host>193.144.226.15</host><port>46313</port></sender><receiver><ip>193.144.226.15</ip><host>193.144.226.15</host><port>8088</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://midassaut.itainnova.es:8088/ws/BusinessUnitReferenceImplementationService"><headers><header key="SOAPAction" value=""http://org.ita.midas/logisticssaut/IITAMaterialSupplier/purchaseOrderRequest""/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="midassaut.itainnova.es:8088"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="325"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="325"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrder xmlns:ns2="http://org.ita.midas/logisticssaut"><purchaseOrderXML><idOrder>order-18gog</idOrder><idProduct>POTATOES</idProduct><quantity>5000</quantity></purchaseOrderXML></ns2:purchaseOrder></S:Body></S:Envelope></data></content></request><response status="200"><headers><header key="Date" value="Wed, 18 Mar 2015 12:39:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="239"><data><?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:purchaseOrderResponse xmlns:ns2="http://org.ita.midas/logisticssaut"><return>true</return></ns2:purchaseOrderResponse></S:Body></S:Envelope></data></content></response></httpExchange></session>
Note: See TracChangeset
for help on using the changeset viewer.