I'm creating a transport binding in WCF, and I've seen that outgoing messages of my output channel don't have the To header set (WS-Addressing). I don't really want to add yet another responsability to my transport channel. Do you know a behavior or binding which takes care of that for me ?
views:
20answers:
1
+1
A:
Ultimately, that responsability may fall on the transport channel, though channels in layers above that could potentially mess with that. Best option would be simply to use EndpointAddress.ApplyTo(message) to make sure it gets filled.
tomasr
2009-07-31 23:01:43