Hello,
We are using Groupdocs with JAVA for converting office documents on Windows within a web application. We are encountering an error when trying convert excel files with Ver. 26.1. None of them can be converted. Using Groupdocs Version 25.12 ist works.
Based on your description, here is a likely technical approach for Aspose.Conversion.
In version 26.1 the Excel‑to‑PDF (or other) conversion pipeline was updated to use the new ExcelConversionOptions class, and it now requires the optional GroupDocs.Conversion.Native package (or a compatible Office installation) to be present on the machine. A quick way to verify the setup is to run a minimal conversion with the default options:
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.options.convert.ExcelConversionOptions;
import com.groupdocs.conversion.options.load.LoadOptions;
try (Converter converter = new Converter("sample.xlsx")) {
ExcelConversionOptions options = new ExcelConversionOptions();
converter.convert("sample.pdf", options);
}
If the native dependencies are missing, the call will throw an exception indicating that the Excel engine could not be loaded.
Please let me know:
- What exact exception message or stack trace do you receive when the conversion fails?
- Are you using any custom
LoadOptions/ConversionOptionsor relying on the default settings, and is the GroupDocs.Conversion.Native (or a full Office suite) installed on the server?
Hello @DGeccelli ,
We’re sorry to hear that you’ve encountered this issue.
Could you please share the problematic file along with the conversion code sample you are using?
We will investigate the issue and share the results with you as soon as possible.
I have the requested information in a zip file. But as I tried to upload it, the web site gives an error.