Open Services for Lifecycle Collaboration (OSLC) is a community that is standardizing the way that lifecycle tools work together. OSLC Connect for Windchill supports the OSLC data sharing specification as a provider for the Change Management (CM) and Architecture Management (AM) domain and as a consumer of other domains.
The sharing of OSLC data between domains is based on a common set of resources, formats, and REST architectural services.
The data sharing supports these transactions:
Please refer to this site to get more information on OSLC: https://open-services.net/
OSLC Connect for Windchill supports BASIC authentication,
so that you can easily execute REST services using the Windchill user and password of your choice
in the Authorization
request header.
The Authorization
request header must be BASIC value
,
where value
is windchill-user:windchill-password
Base64 encoded.
Refer to https://en.wikipedia.org/wiki/Basic_access_authentication for details.
Each HTTP response has an associated HTTP status that can either be:
HTTP 200
: the request was successfully executed.HTTP 400
: the request is invalid, the response body should contain information on the root cause.HTTP 401
: the authentication failed, probably because the user name and password do not match an existing user in Windchill.HTTP 403
: the authentication succeeded but you don't have permission to read or update the Windchill artifact.HTTP 404
: the resource is not found, which may mean the identifier does not resolve an existing Windchill artifact (e.g. it has been deleted).HTTP 500
: an error occurred on server side, contact your Windchill administrator to check Windchill's log files to identify the root cause.