1
votes

I am inserting a message in the Azure queue as Json String as shown below

[Serializable]
public class Person
{
    public string FirstName { get; set; }
}

And on the insert in queue, I should receive mail. I am expecting the mails content to be json string but I am receiving the content of mail as shown below

@ string 3http://schemas.microsoft.com/2003/10/Serialization/� {"FirstName":"Vikram"}

Now what is this extra strings at the beginning "@ string 3http://schemas.microsoft.com/2003/10/Serialization/� " in the content and how to remove it.

The work flow for the Logic app is as shown in the figure below for reference

2
Did you try using @json? You can refer to logic app WDL functions here msdn.microsoft.com/library/azure/mt643789.aspxTusharJ

2 Answers

0
votes

Utilize this method upon reading incoming BrokeredMessage

message.GetBody<string>();