We have a requirement in our project to set the replyto element in the WCF header of a message sent through WCF Send port. I have set the replyto in the expression using the following statements.
MessageOut = MessageIn;
MessageOut(WCF.Action) = “http://tempuri.org/IReceiveMessage/ReceiveMessage”;
MessageOut(WCF.ReplyToAddress) = “http://MyChangeXML/service.svc”;
MessageOut(WCF.SecurityMode) = “Transport”;
MessageOut(WCF.TransportClientCredentialType) = “Windows”;
I have used the WCF DYnamic ports example. In the Construct Message of the Orchestration of dynamic port i have set the ReplyToAddress property.
But the message sent to the service has the default replyto set and not the value set by me.
Can anyone please help me out of this issue