diff --git a/smp-soapui-tests/groovy/SMP.groovy b/smp-soapui-tests/groovy/SMP.groovy
index 473b1ef29b4abbf435bfba56b23a14b0c28ce535..216e3ab79939ed6e84c82753501857e43cc0829c 100644
--- a/smp-soapui-tests/groovy/SMP.groovy
+++ b/smp-soapui-tests/groovy/SMP.groovy
@@ -21,12 +21,14 @@ import java.util.Iterator;
 import sun.misc.IOUtils;
 import java.text.SimpleDateFormat
 import com.eviware.soapui.support.GroovyUtils
+import com.eviware.soapui.impl.wsdl.teststeps.RestTestRequestStep
+
 
 
 class SMP
 {
     // Database parameters
-    def sql;
+    def sqlConnection;
 	def url;
     def driver;
     def testDatabase="false";
@@ -71,7 +73,7 @@ class SMP
         testDatabase=context.expand( '${#Project#testDB}' );
 		dbUser=context.expand( '${#Project#dbUser}' );
         dbPassword=context.expand( '${#Project#dbPassword}' );		
-		sql = null;	
+		sqlConnection = null;	
 		debugLog("SMP instance created", log)
 	}
 	
@@ -82,15 +84,19 @@ class SMP
 
 //IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
 	// Log information wrapper 
