RSS 2.0
# Thursday, May 17, 2007

ODF is in feite een concurrent van Microsoft's Open XML bestandsformaat. Opmerkelijk is dan ook dat Microsoft voor gestemd heeft voor de toevoegen aan American National Standards list van ANSI. Wellicht dat dit politieke goodwil tonen is om in een later stadium ook Open XML op de lijst te krijgen.

Thursday, May 17, 2007 12:33:36 PM (W. Europe Daylight Time, UTC+02:00)  #    Comments [0] -
Nederlands
# Friday, May 11, 2007

Thanks to all that came to my sessions at VSLive in Orlando on Tuesday, and thanks for the great feedback. Below are the demo's for the two sessions. Updated slides decks will be made available on the attendee website.

Some of you asked which tool I used to demo the perf difference between sync and async (demo 1). Although you could use perf tools that come with VS2005 I used Application Center Test (ACT) that comes with Visual Studio 2003, because it is very easy to setup and shows nice graphics (which was most important for this demo). You can also use the free Web Application Stress Tool. The ACT script I used was (substitute "slow.aspx" with "slowasync.aspx" for the async test), with 50 browser connections:

Randomize()
If Rnd(10) < 5 Then
    Test.SendRequest("
http://testserver/Demo01/Fast.aspx")
End If
Test.SendRequest("
http://testserver/Demo01/Slow.aspx")
Test.SendRequest("
http://testserver/Demo01/Fast.aspx")

Note: I've run this test in several setups with different hardware. In my Orlando session I showed numbers from ACT on the host to the web in a VPC. In my San Francisco session ACT was on a Dell D600 with the web running in a VPC on my Dell D800, which is a better way to test (in the Orlando setup ACT is drawing perf from the same CPU). The async perf is much better (even in percentages) with the SF setup. Be aware that there are a lot of variables: CPU capacity, memory, and last but not least... network interface. In another test setup I hardly saw any difference between sync and async. Why? Because the network was the bottleneck :(.

Friday, May 11, 2007 2:48:13 PM (W. Europe Daylight Time, UTC+02:00)  #    Comments [0] -
ASP.NET | English | Events

Wil je meer weten over Silverlight? Dan is silverlight.net een goed startpunt, met onder andere een aantal video tutorials. Een aantal sessies van de MIX conference en meer informatie over Sliverlight kun je vinden in deze blogpost van Scott Guthrie. Scott Hanselman heeft daarnaast een lijst met voorbeelden verzameld in zijn post Silverlight samples.

Friday, May 11, 2007 12:02:24 PM (W. Europe Daylight Time, UTC+02:00)  #    Comments [0] -
ASP.NET | Nederlands | Silverlight
# Friday, May 04, 2007

Wil je weten hoe Microsoft Silverlight (aka WPF/Everywhere, WPF in de browser a la Flash) er qua architectuur uit gaat zien? Deze plaat geeft het overzicht. Scott Hanselman geeft een zeer uitgebreid overzicht in zijn blogpost Putting Mix, Silverlight, the CoreCLR and the DLR into context.

Friday, May 04, 2007 10:53:31 AM (W. Europe Daylight Time, UTC+02:00)  #    Comments [0] -
.NET | ASP.NET | Nederlands | Silverlight
# Monday, April 30, 2007

Windows "Longhorn" Server Beta 3 is te downloaden van het MSDN Evaluation Center. Onderdeel van deze release is ook IIS7 die te gebruiken is met een Go Live License. Dat betekent dat je er mee in productie mag gaan, maar wel voor eigen risico. Meer over de mogelijkheden van IIS7 is te lezen in deze blogpost of op www.iis.net.

Monday, April 30, 2007 4:50:15 PM (W. Europe Daylight Time, UTC+02:00)  #    Comments [0] -
ASP.NET | Nederlands | Windows
# Sunday, April 29, 2007

I've always felt that SVG wouldn't make it into the mainstream. Flash does about everything SVG does and is available on 99.9% of the desktops. In addition there are scores of Flash developers/designers out there. The only thing SVG had going for it was the support of Adobe, but I always thought they were in it because SVG was a potential Flash-killer. With the acquisition of Macromedia, Adobe doesn't need a Flash-killer anymore. In fact they probably wished SVG never saw the light of day. Last year Adobe anounced that they will discontinue their SVG Viewer browser plug-in, saying that SVG is a mature technology and that there are loads of mature implementations now. The directory of SVG viewers tells us otherwise. Now that Microsoft has put forward Silverlight, a Flash (and potentially HTML) killer, the future of SVG looks pretty grim. The two companies that in the past would benefit most from the rise of SVG now both would like SVG to be a thing of the past.

Sunday, April 29, 2007 12:15:13 AM (W. Europe Daylight Time, UTC+02:00)  #    Comments [0] -
English | XML
# Sunday, April 01, 2007

Het gebeurt niet vaak dat ik schrijf over dingen die niets met techniek te maken hebben, maar soms maak ik graag een uitzondering, zo ook nu...

Wij waren vandaag uitgenodigd voor een brunch waar iemand wat ging vertellen, meer was ons niet verteld. De vertelling was van Marieke de Lange, die op eigen houtje en uit eigen zak naar Afrika gegaan om daar kinderen te helpen door met ze een theatervoorstelling te maken. De beste vergelijking die je kunt trekken is met de organisatie Right To Play van Johan Olaf Koss, en in die lijn is Marieke nu ook meer mensen bij het project aan het betrekken. Met een kleine subsidie en donaties van particulieren en bedrijven gaat ze verder met het helpen van (kans)arme jongeren in de derde wereld. Ik kan het lang niet zo goed zelf vertellen, dus neem de moeite eens om op Marieke's blog te kijken. It blew me away!

Sunday, April 01, 2007 9:15:55 PM (W. Europe Daylight Time, UTC+02:00)  #    Comments [0] -
Nederlands

Ik kreeg net de email van Microsoft binnen dat ik weer de gelukkige ontvanger ben van de Microsoft Most Valuable Professional (MVP) Award. Die erkenning is natuurlijk altijd weer leuk. Bedankt Microsoft. Hopelijk kan ik ook komend jaar eer doen aan de award.

Sunday, April 01, 2007 9:00:30 PM (W. Europe Daylight Time, UTC+02:00)  #    Comments [0] -
Nederlands
# Thursday, March 29, 2007

Download the demo's here (34.39 KB)

During the session I promised to give put a sample here about using delegates for asynchronous processing, but what's the use if you can just read it on MSDN: Calling Synchronous Methods Asynchronously. Again, be aware that you shouldn't use this in ASP.NET!!! This is for console, desktop, and Windows Services only! In ASP.NET this would exhaust the thread pool pretty fast.

Thursday, March 29, 2007 12:37:31 AM (W. Europe Daylight Time, UTC+02:00)  #    Comments [1] -
ASP.NET | English | Events
# Wednesday, March 28, 2007

Download the demo's here (85.85 KB). If you want the slides, send me an email.

If you want to do the AspCompat demo, don't forget to register the VB6 component from the command line with regsvr32.

Wednesday, March 28, 2007 11:53:24 PM (W. Europe Daylight Time, UTC+02:00)  #    Comments [0] -
ASP.NET | English | Events
Sign In

Archive
<May 2007>
SunMonTueWedThuFriSat
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789
About
This is the blog of Michiel van Otegem, a Senior Software Architect with Sogeti Netherlands, and author of several books and numerous articles on (ASP).NET, XML, and related technologies.
Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2012
Michiel van Otegem
All Content © 2012, Michiel van Otegem
DasBlog theme 'Business' created by Christoph De Baene (delarou)