Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[ptp-dev] Problem with org.eclipse.ptp.etfw.DataManagers extensions


I'm having problems again in PTP 5.0 where classes I specified in the org.eclipse.ptp.etfw.dataManagers extension are not getting invoked. I have the following snippit in my plugin.xml specifying etfw extensions I'm using


   <extension point="org.eclipse.ptp.etfw.workflows">
      <workflowDefinitionXML
            XMLFile="HPCTOptions.xml">
      </workflowDefinitionXML>
   </extension>
   <!--
                   Define an extension to monitor job completion status for the
                   instrumented application
   -->
   <extension point="org.eclipse.ptp.etfw.dataManagers">
               <PerformanceDataManager
                    class="com.ibm.research.hpct.remote.ProfileRemoteDataAccess">
               </PerformanceDataManager>
   </extension>
   <!--
                   Define an extension to assist in locating visualization
                   files for the instrumented application
   -->
   <extension point="org.eclipse.ptp.etfw.dataManagers">
               <PerformanceDataManager
                    class="com.ibm.research.hpct.remote.ProfileTimestampGenerator">
               </PerformanceDataManager>
   </extension>

I have two snippets in HPCTOptions.xml that also specify these extensions
   
    <analyze>
               <utility command="HPCTMarkJob" group="internal"/>
        </analyze>

    <analyze>
        <utility command="HPCTJobMonitor" group="internal"/>
        </analyze>

The ProfileRemoteDataAccess and ProfileTimestampGenerator classes getString() methods return HPCTJobMonitor and HPCTMarkJob respectively.

I've set breakpoints in the code in my classes including the getString methods and am not hitting those breakpoints.

Any ideas or suggestions?
Dave

Back to the top