Windows application error after install - c#

I'm getting the following error after install my windows application to client machine.
But it works properly in my development machine.
System.IO.FileNotFoundException: Could not load file or assembly
'Microsoft.Office.Interop.Word, Version=14.0.0.0, Culture=neutral,
PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The
system cannot find the file specified. File name:
'Microsoft.Office.Interop.Word, Version=14.0.0.0, Culture=neutral,
PublicKeyToken=71e9bce111e9429c'
Thanks in advance.

You need to install the Office Interop assemblies on the target machine. They're available for download as a redistributable from the link below
http://www.microsoft.com/en-us/download/details.aspx?id=3508

Related

Could not load file or assembly Microsoft.AspNetCore.Http.Abstractions

I installed a XYZ package in my project of type class library. That new package depends on the file Microsoft.AspNetCore.Http.Abstractions.
When I do the deployment in OpenShift I have the following error:
"Unhandled exception. System.IO.FileNotFoundException: Could not load file or assembly >'Microsoft.AspNetCore.Http.Abstractions, version=3.1.0.0, Culture=neutral, >PublicKeyToken=xyzxyzxyz'. The system cannot find the file specified."
Has anyone seen this problem?
Thanks!

'Could not load file or assembly 'System.Runtime, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'

I am a newbie and just created a new project of type: ASP.NET Core Web Application (.NET Core) and let VS preload all the defaults. I changed nothing, except set index.cshtml the startup. It built ok, but has a run-time error of:
System.IO.FileNotFoundException occurred
HResult=0x80070002
Message=Could not load file or assembly 'System.Runtime, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
Call Stack (last item):
ntdll.dll!NtWaitForSingleObject() Unknown
What is happening here, and how can it be fixed?
Using Visual Studio Installer, selecting the Repair option solved the problem.

mod-mono-server4 assembly System.IO.FileNotFoundException

I serached but I didn't found how to resolve this problem. I have ASP.NET application with System.Web.DataVisualization.dll. Dll is in bin folder, simple ASP.NET apps are working but when I try to run this application I got error:
System.IO.FileNotFoundException Could not load file or assembly
'System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35' or one of its dependencies
also I have MONO_PATH=/usr/lib/mono/gac:/app_dir/bin

Unhandled exception in mono while running NancyFx

I'm running Ubuntu 12.04 and I have the mono-runtime package installed. On my windows machine my NancyFx self hosted application compiles fine with 1 warning but when I try to run it on my VPS I get the following error:
Unhandled Exception: System.IO.FileNotFoundException: Could not load file or
assembly 'System.Core, Version=4.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089' or one
of its dependencies.
File name: 'System.Core, Version=4.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089'
[ERROR] FATAL UNHANDLED EXCEPTION: System.IO.FileNotFoundException: Could not load
file or assembly 'System.Core, Version=4.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089' or one of its dependencies.
File name: 'System.Core, Version=4.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089'
Any ideas on how I can fix this?
I ran across the same problem when trying to run a Mono app (compiled in Xamarin Studio on my Windows machine) on an Ubuntu 14.04 Docker virtual. I did the same thing as you and installed mono-runtime, and after an hour or two of searching, was able to get it to work after installing mono-complete. However, that also brings down a few hundred MB of additional stuff. Finally I found the package that did the trick: libmono-system-core4.0-cil (see here).
Hope that helps!
The Mono version available in the Ubuntu 12.04 repositories is very old. Try with a newer Mono (e.g. the one in Ubuntu 14.04) and see if that works.

Exception occurs when i try to create instance of UserProfileManager

I am using UserProfileManager to get user profiles in sharepoint. I compiled the code on MOSS machine and then tried to run it on SP2010 machine but then it threw an exception that it couldnt find 'Microsoft.Office.Server' version=12.0.0.0 but now my question is why it is looking for MOSS assembly on SP2010 machine
Error which it throws is
System.IO.FileNotFoundException: Could not load file or assembly
'Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral,
publicKeyToken=71e9bce111e9429c' or one of its dependencies. The system cannot find the
file specified.File name: 'Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral,
publicKeyToken=71e9bce111e9429c'
You should recreate you code for SharePoint Server (not Foundation!) 2010 assemblies. For this you should have SPS2010 and VS2010 on the same machine.

Categories

Resources