I have an AE-desc :---
<?xml version="1.0" encoding="UTF-8"?>
<analysisEngineDescription xmlns="http://uima.apache.org/resourceSpecifier";>
  <frameworkImplementation>org.apache.uima.java</frameworkImplementation>
  <primitive>true</primitive>
  <annotatorImplementationName>xyz.abc.tuv.uima.cxp.ae.TestAnnotator
</annotatorImplementationName>
  <analysisEngineMetaData>
    <name>testAE</name>
    <description/>
    <version>1.0</version>
    <vendor/>
    <configurationParameters/>
    <configurationParameterSettings/>
    <typeSystemDescription/>
    <typePriorities/>
    <fsIndexCollection/>
    <capabilities>
      <capability>
        <inputs/>
        <outputs/>
        <languagesSupported/>
      </capability>
    </capabilities>
    <operationalProperties>
      <modifiesCas>true</modifiesCas>
      <multipleDeploymentAllowed>true</multipleDeploymentAllowed>
      <outputsNewCASes>false</outputsNewCASes>
    </operationalProperties>
  </analysisEngineMetaData>
  <resourceManagerConfiguration/>
</analysisEngineDescription>


I have a deployment desc:---

<?xml version="1.0" encoding="UTF-8"?>
<analysisEngineDeploymentDescription 
xmlns="http://uima.apache.org/resourceSpecifier";>
  <name>testDeploymentDesc</name>
  <description/>
  <version>1.0</version>
  <vendor/>
  <deployment protocol="jms" provider="activemq">
    <casPool numberOfCASes="1" initialFsHeapSize="2000000"/>
    <service>
      <inputQueue endpoint="myQueueName" brokerURL="${defaultBrokerURL}" 
prefetch="0"/>
      <topDescriptor>
        <import location="testAE.xml"/>
      </topDescriptor>
      <analysisEngine async="false">
        <scaleout numberOfInstances="1"/>
        <asyncPrimitiveErrorConfiguration>
          <processCasErrors thresholdCount="0" thresholdWindow="0" 
thresholdAction="terminate"/>
          <collectionProcessCompleteErrors timeout="0" 
additionalErrorAction="terminate"/>
        </asyncPrimitiveErrorConfiguration>
      </analysisEngine>
    </service>
  </deployment>
</analysisEngineDeploymentDescription>


And the Annotator that the descriptor invokes 
just prints out the document text in the process method.

Question: When I deploy this using deployAsyncService.sh, 
I do not get a regular message that says 
something to the effect of "...type s and enter to stop...". 
I know I am missing something silly, can somebody comment please?

Thanks!

Reply via email to