Close
Skip to content

Softwareproduction

Software Development Blog

  • ASP.NET Core
  • Xamarin
  • Code Generation
  • General Programming
  • Development Tools
  • Servers
  • Miscellaneous

Category: Servers

An error occurred while communicating with the remote host. The error code is 0x80070032.

May 8, 2018Munir HusseiniNo Comments

The logs of a web application running in IIS include an HttpException with an inner COMException and the message “An…

Read More 3093 views

“IDENTITY_INSERT is already ON for table X” When Applied to Multiple Tables

August 22, 2013Munir HusseiniNo Comments

Today, I needed to insert data into multiple tables in SQL Server and write to the tables’ identity columns. My…

Read More 1507 views

Automatically Re-Create Stored Procedures In SQL Server

May 22, 2013Munir HusseiniNo Comments

One day I discovered that the system table sysdepends in my database was not valid. I know that dropping and…

Read More 386 views

Listing Objects Used in Stored Procedures (MS SQL)

May 21, 2013Munir HusseiniNo Comments

Recently, I had to clean up a large data base. Some of the tables in that database were obsolete and…

Read More 644 views

EF5 Migrations: Multiple Data Contexts in a Single Database

February 15, 2013September 27, 2017Munir Husseini5 Comments

Consider this: an application is built up from multiple modules, each with a different set of entities and data contexts.…

Read More 974 views

Determine SQL Server Version and Edition

November 27, 2012Munir HusseiniNo Comments

Here you go…. SELECT SERVERPROPERTY(‘productversion’), SERVERPROPERTY (‘productlevel’), SERVERPROPERTY (‘edition’)

Read More 233 views

Getting The Database Connection String From an ObjectContext

June 13, 2012September 27, 2017Munir Husseini1 Comment

The trick here is to cast the Connection property of the ObjectContext to the type System.Data.EntityClient.EntityConnection. Then you can access…

Read More 311 views

Handle Clicks On Calendar Items In SharePoint 2010 With JavaScript

May 18, 2012September 29, 2017Munir Husseini15 Comments

In some scenarios, you might want to add extended client behavior to a Calendar View in SharePoint 2010. The client-side…

Read More 2197 views

Updating BDC Models in SharePoint 2010

March 8, 2012September 29, 2017Munir Husseini1 Comment

Using Visual Studio 2010, I created a BDC Model and deployed it to a SharePoint 2010 farm. After a while,…

Read More 525 views

netsh http add sslcert “the parameter is incorrect”

November 17, 2011September 29, 2017Munir Husseini1 Comment

In the last post, I referenced a blog post by Dominick Baier about how to set up WCF over SSL.…

Read More 1672 views
Load More
(c) 2011-2017 Munir Husseini