I am running Ubuntu 16.04 and the Awesomium Web Browser C# Framework as well as Mono 4.4.2 with the environment variable MONO_PATH set to /usr/lib/mono/4.5 and the environment variable LD_LIBRARY_PATH set to /home/frankc/EnvironmentX64/Hybrid/Debug.
在目录文件夹 /home/frankc/EnvironmentX64/Hybrid/Debug 中,我有 dll 程序集 awesomium 、 libffmpegsumo.so 、 libawesomium-1-7.so.0.0 、 awesomium_process 、 Awesomium.Mono.dll 、 Awesomium.Core 的副本。 dll 和 Awesomium.Mono.dll。
当我编译以下 C# 测试程序时,它编译正常,没有错误。
// Credit: Awesomium v1.7.2 C# Basic Sample
// by Perikles C. Stephanidis
using System;
using System.IO;
using Awesomium.Core;
using System.Threading;
using System.Diagnostics;
using System.Reflection;
namespace BasicSample
{
class Program
{
static void Main( string[] args )
{
WebCore.Initialize(WebConfig.Default);
Uri url = new Uri("http://www.google.com");
Console.WriteLine("WE ARE HERE " + WebCore.PackagePath);
using ( WebSession session = WebCore.CreateWebSession(WebPreferences.Default) )
{
// WebView implements IDisposable. Here we demonstrate
// wrapping it in a using statement.
using ( WebView view = WebCore.CreateWebView( 1100, 600, session ) )
{
bool finishedLoading = false;
bool finishedResizing = false;
Console.WriteLine( String.Format( "Loading: {0} ...", url ) );
// Load a URL.
view.Source = url;
// This event is fired when a frame in the
// page finished loading.
view.LoadingFrameComplete += ( s, e ) =>
{
Console.WriteLine( String.Format( "Frame Loaded: {0}", e.FrameId ) );
// The main frame usually finishes loading last for a given page load.
if ( e.IsMainFrame )
finishedLoading = true;
};
while ( !finishedLoading )
{
Thread.Sleep( 100 );
// A Console application does not have a synchronization
// context, thus auto-update won't be enabled on WebCore.
// We need to manually call Update here.
WebCore.Update();
}
// Print some more information.
Console.WriteLine( String.Format( "Page Title: {0}", view.Title ) );
Console.WriteLine( String.Format( "Loaded URL: {0}", view.Source ) );
} // Destroy and dispose the view.
} // Release and dispose the session.
// Shut down Awesomium before exiting.
WebCore.Shutdown();
Console.WriteLine("Press any key to exit...");
Console.Read();
}
}
}
这是编译器命令:
mcs -r:./Awesomium.Mono.dll Test.cs
然而,当我运行 mono ./Test.exe 时,我观察到以下运行时异常:
System.DllNotFoundException: Could not locate the path to the native Awesomium library.
at Awesomium.Core.WebCore.YFqkBlruD () <0x40641080 + 0x00853> in <filename unknown>:0
at Awesomium.Core.WebCore.EHyMTEo9AN () <0x4063cc30 + 0x00913> in <filename unknown>:0
at Awesomium.Core.WebCore.CreateWebView (Int32 width, Int32 height) <0x4063c9a0 + 0x00073> in <filename unknown>:0
at BasicSample.Program.Main (System.String[] args) <0x40620d70 + 0x000bb> in <filename unknown>:0
另外,当我运行 mono ./Test.exe 时,我注意到字符串 WebCore.PackagePath 为空,这不是我所期望的,因为 WebCore.PackagePath 应该指向 dll 程序集 awesomium 的位置。此外,WebCore.PackagePath 是一个获取属性,而不是获取和设置属性,因此我无法更改其值。我是否可以设置另一个类似的属性来修复 System.DllNotFoundException:无法找到本机 Awesomium 库的路径?
我已经下载了 GITHUB Awesomium WebBrowser C# 源代码,但无法 grep 字符串“无法找到本机 Awesomium 库的路径”。
strace mono ./Test.exe 和 export MONO_LOG_LEVEL=debug mono ./Test.exe 没有立即发现任何明显的东西。
我能找出 MonoSystem.DLLNotFoundException 的原因以及如何修复它吗?
今天,我能够编译、链接和运行两个 Awesomium Web 浏览器 C++ 测试程序并验证它们是否正确执行。
任何帮助是极大的赞赏。
答案1
在过去的 48 小时内,我发现 Awesomium 的 C# NET 产品存在很多配置问题,并且 DLLImports 不断变化,如果您不支付支持费用,它几乎毫无用处。
我们的架构师建议使用 C# 生成一个 Web 浏览器,我刚刚测试成功。
using System;
using System.IO;
using System.Threading;
using System.Diagnostics;
using System.Reflection;
Process proc = new Process ();
proc.StartInfo.UseShellExecute = true;
proc.StartInfo.FileName = "http://stackoverflow.com";
proc.Start ();