Re: XMl generated by AnalysisEngineDescription.toXML not accepted by UIMA-as

2017-09-20 Thread r. r.
Jerry, that was it - I added annotatorImplementationName and it worked! Well, it failed at first, but when I added the correct classpath all went smoothly Many thanks for your help! Best regards -Robert > Оригинално писмо >От: Jaroslaw Cwiklik cwik...@apache.org

Re: XMl generated by AnalysisEngineDescription.toXML not accepted by UIMA-as

2017-09-19 Thread Jaroslaw Cwiklik
Just a clarification on this xml element (annotatorImplementationName), from UIMA documentation: "The next subelement, is how the UIMA framework determines which annotator class to use. This should contain a fully-qualified Java class name for Java implementations, or the name of a .dll or .so

Re: XMl generated by AnalysisEngineDescription.toXML not accepted by UIMA-as

2017-09-19 Thread Jaroslaw Cwiklik
OK, this is much clearer now. It looks like the NPE comes from the uima-as code while trying to determine name for the service. Its trying to use your analysis engine descriptor WHATEVER Is this missing in your AE descriptor? If so add it and give it a meaningful name. Jerry On Tue, Sep 19,

Re: XMl generated by AnalysisEngineDescription.toXML not accepted by UIMA-as

2017-09-19 Thread r. r.
Great - I added this and the file is preserved now posted it here: https://pastebin.com/Z2pHa0nN And there is a uima.log indeed! posted it here: https://pastebin.com/dQ4vUW5T It mentions 'primitive_ctrl_...', is that correct? Because the AE is an aggregate one. Before running this test, I ran

Re: XMl generated by AnalysisEngineDescription.toXML not accepted by UIMA-as

2017-09-19 Thread Jaroslaw Cwiklik
I setup my classpath with all the jars needed by the uima-as runtime. What is strange is that you report a NullPointerException in a constructor of one of the UIMA-AS classes. I would have expected ClassNotFoundException if a jar was missing. Unless the actual cause is swallowed somewhere. Do you

Re: XMl generated by AnalysisEngineDescription.toXML not accepted by UIMA-as

2017-09-19 Thread r. r.
Thanks Jerry, No, that file is gone after the command fails. Do I have to setup the jars in use in the class path or is UIMA-as getting all the info to locate jars from the descriptor xmls? Or maybe a way to see a yet more detailed error description by the deploy tool? I'm running this with Java

Re: XMl generated by AnalysisEngineDescription.toXML not accepted by UIMA-as

2017-09-19 Thread r. r.
Hi I posted the xmls to pastebin.com, hope you're able to view them: the deployment xml: https://pastebin.com/ELwr7VyU the pipeline xml: https://pastebin.com/qjRQUhKL There are no other error messages. Basically the pipeline is one of DKPro's examples at

Re: XMl generated by AnalysisEngineDescription.toXML not accepted by UIMA-as

2017-09-19 Thread Jaroslaw Cwiklik
Hi Robert, any chance u can paste the deployment descriptor for a review? Were there any other errors/warnings before? The UIMA-AS deployment descriptor undergoes a transformation under the covers producing Spring Framework compatible file which is fed to Spring Factory for instantiating java