I have written a c# wrapper class with an interface to do document conversion using GemBox.Document. In the class I have the following method to save the document:
public string SourcePath{get;set;}
public string DestinationType{get;set;}
public string DestinationPath{get;set;}
private static DocumentModel document;
public void ConvertDocument()
{
try
{
string filename = Path.GetFileNameWithoutExtension(SourcePath);
ComponentInfo.SetLicense(GemboxLicence);
string savePath = String.Format("{0}\\{1}.{2}", DestinationPath, filename, DestinationType);
document = DocumentModel.Load(SourcePath);
document.Save(savePath);
}
catch (Exception e)
{
throw (new Exception("An error occured while saving the document: " + e.Message ));
}
}
The class works fine when I call it from another c# program.
I registered the class' dll to com and created a tlb file with regasm as follows:
regasm MBD.GemBox.Document.dll /tlb
I wanted to access the dll through com from delphi so I imported the tlb file into Delphi 2009. I then created a wrapper delphi library that calls c# dll:
procedure ConvertDocument(sourcePath : string ; destinationType : string ; destinationPath : string);
var
doc : TDocumentConvertor;
begin
try
OleInitialize(nil);
doc := TDocumentConvertor.Create(nil);
doc.Connect;
doc.SourcePath := sourcePath ;
doc.DestinationType := destinationType;
doc.DestinationPath := destinationPath;
doc.ConvertDocument;
doc.Disconnect;
doc.Free;
CoUninitialize;
except
on E:Exception do
begin
Writeln(E.Classname, ': ', E.Message);
end;
end;
end;
However, I get the
"An unhandled exception of type 'System.StackOverflowException' occurred in GemBox.Document.dll"
when I try to call the method through delphi. Does anyone know why this happens?
I resolved the issue by moving the Gembox document conversion part to a separate thread in the c# code:
Solution, I created a separate class that spawns a separate thread to handle document conversion :
And Then I Do the following Changes to the Initial Class:
The Delphi code remains the same.