<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" version="2.0">
  <channel>
    <title>Malek's Moorish tales</title>
    <link>http://kemmou.com/</link>
    <description>the new 1001 nights mantra : blog or die</description>
    <language>en-us</language>
    <copyright>Malek Kemmou</copyright>
    <lastBuildDate>Mon, 03 Nov 2003 12:38:08 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 1.8.5223.2</generator>
    <managingEditor>blog@kemmou.com</managingEditor>
    <webMaster>blog@kemmou.com</webMaster>
    <item>
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=085a49be-93dc-4ef4-9637-f5f52396c067</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,085a49be-93dc-4ef4-9637-f5f52396c067.aspx</pingback:target>
      <dc:creator />
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      These are my notes on the Hosting the CLR Panel. I will try to arrange them and make
      them more readable later on.
   </p>
        <p>
         On the panel, Mahesh Prakriya, Chris Brumme, Sean Trowbridge,
      Chris Brown, Dimitry Robsman(ASPNet), Jose Blakeley(SQL), Mark Alcazar (Longhorn),
      and Thomas Quinn from Microsoft, and Andrew Murchinson from IBM (DB2).
   </p>
        <p>
         
      <br />
      Q : Chris brown, What is the hosting API ?<br />
      A : First, the original hosting environment had 11 pages to describe the APIs, the
      whidbey one is 106 pages long. It is made of  COM interfaces to change the
      threading model, memory allocation, synchronization primitives, and other extensions
      to the regular interoperability methods ...
   </p>
        <p>
      Q : Is IBM thinking of using an alternative implementation of CLR on its alternative
      plateform ?<br />
      IBM : The initial implementation is only for NT and thus will use the Microsoft Runtime.
      On next versions, We are thinking about Mono ...
   </p>
        <p>
      Q : overhead on memory ?<br />
      A : overhead of several megs, ASPNET first app domain about 10 Mb on empty, subsequent
      around 1Mb ... Loader optimization to balance perf and overhead (single domain/multi
      app domains)
   </p>
        <p>
      Q: Rule of thumb ?<br />
      A: single domain is faster for static, initialization ... multi domain, costs related
      to sharing and preventing side effects. Trying to make that better in whidbey.
   </p>
        <p>
      Q: hosting 1.0 CLR. some client tried to use 1.1, and had problems. How to prepare
      for compatibility<br />
      A: office way, not have the config file (Clr version) makes the latest version load<br />
         in SQL, ASPNet, DB2 biding to the specific version for stability and
      dynamically choosing the version to load
   </p>
        <p>
      Q: SP calling an object defined on the host (ex: reporting services, write a formula
      in .Net, calling a ref to an object exposed by the host) ?<br />
      A: SQL, is value based. 
      <br />
         Fragments of the user code : 
      <br />
       - state
   </p>
        <p>
      Q: programming model for SQL is limited. programming models in the particular hosting
      scenarios will be different ?<br />
      A: hoping others will behave
   </p>
        <p>
      Q: something like CLS ? or informal guidelines ?<br />
      A: not aware of any attempts to standardization.
   </p>
        <p>
      Q: unamaged code hosting the CLR<br />
      A: if it is just to deal with memory pressure, GC ... large amounts of unmanged, relating
      to some managed objects, inside whidbey it is possible to link those to GC<br />
      Q: How about synchronization ? 
      <br />
      A: depends on the level at which the sync is needed
   </p>
        <p>
      Q: Rule engine<br />
      A: reflexion emit, use compiler and load the class from file. what level ? a compiler,
      higher level language, persistant store (laughs) ... like Store procedure or user
      defined functions. light weight code generation APIs if no meta Data.
   </p>
        <p>
      Q: legacy Win32 app. Host CLR and start using managed ?<br />
      A: COM Interop ... or IJW - if multi-app domains, then maybe to think about it.
   </p>
        <p>
      Q: Licensing issue for hosting the CLR<br />
      A: none.<br />
      Q: ISV doing it ?<br />
      A: will not speculate.
   </p>
        <p>
      Q: created a managed COM object, and make it not appear in the default app domain
      (VS calling the add in)<br />
      A: Threading models issues... launch app domain, and call from it ... obviously no
      good answer (just inventive ideas). in the longhorn timeframe might be solved<br />
      Q: in office, is it one runtime per process ?<br />
      A: one runtime per process<br />
      Q: hosting API is not part of CLI<br />
      A: should it be ?
   </p>
        <p>
      Q: hosting vs MCpp<br />
      A: com interop vs MCpp, MCpp is less cosly<br />
         hosting ? don't know exactely, but MCpp would look the way to go for
      less costs
   </p>
        <p>
      Q: 120 pages can be scary<br />
      A: that stuff is used by SQL, not necessary to use all the interfaces
   </p>
        <p>
      the v1 is what most apps will need. 
   </p>
        <p>
      hosting is really about extensibility and tuning how the runtime is used ... 
   </p>
        <p>
      DB2 created own class loader.
   </p>
        <p>
      Q: ASPNet in addition to hosting CLR, has its hosting APIs.<br />
      A: app domains conveniently ...
   </p>
        <p>
      Q: upgrading from 1.0 to 1.1 cused problems (regiis to get it back to old version)<br />
      A: taking it seriously, do not upgrade ...
   </p>
        <p>
      Q: loading an assembly, what SQL does, what steps at creation, what steps at loading
      -is there NGEN<br />
      A: store user asemblies in the database. prefer to load from DB except those in GAC.
      intercept reference resolving and go get the assemblies (detach from database, attach
      somexhere else ...), CAS, well behaved and no conflicting parallel executions. At
      runtime, rely on runtime checks.NGEN not used (restriction to file system assemblies,
      ...
   </p>
        <p>
         DB2 looks up asemblies in the file system. 
   </p>
        <p>
      Q: Porting to managed or hosting<br />
      A: SQL millions of lignes of unmanaged, impossible to upgrade in short or midterm.
      hosting gives the exetensibility needed.
   </p>
        <p>
      Q: different localization processes ?<br />
      A: match locale of the DB
   </p>
        <p>
      Q: CLR GC control. objects that are machine wide shared.<br />
      A: CLR self tunning. hosting can control GC. machine wide shared not feasible.
   </p>
        <p>
      Q: serevr vs workstation CLR<br />
      A: workload.if MT, server can add perf. Workstation useful in uniproc. 
   </p>
        <br />
        <hr />
   This weblog is sponsored by <a href="http://www.newtelligence.com">newtelligence AG</a>. 
</body>
      <title>Hosting the CLR Panel</title>
      <guid>http://kemmou.com/PermaLink,guid,085a49be-93dc-4ef4-9637-f5f52396c067.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,085a49be-93dc-4ef4-9637-f5f52396c067.aspx</link>
      <pubDate>Mon, 03 Nov 2003 12:38:08 GMT</pubDate>
      <description>&lt;p&gt;
   These are my notes on the Hosting the CLR Panel. I will try to arrange them and make
   them more readable later on.
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; On the panel,&amp;nbsp;Mahesh Prakriya,&amp;nbsp;Chris Brumme, Sean Trowbridge,
   Chris Brown, Dimitry Robsman(ASPNet), Jose Blakeley(SQL), Mark Alcazar (Longhorn),
   and Thomas Quinn from Microsoft, and Andrew Murchinson from IBM (DB2).
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; 
   &lt;br&gt;
   Q&amp;nbsp;: Chris brown, What is the hosting API ?&lt;br&gt;
   A : First, the original hosting environment had 11 pages to describe the APIs, the
   whidbey one is 106 pages long. It is made of&amp;nbsp;&amp;nbsp;COM interfaces to change the
   threading model, memory allocation, synchronization primitives,&amp;nbsp;and other extensions
   to the regular interoperability methods&amp;nbsp;...
&lt;/p&gt;
&lt;p&gt;
   Q : Is IBM thinking of using an alternative implementation of CLR on its alternative
   plateform ?&lt;br&gt;
   IBM : The initial implementation is only for NT and thus will use the Microsoft Runtime.
   On next versions, We are thinking about Mono ...
&lt;/p&gt;
&lt;p&gt;
   Q : overhead on memory ?&lt;br&gt;
   A : overhead of several megs, ASPNET first app domain about 10 Mb on empty, subsequent
   around 1Mb ... Loader optimization to balance perf and overhead (single domain/multi
   app domains)
&lt;/p&gt;
&lt;p&gt;
   Q: Rule of thumb ?&lt;br&gt;
   A: single domain is faster for static, initialization ... multi domain, costs related
   to sharing and preventing side effects. Trying to make that better in whidbey.
&lt;/p&gt;
&lt;p&gt;
   Q: hosting 1.0 CLR. some client tried to use 1.1, and had problems. How to prepare
   for compatibility&lt;br&gt;
   A: office way, not have the config file (Clr version) makes the latest version load&lt;br&gt;
   &amp;nbsp;&amp;nbsp; in SQL, ASPNet, DB2 biding to the specific version for stability and
   dynamically choosing the version to load
&lt;/p&gt;
&lt;p&gt;
   Q: SP calling an object defined on the host (ex: reporting services, write a formula
   in .Net, calling a ref to an object exposed by the host) ?&lt;br&gt;
   A: SQL, is value based. 
   &lt;br&gt;
   &amp;nbsp;&amp;nbsp; Fragments of the user code : 
   &lt;br&gt;
   &amp;nbsp;- state
&lt;/p&gt;
&lt;p&gt;
   Q: programming model for SQL is limited. programming models in the particular hosting
   scenarios will be different ?&lt;br&gt;
   A: hoping others will behave
&lt;/p&gt;
&lt;p&gt;
   Q: something like CLS ? or informal guidelines ?&lt;br&gt;
   A: not aware of any attempts to standardization.
&lt;/p&gt;
&lt;p&gt;
   Q: unamaged code hosting the CLR&lt;br&gt;
   A: if it is just to deal with memory pressure, GC ... large amounts of unmanged, relating
   to some managed objects, inside whidbey it is possible to link those to GC&lt;br&gt;
   Q: How about synchronization ? 
   &lt;br&gt;
   A: depends on the level at which the sync is needed
&lt;/p&gt;
&lt;p&gt;
   Q: Rule engine&lt;br&gt;
   A: reflexion emit, use compiler and load the class from file. what level ? a compiler,
   higher level language, persistant store (laughs) ... like Store procedure or user
   defined functions. light weight code generation APIs if no meta Data.
&lt;/p&gt;
&lt;p&gt;
   Q: legacy Win32 app. Host CLR and start using managed ?&lt;br&gt;
   A: COM Interop ... or IJW - if multi-app domains, then maybe to think about it.
&lt;/p&gt;
&lt;p&gt;
   Q: Licensing issue for hosting the CLR&lt;br&gt;
   A: none.&lt;br&gt;
   Q: ISV doing it ?&lt;br&gt;
   A: will not speculate.
&lt;/p&gt;
&lt;p&gt;
   Q: created a managed COM object, and make it not appear in the default app domain
   (VS calling the add in)&lt;br&gt;
   A: Threading models issues... launch app domain, and call from it ... obviously no
   good answer (just inventive ideas). in the longhorn timeframe might be solved&lt;br&gt;
   Q: in office, is it one runtime per process ?&lt;br&gt;
   A: one runtime per process&lt;br&gt;
   Q: hosting API is not part of CLI&lt;br&gt;
   A: should it be ?
&lt;/p&gt;
&lt;p&gt;
   Q: hosting vs MCpp&lt;br&gt;
   A: com interop vs MCpp, MCpp is less cosly&lt;br&gt;
   &amp;nbsp;&amp;nbsp; hosting ? don't know exactely, but MCpp would look the way to go for
   less costs
&lt;/p&gt;
&lt;p&gt;
   Q: 120 pages can be scary&lt;br&gt;
   A: that stuff is used by SQL, not necessary to use all the interfaces
&lt;/p&gt;
&lt;p&gt;
   the v1 is what most apps will need. 
&lt;/p&gt;
&lt;p&gt;
   hosting is really about extensibility and tuning how the runtime is used ... 
&lt;/p&gt;
&lt;p&gt;
   DB2 created own class loader.
&lt;/p&gt;
&lt;p&gt;
   Q: ASPNet in addition to hosting CLR, has its hosting APIs.&lt;br&gt;
   A: app domains conveniently ...
&lt;/p&gt;
&lt;p&gt;
   Q: upgrading from 1.0 to 1.1 cused problems (regiis to get it back to old version)&lt;br&gt;
   A: taking it seriously, do not upgrade ...
&lt;/p&gt;
&lt;p&gt;
   Q: loading an assembly, what SQL does, what steps at creation, what steps at loading
   -is there NGEN&lt;br&gt;
   A: store user asemblies in the database. prefer to load from DB except those in GAC.
   intercept reference resolving and go get the assemblies (detach from database, attach
   somexhere else ...), CAS, well behaved and no conflicting parallel executions. At
   runtime, rely on runtime checks.NGEN not used (restriction to file system assemblies,
   ...
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; DB2 looks up asemblies in the file system. 
&lt;/p&gt;
&lt;p&gt;
   Q: Porting to managed or hosting&lt;br&gt;
   A: SQL millions of lignes of unmanaged, impossible to upgrade in short or midterm.
   hosting gives the exetensibility needed.
&lt;/p&gt;
&lt;p&gt;
   Q: different localization processes ?&lt;br&gt;
   A: match locale of the DB
&lt;/p&gt;
&lt;p&gt;
   Q: CLR GC control. objects that are machine wide shared.&lt;br&gt;
   A: CLR self tunning. hosting can control GC. machine wide shared not feasible.
&lt;/p&gt;
&lt;p&gt;
   Q: serevr vs workstation CLR&lt;br&gt;
   A: workload.if MT, server can add perf. Workstation useful in uniproc. 
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>PDC</category>
    </item>
    <item>
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=b2728005-20a7-44ad-8f9a-41ae173e234a</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,b2728005-20a7-44ad-8f9a-41ae173e234a.aspx</pingback:target>
      <dc:creator />
      <title>PDC Bloggers meeting tonight at the party</title>
      <guid>http://kemmou.com/PermaLink,guid,b2728005-20a7-44ad-8f9a-41ae173e234a.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,b2728005-20a7-44ad-8f9a-41ae173e234a.aspx</link>
      <pubDate>Wed, 29 Oct 2003 23:06:32 GMT</pubDate>
      <description>&lt;p&gt;
   A meeting of all pdc bloggers will take place at the a party in Universal studios.
   I got this from Scott hanselman's blog :
&lt;/p&gt;
&lt;p&gt;
   &lt;a class=TitleLinkStyle href="http://www.hanselman.com/blog/PermaLink.aspx?guid=cdbdd4dc-b643-4882-b756-8ff7208be164"&gt;&lt;strong&gt;&lt;font color=#b8860b&gt;PDC
   - ATTENTION ALL BLOGGERS! MEETING AT UNIVERSAL STUDIOS TONIGHT!&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
   Yo!&amp;nbsp; There's a meeting at the &lt;strong&gt;Hollywood Grill inside of Universal Studios&lt;/strong&gt; tonight
   at 8PM!&amp;nbsp; &lt;a href="http://www.hanselman.com/blog/ct.ashx?id=cdbdd4dc-b643-4882-b756-8ff7208be164&amp;amp;url=http://www.pazsaz.com/unimap.html" ?&gt;&lt;font color=#b8860b&gt;Check
   out the map of Universal&lt;/font&gt;&lt;/a&gt;.&amp;nbsp; We'll be meeting at #19 on the map, close
   to the entrance.&amp;nbsp; &lt;strong&gt;&lt;em&gt;&lt;font color=#800080&gt;Pass it on!&lt;/font&gt;&lt;/em&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
    <item>
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=3292c0a9-7d2e-4a49-b9f6-044db7b15c90</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,3292c0a9-7d2e-4a49-b9f6-044db7b15c90.aspx</pingback:target>
      <dc:creator />
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
         I am telling you, don't you ever think that avalon, or WinFS is the big
      thing happening at pdc ... I don't want to discuss Yukon at this time of the night,
      but the big thing here is : INDIGO ... the blue and quiet new communication layer,
      that really ends the reign of COM, and of the objects everywhere model as well.
   </p>
        <p>
         Well, I saw the light (metaphorically off course, for this same light
      has been with me for many years now), and it was coming from Don Box's speech on Indigo.
      I don't use session or presentation, because it was a speech, full of enlightening
      thoughts, and it was a session of evangelization if I ever saw one.
   </p>
        <p>
         What object is about, what messages are about, what the value of message
      based architectures is (SOA- service oriented architecture if you prefer to call it
      so), and how SOA actually works  ... thank you Don.
   </p>
        <p>
         What amzes me is that so many people understood the value of the talk
      ... or at least so many of them where there, until there was no more free chairs,
      no more empty space on the floor, and the corridor was no longer walkable ... great
      job Don.
   </p>
        <p>
         The thing about don Box as an MSFT employee is that he has much less
      freedom to express his opinions in his natural words for them, but he found a way
      to speak them differently ... Keep going Don ...
   </p>
        <p>
         Then, when it is all about SOA, and the only speaker in this pdc that
      is clearly speaking the extent and value of it is Don ... Hail Don, Hurray ...
   </p>
        <p>
       
   </p>
        <br />
        <hr />
   This weblog is sponsored by <a href="http://www.newtelligence.com">newtelligence AG</a>. 
</body>
      <title>Don Box, megastar</title>
      <guid>http://kemmou.com/PermaLink,guid,3292c0a9-7d2e-4a49-b9f6-044db7b15c90.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,3292c0a9-7d2e-4a49-b9f6-044db7b15c90.aspx</link>
      <pubDate>Wed, 29 Oct 2003 09:34:16 GMT</pubDate>
      <description>&lt;p&gt;
   &amp;nbsp;&amp;nbsp; I am telling you, don't you ever think that avalon, or WinFS is the big
   thing happening at pdc ... I don't want to discuss Yukon at this time of the night,
   but the big thing here is : INDIGO ... the blue and quiet new communication layer,
   that really ends the reign of COM, and of the objects everywhere model as well.
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; Well, I saw the light (metaphorically off course, for this same light
   has been with me for many years now), and it was coming from Don Box's speech on Indigo.
   I don't use session or presentation, because it was a speech, full of enlightening
   thoughts, and it was a session of evangelization if I ever saw one.
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; What object is about, what messages are about, what the value of message
   based architectures is (SOA- service oriented architecture if you prefer to call it
   so), and how SOA actually works&amp;nbsp; ... thank you Don.
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; What amzes me is that so many people understood the value of the talk
   ... or at least so many of them where there, until there was no more free chairs,
   no more empty space on the floor, and the corridor was no longer walkable ... great
   job Don.
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; The thing about don Box as an MSFT employee is that he has much less
   freedom to express his opinions in his natural words for them, but he found a way
   to speak them differently ... Keep going Don ...
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; Then, when it is all about SOA, and the only&amp;nbsp;speaker in this&amp;nbsp;pdc&amp;nbsp;that
   is clearly speaking the extent and value of it is Don ... Hail Don, Hurray ...
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
    <item xml:lang="fr">
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=8420709a-5baf-4ced-9215-a9316c1a732a</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,8420709a-5baf-4ced-9215-a9316c1a732a.aspx</pingback:target>
      <dc:creator />
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Un PDC historique, avant un nombre record de participants, un contenu exceptionnel
      (les technologies couvertes sont des technologies qui ne paraitront commercialement
      qu'en 2006) ...
   </p>
        <p>
      la session plénière d'ouverture, qui comme d'habitude est présentée par Bill Gates,
      a tout de suite annoncé le ton. Ce n'est pas l'hésiation du PDC 2001, mais une vision
      très claire, bien définie dans ses objectifs, ses composantes, et même, autant que
      cela est raisonable, dans le temps.
   </p>
        <p>
      La plateforme qu'on découvre aujourd'hui, Longhorn, n'est pas juste un Windows amélioré,
      mais une nouvelle plateforme qui "remplace" Windows ... Pour mieux cerner cela, il
      suffit de voir ce qui est couvert par Longhorn :
   </p>
        <p>
      - Un nouveau noyau couvrant les services et APIs de base de Windows.
   </p>
        <p>
      - Avalon : de nouveaux APIs pour la présentation sous Windows, basée sur de nouveaux
      moteurs graphiques (Direct3D), une nouvelle approche pour la gestion des graphiques
      basée sur le vectoriel et traitant de façon consistante les differentes formes de
      présentation telles que nos interfaces graphiques, les documents ou les médias (vidéo,
      audio, animation ...). Ansi, le développement pour Longhorn sera totalement différent
      du développement actuel, y compris l'abandon définitif de COM, et l'implémentation
      complète en APIs gérèes ... Pas mal d'innovation aussi en terme de modèle de développement,
      avec un modèle totallement unifié (au lieu d'un modèle Web et un autre Win32), basé
      sur l'approche "code-behind", ou le design réside dans des fichier xml en language
      de markup "xaml", et la gestion des évènnements dans le code compilé.
   </p>
        <p>
      - WinFs : Un nouveau système de fichiers qui est au fait une couche supérieure sur
      le NTFS, permettant un stockage structuré de nos documents, se basant sur des scemas,
      et permettant de lier les documents entre eux, ou avec des utilisateurs, des contacts,
      ...etc. Au fait, avec WinFS, le stockage est une forme de base de données ... qui
      d'ailleurs est basée sur Yukon.
   </p>
        <p>
      - Indigo :  C'est le nouveau système de communication applicative sous Longhorn.
      Pour simplifier, il s'agit d'une technologie qui crée une couche supérieure sur les
      differentes technologies de distribution des applications, y compris les Web Services
      transactionnels, sécurisés, à messages fiables, ...etc. Le remoting, le transactionnel
      distribué du style de COM+. 
   </p>
        <p>
      Ainsi,  il s'agit bien de la fin de la technologie COM qui se prépare, et ce
      que j'ai vu aujourd'hui de la nouelle technologie est plus que convaincant ...
   </p>
        <p>
      Un PDC historique, avant un nombre record de participants, un contenu exceptionnel
      (les technologies couvertes sont des technologies qui ne paraitront commercialement
      qu'en 2006) ...
   </p>
        <p>
      la session plénière d'ouverture, qui comme d'habitude est présentée par Bill Gates,
      a tout de suite annoncé le ton. Ce n'est pas l'hésiation du PDC 2001, mais une vision
      très claire, bien définie dans ses objectifs, ses composantes, et même, autant que
      cela est raisonable, dans le temps.
   </p>
        <p>
      La plateforme qu'on découvre aujourd'hui, Longhorn, n'est pas juste un Windows amélioré,
      mais une nouvelle plateforme qui "remplace" Windows ... Pour mieux cerner cela, il
      suffit de voir ce qui est couvert par Longhorn :
   </p>
        <p>
      - Un nouveau noyau couvrant les services et APIs de base de Windows.
   </p>
        <p>
      - Avalon : de nouveaux APIs pour la présentation sous Windows, basée sur de nouveaux
      moteurs graphiques (Direct3D), une nouvelle approche pour la gestion des graphiques
      basée sur le vectoriel et traitant de façon consistante les differentes formes de
      présentation telles que nos interfaces graphiques, les documents ou les médias (vidéo,
      audio, animation ...). Ansi, le développement pour Longhorn sera totalement différent
      du développement actuel, y compris l'abandon définitif de COM, et l'implémentation
      complète en APIs gérèes ... Pas mal d'innovation aussi en terme de modèle de développement,
      avec un modèle totallement unifié (au lieu d'un modèle Web et un autre Win32), basé
      sur l'approche "code-behind", ou le design réside dans des fichier xml en language
      de markup "xaml", et la gestion des évènnements dans le code compilé.
   </p>
        <p>
      - WinFs : Un nouveau système de fichiers qui est au fait une couche supérieure sur
      le NTFS, permettant un stockage structuré de nos documents, se basant sur des scemas,
      et permettant de lier les documents entre eux, ou avec des utilisateurs, des contacts,
      ...etc. Au fait, avec WinFS, le stockage est une forme de base de données ... qui
      d'ailleurs est basée sur Yukon.
   </p>
        <p>
      - Indigo :  C'est le nouveau système de communication applicative sous Longhorn.
      Pour simplifier, il s'agit d'une technologie qui crée une couche supérieure sur les
      differentes technologies de distribution des applications, y compris les Web Services
      transactionnels, sécurisés, à messages fiables, ...etc. Le remoting, le transactionnel
      distribué du style de COM+. 
   </p>
        <p>
      Ainsi,  il s'agit bien de la fin de la technologie COM qui se prépare, et ce
      que j'ai vu aujourd'hui de la nouelle technologie est plus que convaincant ...
   </p>
        <p>
      Si vous voulez un compte rendu détaillé de ce qui s'est passé dans cette session plénière,
      reportez vous au blog de <a href="http://www.hanselman.com/blog/PermaLink.aspx?guid=f7e70cd9-e9c5-4b5e-b7d4-6dee34e93c91">Scott
      Hanselman</a> qui en a fait une excellente et très abondante couverture.
   </p>
        <br />
        <hr />
   This weblog is sponsored by <a href="http://www.newtelligence.com">newtelligence AG</a>. 
</body>
      <title>Le plus grand PDC de l'histoire</title>
      <guid>http://kemmou.com/PermaLink,guid,8420709a-5baf-4ced-9215-a9316c1a732a.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,8420709a-5baf-4ced-9215-a9316c1a732a.aspx</link>
      <pubDate>Tue, 28 Oct 2003 01:27:53 GMT</pubDate>
      <description>&lt;p&gt;
   Un PDC historique, avant un nombre record de participants, un contenu exceptionnel
   (les technologies couvertes sont des technologies qui ne paraitront commercialement
   qu'en 2006) ...
&lt;/p&gt;
&lt;p&gt;
   la session plénière d'ouverture, qui comme d'habitude est présentée par Bill Gates,
   a tout de suite annoncé le ton. Ce n'est pas l'hésiation du PDC 2001, mais une vision
   très claire, bien définie dans ses objectifs, ses composantes, et même, autant que
   cela est raisonable, dans le temps.
&lt;/p&gt;
&lt;p&gt;
   La plateforme qu'on découvre aujourd'hui, Longhorn, n'est pas juste un Windows amélioré,
   mais une nouvelle plateforme qui "remplace" Windows ... Pour mieux cerner cela, il
   suffit de voir ce qui est couvert par Longhorn :
&lt;/p&gt;
&lt;p&gt;
   - Un nouveau noyau couvrant les services et APIs de base de Windows.
&lt;/p&gt;
&lt;p&gt;
   - Avalon : de nouveaux APIs pour la présentation sous Windows, basée sur de nouveaux
   moteurs graphiques (Direct3D), une nouvelle approche pour la gestion des graphiques
   basée sur le vectoriel et traitant de façon consistante les differentes formes de
   présentation telles que nos interfaces graphiques, les documents ou les médias (vidéo,
   audio, animation ...). Ansi, le développement pour&amp;nbsp;Longhorn sera totalement différent
   du développement actuel, y compris l'abandon définitif de COM, et l'implémentation
   complète en APIs gérèes ... Pas mal d'innovation aussi en terme de modèle de développement,
   avec un modèle totallement unifié (au lieu d'un modèle Web et un autre Win32), basé
   sur l'approche "code-behind", ou le design réside dans des fichier xml en language
   de markup&amp;nbsp;"xaml", et la gestion des évènnements dans le code compilé.
&lt;/p&gt;
&lt;p&gt;
   - WinFs : Un nouveau système de fichiers qui est au fait une couche supérieure sur
   le NTFS, permettant un stockage structuré de nos documents, se basant sur des scemas,
   et permettant de lier les documents entre eux, ou avec des utilisateurs, des contacts,
   ...etc. Au fait, avec WinFS, le stockage est une forme de base de données ... qui
   d'ailleurs est basée sur Yukon.
&lt;/p&gt;
&lt;p&gt;
   - Indigo : &amp;nbsp;C'est le nouveau système de communication applicative sous Longhorn.
   Pour simplifier, il s'agit d'une technologie qui crée une couche supérieure sur les
   differentes technologies de distribution des applications, y compris les Web Services
   transactionnels, sécurisés, à messages fiables, ...etc.&amp;nbsp;Le remoting, le transactionnel
   distribué du style de COM+. 
&lt;/p&gt;
&lt;p&gt;
   Ainsi, &amp;nbsp;il s'agit bien de la fin de la technologie COM qui se prépare, et ce
   que j'ai vu aujourd'hui de la nouelle technologie est plus que convaincant ...
&lt;/p&gt;
&lt;p&gt;
   Un PDC historique, avant un nombre record de participants, un contenu exceptionnel
   (les technologies couvertes sont des technologies qui ne paraitront commercialement
   qu'en 2006) ...
&lt;/p&gt;
&lt;p&gt;
   la session plénière d'ouverture, qui comme d'habitude est présentée par Bill Gates,
   a tout de suite annoncé le ton. Ce n'est pas l'hésiation du PDC 2001, mais une vision
   très claire, bien définie dans ses objectifs, ses composantes, et même, autant que
   cela est raisonable, dans le temps.
&lt;/p&gt;
&lt;p&gt;
   La plateforme qu'on découvre aujourd'hui, Longhorn, n'est pas juste un Windows amélioré,
   mais une nouvelle plateforme qui "remplace" Windows ... Pour mieux cerner cela, il
   suffit de voir ce qui est couvert par Longhorn :
&lt;/p&gt;
&lt;p&gt;
   - Un nouveau noyau couvrant les services et APIs de base de Windows.
&lt;/p&gt;
&lt;p&gt;
   - Avalon : de nouveaux APIs pour la présentation sous Windows, basée sur de nouveaux
   moteurs graphiques (Direct3D), une nouvelle approche pour la gestion des graphiques
   basée sur le vectoriel et traitant de façon consistante les differentes formes de
   présentation telles que nos interfaces graphiques, les documents ou les médias (vidéo,
   audio, animation ...). Ansi, le développement pour&amp;nbsp;Longhorn sera totalement différent
   du développement actuel, y compris l'abandon définitif de COM, et l'implémentation
   complète en APIs gérèes ... Pas mal d'innovation aussi en terme de modèle de développement,
   avec un modèle totallement unifié (au lieu d'un modèle Web et un autre Win32), basé
   sur l'approche "code-behind", ou le design réside dans des fichier xml en language
   de markup&amp;nbsp;"xaml", et la gestion des évènnements dans le code compilé.
&lt;/p&gt;
&lt;p&gt;
   - WinFs : Un nouveau système de fichiers qui est au fait une couche supérieure sur
   le NTFS, permettant un stockage structuré de nos documents, se basant sur des scemas,
   et permettant de lier les documents entre eux, ou avec des utilisateurs, des contacts,
   ...etc. Au fait, avec WinFS, le stockage est une forme de base de données ... qui
   d'ailleurs est basée sur Yukon.
&lt;/p&gt;
&lt;p&gt;
   - Indigo : &amp;nbsp;C'est le nouveau système de communication applicative sous Longhorn.
   Pour simplifier, il s'agit d'une technologie qui crée une couche supérieure sur les
   differentes technologies de distribution des applications, y compris les Web Services
   transactionnels, sécurisés, à messages fiables, ...etc.&amp;nbsp;Le remoting, le transactionnel
   distribué du style de COM+. 
&lt;/p&gt;
&lt;p&gt;
   Ainsi, &amp;nbsp;il s'agit bien de la fin de la technologie COM qui se prépare, et ce
   que j'ai vu aujourd'hui de la nouelle technologie est plus que convaincant ...
&lt;/p&gt;
&lt;p&gt;
   Si vous voulez un compte rendu détaillé de ce qui s'est passé dans cette session plénière,
   reportez vous au blog de &lt;a href="http://www.hanselman.com/blog/PermaLink.aspx?guid=f7e70cd9-e9c5-4b5e-b7d4-6dee34e93c91"&gt;Scott
   Hanselman&lt;/a&gt; qui en a fait une excellente et très abondante couverture.
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
    <item xml:lang="fr">
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=51246996-5a74-459b-91a5-fbad8829f128</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,51246996-5a74-459b-91a5-fbad8829f128.aspx</pingback:target>
      <dc:creator>malekblog@kemmou.com (Malek!)</dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Un show radio en enregistré devant une audiance dans une des salles du palais des
      congrès de Los Angeles où se déroule le PDC, c'est déjà un grand évènnement. Ajoutez
      à cela la qualité des invités : Scott Hanselman, Tim Huckaby, Kate Gregory, Patric
      Hynds, Michelle leroux bustamente, tosu des Regional Directors, en plus de deux autres
      invités de Microsoft don't je ne me rapelle pas des noms, et bien entendu une animation
      très réussie de Carl Franklins et son équipe. Ce n' est pas tout, l'édition n'était
      pas une discussion normale, c' était un jeu où pouvait participer le public et gagner,
      tenez vous bien, des XBox et leurs accessoires. Et pour finir, et bien entendu rendre
      l'évènnement absolument unique, les particpants gagnaient en décidant si la réponse
      donnée par les invités était bonne ou mauvaise ...
   </p>
        <p>
          <img style="WIDTH: 579px; HEIGHT: 308px" height="792" src="http://www.kemmou.com/content/binary/carNetlRocks.jpg" width="1602" border="0" />
        </p>
        <p>
      Un show très réussi qui marquera définitevement cette édition du PDC ...
   </p>
        <p>
       
   </p>
        <p>
      Merci Carl
   </p>
        <br />
        <hr />
   This weblog is sponsored by <a href="http://www.newtelligence.com">newtelligence AG</a>. 
</body>
      <title>.Net Rocks show, moment fort de la journée des pré-sessions</title>
      <guid>http://kemmou.com/PermaLink,guid,51246996-5a74-459b-91a5-fbad8829f128.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,51246996-5a74-459b-91a5-fbad8829f128.aspx</link>
      <pubDate>Tue, 28 Oct 2003 00:37:28 GMT</pubDate>
      <description>&lt;p&gt;
   Un show radio en enregistré devant une audiance dans une des salles du palais des
   congrès de Los Angeles où se déroule le PDC, c'est déjà un grand évènnement. Ajoutez
   à cela la qualité des invités : Scott Hanselman, Tim Huckaby, Kate Gregory, Patric
   Hynds, Michelle leroux bustamente, tosu des Regional Directors, en plus de deux autres
   invités de Microsoft don't je ne me rapelle pas des noms, et bien entendu une animation
   très réussie de Carl Franklins et son équipe. Ce n' est pas tout, l'édition n'était
   pas une discussion normale, c' était un jeu où pouvait participer le public et gagner,
   tenez vous bien, des XBox et leurs accessoires. Et pour finir, et bien entendu rendre
   l'évènnement absolument unique, les particpants gagnaient en décidant si la réponse
   donnée par les invités était bonne ou mauvaise ...
&lt;/p&gt;
&lt;p&gt;
   &lt;img style="WIDTH: 579px; HEIGHT: 308px" height=792 src="http://www.kemmou.com/content/binary/carNetlRocks.jpg" width=1602 border=0&gt;
&lt;/p&gt;
&lt;p&gt;
   Un show très réussi qui marquera définitevement cette édition du PDC ...
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
   Merci Carl
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
    <item>
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=9262fbc8-0246-4cff-bd44-bbffaf02b3d1</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,9262fbc8-0246-4cff-bd44-bbffaf02b3d1.aspx</pingback:target>
      <dc:creator />
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
         Do you know what the .Net Rocks is ? if you don't, <a href="http://www.franklins.net/dotnetrocks.asp">click
      on this link quickly</a> ....
   </p>
        <p>
         Well, imagine a .Net Rocks show, right from a session room in the LA
      Convention Center, during the very first day of pdc (actually on pre-conference day),
      with a panel made of an amazing selection of <a href="http://www.microsoftregionaldirectors.com">RD</a>s,
      and with great Xbox gifts for attendees ...
   </p>
        <p>
         How ? just put an attendee on the alley, give him the microphone, and
      make him guess whether the nswer given by the RD is true or false.
   </p>
        <p>
         I never realized how fun many very serious RDs can be until today ...
      What are Web Services ? Michelle Leroux Bustamente would say : "it's like Teen Sex,
      those who talk about about it don't do it and those doing it don't talk about it"...
      "what the most significant difference between interop in C# qnd in C++", Kate Gregory
      would say that it is in the way you do DllImports!!!". How deo you access pivate members
      of a class? I don't remeber scott hanselmans exact wording, but it goes like " you
      buy him a drink...",  off course, it end up with th RD giving the right answer
      (except a couple times), and the attendee going home very happy.
   </p>
        <p>
         I'll be posting some pictures of the show and of the panel when I get
      those pictures printed and scanned (well, I use my smart phone for many things including
      my agenda and emails, I use almost no paper, but I still love using my Canon Eos camera
      with lenses and zoom covering a 35-210 mm focal distance... call me traditional or
      outdated on that, I don't mind at all)
   </p>
        <p>
         if you have been at a pre-conference day before, you know you dont have
      the feeling that the conference is there ... well, carl just made it happen ...
   </p>
        <p>
         thank you carl.
   </p>
        <br />
        <hr />
   This weblog is sponsored by <a href="http://www.newtelligence.com">newtelligence AG</a>. 
</body>
      <title>Carl rocks pdc big time ...</title>
      <guid>http://kemmou.com/PermaLink,guid,9262fbc8-0246-4cff-bd44-bbffaf02b3d1.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,9262fbc8-0246-4cff-bd44-bbffaf02b3d1.aspx</link>
      <pubDate>Mon, 27 Oct 2003 10:42:23 GMT</pubDate>
      <description>&lt;p&gt;
   &amp;nbsp;&amp;nbsp; Do you know what the .Net Rocks is ? if you don't,&amp;nbsp;&lt;a href="http://www.franklins.net/dotnetrocks.asp"&gt;click
   on this link quickly&lt;/a&gt;&amp;nbsp;....
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; Well, imagine a .Net Rocks show, right from a session room in the LA
   Convention Center, during the very first day of pdc (actually on pre-conference day),
   with a panel made of an amazing selection of &lt;a href="http://www.microsoftregionaldirectors.com"&gt;RD&lt;/a&gt;s,
   and with great Xbox gifts for attendees ...
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; How ? just put an attendee on the alley, give him the microphone, and
   make him guess whether the nswer given by the RD is true or false.
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; I never realized how fun many very serious RDs can be until today ...
   What are Web Services ? Michelle Leroux Bustamente would say : "it's like Teen Sex,
   those who talk about about it don't do it and those doing it don't talk about it"...
   "what the most significant difference between interop in C# qnd in C++", Kate Gregory
   would say that it is in the way you do DllImports!!!". How deo you access pivate members
   of a class? I don't remeber scott hanselmans exact wording, but it goes like " you
   buy him a drink...", &amp;nbsp;off course, it end up with th RD giving the right answer
   (except a couple times), and the attendee going home very happy.
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; I'll be posting some pictures of the show and of the panel when I get
   those pictures printed and scanned (well, I use my smart phone for many things including
   my agenda and emails, I use almost no paper, but I still love using my Canon Eos camera
   with lenses and zoom covering a 35-210 mm focal distance... call me traditional or
   outdated on that, I don't mind at all)
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; if you have been at a pre-conference day before, you know you dont have
   the feeling that the conference is there ... well, carl just made it happen ...
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;&amp;nbsp; thank you carl.
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
    <item>
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=c5932ba4-9214-4a7a-935b-c258472795ce</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,c5932ba4-9214-4a7a-935b-c258472795ce.aspx</pingback:target>
      <dc:creator />
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p dir="ltr">
         <a href="http://radio.weblogs.com/0124699/ ">Jeff Sandquist</a> 
      has sent me a bdc bloggers T-Shirt. It has "I'm blogging this" on the front, and a
      nice "Microsoft PDC03 I was there" logo on the back. Thanks Jeff.
   </p>
        <p dir="ltr">
         I guess this will give some visibility to bloggers among attendees ...
      too bad the pdcbloggers Url is not on the shirt ...
   </p>
        <p dir="ltr">
         One of my collaborators at the office just made me realize I have been
      receiving so many     T-Shirts that I just don't buy clothing
      anymore ... Thanks a lot everyone ...
   </p>
        <br />
        <hr />
   This weblog is sponsored by <a href="http://www.newtelligence.com">newtelligence AG</a>. 
</body>
      <title>I'm blogging this T-Shirt</title>
      <guid>http://kemmou.com/PermaLink,guid,c5932ba4-9214-4a7a-935b-c258472795ce.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,c5932ba4-9214-4a7a-935b-c258472795ce.aspx</link>
      <pubDate>Mon, 20 Oct 2003 10:53:55 GMT</pubDate>
      <description>&lt;p dir=ltr&gt;
   &amp;nbsp;&amp;nbsp; &lt;a href="http://radio.weblogs.com/0124699/ "&gt;Jeff Sandquist&lt;/a&gt;&amp;nbsp;
   has sent me a bdc bloggers T-Shirt. It has "I'm blogging this" on the front, and a
   nice "Microsoft PDC03 I was there" logo on the back. Thanks Jeff.
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &amp;nbsp;&amp;nbsp; I guess this will give some visibility to bloggers among attendees ...
   too bad the pdcbloggers Url is not on the shirt ...
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &amp;nbsp;&amp;nbsp; One of my collaborators at the office just made me realize I have been
   receiving so many&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; T-Shirts that I just don't buy clothing
   anymore ... Thanks a lot everyone ...
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
    <item>
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=f4ef9297-79e6-433c-8f03-26a59a8b5dd9</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,f4ef9297-79e6-433c-8f03-26a59a8b5dd9.aspx</pingback:target>
      <dc:creator />
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <p dir="ltr">
          <a href="http://www.microsoft.com/rd">
            <img src="http://www.malekkemmou.ma/content/binary/rd_anim_logo.gif" border="0" />
          </a>
        </p>
        <p dir="ltr">
      If you see this logo on someone at PDC, he is one of the many RDs attending (I would
      guess there should be around 70 or 80 of us), speaking, participating in a panel,
      hosting BOF sessions, monitoring the labs, doing Ask the Experts booth duties... outside
      the conference center, more probably than not around sunset or holywood boulevard
      at night, you can find many of us (without the badges this time) ...
   </p>
        <p dir="ltr">
      Who are we ? you can look us up at our web site at <a href="http://www.microsoftregionaldirectors.com/Public/">http://www.microsoftregionaldirectors.com/Public/</a> . 
   </p>
        <p dir="ltr">
      We are about 120 independent developers, architects, trainers, consultants and other
      professionals from all around the world, very informed about Microsoft technologies
      (usually also about other thecnologies as well). We usually can give you informed
      opinions, based on real world experience and balaced views about Microsoft technologies
      away from hype or dog food.
   </p>
        <p dir="ltr">
      See you there ...
   </p>
        <br />
        <hr />
   This weblog is sponsored by <a href="http://www.newtelligence.com">newtelligence AG</a>. 
</body>
      <title>RDs at PDC</title>
      <guid>http://kemmou.com/PermaLink,guid,f4ef9297-79e6-433c-8f03-26a59a8b5dd9.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,f4ef9297-79e6-433c-8f03-26a59a8b5dd9.aspx</link>
      <pubDate>Wed, 15 Oct 2003 13:43:37 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &lt;a href="http://www.microsoft.com/rd"&gt;&lt;img src="http://www.malekkemmou.ma/content/binary/rd_anim_logo.gif" border=0&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   If you see this logo on someone at PDC, he is one of the many RDs attending (I would
   guess there should be around 70 or 80 of us), speaking, participating in a panel,
   hosting BOF sessions, monitoring the labs, doing Ask the Experts booth duties... outside
   the conference center, more probably than not around sunset or holywood boulevard
   at night, you can find many of us (without the badges this time) ...
&lt;/p&gt;
&lt;p dir=ltr&gt;
   Who are we ? you can look us up at our web site at &lt;a href="http://www.microsoftregionaldirectors.com/Public/"&gt;http://www.microsoftregionaldirectors.com/Public/&lt;/a&gt; . 
&lt;/p&gt;
&lt;p dir=ltr&gt;
   We are about 120 independent developers, architects, trainers, consultants and other
   professionals from all around the world, very informed about Microsoft technologies
   (usually also about other thecnologies as well). We usually can give you informed
   opinions, based on real world experience and balaced views about Microsoft technologies
   away from hype or dog food.
&lt;/p&gt;
&lt;p dir=ltr&gt;
   See you there ...
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
    <item>
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=604b5cb5-28e2-4ab4-bdf9-8aea300fb3ce</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,604b5cb5-28e2-4ab4-bdf9-8aea300fb3ce.aspx</pingback:target>
      <dc:creator />
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p dir="ltr">
      This year, not only PDC is great in including three huge new technologies, but also
      in its special sessions. One of the new formats is the Birds Of a Feather sessions.
      These are attendee hosted (any attendee can propose a session, and the sessions are
      aproved based on a vote by attendees). 
   </p>
        <p dir="ltr">
      The format of these sessions is really interesting, because it is a one hour, almost
      unstructured (close to chalk talk format) discussions between attendees. My guess
      is that we will see lots of humor take place, and much less dog food than we would
      in any other sessions.
   </p>
        <p dir="ltr">
      Looking at the aproved topics, it is interesting to see that they globally three
      kinds :
   </p>
        <ol dir="ltr">
          <li>
         Real Life experience and concerns with .Net (present and future). These really are
         concerned by the topics that are not technology topics, and that one would never expect
         or trust Microsofties to cover. 
      </li>
          <li>
         Alternate or deeper looks at technologies than one would not expect in regular sessions.
         These cover things like Rotor (CLI) development, using .Net with Oracle, Alternate
         programming languages, business intelligence with .Net, Palldium ...etc. 
      </li>
          <li>
         Totally non technical, usally very different approche to developer concerns, like
         Women who code (I don't hide I will not miss that one, sin<font color="#000000">ce
         most women attendees will be there ...), Reader to Author to Publisher for .NET (books
         on .Net), Weblogging: The Future of Conversational Software ...etc.</font></li>
        </ol>
        <p dir="ltr">
      I will be hosting a BOF on Office system and integrating with business process (I
      just noticed my topic was aproved!). See you there ...
   </p>
        <br />
        <hr />
   This weblog is sponsored by <a href="http://www.newtelligence.com">newtelligence AG</a>. 
</body>
      <title>PDC Birds of a feather sessions</title>
      <guid>http://kemmou.com/PermaLink,guid,604b5cb5-28e2-4ab4-bdf9-8aea300fb3ce.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,604b5cb5-28e2-4ab4-bdf9-8aea300fb3ce.aspx</link>
      <pubDate>Wed, 15 Oct 2003 12:56:57 GMT</pubDate>
      <description>&lt;p dir=ltr&gt;
   This year, not only PDC is great in including three huge new technologies, but also
   in its special sessions. One of the new formats is the Birds Of a Feather sessions.
   These are attendee hosted (any attendee can propose a session, and the sessions are
   aproved based on a vote&amp;nbsp;by attendees). 
&lt;/p&gt;
&lt;p dir=ltr&gt;
   The format of these sessions is really interesting, because it is a one hour, almost
   unstructured (close to chalk talk format) discussions between attendees. My guess
   is that we will see lots of humor take place, and much less dog food than we would
   in any other sessions.
&lt;/p&gt;
&lt;p dir=ltr&gt;
   Looking at the aproved topics, it is interesting to see that they globally&amp;nbsp;three
   kinds&amp;nbsp;:
&lt;/p&gt;
&lt;ol dir=ltr&gt;
   &lt;li&gt;
      Real Life experience and concerns with .Net (present and future). These really are
      concerned by the topics that are not technology topics, and that one would never expect
      or trust Microsofties to cover. 
   &lt;li&gt;
      Alternate or deeper looks at technologies than one would not expect in regular sessions.
      These cover things like Rotor (CLI) development, using .Net with Oracle, Alternate
      programming languages, business intelligence with .Net, Palldium ...etc. 
   &lt;li&gt;
      Totally non technical, usally very different approche to developer concerns, like
      Women who code (I don't hide I will not miss that one, sin&lt;font color=#000000&gt;ce most
      women attendees will be there ...), Reader to Author to Publisher for .NET (books
      on .Net), Weblogging: The Future of Conversational Software ...etc.&lt;/font&gt;
   &lt;/li&gt;
&lt;/ol&gt;
&lt;p dir=ltr&gt;
   I will be hosting a BOF on Office system and integrating with business process (I
   just noticed my topic was aproved!). See you there ...
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
    <item>
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=2465e184-b40d-461b-9f0b-b0a75c4813a8</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,2465e184-b40d-461b-9f0b-b0a75c4813a8.aspx</pingback:target>
      <dc:creator />
      <title>Covering PDC Panels ...</title>
      <guid>http://kemmou.com/PermaLink,guid,2465e184-b40d-461b-9f0b-b0a75c4813a8.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,2465e184-b40d-461b-9f0b-b0a75c4813a8.aspx</link>
      <pubDate>Wed, 15 Oct 2003 11:48:56 GMT</pubDate>
      <description>&lt;p dir=ltr&gt;
   &lt;img src="http://www.malekkemmou.ma/content/binary/PDC.jpg" border=0&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   The &lt;a href="http://msdn.microsoft.com/events/pdc/panels.aspx"&gt;PDC Panels&lt;/a&gt; are
   great in that is has no prepared marketing dog food (no PPTs allowed). It is about
   Microsofties answering your technical questions. &lt;a href="http://pdcbloggers.net"&gt;PDC
   bloggers&lt;/a&gt; will cover the various panels, and gives you even an opportunity to ask
   your questions before hand (even if you are not a PDC attendee).
&lt;/p&gt;
&lt;p dir=ltr&gt;
   I will be covering two panels : 
&lt;/p&gt;
&lt;ol dir=ltr&gt;
   &lt;li&gt;
      &lt;p class=MsoNormal&gt;
         &lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /&gt;Put
         The Power Inside: Hosting the 
         &lt;st1:stockticker style="BACKGROUND-POSITION: left bottom; BACKGROUND-IMAGE: url(res://ietag.dll/#34/#1001); BACKGROUND-REPEAT: repeat-x" tabIndex=0 w:st="on"&gt;
            &lt;st1:stocktickeruk style="BACKGROUND-POSITION: left bottom; BACKGROUND-IMAGE: url(res://ietag.dll/#34/#1001); BACKGROUND-REPEAT: repeat-x" tabIndex=0 w:st="on"&gt;
               &lt;st1:stocktickerca style="BACKGROUND-POSITION: left bottom; BACKGROUND-IMAGE: url(res://ietag.dll/#34/#1001); BACKGROUND-REPEAT: repeat-x" tabIndex=0 w:st="on"&gt;CLR&lt;/st1:stocktickerca&gt;
            &lt;/st1:stocktickeruk&gt;
         &lt;/st1:stockticker&gt;
         in Your Application - 10:30:00 AM -&amp;nbsp;&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Room501ABC&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;
      &lt;/p&gt;
   &lt;li&gt;
      &lt;p class=MsoNormal&gt;
         &lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Computing
         on the Beach: Visions of Mobility - 1:45 PM - &lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Room
         411-Theater &lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;
      &lt;/p&gt;
   &lt;/li&gt;
&lt;/ol&gt;
&lt;p class=MsoNormal dir=ltr&gt;
   &lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;All
   panels are on the PDC's last day (Thursday Oct 30).&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;
   &lt;o:p&gt;&lt;/o:p&gt;
   &lt;/span&gt;&lt;/font&gt;
   &lt;o:p&gt;&lt;/o:p&gt;
   &lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
    <item xml:lang="en">
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=ce4fc27e-3570-4480-915f-d203192a7abf</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,ce4fc27e-3570-4480-915f-d203192a7abf.aspx</pingback:target>
      <dc:creator />
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p dir="ltr">
          <img height="59" src="http://www.malekkemmou.ma/content/binary/Microsoft.jpg" width="358" border="0" />
          <img style="WIDTH: 130px; HEIGHT: 59px" height="63" src="http://www.malekkemmou.ma/content/binary/PDC.jpg" width="135" border="0" />
        </p>
        <p dir="ltr">
         Last PDC was in LA. If it was not one of the greatest, and if there was
      no PDC in 2002, it is because a PDC is and should be about technology, and there were
      no totally new one at the time ... This year, not only there is a new technology,
      there are many of them (Indigo, Longhorn, Yukon, ...).
   </p>
        <p dir="ltr">
         The number of attendees also seems to be one of the greatest (already
      overbooked, and registration closing on Monday, hurry up if you haven't registered
      yet!). I go to many conferences regularly (at least 3-4 per year in the US, many events
      in my region - i.e. North Africa), and I always come bqack with the opinion that what
      makes a conference great is both its content and the general atmosphere, parties and
      fun going on in it. This PDC will be a blast ... See you there.
   </p>
        <p dir="ltr">
         
   </p>
        <br />
        <hr />
   This weblog is sponsored by <a href="http://www.newtelligence.com">newtelligence AG</a>. 
</body>
      <title>PDC in two weeks ... Be There!</title>
      <guid>http://kemmou.com/PermaLink,guid,ce4fc27e-3570-4480-915f-d203192a7abf.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,ce4fc27e-3570-4480-915f-d203192a7abf.aspx</link>
      <pubDate>Sat, 11 Oct 2003 16:22:17 GMT</pubDate>
      <description>&lt;p dir=ltr&gt;
   &lt;img height=59 src="http://www.malekkemmou.ma/content/binary/Microsoft.jpg" width=358 border=0&gt;&lt;img style="WIDTH: 130px; HEIGHT: 59px" height=63 src="http://www.malekkemmou.ma/content/binary/PDC.jpg" width=135 border=0&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &amp;nbsp;&amp;nbsp; Last PDC was in LA. If it was not one of the greatest, and if there was
   no PDC in 2002, it is because a PDC is and should be about technology, and there were
   no totally new one at the time ... This year, not only there is a new technology,
   there are many of them (Indigo, Longhorn, Yukon, ...).
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &amp;nbsp;&amp;nbsp; The number of attendees also seems to be one of the greatest (already
   overbooked, and registration closing on Monday, hurry up if you haven't registered
   yet!). I go to many conferences regularly (at least 3-4 per year in the US, many events
   in my region - i.e. North Africa), and I always come bqack with the opinion that what
   makes a conference great is both its content and the general atmosphere, parties and
   fun going on in it. This PDC will be a blast ... See you there.
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &amp;nbsp;&amp;nbsp; 
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
    <item xml:lang="fr">
      <trackback:ping>http://kemmou.com/Trackback.aspx?guid=5457354c-3afc-433e-8123-80ba1fc480b3</trackback:ping>
      <pingback:server>http://kemmou.com/pingback.aspx</pingback:server>
      <pingback:target>http://kemmou.com/PermaLink,guid,5457354c-3afc-433e-8123-80ba1fc480b3.aspx</pingback:target>
      <dc:creator />
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p dir="ltr">
          <font style="BACKGROUND-COLOR: #ffffff">
            <img height="60" src="http://www.malekkemmou.ma/content/binary/Microsoft.jpg" width="401" border="0" />
            <img style="WIDTH: 137px; HEIGHT: 60px" height="71" src="http://www.malekkemmou.ma/content/binary/PDC.jpg" width="138" border="0" />
          </font>
        </p>
        <p dir="ltr">
          <font style="BACKGROUND-COLOR: #ffffff">   Bien que je savais que Microsoft
      Préparait un certain nombre de nouvelles technologies, je m'attendais à ce que PDC
      (Microsoft Professional Developer Conference) n'ait pas lieu cette année encore, car
      je ne pensais pas qu'il allaient dévoiler publiquement ces technologies aussi tôt.
      Et bien, j'avais tord ... Longhorn, Indigo, Yukon et Whidbey vont tous être de la
      fête ...</font>
        </p>
        <p dir="ltr">
          <font style="BACKGROUND-COLOR: #ffffff">   Alors, si vous ne connaissez
      pas encore ce que sont ces technologies, dites vous juste que c'est une chance de
      connaitre ce qui se prépare chez Microsoft pour les deux années à venir, et que, ce
      sont les technologies qui permetteront de prendre la vitesse de croisière au developpement
      sous .Net.</font>
        </p>
        <p dir="ltr">
          <font style="BACKGROUND-COLOR: #ffffff">   Longhorn étant le prochain Windows,
      il comprend entre autre une refonte de l'architecture de l'interfaçage graphique avec
      une extension significative des capacités média. Avalon est cette nouvelle technologie qui
      nous permettera de créer les nouvelles applications Windows (clint riche) qui seront
      beaucoup plus puissantes, beaucoup plus faciles à développer, et intégrerons les médias de
      façon plus simple et plus complète, ainsi qu'un fenêtrage qui dépasse le contexte
      2 dimensionnel cadré par un rectangle ...</font>
        </p>
        <p dir="ltr">
          <font style="BACKGROUND-COLOR: #ffffff">   Indigo lui est la technologie
      qui va unifier les services d'entreprise (COM+), les Web Services, le Remoting, et
      tout ce qui concerne la distribution des applications, transactionnelles ou non. C'est
      le remplacement des COM+ qu'on attendait depuis l'arrivée de .Net, mais beaucoup plus
      large que prévu au départ ...</font>
        </p>
        <p dir="ltr">
          <font style="BACKGROUND-COLOR: #ffffff">   Yukon est le nouveau SQL Server
      prévu probablement pour l'année prochaine. en plus de toutes les augmentations de
      performance, il apporte beaucoup de nouveautés technologiques. Tout d'abord ce qui
      était attendu, tel que XQuery et le type XML, il sera possible de définir ses types
      en .Net, d'écrire ses procédures stockées en .Net, ainsi que plein de nouvelles fonctionnalités
      liées à l'asynchrone, la réplication et le DTS, ainsi que les nouveaux Analysis Services,
      bien entendu.</font>
        </p>
        <p dir="ltr">
          <font style="BACKGROUND-COLOR: #ffffff">   Whidbey, lui est le prochain
      Visual Studio. Il comprend entre autres un certain nombre d'améliorations aux langages
      et technologies du .Net, mais dans la continuité bien entendu... Améliorations et
      extensions des bibliothèques de base du .Net Framework, ASP.Net2 avec ses nouveaux
      contrôles et nouvelles techniques de design des contrôles serveur, améliorations de
      ADO.Net avec les ObjectSpaces, le XMLAdapter, des extensions des bibliothèques de
      XML pour inclure XQuery et autres nouvelles technologies... Le développement sous
      Compact Framework pour appareil mobiles s'élargit pour couvrir les SmartPhones. Les
      nouvelles versions des langages  C#, VB.Net, C++ et de J# sont aussi de
      la partie,  ainsi qu'un certain nombre d'autres nouvelles fonctionnalités.</font>
        </p>
        <p dir="ltr">
          <font style="BACKGROUND-COLOR: #ffffff">   Office system sera très présent
      aussi, puisque pour la première fois, Office n'est plus seulement un ensemble de produits
      (bien sûr extensibles et intégrables), mais surtout un framework pour développer des
      solutions, avec les nouveautés telles que les pages dynamiques (Smart Document), les
      bibliotèques de recherches (Web Services qui s'intégrent à office et permettent de
      passer des contenus de documents vers le service, et recevoir les réponses dans le
      volet Office, comme si on faisait une recherche de mot dans un dictionnaire), l'intégration
      à travers XML, SharePoint, et les nouveaux outils tels que Visual Studio Tools for
      Office qui permet de créer sous .Net Framework des documents Word ou Excel qui exploitent
      un code .Net (à la manière des pages Web ASP.Net) ....</font>
        </p>
        <p dir="ltr">
          <font style="BACKGROUND-COLOR: #ffffff">  L'architecture des solutions occupera
      une place de choix dans cette grande messe du développement, avec des dizaines de
      sessions ...</font>
        </p>
        <p dir="ltr">
          <font style="BACKGROUND-COLOR: #ffffff">   Si vous n'êtes pas encore inscrits,
      faite le vite (il y a très peu de places qui restent). Si vraiment vous ne pouvez
      pas, et pour vous consoler un tout petit peu, je bloggerais ici quotidiennement et
      essayerais de relater les informations comme elles viennet. Soyez à l'écoute ...</font>
        </p>
        <br />
        <hr />
   This weblog is sponsored by <a href="http://www.newtelligence.com">newtelligence AG</a>. 
</body>
      <title>PDC dans 2 semaines</title>
      <guid>http://kemmou.com/PermaLink,guid,5457354c-3afc-433e-8123-80ba1fc480b3.aspx</guid>
      <link>http://kemmou.com/PermaLink,guid,5457354c-3afc-433e-8123-80ba1fc480b3.aspx</link>
      <pubDate>Sat, 11 Oct 2003 15:19:08 GMT</pubDate>
      <description>&lt;p dir=ltr&gt;
   &lt;font style="BACKGROUND-COLOR: #ffffff"&gt;&lt;img height=60 src="http://www.malekkemmou.ma/content/binary/Microsoft.jpg" width=401 border=0&gt;&lt;img style="WIDTH: 137px; HEIGHT: 60px" height=71 src="http://www.malekkemmou.ma/content/binary/PDC.jpg" width=138 border=0&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &lt;font style="BACKGROUND-COLOR: #ffffff"&gt;&amp;nbsp;&amp;nbsp; Bien que je savais que Microsoft
   Préparait un certain nombre de nouvelles technologies, je m'attendais à ce que PDC
   (Microsoft Professional Developer Conference) n'ait pas lieu cette année encore, car
   je ne pensais pas qu'il allaient dévoiler publiquement ces technologies aussi tôt.
   Et bien, j'avais tord ... Longhorn, Indigo, Yukon et Whidbey vont tous être de la
   fête ...&lt;/font&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &lt;font style="BACKGROUND-COLOR: #ffffff"&gt;&amp;nbsp;&amp;nbsp; Alors, si vous ne connaissez
   pas encore ce que sont ces technologies, dites vous juste que c'est une chance de
   connaitre ce qui se prépare chez Microsoft pour les deux années à venir, et que, ce
   sont les technologies qui permetteront de prendre la vitesse de croisière au developpement
   sous .Net.&lt;/font&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &lt;font style="BACKGROUND-COLOR: #ffffff"&gt;&amp;nbsp;&amp;nbsp; Longhorn étant le prochain Windows,
   il comprend entre autre une refonte de l'architecture de l'interfaçage graphique avec
   une extension significative des capacités média. Avalon est cette nouvelle technologie&amp;nbsp;qui
   nous permettera de créer les nouvelles applications Windows (clint riche) qui seront
   beaucoup plus puissantes, beaucoup plus faciles à développer, et intégrerons les médias&amp;nbsp;de
   façon plus simple et plus complète, ainsi qu'un fenêtrage qui dépasse le contexte
   2 dimensionnel cadré par un rectangle&amp;nbsp;...&lt;/font&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &lt;font style="BACKGROUND-COLOR: #ffffff"&gt;&amp;nbsp;&amp;nbsp; Indigo lui est la technologie
   qui va unifier les services d'entreprise (COM+), les Web Services, le Remoting, et
   tout ce qui concerne la distribution des applications, transactionnelles ou non. C'est
   le remplacement des COM+ qu'on attendait depuis l'arrivée de .Net, mais beaucoup plus
   large que prévu au départ ...&lt;/font&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &lt;font style="BACKGROUND-COLOR: #ffffff"&gt;&amp;nbsp;&amp;nbsp; Yukon est le nouveau SQL Server
   prévu probablement pour l'année prochaine. en plus de toutes les augmentations de
   performance, il apporte beaucoup de nouveautés technologiques. Tout d'abord ce qui
   était attendu, tel que XQuery et le type XML, il sera possible de définir ses types
   en .Net, d'écrire ses procédures stockées en .Net, ainsi que plein de nouvelles fonctionnalités
   liées à l'asynchrone, la réplication et le DTS, ainsi que les nouveaux Analysis Services,
   bien entendu.&lt;/font&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &lt;font style="BACKGROUND-COLOR: #ffffff"&gt;&amp;nbsp;&amp;nbsp; Whidbey, lui est le prochain
   Visual Studio. Il comprend entre autres un certain nombre d'améliorations aux langages
   et technologies du .Net, mais dans la continuité bien entendu... Améliorations et
   extensions des bibliothèques de base du .Net Framework, ASP.Net2 avec ses nouveaux
   contrôles et nouvelles techniques de design des contrôles serveur, améliorations de
   ADO.Net avec les ObjectSpaces, le XMLAdapter, des extensions des bibliothèques de
   XML pour inclure XQuery et autres nouvelles technologies... Le développement sous
   Compact Framework pour appareil mobiles s'élargit pour couvrir les SmartPhones.&amp;nbsp;Les
   nouvelles versions&amp;nbsp;des langages&amp;nbsp; C#, VB.Net, C++ et de J# sont aussi de
   la partie,&amp;nbsp; ainsi qu'un certain nombre d'autres nouvelles fonctionnalités.&lt;/font&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &lt;font style="BACKGROUND-COLOR: #ffffff"&gt;&amp;nbsp;&amp;nbsp; Office system sera très présent
   aussi, puisque pour la première fois, Office n'est plus seulement un ensemble de produits
   (bien sûr extensibles et intégrables), mais surtout un framework pour développer des
   solutions, avec les nouveautés telles que les pages dynamiques (Smart Document), les
   bibliotèques de recherches (Web Services qui s'intégrent à office et permettent de
   passer des contenus de documents vers le service, et recevoir les réponses dans le
   volet Office, comme si on faisait une recherche de mot dans un dictionnaire), l'intégration
   à travers XML, SharePoint, et les nouveaux outils tels que Visual Studio Tools for
   Office qui permet de créer sous .Net Framework des documents Word ou Excel qui exploitent
   un code .Net (à la manière des pages Web ASP.Net) ....&lt;/font&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &lt;font style="BACKGROUND-COLOR: #ffffff"&gt;&amp;nbsp; L'architecture des solutions occupera
   une place de choix dans cette grande messe du développement, avec des dizaines de
   sessions ...&lt;/font&gt;
&lt;/p&gt;
&lt;p dir=ltr&gt;
   &lt;font style="BACKGROUND-COLOR: #ffffff"&gt;&amp;nbsp;&amp;nbsp; Si vous n'êtes pas encore inscrits,
   faite le vite (il y a très peu de places qui restent). Si vraiment vous ne pouvez
   pas, et pour vous consoler un tout petit peu, je bloggerais ici quotidiennement et
   essayerais de relater les informations comme elles viennet. Soyez à l'écoute ...&lt;/font&gt;
&lt;/p&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is sponsored by &lt;a href="http://www.newtelligence.com"&gt;newtelligence AG&lt;/a&gt;. </description>
      <category>main;PDC</category>
    </item>
  </channel>
</rss>