Archive for the ‘.NET’ Category

PFDAVadmin on Exchange 2007: Could not expand…

Wednesday, November 18th, 2009

You might want to use PFDAVAdmin on Exchange 2007 (to set public folder user rights for example) and run into this error; Could not expand https://yourexchange.yourdomain.local/ExAdmin/Admin/.... Name cannot begin with the '0' character, hexadecimal value 0x30. Line 1, position 399. You should either install ...

Version control for .NET with Subversion and AnkhSVN

Sunday, November 30th, 2008

Requires a Linux server (CentOS in this case, Subversion also runs on Windows if you want) and Visual Studio (2008 in this case) Install subversion and xinetd yum install subversion xinetd Create the following file /etc/xinetd.d/svnserve # default: on # Subversion server service svn { socket_type = stream protocol = tcp user = root wait = no disable ...

Install 32-bit Reporting Services on a 64-bit Windows 2003

Monday, November 3rd, 2008

I followed a MS how-to: http://msdn.microsoft.com/en-us/library/ms143293(SQL.90).aspx However, the last step (allowing 32-bit .NET) was not possible because the 32-bit Web Server Extension was not there. I ran the following to register it; C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i Refresh the Web Server Extensions and Allow “ASP.NET v2.0.50727 (32-bit)”. MS procedure; ...

.NET 3.5 framework: Child nodes are not allowed

Wednesday, October 24th, 2007

After installing the new .net framework (i need it because I’m creating my project in Visual Studio 2008) the website wouldn’t run. It gave following error: ”parse Error: Child nodes are not allowed” This error occurs when you attempt to run an application using .NET framework 2.0 or 3.0 and your Microsoft ...