Currently, we're running Laserfiche 10.4 standalone and would like to upgrade to 11. I'm hoping this won't break any existing client applications.
We have .Net Core applications that uses COM interop. We also have FoxPro apps that uses COM.
oLFSO = CREATEOBJECT("LFSO104.application")
oLFConn = CREATEOBJECT(LFSO104.Connection")
oLFExporter = CREATEOBJECT("DocumentProcessor104.DocumentExporter")
oLFExporter = CREATEOBJECT("DocumentProcessor91.DocumentExporter")
oLFEntry = CREATEOBJECT("LFSO104.Document")
oLFEntry = CREATEOBJECT("LFSO91.Document")
oLFIE = CREATEOBJECT("LaserFiche.imageenable80")
My goal is to convert to 11 so that our .Net Core apps will be able to use the Laserfiche API instead of COM interop. I just want to make sure converting to 11 won't break any legacy apps that uses COM interop.
Thanks,
Wayne