Can a participant extension to RTC make API calls to non CLM servers?
I have a participant that I built following the RTC Extensions Workshop and it works as advertised when executing a save of a work item in the RTC client launched from the Client Workspace.
Accepted answer
I have provided more than can be expected. There are training organizations, there are services. I can't provide more than I already did.
One other answer
A participant runs in an application server - the one you have installed EWM on.
Comments
Thank you Ralph.
When I mean bundle, I mean it has to be available on the server. I have once, if I recall correctly, added the library to the Eclipse project for the advisor. So the library ended in the JAR file and was also accessible to the extension.
Ralph,
Nice!
Thank you Ralph,
IWorkItem workItem = IWorkItem workItem = workingCopy.getWorkItem(); String value = "I am a String"; if (workItem.hasCustomAttribute(customInteger)) workItem.setValue(customInteger, value); }
I corrected my comment above.
Thank you.
Ryan, I have provided several examples on my blog, so I don't have to e-mail/forum train everyone. Look into https://rsjazz.wordpress.com/2012/07/31/rtc-update-parent-duration-estimation-and-effort-participant/ and how that works and why as in the text.
IWorkItem workitem = workingCopy.getWorkItem(); would be correct the other statement should show an error.
Thank you,