I am trying to determine the client's IP address following this link: http://www.danrigsby.com/blog/index.php/2008/05/21/get-the-clients-address-in-wcf/. I have operationContracts of WebInvoke/Post and WebGet. The code works when the client request is a WebGet. But when the client request is a WebInvoke, I will get the WCF host IP. Any solution? Thanks.

Here is the interface

        [OperationContract]
        [WebGet(UriTemplate = RestTemplate.hello_get)]
        Stream hello_get();

        [OperationContract]
        [WebInvoke(Method = "POST", UriTemplate = RestTemplate.hello_post)]
        Stream hello_post();

        // Code for getting IP
        private string getClientIP()
        {
            //WebOperationContext webContext = WebOperationContext.Current;

            OperationContext context = OperationContext.Current;

            MessageProperties messageProperties = context.IncomingMessageProperties;

            RemoteEndpointMessageProperty endpointProperty =

                messageProperties[RemoteEndpointMessageProperty.Name]

                as RemoteEndpointMessageProperty;
            return endpointProperty.Address;
        }

    public Stream hello_get()
    {
        string ip = getClientIP();
        ...
    }

    public Stream hello_post()
    {
        string ip = getClientIP();
        ...
    } 
link|improve this question

75% accept rate
1  
You may want to show what you have tried that hasn't worked. – James Black Aug 27 '10 at 0:23
I agree with James. I don't see why this wouldn't work for a WebInvoke. Can you provide some code (and configuration) so we can how you're handling it? – David Hoerster Aug 28 '10 at 0:04
Thanks. I have added some code as show above. – Wayne Lo Aug 29 '10 at 15:07
1  
If this doesn't work you should create simple example which reproduces issue and post it to Microsoft Connect. For me this is a bug because there is no reason why GET should work and POST not. – Ladislav Mrnka Aug 29 '10 at 18:54
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.