vote up 0 vote down star

I want to prepend the following text to the response body of a WCF operation:

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="transform.xslt" type="text/xsl" ?>

What is the best way to do this?

An additional requirement is that the XSLT filename should be spec'd using an attribute on the operation method.

I am trying to do this using a IDispatchMesssageInspector, but I do not know how to get access to the MethodInfo for the operation so that I can read the filename from the attribute.

flag

76% accept rate

2 Answers

vote up 0 vote down check

In the end I had to use a custom MessageEncoder with its own MessageEncodingBindingElement.

link|flag
vote up 1 vote down

Here's how to get the current operation method:

var context = OperationContext.Current;
string action = context.IncomingMessageHeaders.Action;
var operation = context.EndpointDispatcher.DispatchRuntime.Operations
    .First(o => o.Action == action);
Type hostType = context.Host.Description.ServiceType;
MethodInfo method = hostType.GetMethod(operation.Name);
link|flag
And the operation context will be available in IDispatchMessageInspector.BeforeSendReply? – Ries Nov 6 at 12:41
This certainly got me closer, but I find that action == null. The only header present is the To header. This gives me the Uri that was called, now I just need a map of Uri to Operation... – Ries Nov 6 at 13:07
Yes, at least it was available when I tested this code. – Darin Dimitrov Nov 6 at 13:08
What binding do you use? – Darin Dimitrov Nov 6 at 13:11
WebHttpBinding for REST – Ries Nov 6 at 14:14
show 1 more comment

Your Answer

Get an OpenID
or

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