Getting started Community Training Tutorials Documentation APIs, AI & Tools
Global Element Properties configuration name
Anypoint Studio (Studio) editors help you design and update your Mule applications, properties, and configuration files.
To add and configure a connector in Studio:
Create a Mule project.
Add the connector to your Mule project.
Configure a source for the connector’s flow.
Add a connector operation to the flow.
Configure a global element for the connector.
When you run the connector, you can view the app log to check for problems, as described in View the App Log.
If you are new to configuring connectors in Studio, see Using Anypoint Studio to Configure a Connector. If, after reading this topic, you need additional information about the connector fields, see the Workday Connector Reference.
In Studio, create a new Mule project in which to add and configure the connector:
In Studio, select File > New > Mule Project.
Enter a name for your Mule project and click Finish.
Add Workday Connector to your Mule project to automatically populate the XML code with the connector’s namespace and schema location and to add the required dependencies to the project’s pom.xml file:
In the Mule Palette view, click (X) Search in Exchange.
In Add Dependencies to Project, type workday in the search field.
Click Workday Connector in Available modules.
Click Add.
Click Finish.
Adding a connector to a Mule project in Studio does not make that connector available to other projects in your Studio workspace.
A source (listener) initiates a flow when a specified condition is met.
You can configure one of these sources to use with Workday Connector:
On Modified Objects
Start your app when an object is created in Workday.
HTTP Listener
Initiates a flow each time it receives a request on the configured host and port
Scheduler
Initiates a flow when a time-based condition is met
To configure the On Modified Objects source:
In the Mule Palette view, select Workday > On Modified Objects.
Drag On Modified Objects source to the Studio canvas.
On the On Modified Objects configuration screen, optionally change the value of the Display Name field.
Enter the required information for the following fields:
| Studio Field | Description |
|---|---|
Connector configuration |
Global Element Properties configuration name |
Object type |
Type of the Workday object |
Scheduling Strategy |
Tells the source how it can poll the data. This field accepts two options:
|
Click the plus sign (+) next to the Connector configuration field to configure a global element that can be used by all instances of the On Modified Objects operation in the app.
When you add a connector operation to your flow, you immediately define a specific operation for that connector to perform.
To add an operation for Workday Connector, follow these steps:
In the Mule Palette view, select Workday and then select the desired operation.
Drag the operation onto the Studio canvas to the right of the source.
Each Workday operation has its own required fields in Anypoint Studio. For more information, see the Workday Reference.
When you configure a connector, it’s best to configure a global element that all instances of that connector in the app can use. Configuring a global element requires you to provide the authentication credentials that the connector requires to access the target Workday system. Workday Connector supports basic authentication and x.509 authentication.
To configure the global element for Workday Connector, follow these steps:
Select the operation in the Studio canvas.
In the configuration screen for the operation, click the plus sign (+) next to the Connector configuration field to access the global element configuration fields.
On the General tab, configure the authentication for the connection as described in the Basic Authentication, Workday OAuth Code Authentication Connection, or X.509 Authentication section.
You can reference a configuration file that contains ANT-style property placeholders (recommended), or you can enter your authorization credentials in the global configuration properties. For information about the benefits of using property placeholders and how to configure them, see Anypoint Connector Configuration.
On the Advanced tab, optionally specify reconnection information, including a reconnection strategy.
Click Test Connection to confirm that Mule can connect with the specified server.
To validate connectivity using the Test Connection button, Workday Connector uses a Performance_Management service with the Get_Degrees operation. You must ensure that your service account has the required permissions to operate on that service.
| Security Policy | Domain/Functional Areas | Permitted Security Groups |
|---|---|---|
Set Up: Skills and Experience |
Worker Profile and Skills |
|
Implementation |
Implementers |
|
Special OX Web Services |
Implementation |
Click OK.
Enter the following information on the General tab of the Global Element Properties screen to configure Basic authentication:
| Field | Description |
|---|---|
Connection |
Select |
Password |
Enter the password with which to log in. |
Host Name |
Enter the host name of one of Workday’s Cloud Servers. |
Tenant Name |
Enter the Workday Tenant ID, which usually has the suffix |
User Name |
Enter the username with which to log in. |
Use OAuth 2.0 to delegate user authentication to the service hosting the user account. For more information, refer to Configuring OAuth 2.0 for Connectors, Configuring OAuth 2.0 for Connectors on CloudHub, or OAuth Support in the SDK.
Enter the following information on the General tab of the Global Element Properties screen to configure OAuth2 authentication:
| Field | Description |
|---|---|
Connection |
Select |
Tenant Name |
Enter the Workday Tenant ID. This parameter supports expressions, which allow the value of this parameter to change dynamically. For example, you can use an expression to create a multi-tenant connection. |
Consumer Key |
Enter the OAuth consumer key as registered with the service provider. |
Consumer Secret |
Enter the OAuth consumer secret as registered with the service provider. |
Listener Config |
Enter a reference to a |
Callback Path |
Enter a path of the access token callback endpoint. |
Authorize Path |
Enter a path of the local HTTP endpoint that triggers the OAuth dance. |
Enter the following information on the General tab of the Global Element Properties screen to configure X.509 authentication:
| Field | Description |
|---|---|
Connection |
Select |
Host name |
Enter the host name of a Workday cloud server. |
Tenant name |
Enter the Workday Tenant ID, which usually has the suffix |
User Name |
Enter the username with which to log in. |
Key store path |
Enter the location of the keystore file. |
Type |
Select the keystore type. |
Password |
Enter the password to access the keystore. |
Alias |
Enter the alias of the private key. |
Signature Algorithm |
Enter the signature algorithm. |
Digest Algorithm |
Enter the digest algorithm. |
Canonicalization algorithm |
Enter the c14n (canonicalization) algorithm. |
After you configure a global element for Workday Connector, configure the other required fields for the connector, as described in Workday Reference.
To check for problems, you can view the app log as follows:
If you’re running the app from Anypoint Platform, the output is visible in the Anypoint Studio console window.
If you’re running the app using Mule from the command line, the app log is visible in your OS console.
Unless the log file path is customized in the app’s log file (log4j2.xml), you can also view the app log in the default location MULE_HOME/logs/<app-name>.log.
After configuring Workday Connector in Studio, see the Examples text for financial management use cases that demonstrate how to use this connector.