Hello,
I have virtualised a web application. That opens fine and is available, however it integrates with outlook locally by sending a mail as the user in outlook on the native machine. This piece is failing. First it says that the email cannot be created Please ensure Microsoft Outlook is running and I suspected that I had isolation mode setting incorrect somewhere. I have spent some time on that but also now believe, from the reference guide, that I need to pull envelope.dll in from the native machine into the package. To do this I am using:
Reference Guide:
When you capture Microsoft Office without Microsoft Outlook and a native version of
Microsoft Outlook exists on the local system, you cannot send email from the virtual version of Microsoft Excel
because the native envelope.dll file that is installed with Microsoft Outlook depends on the mso.dll file
that ThinApp loads in the virtual environment. You can force ThinApp to load the envelope.dll file in the
virtual environment instead of in the native environment.
[BuildOptions]
ForcedVirtualLoadPaths=%ProgramFilesDir%\Microsoft Office\Office10\envelope.dll
However when I make that change to the package.ini it builds find but when I log into the web application it crashes.
Has anyone come across a similar issue?