Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
I am using Windchill PDMLink Release 12.0 and Datecode with CPS 12.0.0.1
We are executing custom task files using below set of InfoEngine APIs:
1. Getting a connection using com.infoengine.connector.IeConnectionFactory.getConnection(IeConnectionSpec ieConnectionSpec)
2. Execute a task file using com.infoengine.connector.DataAccessObject.execute(String paramString, String[] paramArrayOfString, Object[] paramArrayOfObject)
In this approach, we have created a Connection using Basic Authentication(i.e, username/password). And, as of now we use this connection object to execute task files.
However, we want to execute same task files using MTLS (mutual TLS) mechanism instead of Basic Authentication.
We are not able find the mechanism where we can configure MTLS using InfoEngine APIs like com.infoengine.connector.IeConnectionSpec (for Basic Auth).
Can someone please let us know the APIs (Configuration) to programmatically execute InfoEngine task file using MTLS Authentication.