La présentation est en train de télécharger. S'il vous plaît, attendez

La présentation est en train de télécharger. S'il vous plaît, attendez

Pierre Lagarde Christophe Lauer

Présentations similaires


Présentation au sujet: "Pierre Lagarde Christophe Lauer"— Transcription de la présentation:

1

2 Pierre Lagarde http://blogs.developpeur.org/fox Christophe Lauer http://blogs.msdn.com/clauer

3 Pourquoi PHP ? PHP sur Windows PHP et IIS 7 : FastCGI PHP et Microsoft Ajax PHP sur.NET ? Phalanger

4 Parce quon connait plutôt bien ;) Le récent accord de collaboration technique avec Zend Microsoft Ajax Library 1.0 Utilisable depuis une application web en PHP Fournie sous licence Ms-Pl (Permissive Licence) (Possibilité de Modifier, Redistribuer, utilisation Commerciale, etc…)

5 Traditionnellement, IIS supporte CGI et ISAPI FastCGI est un protocole standard Contrairement à CGI, réutilisation des processus La Tech Preview supporte IIS5.1, IIS6 et séparément IIS7 FastCGI améliore : Performances : Evite de re-créer un process à chaque nouvelle rêquête Stabilité : Garantit lisolation pour les modules non « thread safe » comme certaines extensions PHP

6 Accord de collaboration technique Nos deux sociétés cherchent à améliorer les performances et à renforcer la fiabilité et la stabilité de PHP sur Windows Server 2003 et Windows Server « Longhorn » Microsoft travaille à un nouveau module FastCGI Zend mettra en place un laboratoire de tests Un laboratoire de test Windows pour effectuer des contrôles de qualité afin de maintenir, au niveau le plus haut, les performances de PHP sur Windows Server

7

8 Installation de base … Avec FastCGI (Technical Preview) … En activant le Cache … ~60 Rps ~120 Rps ~6000 Rps

9 « Depuis notre travail préliminaire avec Microsoft, nous avons déjà observé un gain de performances supérieur à 100 %, sur certaines applications PHP sexécutant sur Windows Server 2003. » -- Andy Gutmans, co-fondateur et CTO Zend -- Andy Gutmans, co-fondateur et CTO Zend Le communiqué de presse :Le communiqué de presse : http://www.zend.com/fr/company/zend_news/announcements/2006/10/microsoft _and_zend_technologies_announce_technical_collaboration_to_improve_int eroperability_of_php_on_the_windows_server_platform http://www.zend.com/fr/company/zend_news/announcements/2006/10/microsoft _and_zend_technologies_announce_technical_collaboration_to_improve_int eroperability_of_php_on_the_windows_server_platform

10

11 Framework JavaScript proche de la programmation.NET 100% JavaScript compatible IE / Safari / FireFox / Mozila / Opera Inclut des libraires de programmation riche : Traitement de chaînes, Enumérés, Debug Une couche de contrôle, de Drag and Drop, danimations et autres … Tout sous la forme de fichiers.js

12 ASP.NET Atlas Server Extensions Atlas Server Controls Atlas Server Controls App Services Bridge Web Services Bridge Atlas Framework Serveur Atlas Framework Client et Service Atlas Client Script Library Controls, Components Script Core Base Class Library Component Model and UI Framework Browser Compatibility Atlas Client Application Services Local Store, … Browser Integration Browser Integration ASP.NET 2.0 Application Services Page Framework, Server Controls Page Framework, Server Controls Atlas-enabled ASP.NET Pages Atlas-enabled Web Services (PHP + JSON) Web Services (PHP + JSON) HTML, Script, AtlasMarkup AtlasMarkup AtlasServiceProxiesAtlasServiceProxies Microsoft Ajax Framework Architecture

13 Framework + Noyau MicrosoftAjax.js Rendu partiel (UpdatePanel) MicrosoftAjaxWebForms.js Base Class Library (BCL) Contrôles, XML-Script, etc… PreviewScript.js Drag-and-Drop PreviewDragDrop.js Animation, Opacité, etc… PreviewGlitz.js 68ko 28ko 35ko 160ko 12ko

14 Sys.Preview Binding Base Binding Action InvokeMethode SetProperty Sys.Preview.UI AutoComplete Behavior Label Button CheckBox TextBox Selector Sys.Preview.Data DataColumn DataRow DataTable DataView DataFilter DataSource Sys.Preview.UI.Data DataControl DataNavigator ItemView ListView ListItem XSLTView Autre ServiceMethod eRequest Profile

15 Le Javascript est un langage « object- based » et non pas « object-oriented » Ajout de type étendu Array – add, contains, remove… Boolean Number - Parse Object – getType, getTypeName String – format, endsWith, startWith, trim … Microsoft Ajax Framework ajoute NamespacesClassesHéritageInterface Type Enumérés

