Merge "Fix to pass calling application identifier to SO"
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/mso/MsoRestInterface.java b/vid-app-common/src/main/java/org/openecomp/vid/mso/MsoRestInterface.java
index 31a762e..f964b83 100755
--- a/vid-app-common/src/main/java/org/openecomp/vid/mso/MsoRestInterface.java
+++ b/vid-app-common/src/main/java/org/openecomp/vid/mso/MsoRestInterface.java
@@ -84,7 +84,10 @@
 

 		commonHeaders = new MultivaluedHashMap<String, Object> ();

 		commonHeaders.put("Authorization",  Collections.singletonList((Object) ("Basic " + authStringEnc)));

-		

+		//Pass calling application identifier to SO

+		commonHeaders.put("X-FromAppId",

+				Collections.singletonList(SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME)));

+

 		boolean use_ssl = true;

 		if ( (mso_url != null) && ( !(mso_url.isEmpty()) ) ) {

 			if ( mso_url.startsWith("https")) {