Check prerequisites in plugin.xml
![](http://jazz.net/_images/myphoto/f0ff1171be05f8b04193e6a88fadd7d1.jpg)
By going through some links based on the above error,I figured out the prerequisites are missing in plugin.xml.
I added those which are required.
Below is the code change which I made in plugin.xml
<prerequisites>
<requiredService interface="com.ibm.team.repository.common.service.IWorkItemServer"/>
</prerequisites>
Still getting the Check prerequisites in plugin.xml
Following is the whole plugin.xml
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="com.ibm.team.process.service.operationParticipants">
<operationParticipant
class="follow_upplugin.OperationParticipant3"
id="Follow_UpPlugin.operationParticipant3"
name="follow_UpPlugin"
operationId="com.ibm.team.workitem.operation.workItemSave">
<prerequisites>
<requiredService interface="com.ibm.team.repository.common.service.IWorkItemServer"/>
</prerequisites>
</operationParticipant>
</extension>
</plugin>
Comments
Ralph Schoon
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER May 10 '19, 2:39 a.m.the information you provided is useless. Would it be too much to ask for the actual error message you see in the log?
AMEYA KALE
May 10 '19, 2:48 a.m.I tried each and every way for solving the above issue,still no luck.Its my humble request to look into this issue and try to find what's gone wrong.
Ralph Schoon
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER May 10 '19, 2:56 a.m.The error message in the Eclipse debug console actually tells you the offending prerequisite, or gives at least new hints. If you debug on Jetty, you need to restart the server to make the change in the XML recognized.