The Salesforce Connector logs on to Salesforce through login.salesforce.com
. To retrieve information from test.salesforce.com
, modify the connector's application settings so that it logs on through the correct URL. The application settings are stored in an XML configuration file in the connector's installation folder. For more information about application settings configuration files, refer to the documentation for the Microsoft .NET Framework.
To modify the application settings and log on through test.salesforce.com
Create a file named SalesforceConnector.exe.config
in a text editor, and add the following text, where the value
element contains the correct URL:
TIP: The file name might be different if you chose a different name for the connector service when installing the connector, but the extension is always .exe.config
.
<?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > <section name="Autonomy.Connector.Salesforce.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> <section name="SalesforceConnector.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> </sectionGroup> </configSections> <applicationSettings> <Autonomy.Connector.Salesforce.Properties.Settings> <setting name="SalesforceConnector_SalesforceService_SforceService" serializeAs="String"> <value>https://test.salesforce.com/services/Soap/u/21.0</value> </setting> </Autonomy.Connector.Salesforce.Properties.Settings> </applicationSettings> </configuration>
|