Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I'm using the WCF Routing Service in order to route the requests to different versions of the services based on the Http Headers.

There are different kinds of clients ( Java clients,.NET clients) are going to consume the WCF Routing Service..

1. Does SoapHeaders(OperationContext.Current.OutgoingMessageHeaders) Works for java clients? Or shall I need to use the HttpHeaders(OperationContext.Current.OutgoingMessageProperties)

This is how I have added the Http Headers to the Client.. I didnt use the ClientMessageInspector... Below is the code to set the Http Headers

C#
<pre>HttpRequestMessageProperty httpRequestProperty = new HttpRequestMessageProperty();

 httpRequestProperty.Headers.Add("Version", "1");
 using (OperationContextScope scope = new OperationContextScope 
(client. InnerChannel))
{
OperationContext.Current.OutgoingMessageProperties[HttpRequestMessageProperty.Name] = httpRequestProperty; }

2. If I use the Http Headers how the filters needs to be set up? What I suppose to give it for FilterData for Http Headers?


C#
<pre>< filter name="x1" filterType="XPath" filterData="" />


Please do help me..

Thanks Deepa
Posted
Updated 2-Jan-13 21:23pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900