configuration.setConnectionProtocol(OfficeConnectionProtocol.PIPE);
configuration.setPipeNames("office1", "office2", "office3",
"office4");
when I try to package it, I get
WebappContext.java:[55,38] cannot find symbol
symbol : variable OfficeConnectionProtocol
location: class org.artofsolving.jodconverter.sample.web.WebappContext
looking around, I found the need to include the ure/lib directory of
openoffice to provide the library needed for pipes..
so I modified pom.xml and added a
<argLine>-Djava.library.path=/path/to/openoffice/ure/lib</argLine>
line to the maven-compiler-plugin config..
still no go.
suggestions anyone???
thanks for a great product!