libgluezilla not found

Questions about Wine on Linux
Locked
tmontney
Level 1
Level 1
Posts: 6
Joined: Sat Jun 27, 2015 1:48 am

libgluezilla not found

Post by tmontney »

My application uses the webbrowser control, and cannot start without web support. I searched apt cache for libgluezilla and found libmono-webbrowser4.0-cil. Despite installing, same error occurs.

Code: Select all

user@user-VirtualBox:~/Downloads$ WINEDEBUG=+ wine OCN_Reporting_Utility.exe libgluezilla not found. To have webbrowser support, you need libgluezilla installed
fixme:gdiplus:GdipGetLineSpacing ignoring style

Unhandled Exception:
System.InvalidOperationException: WinForms_SeeInnerException ---> System.NullReferenceException: Object reference not set to an instance of an object
  at System.Windows.Forms.WebBrowser.Refresh (WebBrowserRefreshOption opt) [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.WebBrowser.Refresh () [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.Control.SetVisibleCore (Boolean value) [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.Control.set_Visible (Boolean value) [0x00000] in <filename unknown>:0 
  at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:set_Visible (bool)
  at FAH_Report_Utility.main.InitializeComponent () [0x00000] in <filename unknown>:0 
  at (wrapper remoting-invoke-with-check) FAH_Report_Utility.main:InitializeComponent ()
  at FAH_Report_Utility.main..ctor () [0x00000] in <filename unknown>:0 
  at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke (System.Reflection.MonoCMethod,object,object[],System.Exception&)
  at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0 
  --- End of inner exception stack trace ---
  at FAH_Report_Utility.My.MyProject+MyForms.Create__Instance__[main] (FAH_Report_Utility.main Instance) [0x00000] in <filename unknown>:0 
  at FAH_Report_Utility.My.MyProject+MyForms.get_main () [0x00000] in <filename unknown>:0 
  at FAH_Report_Utility.My.MyApplication.OnCreateMainForm () [0x00000] in <filename unknown>:0 
  at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun () [0x00000] in <filename unknown>:0 
  at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run (System.String[] commandLine) [0x00000] in <filename unknown>:0 
  at FAH_Report_Utility.My.MyApplication.Main (System.String[] Args) [0x00000] in <filename unknown>:0 
[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidOperationException: WinForms_SeeInnerException ---> System.NullReferenceException: Object reference not set to an instance of an object
  at System.Windows.Forms.WebBrowser.Refresh (WebBrowserRefreshOption opt) [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.WebBrowser.Refresh () [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.Control.SetVisibleCore (Boolean value) [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.Control.set_Visible (Boolean value) [0x00000] in <filename unknown>:0 
  at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:set_Visible (bool)
  at FAH_Report_Utility.main.InitializeComponent () [0x00000] in <filename unknown>:0 
  at (wrapper remoting-invoke-with-check) FAH_Report_Utility.main:InitializeComponent ()
  at FAH_Report_Utility.main..ctor () [0x00000] in <filename unknown>:0 
  at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke (System.Reflection.MonoCMethod,object,object[],System.Exception&)
  at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0 
  --- End of inner exception stack trace ---
  at FAH_Report_Utility.My.MyProject+MyForms.Create__Instance__[main] (FAH_Report_Utility.main Instance) [0x00000] in <filename unknown>:0 
  at FAH_Report_Utility.My.MyProject+MyForms.get_main () [0x00000] in <filename unknown>:0 
  at FAH_Report_Utility.My.MyApplication.OnCreateMainForm () [0x00000] in <filename unknown>:0 
  at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun () [0x00000] in <filename unknown>:0 
  at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run (System.String[] commandLine) [0x00000] in <filename unknown>:0 
  at FAH_Report_Utility.My.MyApplication.Main (System.String[] Args) [0x00000] in <filename unknown>:0 
User avatar
dimesio
Moderator
Moderator
Posts: 13202
Joined: Tue Mar 25, 2008 10:30 pm

Re: libgluezilla not found

Post by dimesio »

Try installing whatever version of .NET this app requires.
tmontney
Level 1
Level 1
Posts: 6
Joined: Sat Jun 27, 2015 1:48 am

Re: libgluezilla not found

Post by tmontney »

Trying to install .NET 4.0 results in "same or higher version already installed".
User avatar
dimesio
Moderator
Moderator
Posts: 13202
Joined: Tue Mar 25, 2008 10:30 pm

Re: libgluezilla not found

Post by dimesio »

Delete the wineprefix (yours is no longer clean) and use winetricks to install dotnet40 before installing your app.
tmontney
Level 1
Level 1
Posts: 6
Joined: Sat Jun 27, 2015 1:48 am

Re: libgluezilla not found

Post by tmontney »

Removing the prefix, configuring a 32 bit prefix, and installing dotnet40, my application does run (sort of). Runs into a problem, but at least it's running. Thanks!
Locked