Hi,
I have a pipeline that has a casProcessor descriptor in a jar file that gives
me an error when I try to run it in the Eclipse CPE GUI.
The pipeline casProcessor has the following form:
<casProcessor deployment="integrated" name="annotateThis">
<descriptor>
<import name="com.a.b.c.aggregate.AProcessorAggregate"/>
</descriptor>
...
</casProcessor>
I get the following type error when the pipeline is loaded (the aggregate
definition file is in a Maven jar):
Could not load descriptor from URL
jar:file:/C:/Users/me/.m2/repository/com/a/b/c/1.2.3/Ajar-1.2.3.jar!/com/a/b/c/aggregate/AProcessorAggregate.xml
CPR Configuator only supports file: URLs
So the system correctly translated "com.a.b.c.aggregate.AProcessorAggregate"
into
jar:file:/C:/Users/me/.m2/repository/com/a/b/c/1.2.3/Ajar-1.2.3.jar!/com/a/b/c/aggregate/AProcessorAggregate.xml
and com/a/b/c/aggregate/APRocessorAggregate.xml is in the Jar
/C:/Users/me/.m2/repository/com/a/b/c/1.2.3/Ajar-1.2.3.jar
but CPE GUI can't seem to use it.
Is there a way to reference this Jar aggregate xml definition file in a
pipeline so Eclipse CPE GUI will not error out?
Thanks!