Forum Discussion
harivignesh27
Occasional Contributor
Hi Rupert,
Thanks for your suggestion.I did use AddressFilterMode option and fix this issue in server side. That code like as follow:
[ServiceBehavior(AddressFilterMode=AddressFilterMode.Any)]
public class YourService: IYourService
{
... .
}
then need to specify the base address in webconfig like as following :
<services>
<host>
<baseAddresses>
<add baseAddress="your service address"/>
</baseAddresses>
</host>
</services>
harivignesh27
10 years agoOccasional Contributor
refer this link....
Related Content
- 18 years ago
- 5 years ago