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.
Hello @DGeccelli ,
I have just double-checked my email twice, but unfortunately I do not see any message from you with the ZIP file attached.
Could you please resend it?
This seems unusual, but I still do not see any emails from you in my inbox.
In that case, could you please upload the archive to Google Drive and share the download link with me?
Alternatively, you may use any other cloud storage service that allows me to download the file.
Thank you for sharing your sample project.
I was able to reproduce the issue on my side when converting the spreadsheet to PDF.
The problem has been logged in our tracking system under the ID CONVERSIONJAVA-3087, and our development team will start working on it as soon as possible.
As soon as I receive any updates regarding this issue, I will share them with you.
We apologize for the inconvenience caused.
Hello @DGeccelli ,
Our development team has fixed the above-mentioned issue and released a hotfix. Please try this version and share your feedback.