It's all about the answers!

Ask a question

Check prerequisites in plugin.xml


AMEYA KALE (176) | asked May 10 '19, 2:20 a.m.
edited May 10 '19, 2:37 a.m. by Ralph Schoon (63.1k33645)

 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 commented May 10 '19, 2:38 a.m. | edited May 10 '19, 2:39 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER

the information you provided is useless. Would it be too much to ask for the actual error message you see in the log? 


Also please tag these questions with rational-team-concert and extending.


AMEYA KALE commented 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 commented May 10 '19, 2:55 a.m. | edited May 10 '19, 2:56 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER

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.  



However, as mentioned, without the error in the console/log, you are on your own. There is no valuable information in the question anyone can act upon or suggest solutions. 

Be the first one to answer this question!


Register or to post your answer.