Justin,
I've got the project, changed it a bit, and used it's contents as IIS7 application and it works ok.
Can you verify that licensing code is really called?
And also please try to place licensing code to Default.aspx page like shown below:
- Code: Select all
string path = Server.MapPath("Bin\\DocFramework.lic");
if (!System.IO.File.Exists(path))
throw new Exception("blah");
Cellbi.DocFramework.EditModel.Document.RegisterLicenseFile(path);
Document doc = new Document();
doc.AppendParagraph("Test Para1");
I've sent the modified project to your email please take a look.