BizTalk Error :
Failed to initialize the correlation property name: Field1 namespace: http://TestData.Service from message: Message_Req.
Cause :
The error message says the property name Field1 is not found in the message sent (Message_Req) and hence gave Correlation error.
Solution:
If the field(Field1 ) is not present in sent message (Message_Req), Please add the field to message using Cosntruct shape --> Message Assignment Shape.
Write Following line of code to Add field1 to message Message_Req
Message_Req(TestData.Service.Field1) = var_Field1;
Failed to initialize the correlation property name: Field1 namespace: http://TestData.Service from message: Message_Req.
Cause :
The error message says the property name Field1 is not found in the message sent (Message_Req) and hence gave Correlation error.
Solution:
If the field(Field1 ) is not present in sent message (Message_Req), Please add the field to message using Cosntruct shape --> Message Assignment Shape.
Write Following line of code to Add field1 to message Message_Req
Message_Req(TestData.Service.Field1) = var_Field1;
Comments
Post a Comment