Archive for the ‘.NET’ Category
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 ...
Posted in .NET, Sysadmin, Windows | No Comments »
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 ...
Posted in .NET, Linux, Windows | No Comments »
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;
...
Posted in .NET, Windows | 1 Comment »
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 ...
Posted in .NET, Windows | No Comments »