after upgrading the studio from 2019.x to 2021.x on enterprise edition , the config files are changed , and we are using a custom activity in our project on client side, which is mainly to connect to it’s web service which is .net , the activity is running fine before update and we are using service client model in Uipath.executor.exe.dll.config, but after the update this file is changed or renamed to Uipath.executor.dll.config, and now when we are trying to run the project there is an error in uipath.
“Search First_Name: Could not find endpoint element with name ‘SoapAct’ and contract ‘SoapAct’ in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this name could be found in the client element.”
in the earlier version of config file these are the values we are using
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="SoapAct" >
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows"/>
</security>
</binding>
<binding name="SoapAct1" >
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="<theUrl>"
binding="basicHttpBinding" bindingConfiguration="SopAct"
contract="SoapAct" name="SoapAct" />
<endpoint address="<theUrl>"
binding="basicHttpBinding" bindingConfiguration="SoapAct1"
contract="SoapAct1" name="SoapAct1" />
</client>
</system.serviceModel>
but after update to studio 2021.x don’t know where to write this and run our project.