![]() |
VOOZH | about |
The CData JDBC Driver for Paylocity implements JDBC Standards and enables a applications ranging from BI to IDE to connect with Paylocity. In this article, we describe how to connect to Paylocity data from Arkobi Digital RunMyProcess's DSEC and connect to Paylocity in RunMyProcess.
Configure the EnterpriseConnect Agent following the EnterpriseConnect page in the RunMyProcess documentation.
The JDBC Adapter section describes the steps to connect to RDBMS through JDBC. Follow the steps and open the JDBC.config file.
Paylocity = {
"sqlDriver" : "...",
"sqlSource" : "...",
"sqlDriverPath" : "..."
}
For assistance in constructing the JDBC URL, use the connection string designer built into the Paylocity JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.
java -jar cdata.jdbc.paylocity.jar
Fill in the connection properties and copy the connection string to the clipboard.
Set the following to establish a connection to Paylocity:
This property is required for executing Insert and Update statements, and it is not required if the feature is disabled.
Paylocity will decrypt the AES key using RSA decryption.
It is an optional property if the IV value not provided, The driver will generate a key internally.
You must use OAuth to authenticate with Paylocity. OAuth requires the authenticating user to interact with Paylocity using the browser. For more information, refer to the OAuth section in the Help documentation.
The Pay Entry API is completely separate from the rest of the Paylocity API. It uses a separate Client ID and Secret, and must be explicitly requested from Paylocity for access to be granted for an account. The Pay Entry API allows you to automatically submit payroll information for individual employees, and little else. Due to the extremely limited nature of what is offered by the Pay Entry API, we have elected not to give it a separate schema, but it may be enabled via the UsePayEntryAPI connection property.
Please be aware that when setting UsePayEntryAPI to true, you may only use the CreatePayEntryImportBatch & MergePayEntryImportBatchgtable stored procedures, the
InputTimeEntry table, and the OAuth stored procedures. Attempts to use other features of the product will result in an error. You must also store your OAuthAccessToken
separately, which often means setting a different OAuthSettingsLocation when using this connection property.
π Using the built-in connection string designer to generate a JDBC URL (Salesforce is shown.)
#DBAgent Configuration
Paylocity = {"sqlDriver" : "cdata.jdbc.paylocity.PaylocityDriver", "sqlSource" = "jdbc:paylocity:OAuthClientID=YourClientId;OAuthClientSecret=YourClientSecret;RSAPublicKey=YourRSAPubKey;Key=YourKey;IV=YourIV;InitiateOAuth=GETANDREFRESH;","sqlDriverPath" = "cdata.jdbc.paylocity.jar" }
Put the JDBC driver JAR file (cdata.jdbc.paylocity.jar) into the same directory as unified-adapter-[version].jar.
π runmyprocessNote: Make sure to put the CData license file (cdata.jdbc.paylocity.lic) into the same directory. Since the license is generated based on the unique identifier of the machine where the product in installed, you will need an offline activation if you want to put the file on another machine.
In Windows, start RunMyProcess DigitalSuite EnterpriseConnect Agent in Windows services. To start the application through command line, see Starting the EnterpriseConnect Agent in the RunMyProcess documents.
Start the JDBC Adapter from runAdapter.bat. Once the Adapter is running, you can access the application through the agent address (e.g. 127.0.0.1:8080). Below is an example executing the command in Windows.
... > java -Djava.util.logging.config.file=./log.properties -cp lib/* org.runmyprocess.sec2.AdapterHandler : 2021-06-09 14:37:58|INFO|correlationId=|Searching for config file... 2021-06-09 14:37:58|INFO|correlationId=|Adapter Handler started with [JDBC] configuration 2021-06-09 14:37:59|INFO|correlationId=|agent address: 127.0.0.1:8080 2021-06-09 14:38:00.251:INFO::ConnectionThread: Logging initialized @1820ms to org.eclipse.jetty.util.log.StdErrLog 2021-06-09 14:38:00|INFO|correlationId=|onConnect() websocket connection between Agent and Adapter established
Once the DigitalSuite EnterpriseConnect Agent and JDBC Adapter are running, access http://localhost:(specified-port-number)/ through your browser to open the page shown below.
π runmyprocessCheck the availability of the JDBC Adapter using tools such as Postman or cURL. Here, we use Postman to send the HTTP POST request.
Configure the RequestHeader as follows:
Content-Type application/json
Configure the RequestBody as follows:
{
"protocol":"JDBC",
"data":{
"DBType":"Paylocity",
"sqlUsername":"",
"sqlPassword":"",
"sqlStatement":"SELECT * FROM Employee"
}
}
If the JDBC.config file contains credential information, sqlUsername and sqlPassword can be left empty. If you are not sure of the table name, you can retrieve the list of tables using the request SELECT * FROM sys_tables
The request is successful if the Status is 200 and the Body contains Paylocity data in JSON format.
π runmyprocessCreate a DigitalSuite Studio project and then create a Provider in the project.
Next, create a Connector in the Provider.
The JSON data we used as the Request body in JDBC Adapter:
{
"protocol":"JDBC",
"data":{
"DBType":"Paylocity",
"sqlUsername":"",
"sqlPassword":"",
"sqlStatement":"SELECT * FROM Employee"
}
}
Open Launch Test to perform the test. The test is successful if Paylocity data is shown in Result on the right pane.
π runmyprocessNow you can use Paylocity data in RunMyProcess DigitalSuite Studio through DSEC.
For the detailed information on supported SQL commands, refer to the SQL Compliance section in our help documentation. For information on tables, refer to the Data Model section.
Download a free trial of the Paylocity Driver to get started:
Download NowLearn more:
π Paylocity IconRapidly create and deploy powerful Java applications that integrate with Paylocity.