Saving work item on the server side
One answer
I am trying to use IRepositoryItemService to save the workitems on the
server side.
But it get Access violation exception when i do that.
Is this the correct way to do that. Is therer any other method
Save operations must be routed through the owning component's API, in this
case through the work item API:
com.ibm.team.workitem.service.IWorkItemServer.saveWorkItem2(IWorkItem,
IWorkItemReferences, String)
You can get IWorkItemServer like any other service:
getService(IWorkItemServer.class);
--
Regards,
Patrick
Jazz Work Item Team