function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
GC_00001GC_00001 

CallOptionsValue.client has stopped working

I have the following code in a webserve that would be querying the Account object. It has worked for years but appears to have now stopped working. The name in the id is the salesforce partner(?) that originally wrote this code but not sure if that is relevant.
    private sforce.SforceService GetDefaultSforceBinding()
    {
        sforce.SforceService binding = new sforce.SforceService();

        if (Convert.ToBoolean(ConfigurationManager.AppSettings["SFSandbox"]))
            binding.Url = ConfigurationManager.AppSettings["AlternativeSalesForceUrl"].ToString();

        // set call options
        binding.CallOptionsValue = new sforce.CallOptions();
        binding.CallOptionsValue.client = "westbrook/Inca";

        return binding;
    }
I am very new to this kind of thing so would appreciate any help.