Hi,
We hosted WCF services with basicHttpBinding on server side,
<bindings>
<basicHttpBinding>
<binding name="BasicHttpEndpointBinding" >
<security mode="TransportCredentialOnly">
<transport clientCredentialType="basic" />
</security>
</binding>
</basicHttpBinding>
</bindings>
WCF services hosted in Windows xp sp3 , IIS 5.1 with Anonymous access enabled.
If I want to access the WCF services on .net 2.0 desktop application.
What configuration do I need do, with sample code?
thanks
nrk