Hello,
I have an application that depends on the GroupDocs.Conversion 3.0.0 API. The application runs with no issues on a localized WebSphere Liberty Profile. However, when I deploy it to a full-fledged WebSphere Administration Server, my application crashes the server every time I try to run it. We are currently evaluating GroupDocs for a large purchase and we think it has great promise if we can get this issue fixed.
Here is the relevant piece of code from my application:
License lic = new License();
lic.setLicense(ConnectionHandler.class.getClassLoader().getResourceAsStream("GroupDocs.Conversion.lic"));
ConversionHandler conversionHandler = new ConversionHandler(new ConversionConfig());
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setOutputType(OutputType.Stream);
IOUtils.copy(conversionHandler.convert(file.getInputStream(), file.getFieldName(), saveOptions).toInputStream(), response.getOutputStream());
I've attached the relevant error logs and heap dumps. If anyone could provide any assistance at all, this would be great.
Thanks!