Configures a LOOKUP field in a custom property set to query an external SQL Server database. After calling this API the field will execute the specified SQL sentence against the SQL Server instance whenever GetPropertySetFieldOptions is called for it.
/srv.asmx/SetPropertySetLookupFieldParametersForSQLServer
/srv.asmx/SetPropertySetLookupFieldParametersForSQLServer?authenticationTicket=...&PropertySetName=...&FieldName=...&.../srv.asmx/SetPropertySetLookupFieldParametersForSQLServer (form data)http://tempuri.org/SetPropertySetLookupFieldParametersForSQLServer| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser. |
PropertySetName |
string | Yes | Internal name of the property set that owns the field. |
FieldName |
string | Yes | Internal name of the LOOKUP field to configure. |
SQLSERVER_ServerName |
string | Yes | Hostname or IP address (and optional instance name, e.g. server\INSTANCE) of the SQL Server. |
SQLSERVER_UserName |
string | Yes | SQL Server login name used to connect. |
SQLSERVER_Password |
string | Yes | Password for the SQL Server login. |
SQLSERVER_DataBasename |
string | Yes | Name of the SQL Server database to query. |
sqlSentence |
string | Yes | SQL SELECT statement to execute. May include a filter placeholder used by the OptionFilter parameter of GetPropertySetFieldOptions. |
<response success="true" error="" />
<response success="false" error="[901]Session expired or Invalid ticket" />
System Administrator only. Non-admin callers receive an access denied error.
GET /srv.asmx/SetPropertySetLookupFieldParametersForSQLServer
?authenticationTicket=3f7a1b2c-4d5e-6f7a-8b9c-0d1e2f3a4b5c
&PropertySetName=PROJECTMETA
&FieldName=CATEGORY
&SQLSERVER_ServerName=dbserver.example.com
&SQLSERVER_UserName=ir_reader
&SQLSERVER_Password=secret
&SQLSERVER_DataBasename=project_db
&sqlSentence=SELECT+CategoryCode,CategoryName+FROM+dbo.Categories+ORDER+BY+CategoryName
HTTP/1.1
Host: yourserver
POST /srv.asmx/SetPropertySetLookupFieldParametersForSQLServer HTTP/1.1
Host: yourserver
Content-Type: application/x-www-form-urlencoded
authenticationTicket=3f7a1b2c-4d5e-6f7a-8b9c-0d1e2f3a4b5c&PropertySetName=PROJECTMETA&FieldName=CATEGORY&SQLSERVER_ServerName=dbserver.example.com&SQLSERVER_UserName=ir_reader&SQLSERVER_Password=secret&SQLSERVER_DataBasename=project_db&sqlSentence=SELECT+CategoryCode%2CCategoryName+FROM+dbo.Categories+ORDER+BY+CategoryName
LOOKUP. Calling this API on a field with any other control type (TEXT BOX, COMBO BOX, etc.) returns an error.lookup_<propertySetId>_<FieldName>.xml.****).SQLSERVER_ServerName parameter accepts SQL Server instance notation: e.g. myserver\SQLEXPRESS for named instances.| Error | Description |
|---|---|
[900] |
Authentication failed -“ invalid credentials. |
[901] |
Session expired or invalid authentication ticket. |
| Access Denied | Caller is not a System Administrator. |
| Property set not found | No property set with the specified PropertySetName exists. |
| Field not found | No field with the specified FieldName exists in the property set. |
| Invalid field type | The specified field is not a LOOKUP control type. |