Has anyone configures oslc server for Windchill RV&S (formerly Integrity Lifecycle Manager.
My oslc server is giving response while scheme is https but not when scheme is http. Below is my production.json. For http the request does not even go to server, as i dont see any logs on oslc.log. The https works fine (Tested through postman).
{
"ilm": {
"scheme": "http",
"host": "localhost",
"port": "7001",
"baseContext": "/rws/odata/ptc/ilm",
"strictSSL": false,
"docStudioContext": "/extended-web-ui/items/item"
},
"oslc": {
"scheme": "https",
"host": "localhost",
"port": 3001,
"context": "/oslc/r",
"storageImpl": "ldp-service",
"services": "./config/defaultServices.json",
"contentType": "JSON",
"sslPrivateKey": "server.key",
"sslCertificate": "server.cert",
"useClientAuthForSSL": false,
"allowedOrigins":"http://localhost:8080,http://localhost:80,http://localhost:84"
}
}
My intent is that i want to consume these services in Thingworx. Any help would be appreciated.

