0
I have referred your links.I have implemented. Code: public class Service1 { [OperationContract] public string DoWork() { OperationContext operationContext = OperationContext.Current; MessageProperties messageProperties = operationContext.IncomingMessageProperties; RemoteEndpointMessageProperty remoteEndpointProperty = messageProperties[RemoteEndpointMessageProperty.Name] as RemoteEndpointMessageProperty; return string.Format("Your IP address is {0} and your port is {1}", remoteEndpointProperty.Address, remoteEndpointProperty.Port); } }
i hosted virtually ex:192.168.1.11/ip ,when i access with other system,it's giving that system ip.But when i host ex:122.166.48.230/ip,when i access with other system,it's giving our static network ip but it's not giving that system ip.Can you please help me. Thanks in advance.