I have a generic service with this interface

[OeprationContract(Action="*", ReplyAction="*")]
Message ProcessMessage(Message message);

In the implementation, I have to set up the headers of the reply message. Is there a way to create the right addressing headers from the input message or do I have to set everything manually (i.e. copy In.replyTo to out.To, copy In.messageId to out.MessageId, ...)

Thanks

link|improve this question

69% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You'll need to do it manually; when you declare an operation taking an returning a Message object you're basically telling WCF that you want total control over the message, so no correlation between request and reply will be done for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.