Aspose.Cells Cloud conversion to XLSM repeatedly times out after approximately 100 seconds

We’re investigating repeated timeouts when calling CellsApi.PutConvertWorkbook to convert a generated Excel workbook to XLSM.

The affected attempts occurred on 21 September 2026, between approximately 00:18 and 00:30 UTC. Three attempts for the same workbook failed, with the surrounding processing step taking approximately 102 seconds per attempt.

Our environment:

  • NuGet package: Aspose.Cells-Cloud 26.6.4
  • Runtime: .NET 10.0.7
  • OS: Ubuntu 24.04.4
  • Application hosting region: AWS ap-southeast-2

The call is:

var request = new PutConvertWorkbookRequest(localPath, "xlsm");
var convertedStream = (MemoryStream)cellsApi.PutConvertWorkbook(request);

The exception is a System.AggregateException containing:

System.Net.WebException: The operation has timed out.

The inner stack includes HttpWebRequest.EndGetResponse, ApiInvoker.GetResponseAsync, ReadResponseAsync, InvokeInternalAsync and InvokeApiAsync.

The workbook is loaded and populated using IronXL, then serialised with workbook.ToBinary() and written to a temporary .xlsm file before the Aspose call. We are still verifying whether those input bytes are XLSX or already XLSM.

An earlier, different workbook completed the same generation/conversion step in approximately five seconds.

Could you please confirm:

  1. Were there any Cells Cloud incidents or degraded performance during that UTC window?
  2. Is there a default request timeout near 100 seconds in this SDK, and how should it be configured?
  3. Could submitting an already-valid XLSM workbook for conversion to XLSM cause this behaviour?
  4. What request identifiers or diagnostic logging would help you investigate?

We can arrange a sanitised sample workbook if needed.

@quadrent

After testing, the API you mentioned is working correctly. Could you please provide more details about your environment and usage scenario? We will continue to investigate and update you if we find any issues.

I have provided all the information I have available. We continue to get the same error across all our environments making our SaaS product un usable. Please escalate

@Professionalize.Cells.Cloud please escalate this issue, we are receiving intermittent outages from this endpoint. This same issue has shown up back in July during a migration on your side.

@quadrent Hello, we have conducted tests from multiple locations and found that while some areas are experiencing timeouts, others are functioning normally, and some are encountering issues. Could you please let us know which region you are in? This will help us analyze the network conditions.
We are also coordinating with the server team to address this issue.

@xuejianzhang
AWS ap-southeast-2

also from local networks in New Zealand.

Screenshot 2026-09-21 at 1.58.50 PM.jpg (134.3 KB)

I am able to recreate the issue using your Swagger site

@quadrent Thank you for the information; we will identify a fix for this issue as soon as possible.

@xuejianzhang
Are there any workarounds available?

@quadrent Hello, you can try using ConvertSpreadsheet from API v4.0 as an alternative:
https://reference.aspose.cloud/cells/?urls.primaryName=API+v4#/Conversion/ConvertSpreadsheet

If the parameters meet your requirements, please let me know which programming language you are using, and I will provide the corresponding sample code.

We are using * NuGet package: Aspose.Cells-Cloud 26.6.4 in .NET 10

@quadrent
Hello, here is the sample code for .NET:

var request = new ConvertSpreadsheetRequest(localPath, "xlsm");
cellsApi.ConvertSpreadsheet(request, "output.xlsm");

If the returned content does not meet your requirements, please let us know, and we will see if improvements can be made.

Please let us know when this issue is resolved on your end. We will test this workaround.

@quadrent The host team is currently investigating the issue, and we will notify you immediately as soon as there is any progress.