# Thursday, August 04, 2005

Like Christian Weyer and Damir Tomicic I like the word Indigo more than "WCF" and just read that Kenny will continue to refer to it as “Indigo” for a little while.

 

Indigo | Misc
Thursday, August 04, 2005 11:04:45 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  | 
# Wednesday, August 03, 2005

...And i was just Added :-)

 

Shinja Strasser is the head of the NET UG Usergroups. He is publishing a main feed for the members under http://blogs.netug.de/. Now he opend the main feed for a few guys of the german community.

Wednesday, August 03, 2005 2:28:14 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  | 
# Monday, August 01, 2005

Boy, look at it - it's five now!

:-D 

Monday, August 01, 2005 1:30:41 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  | 

First of all thank you to everybody who helped (Microsoft, INETA, S&S, E-Team...), spoke (Christian Weyer, Dirk Primbs, Achim Oellers, Dr. Holger Schwichtenberg) nad attended the event.

A few things learned:

  • Min. Session time is 60 min.
  • Print out the list of attendees ordereb by lastname ascending
  • Call restaurant to make sure the speakers diner will be served :-P

The feedback until now was very good and Stephan and I plan to do the ".NET Summit NRW 2006" next year. bigger, better, more

:-)

Monday, August 01, 2005 1:29:36 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [1]  | 
# Wednesday, July 27, 2005

Today 10:36 the last left attendee registration for the event I'm organizing with Stephan Oetzel came in.

:-)

More info: .NET Summit NRW.

Event | Misc
Wednesday, July 27, 2005 10:44:51 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  | 
# Tuesday, July 26, 2005

Mike Vernal figured out from where Microsoft's whole "evil empire" moniker comes.´

Must read :-)

Tuesday, July 26, 2005 10:59:23 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [16]  | 
# Monday, July 25, 2005

If you ever wanted to know where newtelligence headquarter is (Korschenbroich)...

http://virtualearth.msn.com/default.aspx?cp=51.188584|6.605851&style=r&lvl=9&v=1

You can also see where our next SOA Workshop will happen (Düsseldorf) on September 5 - 7, 2005.

Monday, July 25, 2005 10:08:46 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [25]  | 
# Friday, July 22, 2005

Scott posted a solution to support httpOnly cookies in ASP.NET 1.1 but pointed out some problems when you run the code on 2.0(http://www.hanselman.com/blog/HttpOnlyCookiesOnASPNET11.aspx)

Here is a solution:

		
protected void Application_EndRequest(Object sender, EventArgs e)
{    
	if(System.Environment.Version.Major<2)
	{
		foreach(string cookie in Response.Cookies)    
		{        
			const string HTTPONLY = ";HttpOnly";        
			string path = Response.Cookies[cookie].Path;        
			if (path.EndsWith(HTTPONLY) == false)        
			{            
				//force HttpOnly to be added to the cookie            
				Response.Cookies[cookie].Path += HTTPONLY;        
			}    
		}
	}
}
ASP.NET | C# | Projects
Friday, July 22, 2005 2:43:24 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [21]  | 
# Wednesday, July 20, 2005
Wednesday, July 20, 2005 5:44:40 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [16]  |