Hello,
In my sender REST adapter I want to add message type name, the message type is not sending my source application.
my source data is coming as follows..
{
"Customer":
{
"AccountNo":"70513364",
"LegalEntity":"AE01",
.....
where as I have to build the source message as follows...
{
"MT_CustMaster":
{
"Customer":
{
"AccountNo":"70513364",
"LegalEntity":"AE01",
...........
for this I used the option in sender REST adapter - Add Wrapper element, there I mentioned Message type name and Name space, then In source converted XML message message type is coming with <ns1:MT_CustMaster urn:"...."> due to this "ns1" in cannot detect the interface determination.
Any solution for this to remove "ns1" from root message type which added through "Add wrapper element" option?