vote up 2 vote down star
2

This is in relation to this question

I am hosting this WCF service in a custom service host. IIS is not an option.

Is there a way to inject an HTTP "Authenticate" header in the server stack (if it's missing) early on in the request process - such that a default user can be passed into the authentication/authorization process that I have in place for anonymous requests?

I need the SERVER to inject this on the receiving end - before further WCF processing...

I'm pretty sure I can do this with a custom BindingElement, or by extending the WebHttpBinding, but any examples or guidance would be greatly appreciated. I can't find any examples of early header manipulation (pre authentication) in WCF.

flag

3 Answers

vote up 1 vote down check

By implementing an IDispatchMessageInspector you can plug into the pipeline server side; and manipulate messages.

In the AfterReceiveRequest method you can add to Request.Headers quite happily.

Wrap it with a behaviour attribute and apply it to your service.

link|flag
vote up -1 vote down

Take a look at REST Chess source code.

link|flag
Why? They don't seem to do any header injection. Can you point me to more specific code? – TheSoftwareJedi Oct 18 '08 at 5:01
vote up -1 vote down

I would type this out, but its a lot. So here is a good reference.

Avner Kashtan's blog post outlines what I "think" you're looking for. Hopefully this helps!

Adding Custom Headers To Every WCF Call

link|flag
that is adding headers to outgoing wcf calls. I need to add headers to INCOMING wcf calls. – TheSoftwareJedi Oct 21 '08 at 15:55

Your Answer

Get an OpenID
or

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