1
Unable to load file or assembly PortableEngine
Problem reported by Malaska drahoslav - 12/3/2019 at 11:34 PM
Resolved
Hello,
my problem is error exception on preview a file document on project ASP.NET v4.0 build at VS 2010.
I see AssemblyResolver.log to error, there isn't any errors only information. Version of assembly are FileUltimate-v7.0.6.0.

The _85H initialization method raised an exception.
---> Unable to load file or assembly PortableEngine, Version = 3.0.0.0, Culture = neutral, PublicKeyToken = a6f3cafa178e6038 or one of its dependent elements. The system cannot find the file specified.
 

Is any solution this issue?

3 Replies

Reply to Thread
0
Malaska drahoslav Replied
Hola, 
I resolved this problem for Asp.net. Problem was in file 'xxx.cs'. I must add at header using for GleamTech.FileUltimate.AspNet. 

Example: 
using System;
using System.IO;
....
using GleamTech.FileUltimate.AspNet;
using GleamTech.FileUltimate.AspNet.UI;
....

namespace Intranet.BasePage 
{    
    public class Validation    
        {
......



0
Malaska drahoslav Replied
Hola,
To resolve the problem completely, you must physically add GleamTech.FileUltimate.dll to the Bin folder. The right mouse button on the Bin->Add Existing Item select file GleamTech.FileUltimate.dll. Check the Property Pages->References to see if it contains the GleamTech.FileUltimate.dll file reference. This is a complete solution to the problem.
0
Cem Alacayir Replied
Employee Post
I see that you have a "Web Site" project. Of course you need to reference GleamTech.FileUltimate.dll. Then VS should copy GleamTech.FileUltimate.dll and it's dependent GleamTech DLLs to the bin folder. 

If the DLLs are in GAC, then just specify full name of the assemblies in your Web.config so that they can be found (the versions below are for latest):


<configuration>
  <system.web>
    <compilation targetFramework="4.0" >
      <assemblies>
        <add assembly="GleamTech.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=a05198837413a6d8
" />
        <add assembly="GleamTech.VideoUltimate, Version=2.0.0.0, Culture=neutral, PublicKeyToken=a05198837413a6d8
" />
        <add assembly="GleamTech.ImageUltimate, Version=4.0.0.0, Culture=neutral, PublicKeyToken=a05198837413a6d8
" />
        <add assembly="GleamTech.DocumentUltimate, Version=5.0.0.0, Culture=neutral, PublicKeyToken=a05198837413a6d8
" />
        <add assembly="GleamTech.FileUltimate, Version=7.2.0.0, Culture=neutral, PublicKeyToken=a05198837413a6d8
" />
      </assemblies>
    </compilation>
</configuration>

Reply to Thread