...
Add a connection string to the S4S system Web service to the <connectionString> element of App_Config/ConnectionStrings.config.
For Salesforce production and developer environments all Salesforce environments the connection string should look like:
Code Block | ||||
---|---|---|---|---|
| ||||
<connectionStrings>
<add name="S4SConnString" connectionString="S4S:user id=user;password=password;environment=login.salesforce.com" />
</connectionStrings> |
For Salesforce sandbox environments the connection string should look like:
Code Block | ||||
---|---|---|---|---|
| ||||
<connectionStrings> <add name="S4SConnString" connectionString="S4S:user id=user;password=password;environment=testmycompany.my.salesforce.com" /> </connectionStrings> |
...
Key | Description |
user id | The Salesforce username that will be used to establish the Partner API session |
password | The password for the Partner API user. |
token | (Optional) As an alternative to appending the user's security token to the password in the connection string, it can be defined separately to provide the same functionality. Learn more about how to reset and get your security token. |
environment(Optional | ) The type of The domain for the Salesforce environment being connected to. Defaults to Production if unspecified which will also work for developer edition organizations if required. Possible values:
This should be the My Domain domain for the Salesforce org. More information |
Example connection strings:
Code Block | ||||
---|---|---|---|---|
| ||||
S4S:user id=<user_name>;password=<user_password> S4S:user id=<user_name>;password=<user_password><user_security_token> S4S:user id=<user_name>;password=<user_password>;token=<user_security_token> S4S:user id=<user_name>;password=<user_password>;environment=<binding_environment> |
The connection string can optionally define the environment to be connected to by appending the following:
Code Block | ||
---|---|---|
| ||
;environment=<bindingEnvironment> |
Permitted values for the binding environment are one of the following four strings or an endpoint url:
- Production
connects to login.salesforce.com (Default) - DeveloperEdition
connects to login.salesforce.com - Sandbox
connects to test.salesforce.com - Pre_release
connects to prerellogin.pre.salesforce.com
...
Next Step
...
Child pages (Children Display) | ||||||
---|---|---|---|---|---|---|
|