Reputation: 727
We have PLM systems where all our product lifecycle data resides. We want to build services (REST) to let this data accessed by other systems.
The PLM system we are using comes with REST services and we can also build our own on top of that.
These PLM Systems are our production servers and we don't want others to hit these services directly on the production servers. We can rehost other systems with production data but the rehosted system will not always be with live data as production systems.
Any thoughts to solve this problem?
Upvotes: 0
Views: 509
Reputation: 1238
I assume you meant PTC Windchill as your PLM system here.
When you're done with rehosting your prod to a new server, you can try the following things.
EndPoint
. At
the same time you should have a client class in the rehosted server
to consume.ixb
api's
which the other server should have access to.ixb
into windchill. You can also write a windchill ScheduleQueue
to do this activity on a particular time interval.I hope this helps to start.
Upvotes: 1