16 var s = String.format({0}, {1} and {2}, 1, 2, 3); var sb = new Sys.StringBuilder(); for(var i = 0; i<100; i++){ sb.append(i); sb.append(i);sb.append(<br/>}alert(sb.toString());

17 Type.registerNamespace('Frimr'); Type.registerNamespace('Frimr'); Frimr.Person = function(name) { Frimr.Person = function(name) { Frimr.Person.initializeBase(this); Frimr.Person.initializeBase(this); this._name = name; this._name = name; } Frimr.Person.prototype = { Frimr.Person.prototype = { get_name : function(){ get_name : function(){ return this._name; return this._name; } } Frimr.Person.registerClass('Frimr.Person'); Frimr.Person.registerClass('Frimr.Person');

18 var p = new Frimr.Person('Christophe'); alert(p.get_name());alert(Object.getTypeName(p));

19 Frimr.Programmer = function(name, language) { Frimr.Programmer = function(name, language) { Frimr.Programmer.initializeBase(this, [name]); Frimr.Programmer.initializeBase(this, [name]); this._language = language; this._language = language; } Frimr.Programmer.prototype = { Frimr.Programmer.prototype = { get_name: function() { get_name: function() { var name = Frimr.Programmer.callBaseMethod(this, 'get_name'); var name = Frimr.Programmer.callBaseMethod(this, 'get_name'); return name + '(Programmateur)'; return name + '(Programmateur)'; }, }, get_language: function() { get_language: function() { return this._language; return this._language; } } Frimr.Programmer.registerClass('Frimr.Programmer', Frimr.Person); Frimr.Programmer.registerClass('Frimr.Programmer', Frimr.Person);

20 var p2 = new Frimr.Programmer('Christophe','JavaScript'); alert(p2.get_name());alert(p2.get_language());alert(Object.getTypeName(p2));

21 $create – Crée et initialise un composant $find – Retrouve un composant avec sont ID $get – Retrouve un élément dans le DOM [getElementByID] $addHandler – Ajoute un événement à un objet du DOM $removeHandler – Supprime un événement à un objet du DOM debug.trace

22 Impératif var bt = new Sys.Preview.UI.Button($get('bt')); bt.initialize();bt.add_click(OnClick)Déclaratif </button></components> </script>

23 Utilisation de Microsoft Ajax Library Utilisation du XML-Script avec des Web Services en PHP et sérialisation JSON http://www.codeplex.com/phpmsajax Utilisation de Ajax Control Toolkit (Extenders)

24

25 Projet étudiant devenu projet communautaire Licence type Open Source : MS-PL Hébergé sur CodePlex Version 1.0 : Focalisée sur lexécution en.NET de code PHP existant Version 2.0 : Etend ceci via un scénario dintéropérabilité complêt (ASP.NET, Assemblies, …)

26 Composants majeurs : Compilateur PHP vers MSIL Support de ASP.NET Réimplémentation des classes et modules PHP MySQL Managed Extension Intéropérabilité.NET / Assemblies Projets Windows Forms !

27 Beta 2 : MySQL Managed Extension Beta 3 : Quelques corrections Visual Studio Integration Bêta

28

29 Plein de bonnes choses pour les développeurs PHP sur Windows ! Microsoft Ajax Library Web Services et JSON IIS7 Phalanger et ASP.NET, plus Extenders Ajax

30 Sinformer - Un portail dinformations, des événements, une newsletter bimensuelle personnalisée Se former - Des webcasts, des articles techniques, des téléchargements, des forums pour échanger avec vos pairs Bénéficier de services - Des cursus de formations et de certifications, des offres de support technique Visual Studio 2005 + Abonnement MSDN Premium Abonnement TechNet Plus : Versions déval + 2 incidents support

31 Documentation, SDK et Tutoriels (Sidebar et Live.com) http://microsoftgadgets.com/Build http://msdn2.microsoft.com/en-gb/library/aa965850.aspxhttp://msdn2.microsoft.com/en-gb/library/aa965850.aspx (Sidebar) http://microsoftgadgets.com/livesdk/docs/apiref.htmhttp://microsoftgadgets.com/livesdk/docs/apiref.htm (Live.com) Gallerie de Gadgets prêts à lemploi (+ RSS) http://gallery.live.com/ Blog de léquipe Sidebar (Gadget Corner) http://blogs.msdn.com/sidebar Centre de développement Live.com (US) http://dev.live.com Centre de développement Live.com (FR) http://www.microsoft.com/france/msdn/live/default.mspx Forum dédié au développement des Gadgets Sidebar http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=1063&SiteID=1 Forum dédié au développement des Gadgets Live.com http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=1062&SiteID=1

32 Merci !

33 © 2007 Microsoft France Votre potentiel, notre passion TM


Télécharger ppt "Pierre Lagarde Christophe Lauer"

Présentations similaires


Annonces Google