Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 1 down vote accepted

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.

share|improve this answer

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

share|improve this answer
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

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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