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
Open the file SalesforceConnector.exe.config
in a text editor.
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
.
Find the following setting:
<setting name="SalesforceConnector_SalesforceService_SforceService" serializeAs="String">
In the associated value
element, type the following URL:
https://test.salesforce.com/services/Soap/u/21.0
For example:
<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>
|