I'm trying to use pdfbox from Websphere Liberty. trying the basic hello world in simple java application, it worked just fine,
Added all the jars to my liberty runtime, then trying the same code PDDocument document = new PDDocument(); PDPage page = new PDPage(); ....
the first line is working just fine, but when trying to create the PDPage I got the following exception
java.lang.UnsatisfiedLinkError: awt (Not found in com.ibm.oti.vm.bootstrap.library.path)
it looks like something is missing but I cannot see what, may be I'm just blind, I wonder if anyone can suggest anything to try ?
Thanks