PCS service interface SOAP endpoint changes with every deployment
Summary
PCS service interface SOAP endpoint changes with every deploymentContent
I built an C# AddIn for Oracle Service Cloud's desktop agent that invokes a PCS process message interface (SOAP service) when clicked. However, I've noticed that each time I deploy a new version of this application the SOAP endpoint changes. The endpoint is essentially always in this form:
https://{hostname}/soa-infra/services/default/{application-name}!{version}{uuid}{process-name}.service
The {hostname}, {application-name}, and {process-name} are always the same , however the version and the UUID change for every deployment. So every time we deploy this process the AddIn triggers the previous deployed process (since it doesn't undeploy the previous one), but doesn't deploy the most current process. This is a serious issue because I don't want to make a code change every time we deploy.