-	static def void debugLog(logMsg, log,  logLevel = DEFAULT_LOG_LEVEL) {
+	static def void debugLog(logMsg, logObject,  logLevel = DEFAULT_LOG_LEVEL) {
 		if (logLevel.toString()=="1" || logLevel.toString() == "true") 
-			log.info (logMsg)
+			logObject.info (logMsg)
 	}
 //IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
     // Simply open DB connection (dev or test depending on testEnvironment variable)	
 	def openConnection(){
-       log.debug "Open DB connections"
-        if(testDatabase.toLowerCase()=="true"){
+       debugLog("Open DB connections", log)
+        if(testDatabase.toLowerCase()=="true")
+			if (sqlConnection) {
+				debugLog("DB connection seems already open", log)
+			}
+			else {
             try{
 				if(driver.contains("oracle")){
 					// Oracle DB
@@ -99,26 +105,120 @@ class SMP
 					// Mysql DB (assuming fallback: currently, we use only those 2 DBs ...)
 					GroovyUtils.registerJdbcDriver( "com.mysql.jdbc.Driver" )
 				}
-				sql = Sql.newInstance(url, dbUser, dbPassword, driver);
+				sqlConnection = Sql.newInstance(url, dbUser, dbPassword, driver);
             }
             catch (SQLException ex)
             {
-                assert 0,"SQLException occured: " + ex;
+                assert 0,"SQLException occurred: " + ex;
             }
 		}
     }
 //IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
     // Close the DB connection opened previously
     def closeConnection(){
+	debugLog("Close DB connection", log)
         if(testDatabase.toLowerCase()=="true"){
-            if(sql){
-                sql.connection.close();
-                sql = null;
+            if(sqlConnection){
+                sqlConnection.connection.close();
+                sqlConnection = null;
             }
         }
+	debugLog("DB connection closed", log)
+    }
+	
+//IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
+    def executeListOfSqlQueries(String[] sqlQueriesList) {
+        def connectionOpenedInsideMethod = false
+
+        if (!sqlConnection) {
+            debugLog("Method executed without connections open to the DB - try to open connection", log)
+            openConnection()
+            connectionOpenedInsideMethod = true
+        }
+
+        for (query in sqlQueriesList) {
+            debugLog("Executing SQL query: " + query, log)
+			try{
+				sqlConnection.execute query
+			}
+			catch (SQLException ex){
+				closeConnection();
+				assert 0,"SQLException occurred: " + ex;
+			}
+        }
+
+        if (connectionOpenedInsideMethod) {
+            debugLog("Connection to DB opened during method execution - close opened connection", log)
+            closeConnection()
+        }
     }
 
+	//IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
+    def executeSqlAndReturnFirstRow(String query) {
+        def connectionOpenedInsideMethod = false
+		def res
 
+        if (!sqlConnection) {
+            debugLog("Method executed without connections open to the DB - try to open connection", log)
+            openConnection()
+            connectionOpenedInsideMethod = true
+        }
+
+        debugLog("Executing SQL query: " + query, log)
+		try{
+			res = sqlConnection.firstRow query
+		}
+		catch (SQLException ex){
+			closeConnection();
+			assert 0,"SQLException occurred: " + ex;
+		}
+
+        if (connectionOpenedInsideMethod) {
+            debugLog("Connection to DB opened during method execution - close opened connection", log)
+            closeConnection()
+        }
+		return res
+    }
+	
+	def findDomainName() {
+		def result = executeSqlAndReturnFirstRow('select domainId from SMP_DOMAIN')
+		return result.domainId
+	}
+
+//IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
+//// filterForTestSuite = /PASSING_AUTO_BAMBOO/   // for multiple test suite use more advanced regexp like for example:  /PASSING_AUTO_BAMBOO|PASSING_NOT_FOR_BAMBOO/ 
+//// filterForTestCases = /SMP001.*/   //for single test case use simple regexp like /SMP001.*/
+
+def cleanAndAddHeaderElement(filterForTestSuite,  filterForTestCases, String fieldName, String newValue = null) {
+	def restMethodName = 'PUT ServiceGroup'
+	
+	debugLog("START: modyfication of test requests", log)
+	context.testCase.testSuite.project.getTestSuiteList().each { testSuite ->
+		if (testSuite.getLabel() =~ filterForTestSuite) {
+		debugLog("test suite: " + testSuite.getLabel(), log)
+			testSuite.getTestCaseList().each { testCase ->
+				if (testCase.getLabel() =~ filterForTestCases) {
+					debugLog("test label:" + testCase.getLabel(), log)
+					testCase.getTestStepList().each {testStep ->
+	      				if (testStep instanceof RestTestRequestStep && testStep.getRestMethod().name == restMethodName) {
+	
+							def hOld = testStep.getHttpRequest().getRequestHeaders()
+							hOld.remove(fieldName) 
+							hOld.remove(fieldName.capitalize())
+							hOld.remove(fieldName.toUpperCase())
+							if (newValue) 
+								hOld[fieldName] = [newValue]
+							testStep.getHttpRequest().setRequestHeaders(hOld) 
+							debugLog("For testStep:" + testStep.name + "; Header: "  + testStep.getHttpRequest().getRequestHeaders(), log)
+						}
+		  			}
+	 			}
+	
+			}
+		}
+	 }
+	debugLog("END: Modification of requests hedears finished", log)
+}
 //=================================================================================
 //======================== Initialize the parameters names ========================
 //=================================================================================	
@@ -942,5 +1042,4 @@ class SMP
 	}
 	
 	
-}
-
+}
\ No newline at end of file
diff --git a/smp-soapui-tests/soapui/SMP4.0-Generic-soapui-project.xml b/smp-soapui-tests/soapui/SMP4.0-Generic-soapui-project.xml
index 0604c12a0d144c2aacdd9474ea67b5fb5cf8a84f..b739e63e67e905794f69f431e7f34569df71e4f6 100644
--- a/smp-soapui-tests/soapui/SMP4.0-Generic-soapui-project.xml
+++ b/smp-soapui-tests/soapui/SMP4.0-Generic-soapui-project.xml
@@ -622,70 +622,19 @@ ss
 //ExcelReporting.reportTestCase(testRunner, log)
   //ExcelReporting.reportTestCase(testRunner, log)
 """
-log.info tdScript.trim().replaceAll(oldLineToBeChanged, newLineToBeChanged)</script></con:config></con:testStep><con:tearDownScript/><con:properties/><con:reportParameters/></con:testCase><con:testCase id="2eca694a-866b-45f6-b306-bef939bcfa7f" failOnError="true" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="Add or change request header" searchProperties="true"><con:settings/><con:testStep type="groovy" name="Add domain defined as project prop to all PUT ServiceGroup requests headers" id="1c4afe55-1b02-41d7-897a-0f3dd5ca37fe"><con:settings/><con:config><script>import com.eviware.soapui.impl.wsdl.teststeps.RestTestRequestStep
+log.info tdScript.trim().replaceAll(oldLineToBeChanged, newLineToBeChanged)</script></con:config></con:testStep><con:tearDownScript/><con:properties/><con:reportParameters/></con:testCase><con:testCase id="2eca694a-866b-45f6-b306-bef939bcfa7f" failOnError="true" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="Add or change request header" searchProperties="true"><con:settings/><con:testStep type="groovy" name="Add domain defined as project prop to all PUT ServiceGroup requests headers" id="1c4afe55-1b02-41d7-897a-0f3dd5ca37fe"><con:settings/><con:config><script>def testSmp = new SMP(log,null,context)
+def sampleDomainName =  testSmp.findDomainName()
+testRunner.testCase.testSuite.project.setPropertyValue("defaultDomainName", sampleDomainName)
 
-def newDomainValue = '${#Project#defaultDomainName}'
 def filterForTestSuite = /PASSING_AUTO_BAMBOO/   // for multiple test suite use more advanced regexp like for example:  /PASSING_AUTO_BAMBOO|PASSING_NOT_FOR_BAMBOO/ 
-def filterForTestCases = /SMP001.*/   //for single test case use simple regexp like /SMP001.*/
-def restMethodName = 'PUT ServiceGroup'
-
-log.info "START: modyfication of test requests"
-testRunner.testCase.testSuite.project.getTestSuiteList().each { testSuite ->
-	if (testSuite.getLabel() =~ filterForTestSuite) {
-	log.info "test suite: " + testSuite.getLabel() 
-		testSuite.getTestCaseList().each { testCase ->
-			if (testCase.getLabel() =~ filterForTestCases) {
-				log.info "test label:" + testCase.getLabel() 
-				testCase.getTestStepList().each {testStep ->
-      				if (testStep instanceof RestTestRequestStep &amp;&amp; testStep.getRestMethod().name == restMethodName) {
-
-						def hOld = testStep.getHttpRequest().getRequestHeaders()
-						hOld.remove('domain') 
-						hOld.remove('Domain')
-						hOld.remove('DOMAIN')
-						hOld['domain'] = [newDomainValue]
-						testStep.getHttpRequest().setRequestHeaders(hOld) 
-						log.info "For testStep:" + testStep.name + "; Header: "  + testStep.getHttpRequest().getRequestHeaders() 
-					}
-	  			}
- 			}
+def filterForTestCases = /.*/   //for single test case use simple regexp like /SMP001.*/
+def newDomainValue = '${#Project#defaultDomainName}'
 
-		}
-	}
- }
-log.info "END: Modification of requests hedears finished"
-</script></con:config></con:testStep><con:testStep type="groovy" name="Remove domain information from header in all PUT ServiceGroup requests" id="3c7a5dfa-cf09-4c7b-b321-5e10f50d6797"><con:settings/><con:config><script>import com.eviware.soapui.impl.wsdl.teststeps.RestTestRequestStep
+testSmp.cleanAndAddHeaderElement(filterForTestSuite,  filterForTestCases, 'domain', newDomainValue) </script></con:config></con:testStep><con:testStep type="groovy" name="Remove domain information from header in all PUT ServiceGroup requests" id="3c7a5dfa-cf09-4c7b-b321-5e10f50d6797"><con:settings/><con:config><script>def testSmp = new SMP(log,null,context)
 
 def filterForTestSuite = /PASSING_AUTO_BAMBOO/   // for multiple test suite use more advanced regexp like for example:  /PASSING_AUTO_BAMBOO|PASSING_NOT_FOR_BAMBOO/ 
-def filterForTestCases = /SMP001.*/   //for single test case use simple regexp like /SMP001.*/
-def restMethodName = 'PUT ServiceGroup'
-
-
-log.info "START: Modification of requests hedears "
-testRunner.testCase.testSuite.project.getTestSuiteList().each { testSuite ->
-	if (testSuite.getLabel() =~ filterForTestSuite) {
-	log.info "test suite: " + testSuite.getLabel() 
-		testSuite.getTestCaseList().each { testCase ->
-			if (testCase.getLabel() =~ filterForTestCases) {
-				log.info "test label:" + testCase.getLabel() 
-				testCase.getTestStepList().each {testStep ->
-      				if (testStep instanceof RestTestRequestStep &amp;&amp; testStep.getRestMethod().name == restMethodName) {
-
-						def hOld = testStep.getHttpRequest().getRequestHeaders()
-						hOld.remove('domain') 
-						hOld.remove('Domain')
-						hOld.remove('DOMAIN')
-						testStep.getHttpRequest().setRequestHeaders(hOld) 
-						log.info "For testStep:" + testStep.name + "; Header: "  + testStep.getHttpRequest().getRequestHeaders() 
-					}
-	  			}
- 			}
-
-		}
-	}
- }
-log.info "END: Modification of requests hedears finished"
-</script></con:config></con:testStep><con:properties/></con:testCase><con:properties/><con:reportParameters/></con:testSuite><con:testSuite id="f67e22b1-8209-44c2-896c-8aec1e67238c" name="PASSING_AUTO_BAMBOO"><con:description>TestSuite generated for REST Service [SMP]</con:description><con:settings><con:setting id="IncludeOverview">true</con:setting><con:setting id="IncludeResults">false</con:setting><con:setting id="FlowLayout">false</con:setting><con:setting id="ErrorDetails">false</con:setting><con:setting id="IncludeCoverage">true</con:setting></con:settings><con:runType>SEQUENTIAL</con:runType><con:testCase id="45d40c30-56ec-4330-af5a-ad61191b4060" failOnError="true" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="SMP000-Configuration" searchProperties="true"><con:settings/><con:testStep type="groovy" name="Multiple Domains Check" id="821ee742-0649-480d-9465-9abe9081dfb4"><con:settings/><con:config><script>log.info "START: Multiple Domains Check script"
+def filterForTestCases = /.*/   //for single test case use simple regexp like /SMP001.*/
+testSmp.cleanAndAddHeaderElement(filterForTestSuite,  filterForTestCases, 'domain', null) </script></con:config></con:testStep><con:properties/></con:testCase><con:properties/><con:reportParameters/></con:testSuite><con:testSuite id="f67e22b1-8209-44c2-896c-8aec1e67238c" name="PASSING_AUTO_BAMBOO"><con:description>TestSuite generated for REST Service [SMP]</con:description><con:settings><con:setting id="IncludeOverview">true</con:setting><con:setting id="IncludeResults">false</con:setting><con:setting id="FlowLayout">false</con:setting><con:setting id="ErrorDetails">false</con:setting><con:setting id="IncludeCoverage">true</con:setting></con:settings><con:runType>SEQUENTIAL</con:runType><con:testCase id="45d40c30-56ec-4330-af5a-ad61191b4060" failOnError="true" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="SMP000-Configuration" searchProperties="true"><con:settings/><con:testStep type="groovy" name="Multiple Domains Check" id="821ee742-0649-480d-9465-9abe9081dfb4"><con:settings/><con:config><script>log.info "START: Multiple Domains Check script"
 def multi = context.expand('${#Project#testWithMultipleDomain}')
 def tCase = testRunner.testCase.testSuite.project.testSuites["Administration"].testCases["Add or change request header"]
 def tStep = tCase.testSteps["Remove domain information from header in all PUT ServiceGroup requests"]
@@ -706,7 +655,7 @@ log.info "END: Multiple Domains Check script"</script></con:config></con:testSte
 - Send GetServiceGroup for the initial participant duplet (verify that service group is correctly created).
 ->  HTTP Response code 200 is returned. The same previously pushed service goupe is returned.
 - Send PutServiceMetadata request with certificate of AdminServiceGroup (verify service group is linked to its admin).
-->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="87b3618f-7123-4b1d-b40d-a44d10b8d082"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting><con:setting id="RecordRequestRepresentations">true</con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="87b3618f-7123-4b1d-b40d-a44d10b8d082"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting><con:setting id="RecordRequestRepresentations">true</con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
 	&lt;ServiceMetadataReferenceCollection/>
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp//ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:assertion type="GroovyScriptAssertion" id="56630f53-8e65-4371-ae58-8c32c40a2a5f" name="Script Assertion"><con:configuration><scriptText>if (messageExchange.getProperties()) {
@@ -767,7 +716,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup for the initial participant duplet (verify that service group is correctly created).
 ->  HTTP Response code 200 is returned. The same previously pushed service goupe is returned.
 - Send PutServiceMetadata request with only credentials of Admin SMP (verify service group is linked to its admin).
-->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="7070d65d-6856-4861-8e5c-0b44025bd19b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="7070d65d-6856-4861-8e5c-0b44025bd19b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
 	&lt;ServiceMetadataReferenceCollection/>   
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/iso6523-actorid-upis::0088:777002AbZz777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="58e9854f-d15f-4e46-a897-36632fedbf11" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters>
@@ -878,13 +827,13 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 200 is returned.
 -> The data in ServiceGroup table is updated.
 - Send GetServiceGroup for the initial participant duplet.
--> The updated service goupe (by the second PutServiceGroup request) is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup Initial" id="6fbc469e-7b27-4451-aba0-22ae9487f600"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup Initial" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> The updated service goupe (by the second PutServiceGroup request) is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup Initial" id="6fbc469e-7b27-4451-aba0-22ae9487f600"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup Initial" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
 	&lt;ServiceMetadataReferenceCollection/>
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/iso6523-actorid-upis::0088:777002AbZz777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="58e9854f-d15f-4e46-a897-36632fedbf11" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters>
   <con:entry key="ParticipantIdentifierScheme" value="iso6523-actorid-upis"/>
   <con:entry key="ParticipantIdentifier" value="0088:777002AbZz777:test:SmP003"/>
-</con:parameters></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="853cd416-1977-4d80-b721-a80cb21c07c3"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</con:parameters></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="853cd416-1977-4d80-b721-a80cb21c07c3"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
   <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
 	<ServiceMetadataReferenceCollection/>
    <Extension><ex:toto xmlns:ex="http://test.eu">Test</ex:toto></Extension>
@@ -997,7 +946,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> The correct data is inserted in the DB: ServiceGroup table.
 - Send GetServiceGroup for the initial participant duplet.
 ->  HTTP Response code 200 is returned. 
-->The same previously pushed service goupe is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="a34c1436-61e4-45bc-84fa-c11b54f63896"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+->The same previously pushed service goupe is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="a34c1436-61e4-45bc-84fa-c11b54f63896"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
 	<ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1036,6 +985,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> No data inserted in the ServiceGroup table.
 - Send GetServiceGroup for the initial participant duplet.
 -> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="b354f4b5-c414-4d6d-aa21-cdea6ef2e3b3"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><![CDATA[<xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  <con:entry key="domain" value="${#Project#defaultDomainName}"/>
   <con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
   <con:entry key="Client-Cert" value="serial=f71ee8b11cb3b787&amp;subject=CN=EHEALTH_SMP_EC,O=European Commission,C=BE&amp;validFrom=Oct 21 02:00:00 2014 CEST&amp;validTo=Oct 21 01:59:59 2020 CEST&amp;issuer=CN=PEPPOL,O=X,C=Y"/>
 </xml-fragment>]]></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
@@ -1058,7 +1008,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned. 
 -> No data inserted in the ServiceGroup table.
 - Send GetServiceGroup for the initial participant duplet (verify that service group is not created).
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="bc1ebb87-429c-4d90-8751-94044bbe8fa1"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="bc1ebb87-429c-4d90-8751-94044bbe8fa1"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
 	<ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1076,13 +1029,13 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 200 is returned.
 -> The data in ServiceGroup table is updated.
 - Send GetServiceGroup for the initial participant duplet.
--> The updated service goupe (by the second PutServiceGroup request) is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup Initial" id="dbfdfad8-3149-4fb7-a15e-ba459bd08377"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup Initial" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> The updated service goupe (by the second PutServiceGroup request) is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup Initial" id="dbfdfad8-3149-4fb7-a15e-ba459bd08377"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup Initial" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
 	<ServiceMetadataReferenceCollection/>
    <Extension>
       <ex:Dummy xmlns:ex="http://dummy.eu">dummy</ex:Dummy>
    </Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters><entry key="ParticipantIdentifier" value="${#Project#defaultParticipantIdentifier}:smp007" xmlns="http://eviware.com/soapui/config"/></con:parameters></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="b436f9bf-4b63-433e-9870-a6fee56b0407"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters><entry key="ParticipantIdentifier" value="${#Project#defaultParticipantIdentifier}:smp007" xmlns="http://eviware.com/soapui/config"/></con:parameters></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="b436f9bf-4b63-433e-9870-a6fee56b0407"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
 	<ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1108,7 +1061,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> No data inserted in the ServiceGroup table.
 - Send GetServiceGroup for the initial participant duplet.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="175053a5-138b-4558-946c-d8eb1b1c48af"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="175053a5-138b-4558-946c-d8eb1b1c48af"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1128,7 +1084,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> No data inserted in the ServiceGroup table.
 - Send GetServiceGroup for the initial participant duplet.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="0314a797-c8b0-4c3d-bda8-b456d727beae"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="0314a797-c8b0-4c3d-bda8-b456d727beae"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
 	<ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1174,31 +1130,46 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 400 is returned with OTHER_ERROR.
 -> No data inserted in the ServiceGroup table.
 - Send GetServiceGroup for the initial participant duplet.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID Extension 1" id="8b459cb9-d973-4ae1-9703-8ab841c571b8"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID Extension 1" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID Extension 1" id="8b459cb9-d973-4ae1-9703-8ab841c571b8"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID Extension 1" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
 	<ServiceMetadataReferenceCollection/>
    <Extension>
       DummyValue
    </Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="4a9ad872-ba82-4ce4-91e2-ffe14e67e9d9" name="Contains"><con:configuration><token>XSD_INVALID</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID Extension 1" id="83d81020-c374-48c1-89b7-f74ecc3d4274"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID Extension 1" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID Extension 2" id="f6d4f956-ab89-44e7-9a91-b1115c994819"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID Extension 2" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="4a9ad872-ba82-4ce4-91e2-ffe14e67e9d9" name="Contains"><con:configuration><token>XSD_INVALID</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID Extension 1" id="83d81020-c374-48c1-89b7-f74ecc3d4274"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID Extension 1" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID Extension 2" id="f6d4f956-ab89-44e7-9a91-b1115c994819"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID Extension 2" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>Dummy</Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="4a9ad872-ba82-4ce4-91e2-ffe14e67e9d9" name="Contains"><con:configuration><token>XSD_INVALID</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID Extension 2" id="650eab79-dea3-4dd5-a117-d096ed1edbfb"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID Extension 2" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID ParticipantID Occurence 2" id="bdc9bbd5-802e-4196-9667-121e7d261a9d"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID ParticipantID Occurence 2" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="4a9ad872-ba82-4ce4-91e2-ffe14e67e9d9" name="Contains"><con:configuration><token>XSD_INVALID</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID Extension 2" id="650eab79-dea3-4dd5-a117-d096ed1edbfb"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID Extension 2" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID ParticipantID Occurence 2" id="bdc9bbd5-802e-4196-9667-121e7d261a9d"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID ParticipantID Occurence 2" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
       <ex:Test xmlns:ex="http://test.eu">Test</ex:Test>
    </Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="4a9ad872-ba82-4ce4-91e2-ffe14e67e9d9" name="Contains"><con:configuration><token>XSD_INVALID</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID ParticipantID Occurence 2" id="5bc30361-e152-4e53-a75d-f0b94f894b69"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID ParticipantID Occurence 2" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID Extra Element" id="a784471c-5eb5-4e4b-9a56-84317732093a"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID Extra Element" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="4a9ad872-ba82-4ce4-91e2-ffe14e67e9d9" name="Contains"><con:configuration><token>XSD_INVALID</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID ParticipantID Occurence 2" id="5bc30361-e152-4e53-a75d-f0b94f894b69"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID ParticipantID Occurence 2" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID Extra Element" id="a784471c-5eb5-4e4b-9a56-84317732093a"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID Extra Element" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <SomeIdentifier scheme="ehealth-actorid-qns">0088:7770010100777</SomeIdentifier>
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
       <ex:Test xmlns:ex="http://test.eu">Test</ex:Test>
    </Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="4a9ad872-ba82-4ce4-91e2-ffe14e67e9d9" name="Contains"><con:configuration><token>XSD_INVALID</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID Extra Element" id="b984cbb1-4819-4c2b-afde-3eca3b773174"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID Extra Element" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup WRONG_FIELD ParticipantID" id="09f1563e-2683-48fd-a1dc-7818dd6d048b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup WRONG_FIELD ParticipantID" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="4a9ad872-ba82-4ce4-91e2-ffe14e67e9d9" name="Contains"><con:configuration><token>XSD_INVALID</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID Extra Element" id="b984cbb1-4819-4c2b-afde-3eca3b773174"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID Extra Element" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup WRONG_FIELD ParticipantID" id="09f1563e-2683-48fd-a1dc-7818dd6d048b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup WRONG_FIELD ParticipantID" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="ehealth-actorid-qns">0088:7770010100778</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1210,29 +1181,32 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
    <Extension>
       <ex:Test xmlns:ex="http://test.eu">Test</ex:Test>
    </Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns:0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="8e3b2516-21d6-4597-8368-86206f47da3b" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="52c92ce5-973e-48ff-84db-186c8cea85e3" name="Contains"><con:configuration><token>FORMAT_ERROR</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup FORMAT_ERROR Delimiter" id="4af8440f-51d8-40b7-826e-7df2a17183ac"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup FORMAT_ERROR Delimiter" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="4426711b-3fd7-4391-b787-752b8ad0b853" name="Contains"><con:configuration><token>NOT_FOUND</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup WRONG_FIELD Ref" id="e548afa5-00a7-4a2a-b839-12ccf1ef11eb" disabled="true"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup WRONG_FIELD Ref" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns:0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="8e3b2516-21d6-4597-8368-86206f47da3b" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="52c92ce5-973e-48ff-84db-186c8cea85e3" name="Contains"><con:configuration><token>FORMAT_ERROR</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup FORMAT_ERROR Delimiter" id="4af8440f-51d8-40b7-826e-7df2a17183ac"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup FORMAT_ERROR Delimiter" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="4426711b-3fd7-4391-b787-752b8ad0b853" name="Contains"><con:configuration><token>NOT_FOUND</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup WRONG_FIELD Ref" id="e548afa5-00a7-4a2a-b839-12ccf1ef11eb" disabled="true"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup WRONG_FIELD Ref" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
       <ex:Test xmlns:ex="http://test.eu">Test</ex:Test>
    </Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup WRONG_FIELD Ref" id="0f4d3b4d-25a8-4299-b6c5-fb8cd00e33a2" disabled="true"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup WRONG_FIELD Ref" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>200</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup USER_NOT_FOUND" id="2893984d-f06e-4e7e-8ef7-19ec7b7985db"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup USER_NOT_FOUND" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=Dummy1000,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup WRONG_FIELD Ref" id="0f4d3b4d-25a8-4299-b6c5-fb8cd00e33a2" disabled="true"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup WRONG_FIELD Ref" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>200</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup USER_NOT_FOUND" id="2893984d-f06e-4e7e-8ef7-19ec7b7985db"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup USER_NOT_FOUND" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=Dummy1000,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
       <ex:Test xmlns:ex="http://test.eu">Test</ex:Test>
    </Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp//ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="1400d2b4-b616-4b45-b911-ad114cdf36a8" name="Contains"><con:configuration><token>USER_NOT_FOUND</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup USER_NOT_FOUND" id="374422d1-dc4f-4dba-a27d-bc110c13cc7a"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup USER_NOT_FOUND" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID ParticipantID Occurence 0" id="65f5a5e8-7a1d-4b33-a0dd-0c6ea06b922b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID ParticipantID Occurence 0" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp//ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="1400d2b4-b616-4b45-b911-ad114cdf36a8" name="Contains"><con:configuration><token>USER_NOT_FOUND</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup USER_NOT_FOUND" id="374422d1-dc4f-4dba-a27d-bc110c13cc7a"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup USER_NOT_FOUND" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID ParticipantID Occurence 0" id="65f5a5e8-7a1d-4b33-a0dd-0c6ea06b922b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID ParticipantID Occurence 0" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ServiceMetadataReferenceCollection/>
    <Extension>
       <ex:Test xmlns:ex="http://test.eu">Test</ex:Test>
    </Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID ParticipantID Occurence 0" id="6aa39f9d-da34-4592-92a6-de43fd564d6f"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID ParticipantID Occurence 0" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 0" id="9a604276-4179-4acf-91d0-159124f12dfe"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 0" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID ParticipantID Occurence 0" id="6aa39f9d-da34-4592-92a6-de43fd564d6f"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID ParticipantID Occurence 0" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 0" id="9a604276-4179-4acf-91d0-159124f12dfe"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 0" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <Extension>
       <ex:Test xmlns:ex="http://test.eu">Test</ex:Test>
    </Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 0" id="24df36f8-3b5a-435e-b400-c4a47482c7d5"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 0" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 2" id="7cac8d47-c38d-4b48-84d3-a9bf27ecaaa7"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 2" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 0" id="24df36f8-3b5a-435e-b400-c4a47482c7d5"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 0" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 2" id="7cac8d47-c38d-4b48-84d3-a9bf27ecaaa7"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup XSD_INVALID ServiceMetadataReferenceCollection Occurence 2" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <ServiceMetadataReferenceCollection/>
@@ -1262,7 +1236,10 @@ else if(result == javax.swing.JOptionPane.NO_OPTION)
 {
 	log.info "script aborted";
 	testRunner.fail("Test aborted by user");
-}</script></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="d1d1423d-a941-456f-b752-1d587cc35063"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+}</script></con:config></con:testStep><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="d1d1423d-a941-456f-b752-1d587cc35063"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1288,7 +1265,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 200 is returned.
 -> The correct data is removed from the DB: ServiceGroup table.
 - Send GetServiceGroup request for the initially created service group.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="7127f458-0425-4ce7-aef6-bed1bce895d4"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="7127f458-0425-4ce7-aef6-bed1bce895d4"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
    &lt;ServiceMetadataReferenceCollection/>
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters><entry key="ParticipantIdentifier" value="${#Project#defaultParticipantIdentifier}:smp012" xmlns="http://eviware.com/soapui/config"/></con:parameters></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Delete ServiceGroup" id="402aefe7-7381-443c-a9df-1dbc8ae10557"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="DELETE ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Delete ServiceGroup" mediaType="application/xml" id="a97cde56-8e9c-4d6f-b950-faf82b0268e9" postQueryString="false"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="44125a11-6c5a-4b71-a1eb-8ba97af7abee" name="Valid HTTP Status Codes"><con:configuration><codes>200</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters>
@@ -1320,7 +1297,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 200 is returned.
 -> The correct data is removed from the DB: ServiceGroup table.
 - Send GetServiceGroup request for the initial service group.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="9d486705-bd85-43cd-8116-67ddf67590a1"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="9d486705-bd85-43cd-8116-67ddf67590a1"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
    &lt;ServiceMetadataReferenceCollection/>
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/iso6523-actorid-upis::0088:777002aBZZ777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="e9d57f24-99e5-440f-b94f-edf22494693b" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters>
@@ -1346,7 +1323,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 200 is returned.
 -> The correct data is removed from the DB: ServiceGroup table.
 - Send GetServiceGroup request for the initial service group.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="fe161769-c4cb-4fa3-92ac-521dd55f76d0"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="fe161769-c4cb-4fa3-92ac-521dd55f76d0"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1383,7 +1360,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> Data not removed from the ServiceGroup table.
 - Send GetServiceGroup request for the initial service group.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="0de04149-6e85-420a-a5be-634ddd057527"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="0de04149-6e85-420a-a5be-634ddd057527"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
     &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
    &lt;ServiceMetadataReferenceCollection/>
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/iso6523-actorid-upis::0088:777002aBZZ777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="e9d57f24-99e5-440f-b94f-edf22494693b" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters><entry key="ParticipantIdentifier" value="${#Project#defaultParticipantIdentifier}:smp015" xmlns="http://eviware.com/soapui/config"/></con:parameters></con:restRequest></con:config></con:testStep><con:testStep type="groovy" name="Alert 1" id="3fdf4404-6e61-45bc-aa03-ecdedbc9eb3c" disabled="true"><con:settings/><con:config><script>def result=javax.swing.JOptionPane.showConfirmDialog( null,"Connect your Machine to the open internet."); 
@@ -1460,7 +1440,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup request.
 -> HTTP Response code 200 is returned.
 - Send DeleteServiceGroup request for a not existing participant identifier.
--> HTTP Response code 404 is returned with NOT_FOUND.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="39140172-94b4-44b7-9e67-6a414480b648"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 is returned with NOT_FOUND.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="39140172-94b4-44b7-9e67-6a414480b648"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1491,7 +1471,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> Data not removed from the ServiceGroup table.
 - Send GetServiceGroup request for the initial service group.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="bc78d04e-e881-40f5-ae76-49c1c9713bb3"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="bc78d04e-e881-40f5-ae76-49c1c9713bb3"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1521,7 +1501,7 @@ Expected result bellow is incorrect as AdminSMP2TEST is also admin would be able
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> Data not removed from the ServiceGroup table.
 - Send GetServiceGroup request for the initial service group.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="a0080000-fd5f-4d58-8ef9-3949337d1eb0"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="a0080000-fd5f-4d58-8ef9-3949337d1eb0"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1547,7 +1527,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 400 is returned with OTHER_ERROR.
 -> No data removed from the ServiceGroup table.
 - Send GetServiceGroup request for the initial service group.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="a9e36d9a-e62a-4060-a1fb-adb55af19a63"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="a9e36d9a-e62a-4060-a1fb-adb55af19a63"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1574,7 +1554,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 500 is returned with TECHNICAL.
 -> No data inserted in the ServiceGroup table.
 - Send GetServiceGroup request for the initial service group.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="69e22f23-c917-4bac-90a4-e03d81226f9f"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="69e22f23-c917-4bac-90a4-e03d81226f9f"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=SMP_0112992001,O=DIGIT,C=BE"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1612,7 +1595,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> The correct data is inserted in the DB: ServiceMetadata table.
 - Send GetServiceMetadata for the initial participant quadruplet.
 ->  HTTP Response code 200 is returned. 
-->The same previously pushed service Metadata is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="1bbcadb5-aff4-4c75-8a6e-29661240c161"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+->The same previously pushed service Metadata is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="1bbcadb5-aff4-4c75-8a6e-29661240c161"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1670,7 +1656,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> The correct data is inserted in the DB: ServiceMetadata table.
 - Send GetServiceMetadata for the initial participant quadruplet.
 ->  HTTP Response code 200 is returned. 
-->The same previously pushed service Metadata is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="2fe7c09b-73f9-47b1-aba0-cd679f448e8f"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+->The same previously pushed service Metadata is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="2fe7c09b-73f9-47b1-aba0-cd679f448e8f"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
   <Extension>
@@ -1723,7 +1709,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> No data inserted in the ServiceMetadat table.
 - Send GetServiceMEtadata for the initial participant quadruplet.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="7b4bd67b-e891-4fbd-8ead-57c83644aa4b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="7b4bd67b-e891-4fbd-8ead-57c83644aa4b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1783,7 +1769,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 200 is returned.
 -> The data in ServiceMetadata table is updated.
 - Send GetServiceMetadata for the initial participant duplet.
--> The updated service Metadata (by the second PutServiceMetadata request) is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="fb676636-632f-40e9-8e48-5b79a5d5e1c5"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> The updated service Metadata (by the second PutServiceMetadata request) is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="fb676636-632f-40e9-8e48-5b79a5d5e1c5"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1869,7 +1855,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> No data inserted in the ServiceMetadata table.
 - Send GetServiceMEtadata for the initial participant quadruplet.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="2caebf99-621d-42cd-9454-9dae7d396e0d"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="2caebf99-621d-42cd-9454-9dae7d396e0d"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -1972,7 +1961,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> No data inserted in the ServiceMetadata table.
 - Send GetServiceMEtadata for the initial participant quadruplet.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="18fc3a51-85b4-4b99-a950-1e377caf891b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="18fc3a51-85b4-4b99-a950-1e377caf891b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -2051,7 +2040,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 400 is returned with OTHER_ERROR.
 -> No data inserted in the ServiceGroup table.
 - Send GetServiceMEtadata for the initial participant quadruplet.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="ad6e7fcd-cdd0-4713-ab96-933af498059a"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="ad6e7fcd-cdd0-4713-ab96-933af498059a"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -2995,7 +2984,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 500 is returned with TECHNICAL.
 -> No data inserted in the ServiceMetadata table.
 - Send GetServiceMetadata for the initial participant quadruplet.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="c9e41395-2b57-4868-82ca-ec7ceee31194"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="c9e41395-2b57-4868-82ca-ec7ceee31194"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3055,7 +3044,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 200 is returned.
 -> The correct data is removed from the DB: ServiceMetadata table.
 - Send GetServiceMetadata request for the initial service Metadata.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="260fcecf-6da6-42a0-ba13-2912ac7c154e"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="260fcecf-6da6-42a0-ba13-2912ac7c154e"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3133,7 +3125,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 200 is returned.
 -> The correct data is removed from the DB: ServiceMetadata table.
 - Send GetServiceMetadata request for the initial service Metadata.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="0172c35c-8262-43f7-9c02-87311832259e"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="0172c35c-8262-43f7-9c02-87311832259e"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
   &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
    &lt;ServiceMetadataReferenceCollection/>
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/iso6523-actorid-upis::0088:777002AbZz777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="7a70f405-d728-4a8f-ae69-85a656fc7b85" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters>
@@ -3193,7 +3188,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 200 is returned.
 -> The correct data is removed from the DB: ServiceMetadata table.
 - Send GetServiceMetadata request for the initial service Metadata.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="036ad7cf-ade4-4218-a802-24ad761ae504"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="036ad7cf-ade4-4218-a802-24ad761ae504"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3237,7 +3232,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 200 is returned.
 -> The correct data is removed from the DB: ServiceMetadata table.
 - Send GetServiceMetadata request for the initial service Metadata.
--> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="9e963be9-bab2-4a5e-a484-c72d4566eada"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 with NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="9e963be9-bab2-4a5e-a484-c72d4566eada"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3297,7 +3295,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> Data not removed from the ServiceMetadata table.
 - Send GetServiceMetadata request for the initial service Metadata.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="969287f7-0663-4115-bfd5-b637d556a834"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="969287f7-0663-4115-bfd5-b637d556a834"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3366,7 +3364,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 404 is returned with NOT_FOUND.
 -> Data not removed from the ServiceMetadata table.
 - Send GetServiceMetadata request for the initial service Metadata.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="f8248568-01e6-4610-8890-bea26ebba723"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="f8248568-01e6-4610-8890-bea26ebba723"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3434,7 +3432,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> Data not removed from the ServiceMetadata table.
 - Send GetServiceMetadata request for the initial service Metadata.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="19d4bbe5-e67b-4706-a65f-3c27d455f782"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="19d4bbe5-e67b-4706-a65f-3c27d455f782"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3496,7 +3497,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> Data not removed from the ServiceMetadata table.
 - Send GetServiceMetadata request for the initial service Metadata.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="1c34fddf-1c68-46f6-ac69-8e8d837222f8"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="1c34fddf-1c68-46f6-ac69-8e8d837222f8"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3558,7 +3562,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 401 with UNAUTHORIZED is returned.
 -> Data not removed from the ServiceMetadata table.
 - Send GetServiceMetadata request for the initial service Metadata.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="31cc367e-1a69-4fe2-979d-1e145640dbad"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="31cc367e-1a69-4fe2-979d-1e145640dbad"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3618,7 +3625,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send PutServiceMetadata request for a new document service: quadruplet participantIdentifier  + participantIndentifierScheme + DocumentIdentifier + DocumentIdentifierScheme. The sender has "Admin Service Group" priveledges.
 - Send DeleteServiceMetadata request for the created service Metadata. The request contains an "other" error (OTHER_ERROR).
 -> HTTP Response code 400 is returned with OTHER_ERROR.
--> No data deleted from the ServiceMetadata table.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="2ac1b891-f444-456c-9b3b-dab88380f77f"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> No data deleted from the ServiceMetadata table.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="2ac1b891-f444-456c-9b3b-dab88380f77f"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3663,7 +3670,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> HTTP Response code 500 is returned with TECHNICAL.
 -> No data deleted from the ServiceGroup table.
 - Send GetServiceMetadata request for the initial service Metadata.
--> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="45e07125-77e8-45d5-8f32-34c7a56d5ab9"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 200 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="45e07125-77e8-45d5-8f32-34c7a56d5ab9"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3724,7 +3731,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup request for the created service group. No credentials and no certificate used. Request is sent within the same network as the SMP. 
 -> HTTP Response code 200 is returned.
 -> The correct participant's service group information is returned. 
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="2b50d0e9-17a5-4927-b116-0cc0314081cd"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="2b50d0e9-17a5-4927-b116-0cc0314081cd"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3757,7 +3764,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup request for duplet.toLowercase(). The sender has "Admin Service Group" priveledges (via its certificate).
 -> HTTP Response code 200 is returned.
 -> The correct initial participant's service group information is returned. 
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="e7540208-c2ce-4d06-a259-caccc7cd78be"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="e7540208-c2ce-4d06-a259-caccc7cd78be"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
    &lt;ServiceMetadataReferenceCollection/>
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/iso6523-actorid-upis::0088:777002aBZZ777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="e9d57f24-99e5-440f-b94f-edf22494693b" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters><entry key="ParticipantIdentifier" value="${#Project#defaultParticipantIdentifier}:SmP043" xmlns="http://eviware.com/soapui/config"/></con:parameters></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="TEST Get ServiceGroup" id="0f72db50-5b19-455f-b43a-ecb152fe8e63"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Get ServiceGroup" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="dade080b-76c5-449e-8b22-9a51673b9185" name="Valid HTTP Status Codes"><con:configuration><codes>200</codes></con:configuration></con:assertion><con:assertion type="GroovyScriptAssertion" id="6d8b3d16-2307-4c27-94e5-50d5807cfb00" name="Script Assertion"><con:configuration><scriptText>def test = new SMP(log,messageExchange,context);
@@ -3777,7 +3784,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup request for the created service group. No credentials and no certificate used.
 -> HTTP Response code 200 is returned.
 -> The correct participant's service group information is returned. 
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="747aaa34-a46c-4d40-bcbf-dad4f18c8cd3"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="747aaa34-a46c-4d40-bcbf-dad4f18c8cd3"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3810,7 +3817,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup request for the created service group. The sender has "Admin SMP" priveledges (via credentials). 
 -> HTTP Response code 200 is returned.
 -> The correct participant's service group information is returned. 
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="fbd4a61f-3657-4262-a950-b43b2142ee74"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="fbd4a61f-3657-4262-a950-b43b2142ee74"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3834,7 +3841,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup request for the created service group. The sender AdminSMP2 has "Admin SMP" priveledges (via credentials). The sender AdminSMP2 is not the owner of the service group. 
 -> HTTP Response code 200 is returned.
 -> The correct participant's service group information is returned. 
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="30321010-8198-4d4c-968c-d3b48b84615a"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="30321010-8198-4d4c-968c-d3b48b84615a"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3858,7 +3865,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup request for the created service group. No credentials and no certificate used. Request is sent from a diff network as the SMP. 
 -> HTTP Response code 200 is returned.
 -> The correct participant's service group information is returned. 
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="12036ac6-673d-4258-8ab4-f07daa692270"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="12036ac6-673d-4258-8ab4-f07daa692270"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3897,7 +3904,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup request for the service group but with a wrong scheme. No credentials and no certificate used.
 -> HTTP Response code 404 is returned with NOT_FOUND.
 - Send GetServiceGroup request for a not existing participant identifier.
--> HTTP Response code 404 is returned with NOT_FOUND.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="35e9af51-3f8c-463d-8803-54c7d205ec74"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 is returned with NOT_FOUND.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="35e9af51-3f8c-463d-8803-54c7d205ec74"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3919,7 +3926,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 
 - Send PutServiceGroup request for a new receiver participant: duplet participantIdentifier  + participantIndentifierScheme. The sender has "Admin SMP" priveledges.
 - Send GetServiceGroup request for the service group. the request contains an "other" error (OTHER_ERROR).
--> HTTP Response code 400 is returned with OTHER_ERROR.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="34ba5f8a-ea32-4a97-ab4b-9dedf6d7c579"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 400 is returned with OTHER_ERROR.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="34ba5f8a-ea32-4a97-ab4b-9dedf6d7c579"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3936,7 +3943,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send PutServiceGroup request for a new receiver participant: duplet participantIdentifier  + participantIndentifierScheme. The sender has "Admin SMP" priveledges.
 - Send GetServiceGroup request for the created service group. No credentials and no certificate used.
 - Unexpected technical error occurs (can be triggered by renaming DB column name).
--> HTTP Response code 500 is returned with TECHNICAL.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="bc74bfb8-71a0-4d5b-8a22-7828a03e6fe8"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 500 is returned with TECHNICAL.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="bc74bfb8-71a0-4d5b-8a22-7828a03e6fe8"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -3972,7 +3979,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceMetadata request for the created service Metadata. No credentials and no certificate used. Request is sent within the same network as the SMP. 
 -> HTTP Response code 200 is returned.
 -> The correct (participant+Document)'s service Metadata information is returned.
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="1998da63-c681-4a0b-998e-ac8372174c7b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="1998da63-c681-4a0b-998e-ac8372174c7b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -4047,7 +4057,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceMetadata request for the created service Metadata. The sender has "Admin SMP" priveledges (via credentials). 
 -> HTTP Response code 200 is returned.
 -> The correct (participant+Document)'s service Metadata information is returned.
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="61df81d2-375f-4acf-88d4-1d1b7df8c587"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="61df81d2-375f-4acf-88d4-1d1b7df8c587"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -4093,7 +4103,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Request is sent from a diff network as the SMP. 
 -> HTTP Response code 200 is returned.
 -> The correct (participant+Document)'s service Metadata information is returned.
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="ee021edd-7b06-4833-b21a-bafe4f0dc754"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="ee021edd-7b06-4833-b21a-bafe4f0dc754"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -4160,7 +4170,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceMetadata request with a not existing Document identifier.
 -> HTTP Response code 404 is returned with NOT_FOUND.
 - Send GetServiceMetadata request with a not existing Document identifier scheme.
--> HTTP Response code 404 is returned with NOT_FOUND.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="edfc8683-fb58-4308-b504-e709c7edd3cc"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 is returned with NOT_FOUND.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="edfc8683-fb58-4308-b504-e709c7edd3cc"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -4202,7 +4212,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 
 - Send PutServiceMetadata request for a new document service: quadruplet participantIdentifier  + participantIndentifierScheme + DocumentIdentifier + DocumentIdentifierScheme. The sender has "Admin SMP" priveledges (via its certificate).
 - Send GetServiceMetadata request for the created service Metadata. No credentials and no certificate used. The request contains an "other" error (OTHER_ERROR).
--> HTTP Response code 400 is returned with OTHER_ERROR.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="e2d99cc5-3112-4eac-a4be-f2906b4df48b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 400 is returned with OTHER_ERROR.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="e2d99cc5-3112-4eac-a4be-f2906b4df48b"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -4244,7 +4254,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send PutServiceMetadata request for a new document service: quadruplet participantIdentifier  + participantIndentifierScheme + DocumentIdentifier + DocumentIdentifierScheme. The sender has "Admin Service Group" priveledges.
 - Send GetServiceMetadata request for the created service Metadata. No credentials and no certificate used.
 - Unexpected technical error occurs (can be triggered by renaming DB column name).
--> HTTP Response code 500 is returned with TECHNICAL.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="f9068785-a86d-4031-bb8b-bc885fb95c6e"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 500 is returned with TECHNICAL.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="f9068785-a86d-4031-bb8b-bc885fb95c6e"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -4303,7 +4313,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 
 - Send GetServiceMetadata request for the created service Metadata. ServiceMetadata is marked as redirected. No credentials and no certificate used. 
 -> Redirect information is returned: redirect element containing the new link to follow for the signed service metadata. Also, it contains certificate UID of the new SMP.
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="249d08c0-6d38-422c-b331-dec4886f94c6"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="249d08c0-6d38-422c-b331-dec4886f94c6"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -4360,7 +4370,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceMetadata request for the created service Metadata. No credentials and no certificate used.
 -> HTTP Response code 200 is returned.
 -> The correct (participant+Document)'s service Metadata information is returned.
--> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="8ec11468-f481-4b0b-922f-0c30127d9a9d"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> Verify the returned data against the DB.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="8ec11468-f481-4b0b-922f-0c30127d9a9d"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
    &lt;ServiceMetadataReferenceCollection/>
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/iso6523-actorid-upis::0088:777002AbZz777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="58e9854f-d15f-4e46-a897-36632fedbf11" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters>
@@ -4464,7 +4474,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - The service Metadata contains multiple Endpoints with duplicate transport profile in 2 different endpoints.
 -> Error is returned (HTTP Response code 500 may be ?)
 - Send GetServiceMetadata request for the created service Metadata. No credentials and no certificate used.
--> HTTP Response code 404 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="a1e8c1cc-788e-4f65-87f5-bae761c07c71"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 404 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="a1e8c1cc-788e-4f65-87f5-bae761c07c71"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
    &lt;ServiceMetadataReferenceCollection/>
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/iso6523-actorid-upis::0088:777002AbZz777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="58e9854f-d15f-4e46-a897-36632fedbf11" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters>
@@ -4571,7 +4581,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send PutServiceMetadata request with certificate of AdminServiceGroup (verify service group is linked to its admin).
 ->  HTTP Response code 200 is returned. 
 
-To be updated or dropted expected result is an error. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="0dc74d86-3330-414c-9519-34525e167e02"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://busdox.org/serviceMetadata/publishing/1.0/" xmlns:ids="http://busdox.org/transport/identifiers/1.0/">
+To be updated or dropted expected result is an error. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="0dc74d86-3330-414c-9519-34525e167e02"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://busdox.org/serviceMetadata/publishing/1.0/" xmlns:ids="http://busdox.org/transport/identifiers/1.0/">
 
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup" id="ac0a1d18-3acc-4d17-8cbc-f03165a5ad63"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>200</codes></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Delete ServiceGroup" id="1982e2f3-f1a5-4aa2-b598-2c2173868cf5" disabled="true"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="DELETE ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Delete ServiceGroup" mediaType="application/xml" id="a97cde56-8e9c-4d6f-b950-faf82b0268e9" postQueryString="false"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:assertion type="Valid HTTP Status Codes" id="e768352d-4a96-4322-aa14-0c1d69568c4b" name="Valid HTTP Status Codes"><con:configuration><codes>200</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters>
 <con:entry key="ParticipantIdentifierScheme" value="${Put ServiceGroup#ParticipantIdentifierScheme}"/>
@@ -4589,7 +4599,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 -> In the response, HTTP content type header is set to "text/xml". 
 - Send PutServiceMetadata.
 - Send GetServiceMetadata.
--> In the response, HTTP content type header is set to "text/xml". </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="0367f2a5-2c78-495f-b900-1d1a900a52a0"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> In the response, HTTP content type header is set to "text/xml". </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="0367f2a5-2c78-495f-b900-1d1a900a52a0"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request>&lt;ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    &lt;ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}&lt;/ParticipantIdentifier>
    &lt;ServiceMetadataReferenceCollection/>
 &lt;/ServiceGroup></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp/iso6523-actorid-upis::0088:777002AbZz777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="58e9854f-d15f-4e46-a897-36632fedbf11" name="Valid HTTP Status Codes"><con:configuration><codes>201</codes></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters><entry key="ParticipantIdentifier" value="${#Project#defaultParticipantIdentifier}:smp065" xmlns="http://eviware.com/soapui/config"/></con:parameters></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup" id="23f99b31-1eda-4787-805e-1937a92a27f2"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="dade080b-76c5-449e-8b22-9a51673b9185" name="Valid HTTP Status Codes"><con:configuration><codes>200</codes></con:configuration></con:assertion><con:assertion type="GroovyScriptAssertion" id="85ce6ac9-1631-441a-9242-622b4b0cc438" name="Script Assertion"><con:configuration><scriptText>def test = new SMP(log,messageExchange,context);
@@ -4734,7 +4744,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send PutServiceMetadata request for a new document service: quadruplet participantIdentifier  + participantIndentifierScheme + DocumentIdentifier + DocumentIdentifierScheme. The sender has "Admin ServiceGroup" priveledges. The Metadata contains several extensions. 
 - Send GetServiceMetadata request for the created service Metadata. No credentials and no certificate used. Request is sent within the same network as the SMP. 
 -> HTTP Response code 200 is returned.
--> The correct (participant+Document)'s service Metadata information and extension is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="552cde89-5063-462c-85ec-af14fec7a864"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> The correct (participant+Document)'s service Metadata information and extension is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup" id="552cde89-5063-462c-85ec-af14fec7a864"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -4861,7 +4871,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 
 - Send PutServiceGroup request for a new receiver participant: duplet participantIdentifier  + participantIndentifierScheme. The sender has "Admin SMP" priveledges.
 - ServiceGroup-Owner is added but the certificate present is not registered in the database. 
--> HTTP Response code 400 with USER_NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup-Certificate Not registered" id="b5765976-e9ac-445a-92f0-aeac96065022"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup-Certificate Not registered" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMPP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 400 with USER_NOT_FOUND is returned.</con:description><con:settings/><con:testStep type="restrequest" name="Put ServiceGroup-Certificate Not registered" id="b5765976-e9ac-445a-92f0-aeac96065022"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup-Certificate Not registered" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMPP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -4881,7 +4894,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Supply a Client-Cert certificate that is outdated. 
 -> HTTP Response code 401 is returned.
 - Supply a Client-Cert certificate that is revoked. 
--> HTTP Response code 401 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="c871d714-9d25-4729-b841-bd631e8d5edd"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+-> HTTP Response code 401 is returned.</con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="c871d714-9d25-4729-b841-bd631e8d5edd"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -4975,7 +4991,10 @@ test.finalize();
 testRunner.testCase.testSteps['Delete ServiceMetadata'].run(testRunner, context);
 testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 //ExcelReporting.reportTestCase(testRunner, log)
-</con:tearDownScript><con:properties/><con:reportParameters/><con:breakPoints><con:testStepId>cda74952-fe52-42df-8643-8a59932a76f9</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>e84b7e54-b24e-491a-95b2-a12ff29eb5cc</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>46350f0e-d28d-4ed8-9a45-06d697f21192</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>46f968e2-e20c-4f08-af19-5f4ec1782b23</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>26bc8218-7c1e-456e-b095-3a9e3a92969b</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>080c80af-7afa-4577-820b-07f059b2e086</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>1d316315-62bc-4ebf-9bcb-f127c41ee7e7</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>ba0e611a-5306-40d0-a501-7d4f0e674444</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>e7a44eaf-afe1-4931-912e-b7615966bf0d</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints></con:testCase><con:testCase id="d97687c0-6815-4872-8245-bd23fc96beb2" failOnError="true" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="SMP075-EDELIVERY-2056-Prevent from XXE attacks" searchProperties="true"><con:description/><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="c05f56e7-5b52-4d93-a3bb-5cd50be8a86c"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
+</con:tearDownScript><con:properties/><con:reportParameters/><con:breakPoints><con:testStepId>cda74952-fe52-42df-8643-8a59932a76f9</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>e84b7e54-b24e-491a-95b2-a12ff29eb5cc</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>46350f0e-d28d-4ed8-9a45-06d697f21192</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>46f968e2-e20c-4f08-af19-5f4ec1782b23</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>26bc8218-7c1e-456e-b095-3a9e3a92969b</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>080c80af-7afa-4577-820b-07f059b2e086</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>1d316315-62bc-4ebf-9bcb-f127c41ee7e7</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>ba0e611a-5306-40d0-a501-7d4f0e674444</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>e7a44eaf-afe1-4931-912e-b7615966bf0d</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints></con:testCase><con:testCase id="d97687c0-6815-4872-8245-bd23fc96beb2" failOnError="true" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="SMP075-EDELIVERY-2056-Prevent from XXE attacks" searchProperties="true"><con:description/><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="c05f56e7-5b52-4d93-a3bb-5cd50be8a86c"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
 <!DOCTYPE testingxxe [<!ENTITY xxe SYSTEM "file:///etc/passwd" >]>
 <ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="ehealth-actorid-qns">&xxe;</ParticipantIdentifier>
@@ -4983,7 +5002,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
    <Extension>
       <ex:Test xmlns:ex="http://test.eu">Test</ex:Test>
    </Extension>
-</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp//ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="ea0c00d4-cf63-4c9f-aad3-4461cde5cf8b" name="Contains"><con:configuration><token>External Entity: Failed to read external document</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters><entry key="ParticipantIdentifier" value="${#Project#defaultParticipantIdentifier}:smp075" xmlns="http://eviware.com/soapui/config"/></con:parameters></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup" id="41102fa4-93ee-450a-9e31-9c840855556e"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="c0b16a07-525e-4a0d-b6b5-5b0820eee66e" name="Contains"><con:configuration><token>ServiceGroup not found</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Put ServiceGroup" id="960f90ae-f15e-423f-972b-c92100162cff" disabled="true"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+</ServiceGroup>]]></con:request><con:originalUri>http://wltdgt02.cc.cec.eu.int/cipa-smp-full-webapp//ehealth-actorid-qns::0088:7770010100777</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="2c5c11d9-018c-4b57-854c-8ae30dab1088" name="Valid HTTP Status Codes"><con:configuration><codes>400</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="ea0c00d4-cf63-4c9f-aad3-4461cde5cf8b" name="Contains"><con:configuration><token>External Entity: Failed to read external document</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:username>AdminSMP1TEST</con:username><con:password>adminsmp1test</con:password><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters><entry key="ParticipantIdentifier" value="${#Project#defaultParticipantIdentifier}:smp075" xmlns="http://eviware.com/soapui/config"/></con:parameters></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Get ServiceGroup" id="41102fa4-93ee-450a-9e31-9c840855556e"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="GET ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Get ServiceGroup" mediaType="application/xml" id="a9f15369-89e3-4e53-a448-a9881605a8b0"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request/><con:originalUri>http://130.206.118.4/cipa-smp-full-webapp/iso6523-actorid-upis::0088:5798000000003</con:originalUri><con:assertion type="Valid HTTP Status Codes" id="bb579212-262c-4380-82df-c81be864bf71" name="Valid HTTP Status Codes"><con:configuration><codes>404</codes></con:configuration></con:assertion><con:assertion type="Simple Contains" id="c0b16a07-525e-4a0d-b6b5-5b0820eee66e" name="Contains"><con:configuration><token>ServiceGroup not found</token><ignoreCase>false</ignoreCase><useRegEx>false</useRegEx></con:configuration></con:assertion><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:preemptive>true</con:preemptive><con:authType>Preemptive</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:parameters/></con:restRequest></con:config></con:testStep><con:testStep type="restrequest" name="Put ServiceGroup" id="960f90ae-f15e-423f-972b-c92100162cff" disabled="true"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -5037,7 +5056,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup for the initial participant duplet (verify that service group is correctly created).
 ->  HTTP Response code 200 is returned. The same previously pushed service goupe is returned.
 - Send PutServiceMetadata request with certificate of AdminServiceGroup (verify service group is linked to its admin).
-->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="33bdd303-ad4e-4f12-af61-e864c8d6d66e"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:000000000000100f" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="33bdd303-ad4e-4f12-af61-e864c8d6d66e"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:000000000000100f"/>
+&lt;/xml-fragment></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -5100,7 +5122,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup for the initial participant duplet (verify that service group is correctly created).
 ->  HTTP Response code 200 is returned. The same previously pushed service goupe is returned.
 - Send PutServiceMetadata request with certificate of AdminServiceGroup (verify service group is linked to its admin).
-->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="81082040-27c6-4543-ba92-b0a78e0e8eb1"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH&amp;amp;SMP_EC,O=European&amp;amp;Commission,C=B&amp;amp;E:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="81082040-27c6-4543-ba92-b0a78e0e8eb1"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><![CDATA[<xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  <con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  <con:entry key="ServiceGroup-Owner" value="CN=EHEALTH&amp;SMP_EC,O=European&amp;Commission,C=B&amp;E:f71ee8b11cb3b787"/>
+</xml-fragment>]]></con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -5188,7 +5213,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup for the initial participant duplet (verify that service group is correctly created).
 ->  HTTP Response code 200 is returned. The same previously pushed service goupe is returned.
 - Send PutServiceMetadata request with certificate of AdminServiceGroup (verify service group is linked to its admin).
-->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="07f255f8-6c67-40aa-ace7-99340b07339d"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="07f255f8-6c67-40aa-ace7-99340b07339d"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_SMP_EC,O=European Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -5281,7 +5309,10 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup for the initial participant duplet (verify that service group is correctly created).
 ->  HTTP Response code 200 is returned. The same previously pushed service goupe is returned.
 - Send PutServiceMetadata request with certificate of AdminServiceGroup (verify service group is linked to its admin).
-->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="a9b6e7a4-124a-48ba-af82-3deeabdc5ad7"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="ServiceGroup-Owner" value="CN=EHEALTH_%C5%BC_%E1%BA%9E_%E1%BA%84_,O=European_%C5%BC_%E1%BA%9E_%E1%BA%84_Commission,C=BE:f71ee8b11cb3b787" xmlns="http://eviware.com/soapui/config"/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="a9b6e7a4-124a-48ba-af82-3deeabdc5ad7"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment xmlns:con="http://eviware.com/soapui/config">
+  &lt;con:entry key="domain" value="${#Project#defaultDomainName}"/>
+  &lt;con:entry key="ServiceGroup-Owner" value="CN=EHEALTH_%C5%BC_%E1%BA%9E_%E1%BA%84_,O=European_%C5%BC_%E1%BA%9E_%E1%BA%84_Commission,C=BE:f71ee8b11cb3b787"/>
+&lt;/xml-fragment></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection/>
    <Extension>
@@ -5369,7 +5400,7 @@ testRunner.testCase.testSteps['Delete ServiceGroup'].run(testRunner, context);
 - Send GetServiceGroup for the initial participant duplet (verify that service group is correctly created).
 ->  HTTP Response code 200 is returned. The same previously pushed service goupe is returned.
 - Send PutServiceMetadata request with certificate of AdminServiceGroup (verify service group is linked to its admin).
-->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="bbcbe5de-34fa-4050-bfa9-009e55892174"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting><con:setting id="RecordRequestRepresentations">true</con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
+->  HTTP Response code 200 is returned. </con:description><con:settings/><con:testStep type="restrequest" name="TEST Put ServiceGroup" id="bbcbe5de-34fa-4050-bfa9-009e55892174"><con:settings/><con:config service="SMP" resourcePath="/{ParticipantIdentifierScheme}::{ParticipantIdentifier}" methodName="PUT ServiceGroup" xsi:type="con:RestRequestStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:restRequest name="TEST Put ServiceGroup" mediaType="text/xml" postQueryString="false" id="e50d78e0-763f-4bfd-aa1c-f4dcc7595a2a"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="domain" value="${#Project#defaultDomainName}" xmlns="http://eviware.com/soapui/config"/></con:setting><con:setting id="RecordRequestRepresentations">true</con:setting></con:settings><con:endpoint>${#Project#url}</con:endpoint><con:request><![CDATA[<ServiceGroup xmlns="http://docs.oasis-open.org/bdxr/ns/SMP/2016/05">
    <ParticipantIdentifier scheme="${=request.getProperty('ParticipantIdentifierScheme').getValue()}">${=request.getProperty('ParticipantIdentifier').getValue()}</ParticipantIdentifier>
    <ServiceMetadataReferenceCollection>
       <ServiceMetadataReference href="http://serviceMetadata.eu/ehealth-actorid-qns%3A%3A0088%3A7770010100777/services/busdox-docid-qns%3A%3Aurn%3Aoasis%3Anames%3Aspecification%3Aubl%3Aschema%3Axsd%3AInvoice-001%3A%3AInvoice%23%23UBL-2.0"/>
@@ -7411,4 +7442,4 @@ log.info "OK"</script></con:config></con:testStep><con:testStep type="restreques
   <con:entry key="ParticipantIdentifierScheme" value="${3.1.8. SignedServiceMetadata Basic - Create#ParticipantIdentifierScheme}"/>
   <con:entry key="ParticipantIdentifier" value="${3.1.8. SignedServiceMetadata Basic - Create#ParticipantIdentifier}"/>
   <con:entry key="DocTypeIdentifierScheme" value="${3.1.8. SignedServiceMetadata Basic - Create#DocTypeIdentifierScheme}"/>
-</con:parameters></con:restRequest></con:config></con:testStep><con:tearDownScript/><con:properties><con:property><con:name>defaultDomainName</con:name><con:value>domain1</con:value></con:property></con:properties><con:reportParameters/><con:breakPoints><con:testStepId>cda74952-fe52-42df-8643-8a59932a76f9</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>e84b7e54-b24e-491a-95b2-a12ff29eb5cc</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>46350f0e-d28d-4ed8-9a45-06d697f21192</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>46f968e2-e20c-4f08-af19-5f4ec1782b23</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>26bc8218-7c1e-456e-b095-3a9e3a92969b</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>080c80af-7afa-4577-820b-07f059b2e086</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>1d316315-62bc-4ebf-9bcb-f127c41ee7e7</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints></con:testCase><con:properties><con:property><con:name>KEY_STORE_NAME</con:name><con:value>signatures_keystore.jks</con:value></con:property><con:property><con:name>KEY_STORE_PASSWORD</con:name><con:value>test123</con:value></con:property><con:property><con:name>CERTIFICATE_ALIAS</con:name><con:value>xxx_test5domain1child1</con:value></con:property><con:property><con:name>ID_SCHEME</con:name><con:value>ehealth-actorid-qns</con:value></con:property><con:property><con:name>ID</con:name><con:value>0089:conformance:sg01</con:value></con:property><con:property><con:name>SMP_SERVER_URL</con:name><con:value>http://edeltest5.westeurope.cloudapp.azure.com:7003/smp</con:value></con:property><con:property><con:name>ID_REDIRECT</con:name><con:value>0089:redirect:sg01</con:value></con:property><con:property><con:name>ID_MULTIPLE_ENDPOINTS</con:name><con:value>0089:confor:sg:multi01</con:value></con:property><con:property><con:name>ID_IDENTIFIER</con:name><con:value>0089:ConformanceIdentSg01</con:value></con:property><con:property><con:name>ID_NONEXISTING</con:name><con:value>urn:somethingrandom:ncn</con:value></con:property><con:property><con:name>ID_NO_SCHEME</con:name><con:value>0089:conformance:sg01</con:value></con:property><con:property><con:name>ID_SCHEME_CASE_SENSITIVE</con:name><con:value>sensitive-participant-sc1</con:value></con:property><con:property><con:name>DOCUMENT_SCHEME</con:name><con:value>busdox-docid-qns</con:value></con:property><con:property><con:name>DOCUMENT_ID</con:name><con:value>urn::ehealth%23%23services:extended:epsos01::101</con:value></con:property><con:property><con:name>DOCUMENT_ID_REDIRECT</con:name><con:value>urn::ehealth%23%23services:redirect:extended:epsos01::101</con:value></con:property><con:property><con:name>DOCUMENT_ID_MULTIPLE_ENDPOINTS</con:name><con:value>urn::ehealth##services:multi:extended:epsos01::101</con:value></con:property><con:property><con:name>DOCUMENT_ID_IDENTIFIER</con:name><con:value>eHeAlth%23%23servicesIdent:extended:epSOS01::101</con:value></con:property><con:property><con:name>DOCUMENT_ID_SCHEME_CASE_SENSITIVE</con:name><con:value>casesensitive-doc-scheme1</con:value></con:property><con:property><con:name>EXTENSION</con:name><con:value>&lt;ex:toto xmlns:ex="http://test.eu">Test&lt;/ex:toto></con:value></con:property><con:property><con:name>PROCESS_IDENTIFIER_TYPE</con:name><con:value>cenbii-procid-ubl</con:value></con:property><con:property><con:name>PROCESS_IDENTIFIER</con:name><con:value>urn:www.cenbii.eu:profileConformance01:bii04:ver1.0</con:value></con:property><con:property><con:name>TRANSPORT_PROFILE</con:name><con:value>busdox-transport-start</con:value></con:property><con:property><con:name>ENDPOINT_REFERENCE</con:name><con:value>http://busdox.org/conformanceService01/</con:value></con:property><con:property><con:name>REQUIRE_BUSINESSLEVEL_SIGNATURE</con:name><con:value>false</con:value></con:property><con:property><con:name>SERVICE_ACTIVATION_DATE</con:name><con:value>2003-01-01T00:00:00</con:value></con:property><con:property><con:name>SERVICE_EXPIRATION_DATE</con:name><con:value>2020-05-01T00:00:00</con:value></con:property><con:property><con:name>SERVICE_DESCRIPTION</con:name><con:value>invoice service AS4</con:value></con:property><con:property><con:name>TECHNICAL_CONTACT_URL</con:name><con:value>https://conformance1.com</con:value></con:property><con:property><con:name>SMP_SERVER_URL_REDIRECT</con:name><con:value>http://10.57.40.24:1027</con:value></con:property><con:property><con:name>CERTIFICATE_UID_REDIRECT</con:name><con:value>smptest</con:value></con:property><con:property><con:name>CERTIFICATE</con:name><con:value>MIID7jCCA1egAwIBAgICA+YwDQYJKoZIhvcNAQENBQAwOjELMAkGA1UEBhMCRlIxEzARBgNVBAoMCklIRSBFdXJvcGUxFjAUBgNVBAMMDUlIRSBFdXJvcGUgQ0EwHhcNMTYwNjAxMTQzNTUzWhcNMjYwNjAxMTQzNTUzWjCBgzELMAkGA1UEBhMCUFQxDDAKBgNVBAoMA01vSDENMAsGA1UECwwEU1BNUzENMAsGA1UEKgwESm9hbzEOMAwGA1UEBRMFQ3VuaGExHTAbBgNVBAMMFHFhZXBzb3MubWluLXNhdWRlLnB0MRkwFwYDVQQMDBBTZXJ2aWNlIFByb3ZpZGVyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1eN4qPSSRZqjVFG9TlcPlxf2WiSimQK9L1nf9Z/s0ezeGQjCukDeDq/Wzqd9fpHhaMMq+XSSOtyEtIr5K/As4kFrViONUUkG12J6UllSWogp0NYFwA4wIqKSFiTnQS5/nRTs05oONCCGILCyJNNeO53JzPlaq3/QbPLssuSAr6XucPE8wBBGM8b/TsB2G/zjG8yuSTgGbhaZekq/Vnf9ftj1fr/vJDDAQgH6Yvzd88Z0DACJPHfW1p4F/OWLI386Bq7g/bo1DUPAyEwlf+CkLgJWRKki3yJlOCIZ9enMA5O7rfeG3rXdgYGmWS7tNEgKXxgC+heiYvi7ZWd7M+/SUwIDAQABo4IBMzCCAS8wPgYDVR0fBDcwNTAzoDGgL4YtaHR0cHM6Ly9nYXplbGxlLmloZS5uZXQvcGtpL2NybC82NDMvY2FjcmwuY3JsMDwGCWCGSAGG+EIBBAQvFi1odHRwczovL2dhemVsbGUuaWhlLm5ldC9wa2kvY3JsLzY0My9jYWNybC5jcmwwPAYJYIZIAYb4QgEDBC8WLWh0dHBzOi8vZ2F6ZWxsZS5paGUubmV0L3BraS9jcmwvNjQzL2NhY3JsLmNybDAfBgNVHSMEGDAWgBTsMw4TyCJeouFrr0N7el3Sd3MdfjAdBgNVHQ4EFgQU1GQ/K1ykIwWFgiONzWJLQzufF/8wDAYDVR0TAQH/BAIwADAOBgNVHQ8BAf8EBAMCBSAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDQYJKoZIhvcNAQENBQADgYEAZ7t1Qkr9wz3q6+WcF6p/YX7Jr0CzVe7w58FvJFk2AsHeYkSlOyO5hxNpQbs1L1v6JrcqziNFrh2QKGT2v6iPdWtdCT8HBLjmuvVWxxnfzYjdQ0J+kdKMAEV6EtWU78OqL60CCtUZKXE/NKJUq7TTUCFP2fwiARy/t1dTD2NZo8c=</con:value></con:property><con:property><con:name>E_ID</con:name><con:value>0089%3Aconformance%3Asg01</con:value></con:property><con:property><con:name>E_DOCUMENT_ID</con:name><con:value>urn%3A%3Aehealth%23%23services%3Aextended%3Aepsos01%3A%3A101</con:value></con:property><con:property><con:name>E_ID_IDENTIFIER</con:name><con:value>0089%3AConformanceIdentSg01</con:value></con:property><con:property><con:name>E_DOCUMENT_ID_IDENTIFIER</con:name><con:value>eHeAlth%23%23servicesIdent%3Aextended%3AepSOS01%3A%3A101</con:value></con:property><con:property><con:name>E_ID_MULTIPLE_ENDPOINTS</con:name><con:value>0089%3Aconfor%3Asg%3Amulti01</con:value></con:property><con:property><con:name>E_DOCUMENT_ID_MULTIPLE_ENDPOINTS}</con:name><con:value>urn%3A%3Aehealth%23%23services%3Amulti%3Aextended%3Aepsos01%3A%3A101</con:value></con:property><con:property><con:name>E_ID_REDIRECT</con:name><con:value>0089%3Aredirect%3Asg01</con:value></con:property><con:property><con:name>E_DOCUMENT_ID_REDIRECT</con:name><con:value>urn%3A%3Aehealth%23%23services%3Aredirect%3Aextended%3Aepsos01%3A%3A101</con:value></con:property></con:properties></con:testSuite><con:requirements/><con:properties><con:property><con:name>url</con:name><con:value>http://localhost:58080/smp</con:value></con:property><con:property><con:name>reportFilePath</con:name><con:value>C:\\ec\\soapui\\reports\\SMP_4_0_test_results.xlsx</con:value></con:property><con:property><con:name>updateReport</con:name><con:value>false</con:value></con:property><con:property><con:name>urlExt</con:name><con:value>https://edeltest5.westeurope.cloudapp.azure.com:8443/smp</con:value></con:property><con:property><con:name>tmp</con:name><con:value>http://localhost:58080/cipa-smp-full-webapp</con:value></con:property><con:property><con:name>tmp2</con:name><con:value>https://wladig06.cc.cec.eu.int:1064/cipa-smp-full-webapp</con:value></con:property><con:property><con:name>defaultParticipantIdentifierScheme</con:name><con:value>ehealth-actorid-qns</con:value></con:property><con:property><con:name>defaultParticipantIdentifier</con:name><con:value>0088:7770010100777:test</con:value></con:property><con:property><con:name>defaultDocTypeIdentifierScheme</con:name><con:value>busdox-docid-qns</con:value></con:property><con:property><con:name>defaultDocTypeIdentifier</con:name><con:value>urn:oasis:names:specification:ubl:schema:xsd:Invoice-12::Invoice##urn:www.cenbii.eu:transaction:biicoretrdm010:ver1.0:#urn:www.peppol.eu:bis:peppol4a:ver1.0::2.0</con:value></con:property><con:property><con:name>secondDefaultParticipantIdentifierScheme</con:name><con:value>iso6523-actorid-upis</con:value></con:property><con:property><con:name>secondDefaultParticipantIdentifier</con:name><con:value>0088:777002abzz777:test</con:value></con:property><con:property><con:name>secondDefaultDocTypeIdentifierScheme</con:name><con:value>busdox-docid-qns</con:value></con:property><con:property><con:name>secondDefaultDocTypeIdentifier</con:name><con:value>urn:oasis:names:specification:ubl:schema:xsd:Invoice-001::Invoice##UBL-2.0</con:value></con:property><con:property><con:name>defaultDomainName</con:name><con:value>default</con:value></con:property><con:property><con:name>testWithMultipleDomain</con:name><con:value>false</con:value></con:property></con:properties><con:wssContainer/><con:databaseConnectionContainer/><con:oAuth2ProfileContainer/><con:oAuth1ProfileContainer/><con:reporting><con:xmlTemplates/><con:parameters/></con:reporting><con:sensitiveInformation/></con:soapui-project>
\ No newline at end of file
+</con:parameters></con:restRequest></con:config></con:testStep><con:tearDownScript/><con:properties><con:property><con:name>defaultDomainName</con:name><con:value>domain1</con:value></con:property></con:properties><con:reportParameters/><con:breakPoints><con:testStepId>cda74952-fe52-42df-8643-8a59932a76f9</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>e84b7e54-b24e-491a-95b2-a12ff29eb5cc</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>46350f0e-d28d-4ed8-9a45-06d697f21192</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>46f968e2-e20c-4f08-af19-5f4ec1782b23</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>26bc8218-7c1e-456e-b095-3a9e3a92969b</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>080c80af-7afa-4577-820b-07f059b2e086</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints><con:breakPoints><con:testStepId>1d316315-62bc-4ebf-9bcb-f127c41ee7e7</con:testStepId><con:status>NONE</con:status><con:properties/></con:breakPoints></con:testCase><con:properties><con:property><con:name>KEY_STORE_NAME</con:name><con:value>signatures_keystore.jks</con:value></con:property><con:property><con:name>KEY_STORE_PASSWORD</con:name><con:value>test123</con:value></con:property><con:property><con:name>CERTIFICATE_ALIAS</con:name><con:value>xxx_test5domain1child1</con:value></con:property><con:property><con:name>ID_SCHEME</con:name><con:value>ehealth-actorid-qns</con:value></con:property><con:property><con:name>ID</con:name><con:value>0089:conformance:sg01</con:value></con:property><con:property><con:name>SMP_SERVER_URL</con:name><con:value>http://edeltest5.westeurope.cloudapp.azure.com:7003/smp</con:value></con:property><con:property><con:name>ID_REDIRECT</con:name><con:value>0089:redirect:sg01</con:value></con:property><con:property><con:name>ID_MULTIPLE_ENDPOINTS</con:name><con:value>0089:confor:sg:multi01</con:value></con:property><con:property><con:name>ID_IDENTIFIER</con:name><con:value>0089:ConformanceIdentSg01</con:value></con:property><con:property><con:name>ID_NONEXISTING</con:name><con:value>urn:somethingrandom:ncn</con:value></con:property><con:property><con:name>ID_NO_SCHEME</con:name><con:value>0089:conformance:sg01</con:value></con:property><con:property><con:name>ID_SCHEME_CASE_SENSITIVE</con:name><con:value>sensitive-participant-sc1</con:value></con:property><con:property><con:name>DOCUMENT_SCHEME</con:name><con:value>busdox-docid-qns</con:value></con:property><con:property><con:name>DOCUMENT_ID</con:name><con:value>urn::ehealth%23%23services:extended:epsos01::101</con:value></con:property><con:property><con:name>DOCUMENT_ID_REDIRECT</con:name><con:value>urn::ehealth%23%23services:redirect:extended:epsos01::101</con:value></con:property><con:property><con:name>DOCUMENT_ID_MULTIPLE_ENDPOINTS</con:name><con:value>urn::ehealth##services:multi:extended:epsos01::101</con:value></con:property><con:property><con:name>DOCUMENT_ID_IDENTIFIER</con:name><con:value>eHeAlth%23%23servicesIdent:extended:epSOS01::101</con:value></con:property><con:property><con:name>DOCUMENT_ID_SCHEME_CASE_SENSITIVE</con:name><con:value>casesensitive-doc-scheme1</con:value></con:property><con:property><con:name>EXTENSION</con:name><con:value>&lt;ex:toto xmlns:ex="http://test.eu">Test&lt;/ex:toto></con:value></con:property><con:property><con:name>PROCESS_IDENTIFIER_TYPE</con:name><con:value>cenbii-procid-ubl</con:value></con:property><con:property><con:name>PROCESS_IDENTIFIER</con:name><con:value>urn:www.cenbii.eu:profileConformance01:bii04:ver1.0</con:value></con:property><con:property><con:name>TRANSPORT_PROFILE</con:name><con:value>busdox-transport-start</con:value></con:property><con:property><con:name>ENDPOINT_REFERENCE</con:name><con:value>http://busdox.org/conformanceService01/</con:value></con:property><con:property><con:name>REQUIRE_BUSINESSLEVEL_SIGNATURE</con:name><con:value>false</con:value></con:property><con:property><con:name>SERVICE_ACTIVATION_DATE</con:name><con:value>2003-01-01T00:00:00</con:value></con:property><con:property><con:name>SERVICE_EXPIRATION_DATE</con:name><con:value>2020-05-01T00:00:00</con:value></con:property><con:property><con:name>SERVICE_DESCRIPTION</con:name><con:value>invoice service AS4</con:value></con:property><con:property><con:name>TECHNICAL_CONTACT_URL</con:name><con:value>https://conformance1.com</con:value></con:property><con:property><con:name>SMP_SERVER_URL_REDIRECT</con:name><con:value>http://10.57.40.24:1027</con:value></con:property><con:property><con:name>CERTIFICATE_UID_REDIRECT</con:name><con:value>smptest</con:value></con:property><con:property><con:name>CERTIFICATE</con:name><con:value>MIID7jCCA1egAwIBAgICA+YwDQYJKoZIhvcNAQENBQAwOjELMAkGA1UEBhMCRlIxEzARBgNVBAoMCklIRSBFdXJvcGUxFjAUBgNVBAMMDUlIRSBFdXJvcGUgQ0EwHhcNMTYwNjAxMTQzNTUzWhcNMjYwNjAxMTQzNTUzWjCBgzELMAkGA1UEBhMCUFQxDDAKBgNVBAoMA01vSDENMAsGA1UECwwEU1BNUzENMAsGA1UEKgwESm9hbzEOMAwGA1UEBRMFQ3VuaGExHTAbBgNVBAMMFHFhZXBzb3MubWluLXNhdWRlLnB0MRkwFwYDVQQMDBBTZXJ2aWNlIFByb3ZpZGVyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1eN4qPSSRZqjVFG9TlcPlxf2WiSimQK9L1nf9Z/s0ezeGQjCukDeDq/Wzqd9fpHhaMMq+XSSOtyEtIr5K/As4kFrViONUUkG12J6UllSWogp0NYFwA4wIqKSFiTnQS5/nRTs05oONCCGILCyJNNeO53JzPlaq3/QbPLssuSAr6XucPE8wBBGM8b/TsB2G/zjG8yuSTgGbhaZekq/Vnf9ftj1fr/vJDDAQgH6Yvzd88Z0DACJPHfW1p4F/OWLI386Bq7g/bo1DUPAyEwlf+CkLgJWRKki3yJlOCIZ9enMA5O7rfeG3rXdgYGmWS7tNEgKXxgC+heiYvi7ZWd7M+/SUwIDAQABo4IBMzCCAS8wPgYDVR0fBDcwNTAzoDGgL4YtaHR0cHM6Ly9nYXplbGxlLmloZS5uZXQvcGtpL2NybC82NDMvY2FjcmwuY3JsMDwGCWCGSAGG+EIBBAQvFi1odHRwczovL2dhemVsbGUuaWhlLm5ldC9wa2kvY3JsLzY0My9jYWNybC5jcmwwPAYJYIZIAYb4QgEDBC8WLWh0dHBzOi8vZ2F6ZWxsZS5paGUubmV0L3BraS9jcmwvNjQzL2NhY3JsLmNybDAfBgNVHSMEGDAWgBTsMw4TyCJeouFrr0N7el3Sd3MdfjAdBgNVHQ4EFgQU1GQ/K1ykIwWFgiONzWJLQzufF/8wDAYDVR0TAQH/BAIwADAOBgNVHQ8BAf8EBAMCBSAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDQYJKoZIhvcNAQENBQADgYEAZ7t1Qkr9wz3q6+WcF6p/YX7Jr0CzVe7w58FvJFk2AsHeYkSlOyO5hxNpQbs1L1v6JrcqziNFrh2QKGT2v6iPdWtdCT8HBLjmuvVWxxnfzYjdQ0J+kdKMAEV6EtWU78OqL60CCtUZKXE/NKJUq7TTUCFP2fwiARy/t1dTD2NZo8c=</con:value></con:property><con:property><con:name>E_ID</con:name><con:value>0089%3Aconformance%3Asg01</con:value></con:property><con:property><con:name>E_DOCUMENT_ID</con:name><con:value>urn%3A%3Aehealth%23%23services%3Aextended%3Aepsos01%3A%3A101</con:value></con:property><con:property><con:name>E_ID_IDENTIFIER</con:name><con:value>0089%3AConformanceIdentSg01</con:value></con:property><con:property><con:name>E_DOCUMENT_ID_IDENTIFIER</con:name><con:value>eHeAlth%23%23servicesIdent%3Aextended%3AepSOS01%3A%3A101</con:value></con:property><con:property><con:name>E_ID_MULTIPLE_ENDPOINTS</con:name><con:value>0089%3Aconfor%3Asg%3Amulti01</con:value></con:property><con:property><con:name>E_DOCUMENT_ID_MULTIPLE_ENDPOINTS}</con:name><con:value>urn%3A%3Aehealth%23%23services%3Amulti%3Aextended%3Aepsos01%3A%3A101</con:value></con:property><con:property><con:name>E_ID_REDIRECT</con:name><con:value>0089%3Aredirect%3Asg01</con:value></con:property><con:property><con:name>E_DOCUMENT_ID_REDIRECT</con:name><con:value>urn%3A%3Aehealth%23%23services%3Aredirect%3Aextended%3Aepsos01%3A%3A101</con:value></con:property></con:properties></con:testSuite><con:requirements/><con:properties><con:property><con:name>url</con:name><con:value>http://localhost:58080/smp</con:value></con:property><con:property><con:name>reportFilePath</con:name><con:value>C:\\ec\\soapui\\reports\\SMP_4_0_test_results.xlsx</con:value></con:property><con:property><con:name>updateReport</con:name><con:value>false</con:value></con:property><con:property><con:name>urlExt</con:name><con:value>https://edeltest5.westeurope.cloudapp.azure.com:8443/smp</con:value></con:property><con:property><con:name>tmp</con:name><con:value>http://localhost:58080/cipa-smp-full-webapp</con:value></con:property><con:property><con:name>tmp2</con:name><con:value>https://wladig06.cc.cec.eu.int:1064/cipa-smp-full-webapp</con:value></con:property><con:property><con:name>defaultParticipantIdentifierScheme</con:name><con:value>ehealth-actorid-qns</con:value></con:property><con:property><con:name>defaultParticipantIdentifier</con:name><con:value>0088:7770010100777:test</con:value></con:property><con:property><con:name>defaultDocTypeIdentifierScheme</con:name><con:value>busdox-docid-qns</con:value></con:property><con:property><con:name>defaultDocTypeIdentifier</con:name><con:value>urn:oasis:names:specification:ubl:schema:xsd:Invoice-12::Invoice##urn:www.cenbii.eu:transaction:biicoretrdm010:ver1.0:#urn:www.peppol.eu:bis:peppol4a:ver1.0::2.0</con:value></con:property><con:property><con:name>secondDefaultParticipantIdentifierScheme</con:name><con:value>iso6523-actorid-upis</con:value></con:property><con:property><con:name>secondDefaultParticipantIdentifier</con:name><con:value>0088:777002abzz777:test</con:value></con:property><con:property><con:name>secondDefaultDocTypeIdentifierScheme</con:name><con:value>busdox-docid-qns</con:value></con:property><con:property><con:name>secondDefaultDocTypeIdentifier</con:name><con:value>urn:oasis:names:specification:ubl:schema:xsd:Invoice-001::Invoice##UBL-2.0</con:value></con:property><con:property><con:name>defaultDomainName</con:name><con:value>domain1</con:value></con:property><con:property><con:name>testWithMultipleDomain</con:name><con:value>false</con:value></con:property><con:property><con:name>jdbc.url</con:name><con:value>jdbc:oracle:thin:@localhost:51521/xe</con:value></con:property><con:property><con:name>jdbc.driver</con:name><con:value>oracle.jdbc.OracleDriver</con:value></con:property><con:property><con:name>testDB</con:name><con:value>true</con:value></con:property><con:property><con:name>dbUser</con:name><con:value>smp</con:value></con:property><con:property><con:name>dbPassword</con:name><con:value>eDelTest2017</con:value></con:property></con:properties><con:wssContainer/><con:databaseConnectionContainer/><con:oAuth2ProfileContainer/><con:oAuth1ProfileContainer/><con:reporting><con:xmlTemplates/><con:parameters/></con:reporting><con:sensitiveInformation/></con:soapui-project>
\ No newline at end of file