https://github.com/vertigis/workflow-activities-maximo
Maximo Activity Pack for VertiGIS Studio Workflow
https://github.com/vertigis/workflow-activities-maximo
geocortex maximo vertigis workflow
Last synced: 4 months ago
JSON representation
Maximo Activity Pack for VertiGIS Studio Workflow
- Host: GitHub
- URL: https://github.com/vertigis/workflow-activities-maximo
- Owner: vertigis
- License: mit
- Created: 2021-01-24T17:44:15.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-19T10:22:30.000Z (over 1 year ago)
- Last Synced: 2025-10-30T03:23:17.424Z (8 months ago)
- Topics: geocortex, maximo, vertigis, workflow
- Language: TypeScript
- Homepage:
- Size: 1.03 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/vertigis/workflow-activities-maximo/actions)
[](https://www.npmjs.com/package/@vertigis/workflow-activities-maximo)
This project contains activities for interacting with the **Maximo REST API** in a [VertiGIS Studio Workflow](https://www.vertigisstudio.com/products/vertigis-studio-workflow/).
## Requirements
### VertiGIS Studio Workflow Versions
The Maximo activities are designed to work with VertiGIS Studio Workflow versions `5.37` and above.
### Maximo Versions
The Maximo activities are designed to work with Maximo versions `7.6.0.2` and above.
### Cross-Origin Resource Sharing (CORS)
Typically the web application running your workflow will be on a different domain than the Maximo REST API. In order for the Maximo activities to be able to communicate with the Maximo REST API your Maximo deployment must support [Cross-Origin Resource Sharing](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) (CORS). There are multiple ways to enable this:
- **Option 1:** Enable CORS on the Maximo web server.
1. Log in to Maximo as an administrator
1. Open the **System Properties** via the **System Configuration** > **Platform Configuration** > **System Properties** menu
1. Optionally filter the properties to show only those starting with `mxe.oslc.aclallow`
1. Set the `mxe.oslc.aclalloworigin` property to match the base URL of the web application that will use the Maximo activities. For example, one of:
- `https://apps.vertigisstudio.com`
- `https://acme.apps.vertigisstudio.com`
- `https://www.my-server.com`
1. Set the `mxe.oslc.aclallowheaders` property to `accept,content-type,maxauth,patchtype,properties,x-method-override,x-public-uri`
1. Set the `mxe.oslc.aclallowmethods` property to `GET,POST,PUT,DELETE,OPTIONS`
- **Option 2:** Use a proxy that enables CORS by adding the necessary CORS headers.
- The following `web.config` provides an example of how to create such a proxy in **IIS** using [Application Request Routing](https://www.iis.net/downloads/microsoft/application-request-routing) and [URL Rewrite](https://www.iis.net/downloads/microsoft/url-rewrite).
- Note: this sample is intentionally very permissive so that it will work for most deployments. You should follow CORS best practices and restrict the allowed origins and headers to only those required for your deployment.
```xml
```
## Usage
To use the Maximo activities in [VertiGIS Studio Workflow Designer](https://apps.vertigisstudio.com/workflow/designer/) you need to register an activity pack and then add the activities to a workflow.
### Register the Maximo activity pack
1. Sign in to ArcGIS Online or Portal for ArcGIS
1. Go to **My Content**
1. Select **Add Item > An application**
- Type: `Web Mapping`
- Purpose: `Ready To Use`
- API: `JavaScript`
- URL: The URL to this activity pack manifest
- Use https://unpkg.com/@vertigis/workflow-activities-maximo@1.0.0/activitypack.json for a specific version
- Use https://unpkg.com/@vertigis/workflow-activities-maximo@1/activitypack.json for the latest revision of a specific major version
- Use https://unpkg.com/@vertigis/workflow-activities-maximo/activitypack.json for the latest version (not recommended for production use)
- Use https://localhost:5000/activitypack.json for a local development version
- Title: Your desired title
- Tags: Must include `geocortex-workflow-activity-pack`
1. Reload [VertiGIS Studio Workflow Designer](https://apps.vertigisstudio.com/workflow/designer/)
1. The Maximo activities will now appear in the activity toolbox in a `Maximo` category
### Use the Maximo activities in a workflow
1. Establish a connection to the Maximo service
1. To connect to the Maximo service as a user:
1. Add the `Create Maximo Service` activity to a workflow
1. Set the `URL` input to the root URL of your Maximo server. For example, `https://acme.emaximo.com/maximo`.
1. Set the `Username` and `Password` inputs or the `API Key` input
- **IMPORTANT:** secrets and passwords are credentials that should not be hard coded into workflows. These values should be acquired by the workflow at runtime from the end user or from another secure system.
1. Use the Maximo service
1. Add one of the other Maximo activities to the workflow. For example, `Get Maximo Assets`.
1. Set the `Service` input of the activity to be the output of the `Create Maximo Service` activity
- Typically this would use an expression like `=$mxService1.service`
1. Supply any additional inputs to the activity
1. Supply the `result` output of the activity to the inputs of other activities in the workflow
1. Run the workflow
## Development
This project was bootstrapped with the [VertiGIS Studio Workflow SDK](https://github.com/vertigis/vertigis-workflow-sdk). Before you can use your activity pack in the [VertiGIS Studio Workflow Designer](https://apps.vertigisstudio.com/workflow/designer/), you will need to [register the activity pack](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview#register-the-activity-pack).
## Available Scripts
Inside the newly created project, you can run some built-in commands:
### `npm run generate`
Interactively generate a new activity or form element.
### `npm start`
Runs the project in development mode. Your activity pack will be available at [http://localhost:5000/main.js](http://localhost:5000/main.js). The HTTPS certificate of the development server is a self-signed certificate that web browsers will warn about. To work around this open [`https://localhost:5000/main.js`](https://localhost:5000/main.js) in a web browser and allow the invalid certificate as an exception. For creating a locally-trusted HTTPS certificate see the [Configuring a HTTPS Certificate](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview/#configuring-a-https-certificate) section on the [VertiGIS Studio Developer Center](https://developers.vertigisstudio.com/docs/workflow/overview/).
### `npm run lint`
Runs linter to perform static analysis.
### `npm run build`
Builds the activity pack for production to the `build` folder. It optimizes the build for the best performance.
Your custom activity pack is now ready to be deployed!
See the [section about deployment](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview/#deployment) in the [VertiGIS Studio Developer Center](https://developers.vertigisstudio.com/docs/workflow/overview/) for more information.
## Documentation
Find [further documentation on the SDK](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview/) on the [VertiGIS Studio Developer Center](https://developers.vertigisstudio.com/docs/workflow/overview/)