Today at a client, we stumbled upon a problem when updating MOSS2007 SP2 with .Net Framework 3.5 SP1. Everything seemed to work fine, but Search & indexing was not working anymore. The error log showed the following: EventID 6482 - Application Server Administration job failed for service instance Microsoft.Office.Server.Search.Administration. SearchServiceInstance
Indexing and serving search queries is handled by diffetent servers in the clients environment.
After a bit of googling and bingging we foud this exelent post by Andera Glaser that decribes the problem and the solution to the problem.
http://andreasglaser.net/post/2009/09/13/SharePoint-2007-and-EventID-6482-Application-Server-Administration-job-failed-for-service-instance-MicrosoftOfficeServerSearchAdministrationSearchServiceInstance.aspx
More info about how to fix the problem:
http://support.microsoft.com/kb/962928
f78c92b6-b907-43d5-a6d2-e1f45e8bfa0c|0|.0

Via Codeplex, and a bit later on Steve Sanderson’s blog I found some information on xVal.
xVal is, as the title of this post states) a validation framework for ASP.Net MVC.
A qoute from Steve's post that got me very exited to start using xVal.
"xVal lets you link up your choice of server-side validation mechanism with your choice of client-side validation library.
It guides you to fit them both into ASP.NET MVC conventions, so everything plays nicely with model binding and errors registered in ModelState."
What this means to me is that I can implement clientside validation via JQuery Validation(http://docs.jquery.com/Plugins/Validation) but if the client does not support JavaScript all validations will also be done serverside.
The validation is also only defined once (on the modal) which makes for much easier maintenance. This is quite a big deal because many of our customers require that the webapplications we build adhere to the accessability rules set by the Dutch government.(http://www.drempelsvrij.nl)
Order a pile of pizza's because I'll be experimenting with xVal and ASP.Net MVC the next couple of days.
PS: if you don't know about DataAnnotaions yet, read this first: http://bradwilson.typepad.com/blog/2009/04/dataannotations-and-aspnet-mvc.html
55c48faf-3f1a-459d-b4f2-9c4bcd89a25e|0|.0