My client has existing VB.net code to connect onpremise CRM 2013 org.
Now they have upgraded to Dynamic 365 V9.0 onpremise ADFS/IFD setup.
So for upgrade purpose I am looking to use existing VB.net code but just update connection code.
Tried using XRMtoolkit code but no luck.
Refer below code:
Dim a As CrmServiceClient
a = New CrmServiceClient(New System.Net.NetworkCredential("username", "password", "domain"),
AuthenticationType.IFD, "orgurl", "", "orgname", False, True)
I get error of:
organisationwebproxy is null
Please help