I have a .NET App that I've recently Checked In to Team Foundation Server. Ever since I Checked it in, I get Access Denied to the App folder. I then give security permissions to the impersonated user and receive the error: > Could not load file or assembly 'PMD Image [...] read more
Recently we migrated our development environment from VS2008 to VS2010 (Ultimate). For one solution (for now all C#, .NET Framework 3.5 and ASP.NET 2.0) which contains 6 projects VS auto-upgraded it without any problems. The solution projects are: 1. ASP.NET website 2. VS2010 Web Deployment project for above site 3. [...] read more
I made a web site with VS2010 and publish it on IIS7. It runs fine but it can't connect to an OLAP server so I had to setup impersonation. Impersonation runs fine in debug on my dev machine, but when I publish this on the server, I get this error*: [...] read more
I have a Web API (.Net MVC) that's being called from an MS Access VBA Module, like so: objHTTP.Open "POST", "http://ourwebserver/api/run", False objHTTP.setRequestHeader "Content-Type", "application/json" objHTTP.send (body) 'body is a string containing the parameters to be used Debug.Print objHTTP.Status Debug.Print objHTTP.responseText Well, I need to be able to debug the [...] read more
I have a custom authentication in the reporting services, And i'm getting this error whenever trying to open a report : An internal error has occurred on the report server. For more information, see the error log. (rsInternalError) Could not load file or assembly 'Microsoft.ReportingServices.ProcessingObjectModel, Version = 2019.11.0.0, Culture = [...] read more
All of a sudden, a large asp.net project stopped working, without any code changes relevant to the problem. As we are using Visual Studio 2010 here at work, I uninstalled the Update for Visual Studio 2012 (KB2781514), which perhaps had been installed because I installed a version of Visual Web [...] read more
In ASP.NET application I'm trying to execute method in AppDomain from different assembly stored in bin subfolder. I'm creating AppDomain and calling AppDomain.CreateInstanceAndUnwrap. It works fine on my computer and Windows Server 2K8 but on Windows Server 2k3 throws an exception: > at System.AppDomain.CreateInstanceAndUnwrap(String assemblyName, String > typeName) at System.AppDomain.CreateInstance(String [...] read more