about 9 months ago - No comments
While trying to move an NT Service over to its own account I hit the following WCF error:- Exception Alert : System.ServiceModel.AddressAccessDeniedException: HTTP could not register URL http://+:8082/home/. Your process does not have access rights to this namespace (see http://go.microsoft.com/fwlink/?LinkId=70353 for details). —> System.Net.HttpListenerException: Access is denied at System.Net.HttpListener.AddAllPrefixes() at System.Net.HttpListener.Start() at System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen() The referenced More >
about 1 year ago - 1 comment
System.Data.EntitySqlException: ‘ExceptionRecord’ could not be resolved in the current scope or context. This seemingly small Exception took a while to figure out. I was calling the ObjectContext constructor without specifying the default container name. Adding that solved the problem and now the Entity Framework is happily talking to SQL Server Compact again. For anyone else More >
about 1 year ago - No comments
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.customvalidator.aspx How annoying, “If the input control is empty, no validation functions are called and validation succeeds. Use a RequiredFieldValidator control to require the user to enter data in the input control. ” The missing parameter you need to set is ValidateEmptyText=”true”. Wasted a good half hour finding that little oddity.