<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Interoperability @ Microsoft</title><link>http://blogs.msdn.com/b/interoperability/</link><description>Covering interoperability scenarios, the technologies enabling them and the community at large</description><dc:language>en-US</dc:language><generator>Telligent Community 5.6.583.20496 (Build: 5.6.583.20496)</generator><item><title>Open Source OData Tools for MySQL and PHP Developers</title><link>http://blogs.msdn.com/b/interoperability/archive/2012/02/09/open-source-odata-tools-for-mysql-and-php-developers.aspx</link><pubDate>Thu, 09 Feb 2012 19:01:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10266059</guid><dc:creator>Doug Mahugh</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10266059</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2012/02/09/open-source-odata-tools-for-mysql-and-php-developers.aspx#comments</comments><description>&lt;p&gt;To enable more interoperability scenarios, Microsoft has released today two open source tools that provide support for the Open Data Protocol (&lt;a href="http://www.odata.org/"&gt;OData&lt;/a&gt;) for PHP and MySQL developers working on any platform.&lt;/p&gt;  &lt;p&gt;The growing popularity of &lt;a href="http://www.odata.org/"&gt;OData&lt;/a&gt; is creating new opportunities for developers working with a wide variety of platforms and languages. An ever increasing number of data sources are being exposed as &lt;a href="http://www.odata.org/producers"&gt;OData producers&lt;/a&gt;, and a variety of &lt;a href="http://www.odata.org/consumers"&gt;OData consumers&lt;/a&gt; can be used to query these data sources via OData’s simple REST API.&lt;/p&gt;  &lt;p&gt;In this post, we’ll take a look at the latest releases of two open source tools that help PHP developers implement OData producer support quickly and easily on Windows and Linux platforms:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;The &lt;a href="http://odataphpproducer.codeplex.com/"&gt;OData Producer Library for PHP&lt;/a&gt;, an open source server library that helps PHP developers expose data sources for querying via OData. (This is essentially a PHP port of certain aspects of the OData functionality found in System.Data.Services.) &lt;/li&gt;    &lt;li&gt;The &lt;a href="http://odatamysqlphpconnect.codeplex.com/"&gt;OData Connector for MySQL&lt;/a&gt;, an open source command-line tool that generates an implementation of the OData Producer Library for PHP from a specified MySQL database. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;These tools are written in platform-agnostic PHP, with no dependencies on .NET.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;font color="#0000ff" size="3"&gt;OData Producer Library for PHP&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67-metablogapi/4628.figure1_5F00_4B33D589.png"&gt;&lt;img style="background-image: none; border-right-width: 0px; margin: 0px 0px 10px 10px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="figure1" border="0" alt="figure1" align="right" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67-metablogapi/8741.figure1_5F00_thumb_5F00_03DE7F97.png" width="240" height="166" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Last September, my colleague Claudio Caldato announced &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/09/09/the-odata-producer-library-for-php-is-here.aspx"&gt;the first release of the Odata Producer Library for PHP&lt;/a&gt;, an open-source cross-platform PHP library available on &lt;a href="http://odataphpproducer.codeplex.com/"&gt;Codeplex&lt;/a&gt;. This library has evolved in response to community feedback, and the latest build (Version 1.1) includes performance optimizations, finer-grained control of data query behavior, and comprehensive documentation.&lt;/p&gt;  &lt;p&gt;OData can be used with any data source described by an &lt;a href="http://msdn.microsoft.com/en-us/library/ee382825.aspx"&gt;Entity Data Model&lt;/a&gt; (EDM). The structure of relational databases, XML files, spreadsheets, and many other data sources can be mapped to an EDM, and that mapping takes the form of a set of &lt;em&gt;metadata &lt;/em&gt;to describe the entities, associations and properties of the data source. The details of EDM are beyond the scope of this blog, but if you’re curious &lt;a href="http://msdn.microsoft.com/en-us/library/ee382840.aspx"&gt;here’s a simple example&lt;/a&gt; of how EDM can be used to build a conceptual model of a data source.&lt;/p&gt;  &lt;p&gt;The OData Producer Library for PHP is essentially an open source reference implementation of OData-relevant parts of the .NET framework’s System.Data.Services namespace, allowing developers on non-.NET platforms to more easily build OData providers. To use it, you define your data source through the IDataServiceMetadataProvider (IDSMP) interface, and then you can define an associated implementation of the IDataServiceQueryProvider (IDSQP) interface to retrieve data for OData queries. If your data source contains binary objects, you can also implement the optional IDataServiceStreamProvider interface to handle streaming of blobs such as media files.&lt;/p&gt;  &lt;p&gt;Once you’ve deployed your implementation, the flow of processing an OData client request is as follows:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;The OData server receives the submitted request, which includes the URI to the &lt;a href="http://www.odata.org/developers/protocols/uri-conventions#AddressingEntries"&gt;target resource&lt;/a&gt; and may also include $filter, $orderby, $expand and $skiptoken clauses to be applied to the target resource. &lt;/li&gt;    &lt;li&gt;The OData server parses and validates the &lt;a href="http://msdn.microsoft.com/en-us/library/dd541168(v=prot.10).aspx"&gt;headers&lt;/a&gt; associated with the request. &lt;/li&gt;    &lt;li&gt;The OData server parses the URI to resource, parses the query options to check their syntax, and verifies that the current service configuration allows access to the specified resource. &lt;/li&gt;    &lt;li&gt;Once all of the above steps are completed, the OData Producer for PHP library code is ready to process the request via your custom IDataServiceQueryProvider and return the results to the client. &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;These processing steps are the same in .NET as they are in the OData Producer Library for PHP, but in the .NET implementation a LINQ query is generated from the parsed request. PHP doesn’t have support for LINQ, so the producer provides hooks which can be used to generate the PHP expression by default from the parsed expression tree. For example, in the case of a MySQL data source, a MySQL query expression would be generated.&lt;/p&gt;  &lt;p&gt;The net result is that PHP developers can offer the same querying functionality on Linux and other platforms as a .NET developer can offer through System.Data.Services. Here are a few other details worth nothing:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;In C#/.NET, the System.Linq.Expressions namespace contains classes for building expression trees, and the OData Producer Library for PHP has its own classes for this purpose. &lt;/li&gt;    &lt;li&gt;The IDSQP interface in the OData Producer Library for PHP differs slightly from .NET’s IDSQP interface (due to the lack of support for LINQ in PHP). &lt;/li&gt;    &lt;li&gt;System.Data.Services uses WCF to host the OData provider service, whereas the OData Producer Library for PHP uses a web server (IIS or Apache) and urlrewrite to host the service. &lt;/li&gt;    &lt;li&gt;The design of Writer (to serialize the returned query results) is the same for both .NET and PHP, allowing serialization of either .NET objects or PHP objects as Atom/JSON. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;For a deeper look at some of the technical details, check out &lt;a href="http://anuchandy.blogspot.com/2012/01/odata-producer-high-level-architecture.html"&gt;Anu Chandy’s blog post&lt;/a&gt; on the OData Producer Library for PHP or see the OData Producer for PHP documentation available on &lt;a href="http://odataphpproducer.codeplex.com/"&gt;Codeplex&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;font color="#0000ff" size="3"&gt;OData Connector for MySQL&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The OData Producer for PHP can be used to expose any type of data source via OData, and one of the most popular data sources for PHP developers is MySQL. A new code generator tool, the open source &lt;a href="http://odatamysqlphpconnect.codeplex.com/"&gt;OData Connector for MySQL&lt;/a&gt;, is now available to help PHP developers implement OData producer support for MySQL databases quickly and simply.&lt;/p&gt;  &lt;p&gt;The OData Connector for MySQL generates code to implement the interfaces necessary to create an OData feed for a MySQL database. The syntax for using the connector is simple and straightforward:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New"&gt;php MySQLConnector.php /db=mysqldb_name /srvc=odata_service_name /u=db_user_name /pw=db_password /h=db_host_name&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67-metablogapi/4544.figure2_5F00_5899E88F.png"&gt;&lt;img style="background-image: none; border-right-width: 0px; margin: 0px 0px 10px 10px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="figure2" border="0" alt="figure2" align="right" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67-metablogapi/4520.figure2_5F00_thumb_5F00_315F9F5A.png" width="300" height="209" /&gt;&lt;/a&gt;The MySQLConnector generates an EDMX file containing metadata that describes the data source, and then prompts the user for whether to continue with code generation or stop to allow manual editing of the metadata before the code generation step.&lt;/p&gt;  &lt;p&gt;EDMX is the Entity Data Model XML format, and an EDMX file contains a conceptual model, a storage model, and the mapping between those models. In order to generate an EDMX from a MySQL database, the OData Connector for MySQL needs to be able to do database schema introspection, and it does this through the &lt;a href="http://www.doctrine-project.org/projects/dbal"&gt;Doctrine DBAL&lt;/a&gt; (Database Abstraction Layer). You don’t need to understand the details of EDMX in order to use the OData Connector for MySQL, but if you’re curious see the &lt;a href="http://msdn.microsoft.com/en-us/library/cc982042.aspx"&gt;.edmx File Overview&lt;/a&gt; article on MSDN.&lt;/p&gt;  &lt;p&gt;If you’re familiar with EDMX and wish to have very fine-grained control of the exposed OData feeds, you can edit the metadata as shown in the diagram, but this step is not necessary. You can also set access rights for specific entities in the DataService::InitializeService method after the code has been generated, as described below.&lt;/p&gt;  &lt;p&gt;If you stopped the process to edit the EDMX, one additional command is needed to complete the generation of code for the interfaces used by the OData Producer Library for PHP:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New"&gt;php MySQLConnector.php /srvc=odata_service_name&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Note that the generated code will expose all of the tables in the MySQL database as OData feeds. In a typical production scenario, however, you would probably want to fine-tune the interface code to remove entities that aren’t appropriate for OData feeds. The simplest way to do this is to use the DataServiceConfiguration object in the DataService::InitializeService method to set the access rights to NONE for any entities that should not be exposed. For example, you may be creating an OData provider for a CMS, and you don’t want to allow OData queries against the table of users, or tables that are only used for internal purposes within your CMS.&lt;/p&gt;  &lt;p&gt;For more detailed information about working with the OData Connector for MySQL, refer to the user guide available on &lt;a href="http://odatamysqlphpconnect.codeplex.com/"&gt;the project site on Codeplex&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;These tools are open-source (BSD license), so you can download them and start using them immediately at no cost, on Linux, Windows, or any PHP platform. Our team will continue to work to enable more OData scenarios, and we’re always interested in your thoughts. What other tools would you like to see available for working with OData?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10266059" width="1" height="1"&gt;</description></item><item><title>Beta of Windows Phone Toolkit for Amazon Web Services released</title><link>http://blogs.msdn.com/b/interoperability/archive/2012/01/30/beta-of-aws-sdk-for-windows-phone-released.aspx</link><pubDate>Mon, 30 Jan 2012 21:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10259044</guid><dc:creator>Adalberto Foresti [MSFT]</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10259044</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2012/01/30/beta-of-aws-sdk-for-windows-phone-released.aspx#comments</comments><description>&lt;p&gt;I am pleased to announce the beta release of the Windows Phone Toolkit for Amazon Web Services (AWS). Built by Microsoft as an open source project, this toolkit provides developers with a speed dial that lets them quickly connect and integrate Windows Phone applications with AWS (S3, SimpleDB, and SQS Cloud Services)&lt;/p&gt;
&lt;p&gt;To create cloud-connected mobile applications, developers want to have choice and be able to reuse their assets and skills. For developers familiar with AWS, whether they&amp;rsquo;ve been developing for Android, iOS or any other technology, this toolkit will allow them to comfortably port their applications to the Windows Phone Platform.&lt;/p&gt;
&lt;p&gt;Terry Wise, Director of Business Development for Amazon Web Services, welcomes the release of the Windows Phone Toolkit for Amazon Web Services to the Developer community.&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&amp;ldquo;Our approach with AWS is to provide developers with choice and flexibility to build applications the way they want and give them unlimited storage, bandwidth and computing resources, while paying only for what they use. We welcome Windows Phone developers to the AWS community and look forward to providing customers with new ways to build and deploy Windows Phone applications,&amp;rdquo; he says.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;Jean Paoli, General Manager of Interoperability Strategy at Microsoft, adds that Windows Phone was engineered from the get-go to be a Cloud-friendly phone.&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&amp;ldquo;The release of the Windows Phone Toolkit for AWS Beta proves that Microsoft&amp;rsquo;s goal of building a Cloud-friendly phone is true across vendor boundaries. It literally takes minutes to create a Cloud-ready application in C# with this toolkit. We look forward to this toolkit eventually resulting in many more great apps in the rapidly growing Windows Phone marketplace,&amp;rdquo; he said.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;Developers can download the &lt;a href="https://github.com/downloads/Microsoft-Interop/AWS-SDK-for-WP/AWSWP7Setup.msi" target="_blank"&gt;toolkit&lt;/a&gt; , along with the complete &lt;a href="https://github.com/Microsoft-Interop/AWS-SDK-for-WP" target="_blank"&gt;source code&lt;/a&gt; under the Apache license. A Getting Started guide can be found on the &lt;a href="http://windowsphone.interoperabilitybridges.com/articles/getting-started-with-the-beta-of-amazon-web-services-sdk-for-windows-phone" target="_blank"&gt;Windows Phone Interoperability Bridges site&lt;/a&gt; along with other resources.&lt;/p&gt;
&lt;p&gt;And as always your feedback on how to improve this beta is welcome!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10259044" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/WindowsPhone/">WindowsPhone</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/open+source/">open source</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/windows+phone/">windows phone</category></item><item><title>Microsoft at Node Summit</title><link>http://blogs.msdn.com/b/interoperability/archive/2012/01/24/microsoft-at-node-summit.aspx</link><pubDate>Tue, 24 Jan 2012 22:45:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10259847</guid><dc:creator>Peter Galli</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10259847</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2012/01/24/microsoft-at-node-summit.aspx#comments</comments><description>&lt;p&gt;We are excited to be attending and participating at &lt;a href="http://nodesummit.com/"&gt;Node Summit&lt;/a&gt;&amp;nbsp;in San Francisco this week.&lt;/p&gt;
&lt;p&gt;Among those Microsoft staffers on site are Server &amp;amp; Tools Corporate Vice President Scott Guthrie - who participated on a panel about Platform as a Service this morning and also gave a &lt;a href="http://nodesummit.com/agenda/#day-one"&gt;keynote address&lt;/a&gt; - and &lt;a href="http://blogs.technet.com/b/port25/archive/2011/01/27/a-roundtable-discussion-with-gianugo-rabellino.aspx"&gt;Gianugo Rabellino&lt;/a&gt;, the Senior Director for Open Source Communities, who was on a panel discussing the importance of cross-platform.&lt;/p&gt;
&lt;p&gt;You can read more about Scott's keynote on the Windows Azure blog &lt;a href="http://blogs.msdn.com/b/windowsazure/archive/2012/01/24/windows-azure-and-cloud9-ide-at-node-summit.aspx"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As you may know, in December Microsoft announced that it was &lt;a href="http://blogs.technet.com/b/port25/archive/2011/12/12/openness-update-for-windows-azure.aspx"&gt;adding support&lt;/a&gt; for Node.js to the Windows Azure platform, which allows developers to easily take advantage of the powerful capabilities of Windows Azure with simple tools and a new open source SDK.&lt;/p&gt;
&lt;p&gt;As this work continues inside of Microsoft as well as with the Node.js community and our partner ecosystem, new and exciting capabilities are coming available allowing Node.js developers to have great experiences on the Windows platform.&lt;/p&gt;
&lt;p&gt;Today, during his keynote, Scott Guthrie demonstrated how easy it is to get up and running with Node.js on Windows and Windows Azure, while our partners at Cloud9 showcased new tooling experiences that provide even greater flexibility to Node.js for developers who want to build for Windows Azure.&lt;/p&gt;
&lt;p&gt;Microsoft has been closely partnering with Joyent for some time now to port Node.js to Windows. We have built an IO abstraction library with them that can be used to make the code run on both Linux and Windows.&lt;/p&gt;
&lt;p&gt;We also recently released the &lt;a href="http://www.windowsazure.com/en-us/develop/nodejs/tutorials/getting-started/"&gt;Windows Azure SDK for Node.js&lt;/a&gt; as open source, available on Github. These libraries are the perfect complement to our recently announced &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/06/23/microsoft-working-with-joyent-and-the-node-community-to-bring-node-js-to-windows.aspx"&gt;contributions to Node.js&lt;/a&gt; and provide a better Node.js experience on Windows Azure. The &lt;a href="http://www.windowsazure.com/en-us/develop/overview/"&gt;Windows Azure Developer Center&lt;/a&gt;&amp;nbsp;provides documentation, tutorial, samples and how-to guides to get started with Node.js on Windows Azure.&lt;/p&gt;
&lt;p&gt;The Joyent team also recently updated the Node Package Manager for Windows (NPM) code to allow use of NPM on Windows. NPM is an essential tool for Node.js developers so now having support for it on Windows we have a better development experience on Windows.&lt;/p&gt;
&lt;p&gt;We are also working with the Joyent team on improving the development experience by leveraging the power of Microsoft Development tools and documentation that will make easier for developers to use Node.js APIs.&lt;/p&gt;
&lt;p&gt;And, relatedly, we have also been working closely with &lt;a href="http://www.10gen.com/"&gt;10Gen&lt;/a&gt; and the &lt;a href="http://www.mongodb.org/"&gt;MongoDB&lt;/a&gt; community in the past few months, and MongoDB already runs on Windows Azure. If you&amp;rsquo;re using the popular combination of &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235929"&gt;Node.js and MongoDB&lt;/a&gt;, a simple straightforward install process will get you started on Windows Azure. You can learn more &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235929"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Our interest in, and support for Node.js is just one of the ways in which Windows Azure is continuing on its roadmap of embracing Open Source Software tools developers know and love, by working collaboratively with the open source community to build together a better cloud that supports all developers and their need for interoperable solutions based on developer choice.&lt;/p&gt;
&lt;p&gt;As Microsoft continues to provide incremental improvements to &lt;a href="http://www.windowsazure.com/en-us/"&gt;Windows Azure&lt;/a&gt;, we remain committed to &lt;a href="http://blogs.msdn.com/b/port25/archive/2011/11/07/first-stable-build-of-nodejs-on-windows-released.aspx"&gt;working with developer communities&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We also clearly understand that there are many different technologies that developers may want to use to &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/06/23/building-java-applications-on-windows-azure-gets-easier-with-the-new-version-of-the-eclipse-plugin.aspx"&gt;build applications in the cloud&lt;/a&gt;: they want to use the tools that best fit their experience, skills, and application requirements, and our goal is to enable that choice.&lt;/p&gt;
&lt;p&gt;All of this delivers on our ongoing commitment to provide an experience where developers can build applications on Windows Azure using &lt;a href="http://www.interoperabilitybridges.com/"&gt;the languages and frameworks they already know&lt;/a&gt;, enable greater customer flexibility for managing and scaling databases, and making it easier for customers to get started and use cloud computing on their terms with Windows Azure.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10259847" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/azure/">azure</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/cloud/">cloud</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/web+services/">web services</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/NodeJS/">NodeJS</category></item><item><title>Windows Azure Libraries for Java Available, including support for Service Bus</title><link>http://blogs.msdn.com/b/interoperability/archive/2012/01/09/windows-azure-libraries-for-java-available-including-support-for-service-bus.aspx</link><pubDate>Mon, 09 Jan 2012 17:03:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10246892</guid><dc:creator>Ram Jeyaraman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10246892</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2012/01/09/windows-azure-libraries-for-java-available-including-support-for-service-bus.aspx#comments</comments><description>&lt;p&gt;Good news for all you Java developers out there: I am happy to share with you the availability of Windows Azure libraries for Java that provide Java-based access to the functionality exposed via the &lt;a href="http://msdn.microsoft.com/en-us/library/hh367521.aspx"&gt;REST API&lt;/a&gt; in &lt;a href="http://msdn.microsoft.com/SB"&gt;Windows Azure Service Bus&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can download the &lt;a href="https://github.com/WindowsAzure/azure-sdk-for-java"&gt;Windows Azure libraries for Java&lt;/a&gt;&amp;nbsp;from GitHub.&lt;/p&gt;
&lt;p&gt;This is an early step as we continue to make Windows Azure a great cloud platform for many languages, including .NET and Java.&amp;nbsp; If you&amp;rsquo;re using Windows Azure Service Bus from Java, please let us know your &lt;a href="http://go.microsoft.com/fwlink/?LinkId=234489"&gt;feedback&lt;/a&gt;&amp;nbsp;on how these libraries are working for you and how we can improve them. Your feedback is very important to us!&lt;/p&gt;
&lt;p&gt;You may refer to &lt;a href="http://www.windowsazure.com/en-us/develop/java"&gt;Windows Azure Java Developer Center&lt;/a&gt;&amp;nbsp;for related information.&lt;/p&gt;
&lt;p&gt;Openness and interoperability are important to Microsoft, our customers, partners, and developers and we believe these libraries will enable Java applications to more easily connect to Windows Azure, in particular the Service Bus, making it easier for applications written on any platform to interoperate with each another through Windows Azure.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Ram Jeyaraman&lt;/p&gt;
&lt;p&gt;Senior Program Manager, &lt;a href="http://blogs.msdn.com/b/interoperability"&gt;Microsoft&amp;rsquo;s Interoperability Group&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10246892" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/azure/">azure</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/java/">java</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/REST/">REST</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/cloud/">cloud</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/web+services/">web services</category></item><item><title>Open Source OData Library for Objective-C Project Moves to Outercurve Foundation </title><link>http://blogs.msdn.com/b/interoperability/archive/2011/12/20/open-source-odata-library-for-objective-c-project-moves-to-outercurve-foundation.aspx</link><pubDate>Tue, 20 Dec 2011 18:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10248653</guid><dc:creator>Peter Galli</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10248653</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/12/20/open-source-odata-library-for-objective-c-project-moves-to-outercurve-foundation.aspx#comments</comments><description>&lt;p&gt;As Microsoft continues to deliver on its commitment to Interoperability, I have good news on the Open Source Software front: today, the OData Library for Objective-C project was submitted to the Outercurve Foundation&amp;rsquo;s Data, Languages, and Systems Interoperability gallery.&lt;/p&gt;
&lt;p&gt;This means that &lt;a href="https://github.com/OData/odata4objc"&gt;OData4ObjC&lt;/a&gt;, the OData client for iOS, is now a full, community-supported Open Source project.&lt;/p&gt;
&lt;p&gt;The &lt;a href="http://www.odata.org/"&gt;Open Data Protocol (OData)&lt;/a&gt; is a web protocol for communications between client devices and RESTful web services, simplifying the building of queries and interpreting the responses from the server. It specifies how a web service can state its semantics such that a generic library can express those semantics to an application, meaning that applications do not need to be custom-written for a single source.&lt;/p&gt;
&lt;p&gt;The Outercurve Foundation already hosts 19 OSS projects and, as Gallery Manager Spyros Sakellariadis notes in his &lt;a href="http://www.outercurve.org/Blogs/EntryId/42/DLSI-Gallery-Manager-Spyros-Sakellariadis-welcomes-new-project-OData-Library-for-Objective-C"&gt;blog post&lt;/a&gt;, this is the gallery&amp;rsquo;s second OData project, the first being the OData Validation project contributed last August.&lt;/p&gt;
&lt;p&gt;&amp;ldquo;With this new assignment, we expect to involve open source community developers even more in the enhancement of seminal OData libraries,&amp;rdquo; he said.&lt;/p&gt;
&lt;p&gt;Microsoft Senior Program Manager for OData Arlo Belshee notes in his &lt;a href="http://www.odata.org/blog/2011/12/20/ios-client-library-goes-open-source"&gt;blog post&lt;/a&gt; that the Open Sourcing of the OData client library for Objective C will enable first-class support of this important platform. &amp;ldquo;Combined with exiting support for Android (&lt;a href="http://code.google.com/p/odata4j/"&gt;Odata4j&lt;/a&gt;, OSS and Windows Phone (in the &lt;a href="http://www.odata.org/developers/odata-sdk"&gt;odata-sdk&lt;/a&gt; by Microsoft), this release provides strong, uniform support for all major phones,&amp;rdquo; he said.&lt;/p&gt;
&lt;p&gt;In assigning ownership of the code to the Outercurve Foundation, the project leads are opening it up for community contributions and support. &amp;ldquo;They firmly believe that the direction and quality of the project are best managed by users in the community, and are eager to develop a broad base of contributors and followers,&amp;rdquo; Belshee said.&lt;/p&gt;
&lt;p&gt;As Microsoft continues to build and provide Interoperability solutions, Sakellariadis thanked the Open Source communities for their continued support, noting that together &amp;ldquo;we can all contribute to achieving a goal of device and cloud interoperability, of true openness.&amp;rdquo;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10248653" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/cloud/">cloud</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/OData/">OData</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/open+source/">open source</category></item><item><title>Full Support for PhoneGap on Windows Phone is Now Complete!</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/12/16/full-support-for-phonegap-on-windows-phone-is-now-complete.aspx</link><pubDate>Sat, 17 Dec 2011 00:02:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10248760</guid><dc:creator>Abu Obeida</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10248760</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/12/16/full-support-for-phonegap-on-windows-phone-is-now-complete.aspx#comments</comments><description>&lt;p&gt;Congratulations to all the people involved in the PhoneGap community for the recent release of version 1.3 of their HTML5 open source mobile framework.&lt;/p&gt;
&lt;p&gt;This release includes many new features, and you can find more details &lt;a href="http://phonegap.com/blog"&gt;here&lt;/a&gt;. You may remember that we &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/09/08/phonegap-mobile-html5-framework-adding-support-for-windows-phone-mango.aspx"&gt;announced back in Sept&lt;/a&gt; that Microsoft was helping to bring Windows Phone support in PhoneGap: I am happy to say we can now check&lt;br /&gt;this box!&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;re also pleased to note that all features in PhoneGap 1.3 are now supported for Windows Phone, as you can see on their site &lt;a href="http://phonegap.com/about/features"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67/3583.PhoneGap.jpg"&gt;&lt;img border="0" alt="" src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67/3583.PhoneGap.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Also, beyond the core PhoneGap features, developers can enjoy a selection of PhoneGap plugins that support social networks - including Facebook, LinkedIn, Windows Live and Twitter - and a solid integration into Visual Studio&lt;br /&gt;Express for Windows Phone.&lt;/p&gt;
&lt;p&gt;We have also developed further plugins to give HTML5 developers a feel for Windows Phone&amp;rsquo;s unique features like Live Tile Update and Bing Maps Search.&lt;/p&gt;
&lt;p&gt;Please check out Jesse MacFadyen&amp;rsquo;s &lt;a href="http://www.risingj.com/archives/147"&gt;blog&lt;/a&gt;, PhoneGap&amp;rsquo;s dev lead, on his experiences developing PhoneGap on Windows Phone.&lt;/p&gt;
&lt;p&gt;For more technical details of using the framework, see &lt;a href="http://blogs.msdn.com/b/glengordon/"&gt;Glen&lt;/a&gt; and &lt;a href="http://risingj.com/"&gt;Jesse&amp;rsquo;s&lt;/a&gt; technical walk thru blogs. For a quick a spin of what PhoneGap and Visual Studio allow you to do, &lt;a href="http://youtu.be/1aqYKd5rxr8"&gt;see this WP7 and Android camera app created in 3 minutes&lt;/a&gt;! Bits are located &lt;a href="https://github.com/callback/callback-windows-phone"&gt;here&lt;/a&gt;; plugins are &lt;a href="https://github.com/purplecabbage/phonegap-plugins/tree/master/WindowsPhone"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Looking ahead:&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;As mentioned in PhoneGap&amp;rsquo;s announcement blog post, the next PhoneGap 1.4 release will be from the Cordova incubation project at Apache.&amp;nbsp; We at Microsoft are proud to be members of this project and to offer technical resources.&amp;nbsp; We welcome the involvement of Adobe, IBM and RIM and look forward to collaboratively growing PhoneGap at its new home in&amp;nbsp;Apache while helping evolve an open web for any device.&lt;/p&gt;
&lt;p&gt;Microsoft&amp;rsquo;s commitment to HTML5 in IE9 has been instrumental in achieving this level of support. We are also building on our HTML5 investment through initiatives like bringing jQuery Mobile support as we outlined &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/11/18/jquery-mobile-open-source-framework-support-for-windows-phone.aspx"&gt;few&lt;br /&gt;weeks ago&lt;/a&gt;. Partnering with open source communities to bring this level of openness continues to be an important goal here at Microsoft.&lt;/p&gt;
&lt;p&gt;So, stay tuned for more news on our support for popular mobile open source frameworks on WP7.5!&lt;/p&gt;
&lt;p&gt;Abu Obeida Bakhach&lt;/p&gt;
&lt;p&gt;Interoperability Strategy Program Manager&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10248760" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/apache/">apache</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/html5/">html5</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/open+source/">open source</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/windows+phone/">windows phone</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/mango/">mango</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/jquery+mobile/">jquery mobile</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/phonegap/">phonegap</category></item><item><title>Azure + Java = Cloud Interop: New Channel 9 Video with GigaSpaces Posted</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/12/12/azure-java-cloud-interop-new-channel-9-video-with-gigaspaces-posted.aspx</link><pubDate>Mon, 12 Dec 2011 21:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10246912</guid><dc:creator>M. Sawicki</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10246912</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/12/12/azure-java-cloud-interop-new-channel-9-video-with-gigaspaces-posted.aspx#comments</comments><description>&lt;p&gt;Today Microsoft is hosting the &lt;a href="http://www.learnwindowsazureevent.com/"&gt;Learn Windows Azure&lt;/a&gt; broadcast event to demonstrate how easy it is for developers to get started with Windows Azure. Senior Microsoft executives like Scott Guthrie, Dave Campbell, Mark Russinovich and others will show how easy it is to build scalable cloud applications using Visual Studio.&amp;nbsp; The event is be broadcasting live and will also be available on-demand.&lt;/p&gt;
&lt;p&gt;For &lt;a href="http://windowsazure.com/en-us/develop/java/"&gt;Java developers interested in using Windows Azure&lt;/a&gt;, one particularly interesting segment of the day is a new &lt;a href="http://channel9.msdn.com/Shows/Inside+Out/Building-on-Azure-GigaSpaces-Cloudify-Java-Application-Platform"&gt;Channel 9 video&lt;/a&gt; with &lt;a href="http://www.gigaspaces.com/"&gt;GigaSpaces&lt;/a&gt;.&amp;nbsp;Their &lt;a href="http://www.gigaspaces.com/cloudify"&gt;Cloudify&lt;/a&gt; offering helps Java developers easily move to their applications, without any code&amp;nbsp;or architecture changes,&amp;nbsp;to Windows Azure&lt;/p&gt;
&lt;p&gt;This broadcast follows yesterday&amp;rsquo;s updates to Windows Azure around an improved developer experience, Interoperability, and scalability. A significant part of that was an update on a wide range of Open Source developments on &lt;a href="http://www.windowsazure.com/en-us/"&gt;Windows Azure&lt;/a&gt;, which are the latest incremental improvements that deliver on our commitment to &lt;a href="http://blogs.msdn.com/b/port25/archive/2011/11/07/first-stable-build-of-nodejs-on-windows-released.aspx"&gt;working with developer communities&lt;/a&gt; so that they can build applications on Windows Azure using &lt;a href="http://www.interoperabilitybridges.com/"&gt;the languages and frameworks they already know&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We understand that developers want to use the tools that best fit their experience, skills, and application requirements, and our goal is to enable that choice. In keeping with that, we are extremely happy to be delivering new and improved experiences for popular OSS technologies such as &lt;a href="http://blogs.msdn.com/b/port25/archive/2011/11/07/first-stable-build-of-nodejs-on-windows-released.aspx"&gt;Node.js&lt;/a&gt;, MongoDB, &lt;a href="http://blogs.msdn.com/b/port25/archive/2011/10/12/microsoft-hadoop-and-big-data.aspx"&gt;Hadoop&lt;/a&gt;, Solr and Memcached on Windows Azure.&lt;/p&gt;
&lt;p&gt;You can find all the details on the full Windows Azure news &lt;a href="http://blogs.msdn.com/b/windowsazure/archive/2011/12/12/improved-developer-experience-interoperability-and-scalability-on-windows-azure.aspx"&gt;here&lt;/a&gt;, and more information on the Open Source updates &lt;a href="http://blogs.technet.com/b/port25/archive/2011/12/12/openness-update-for-windows-azure.aspx"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10246912" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/azure/">azure</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/java/">java</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/cloud/">cloud</category></item><item><title>Openness Update for Windows Azure</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/12/12/openness-update-for-windows-azure.aspx</link><pubDate>Mon, 12 Dec 2011 16:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10246512</guid><dc:creator>Gianugo Rabellino</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10246512</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/12/12/openness-update-for-windows-azure.aspx#comments</comments><description>&lt;p&gt;As Microsoft&amp;rsquo;s &lt;a href="http://blogs.technet.com/b/port25/archive/2011/01/27/a-roundtable-discussion-with-gianugo-rabellino.aspx"&gt;Senior Director of Open Source Communities&lt;/a&gt;, I couldn&amp;rsquo;t be happier to share with you today an update on a wide range of Open Source developments on Windows Azure.&lt;/p&gt;
&lt;p&gt;As we continue to provide incremental improvements to &lt;a href="http://www.windowsazure.com/en-us/"&gt;Windows Azure&lt;/a&gt;, we remain committed to &lt;a href="http://blogs.technet.com/b/port25/archive/2011/11/07/first-stable-build-of-nodejs-on-windows-released.aspx"&gt;working with developer communities&lt;/a&gt;. We&amp;rsquo;ve spent a lot of time listening, and we have heard you loud and clear.&lt;/p&gt;
&lt;p&gt;We understand that there are many different technologies that developers may want to use to &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/06/23/building-java-applications-on-windows-azure-gets-easier-with-the-new-version-of-the-eclipse-plugin.aspx"&gt;build applications in the cloud&lt;/a&gt;. Developers want to use the tools that best fit their experience, skills, and application requirements, and our goal is to enable that choice.&lt;/p&gt;
&lt;p&gt;In keeping with that goal, we are extremely happy to be delivering new and improved experiences for &lt;a href="http://blogs.technet.com/b/port25/archive/2011/11/07/first-stable-build-of-nodejs-on-windows-released.aspx"&gt;Node.js&lt;/a&gt;, MongoDB, &lt;a href="http://blogs.technet.com/b/port25/archive/2011/10/12/microsoft-hadoop-and-big-data.aspx"&gt;Hadoop&lt;/a&gt;, Solr and Memcached on Windows Azure.&lt;/p&gt;
&lt;p&gt;This delivers on our ongoing commitment to provide an experience where developers can build applications on Windows Azure using &lt;a href="http://www.interoperabilitybridges.com/"&gt;the languages and frameworks they already know&lt;/a&gt;, enable greater customer flexibility for managing and scaling databases, and making it easier for customers to get started and use cloud computing on their terms with Windows Azure.&lt;/p&gt;
&lt;p&gt;Here are the highlights of today&amp;rsquo;s announcements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We are releasing the &lt;a href="http://www.windowsazure.com/en-us/develop/nodejs/tutorials/getting-started/"&gt;Windows Azure SDK for Node.js&lt;/a&gt; as open source, available&lt;a href="https://github.com/WindowsAzure/azure-sdk-for-node"&gt; immediately&lt;/a&gt; on Github. These libraries are the perfect complement to our recently announced &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/06/23/microsoft-working-with-joyent-and-the-node-community-to-bring-node-js-to-windows.aspx"&gt;contributions to Node.js&lt;/a&gt; and provide a better Node.js experience on Windows Azure. Head to the &lt;a href="http://www.windowsazure.com/en-us/develop/overview/"&gt;Windows Azure Developer Center&lt;/a&gt; for documentation, tutorial, samples and how-to guides to get you started with Node.js on Windows Azure.&lt;/li&gt;
&lt;li&gt;We will also be delivering the Node package manager for Windows (npm) code to allow use of npm on Windows for simpler and faster Node.js configuration and development. Windows developers can now use NPM to install Node modules and take advantage of its automated handling of module dependencies and other details.&lt;/li&gt;
&lt;li&gt;To build on our recent &lt;a href="http://www.microsoft.com/presspass/press/2011/oct11/10-12PASS1PR.mspx"&gt;announcement about Apache Hadoop&lt;/a&gt;, we are making available a &lt;i&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=236482"&gt;limited preview&lt;/a&gt;&lt;/i&gt; of the Apache Hadoop based distribution service on Windows Azure.&amp;nbsp; This enables Hadoop apps to be deployed in hours instead of days, and includes Hadoop Javascript libraries and powerful insights on data through the ODBC driver and Excel plugin for Hive. &lt;a href="http://blogs.msdn.com/b/windowsazure/archive/2011/05/17/how-to-deploy-a-hadoop-cluster-on-windows-azure.aspx"&gt;Read more&lt;/a&gt; about this on the &lt;a href="http://blogs.msdn.com/b/windowsazure/"&gt;Windows Azure team blog&lt;/a&gt;. If you are interested in trying this preview, please complete the form &lt;a href="http://connect.microsoft.com/SQLServer/Survey/Survey.aspx?SurveyID=13697"&gt;here&lt;/a&gt; with details of your Big Data scenario.&amp;nbsp; Microsoft will issue an access code to select customers based on usage scenarios.&lt;/li&gt;
&lt;li&gt;For all of you NoSQL fans, we have been working closely with &lt;a href="http://www.10gen.com/"&gt;10Gen&lt;/a&gt; and the &lt;a href="http://www.mongodb.org/"&gt;MongoDB&lt;/a&gt; community in the past few months, and if you were at at &lt;a href="http://www.10gen.com/events/mongosv-2011"&gt;MongoSV&lt;/a&gt; last week you have already seen MongoDB running on Windows Azure. Head out to the &lt;a href="http://blog.mongodb.org/post/13594969869/mongodb-on-microsoft-azure"&gt;10Gen website&lt;/a&gt; to find downloads, documentation and other document-oriented goodies. If you&amp;rsquo;re using the popular combination of &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235929"&gt;Node.js and MongoDB&lt;/a&gt;, a simple straightforward install process will get you started on Windows Azure. Learn more &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235929"&gt;here&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;For Java developers, take a look at the updated Java support, including a &lt;a href="http://go.microsoft.com/fwlink/?LinkId=236079"&gt;new and revamped&lt;/a&gt; &lt;a href="http://go.microsoft.com/fwlink/?LinkId=236078"&gt;Eclipse plugin&lt;/a&gt;. The new features are too many to list for this post, but you can count on a much better experience thanks to new and exciting functionality such as support for &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235088"&gt;sticky sessions&lt;/a&gt; and configuration of &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235086"&gt;remote Java debugging&lt;/a&gt;. Head over to the &lt;a href="http://windowsazure.com/en-us/develop/java/"&gt;Windows Azure Developer Center&lt;/a&gt; to learn more.&lt;/li&gt;
&lt;li&gt;Does your application need advanced search capabilities? If so, the chances are you either use or are evaluating &lt;a href="http://lucene.apache.org/solr/"&gt;Solr&lt;/a&gt;, and so the good news for you is that we just released a set of &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235931"&gt;code tools&lt;/a&gt; and &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235930"&gt;configuration guidelines&lt;/a&gt; to get the most out of Solr running on Windows Azure. We invite developers to try out the tools, configuration and sample code for Solr tuned for searching commercial and publisher sites. The &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235930"&gt;published guidance&lt;/a&gt; showcases how to configure and host Solr/Lucene in Windows Azure using multi-instance replication for index-serving and single-instance for index generation with a persistent index mounted in Windows Azure storage.&lt;/li&gt;
&lt;li&gt;Another great example of OSS on Windows Azure is the use of &lt;a href="http://memcached.org/"&gt;Memcached&lt;/a&gt; server, the popular open-source caching technology, to improve the performance of dynamic web applications. Maarten Balliauw recently blogged about his &lt;a href="http://blog.maartenballiauw.be/post/2011/10/21/Running-Memcached-on-Windows-Azure-for-PHP.aspx"&gt;MemcacheScaffolder&lt;/a&gt;, which simplifies management of Memcached servers on the Windows Azure platform. That blog post is only focused on PHP, but the same approach can be used by &lt;a href="http://code.google.com/p/memcached/wiki/Clients"&gt;other languages supported by Memcached&lt;/a&gt; as well.&lt;/li&gt;
&lt;li&gt;Scaling data in the Cloud is very important. Today, the SQL Azure team made &lt;a href="http://go.microsoft.com/fwlink/?LinkId=236799"&gt;SQL Azure Federation&lt;/a&gt; available.&amp;nbsp; This new feature provides built-in support for data sharding (horizontal partitioning of data) to elastically scale-out data in the cloud. I am thrilled to announce that concurrent with the release of this new feature, we have released a new specification called &lt;a href="http://go.microsoft.com/fwlink/?LinkId=236798"&gt;SQL Database Federations&lt;/a&gt;, which describes additional SQL capabilities that enable data sharding (horizontal partitioning of data) for scalability in the cloud, under the &lt;a href="http://www.microsoft.com/openspecifications/en/us/programs/osp/default.aspx"&gt;Microsoft Open Specification Promise&lt;/a&gt;. With those additional SQL capabilities, the database tier can provide built-in support for data sharding to elastically scale-out data in the cloud, as covered in &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/12/12/sql-database-federations-enhancing-sql-to-enable-data-sharding-for-scalability-in-the-cloud.aspx"&gt;Ram Jeyaraman&amp;rsquo;s post &lt;/a&gt;on this blog.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In addition to all this great news, the Windows Azure experience has also been significantly improved and streamlined. This includes simplified subscription management and billing, a guaranteed free 90-day trial with quick sign-up process, reduced prices, improved database scale and management, and more. Please see the &lt;a href="http://blogs.msdn.com/b/windowsazure/archive/2011/12/12/improved-developer-experience-interoperability-and-scalability-on-windows-azure.aspx"&gt;Windows Azure team blog&lt;/a&gt; post for insight on all the great news.&lt;/p&gt;
&lt;p&gt;As we enter the holiday season, I&amp;rsquo;m happy to see Windows Azure continuing on its roadmap of embracing OSS tools developers know and love, by working collaboratively with the open source community to build together a better cloud that supports all developers and their need for interoperable solutions based on developer choice.&lt;/p&gt;
&lt;p&gt;In conclusion, I just want to stress that we intend to keep listening, so please send us your feedback. Rest assured we&amp;rsquo;ll take note!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10246512" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/eclipse/">eclipse</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/azure/">azure</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/PHP/">PHP</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/java/">java</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/-NET/">.NET</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/web+services/">web services</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/open+source/">open source</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/javascript/">javascript</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/NodeJS/">NodeJS</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/jquery/">jquery</category></item><item><title>SQL Database Federations: Enhancing SQL to enable Data Sharding for Scalability in the Cloud </title><link>http://blogs.msdn.com/b/interoperability/archive/2011/12/12/sql-database-federations-enhancing-sql-to-enable-data-sharding-for-scalability-in-the-cloud.aspx</link><pubDate>Mon, 12 Dec 2011 15:17:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10246758</guid><dc:creator>Ram Jeyaraman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10246758</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/12/12/sql-database-federations-enhancing-sql-to-enable-data-sharding-for-scalability-in-the-cloud.aspx#comments</comments><description>&lt;p&gt;I am thrilled to announce the availability of a new specification called &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235219"&gt;SQL Database Federations&lt;/a&gt;, which describes additional SQL capabilities that enable data sharding (horizontal partitioning of data) for scalability in the cloud.&lt;/p&gt;
&lt;p&gt;The specification has been released under the &lt;a href="http://www.microsoft.com/openspecifications/en/us/programs/osp/default.aspx"&gt;Microsoft Open Specification Promise&lt;/a&gt;. With these additional SQL capabilities, the database tier can provide built-in support for data sharding to elastically scale-out the data. This is yet another milestone in our Openness and Interoperability journey.&lt;/p&gt;
&lt;p&gt;As you may know, multi-tier applications scale-out their front and middle tiers for elastic scale-out. With this model, as the demand on the application varies, administrators add and remove new instances of the front end and middle tier nodes to handle the workload.&lt;/p&gt;
&lt;p&gt;However, the database tier in general does not yet provide built-in support for such an elastic scale-out model and, as a result, applications had to custom build their own data-tier scale-out solution. Using the additional SQL capabilities for data sharding described in the &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235219"&gt;SQL Database Federations&lt;/a&gt; specification the database tier can now provide built-in support to elastically scale-out the data-tier much like the middle and front tiers of applications. Applications and middle-tier frameworks can also more easily use data sharding and delegate data tier scale-out to database platforms.&lt;/p&gt;
&lt;p&gt;Openness and interoperability are important to Microsoft, our customers, partners, and developers, and so the publication of &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235219"&gt;SQL Database Federations&lt;/a&gt; specification under the &lt;a href="http://www.microsoft.com/openspecifications/en/us/programs/osp/default.aspx"&gt;Microsoft Open Specification Promise&lt;/a&gt; will enable applications and middle-tier frameworks to more easily use data sharding, and also enable database platforms to provide built-in support for data sharding&amp;nbsp; in order to elastically scale-out the data.&lt;/p&gt;
&lt;p&gt;Also of note: The additional SQL capabilities for data sharding described in the &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235219"&gt;SQL Database Federations&lt;/a&gt; specification are now supported in &lt;a href="http://www.windowsazure.com/en-us/home/tour/database/"&gt;Microsoft SQL Azure&lt;/a&gt; via the &lt;a href="http://go.microsoft.com/fwlink/?LinkId=236799"&gt;SQL Azure Federation&lt;/a&gt; feature.&lt;/p&gt;
&lt;p&gt;Here is an example that uses &lt;a href="http://www.windowsazure.com/en-us/home/tour/database/"&gt;Microsoft SQL Azure&lt;/a&gt; to illustrate the use of the additional SQL capabilities for data sharding described in the &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235219"&gt;SQL Database Federations&lt;/a&gt; specification.&lt;/p&gt;
&lt;p&gt;-- Assume the existence of a user database called sales_db. Connect to sales_db and create a federation called orders_federation to scale out the tables: customers and orders. This creates the federation represented as an object in the sales_db database (root database for this federation) and also creates the first federation member of the federation.&lt;/p&gt;
&lt;p&gt;CREATE FEDERATION orders_federation(c_id BIGINT RANGE) &lt;br /&gt;GO&lt;/p&gt;
&lt;p&gt;-- Deploy schema to root, create tables in the root database (sales_db)&lt;/p&gt;
&lt;p&gt;CREATE TABLE application_configuration(&amp;hellip;) &lt;br /&gt;GO&lt;/p&gt;
&lt;p&gt;&amp;hellip;&lt;/p&gt;
&lt;p&gt;-- Connect to the federation member and deploy schema to the federation member&lt;/p&gt;
&lt;p&gt;USE FEDERATION orders_federation(c_id=0) &amp;hellip; &lt;br /&gt;GO&lt;/p&gt;
&lt;p&gt;-- Create federated tables: customers and orders&lt;/p&gt;
&lt;p&gt;CREATE TABLE customers (customer_id BIGINT PRIMARY KEY, &amp;hellip;) FEDERATED ON (c_id = customer_id) &lt;br /&gt;GO&lt;/p&gt;
&lt;p&gt;CREATE TABLE orders (&amp;hellip;, customer_id BIGINT NOT NULL) FEDERATED ON (c_id = customer_id) &lt;br /&gt;GO&lt;/p&gt;
&lt;p&gt;-- To scale out customer&amp;rsquo;s orders, SPLIT the federation data into two federation members&lt;/p&gt;
&lt;p&gt;USE FEDERATION ROOT &amp;hellip; &lt;br /&gt;GO&lt;/p&gt;
&lt;p&gt;ALTER FEDERATION orders_federation SPLIT AT(c_id=100) &lt;br /&gt;GO&lt;/p&gt;
&lt;p&gt;-- Connect to the federation member that contains the value &amp;lsquo;55&amp;rsquo;&lt;/p&gt;
&lt;p&gt;USE FEDERATION orders_federation(c_id=55) &amp;hellip; &lt;br /&gt;GO&lt;/p&gt;
&lt;p&gt;-- Query the federation member that contains the value &amp;lsquo;55&amp;rsquo;&lt;/p&gt;
&lt;p&gt;UPDATE orders SET last_order_date=getutcdate()&amp;hellip; &lt;br /&gt;GO&lt;/p&gt;
&lt;p&gt;I am confident that you will find the additional SQL capabilities for data sharding described in the &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235219"&gt;SQL Database Federations&lt;/a&gt; specification very useful as you consider scaling-out the data-tier of your applications. We welcome your &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/ssdsgetstarted/threads"&gt;feedback&lt;/a&gt; on the &lt;a href="http://go.microsoft.com/fwlink/?LinkId=235219"&gt;SQL Database Federations&lt;/a&gt; specification.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Ram Jeyaraman&lt;/p&gt;
&lt;p&gt;Senior Program Manager, &lt;a href="http://blogs.msdn.com/b/interoperability"&gt;Microsoft&amp;rsquo;s Interoperability Group&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10246758" width="1" height="1"&gt;</description></item><item><title>HTML5 Labs Prototype Update for W3C Media Capture API</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/12/09/media-capture-api-helping-web-developers-directly-import-image-video-and-sound-data-into-web-apps.aspx</link><pubDate>Sat, 10 Dec 2011 00:40:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10246241</guid><dc:creator>Peter Galli</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10246241</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/12/09/media-capture-api-helping-web-developers-directly-import-image-video-and-sound-data-into-web-apps.aspx#comments</comments><description>&lt;div class="post-content user-defined-markup"&gt;
&lt;div class="post-content user-defined-markup"&gt;
&lt;p&gt;Today, the Internet Explorer blog posted an interesting update of an HTML5Labs prototype of the W3C &lt;a href="http://www.w3.org/TR/media-capture-api/"&gt;&lt;span style="color: #0000ff;" color="#0000ff"&gt;Media Capture API&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;&amp;nbsp;&lt;/span&gt;A usable and standardized API for media capture means Web sites and apps will be able to access these features in a common way across all browsers in the future.&lt;/p&gt;
&lt;p&gt;You can read the full post on the &lt;a href="http://blogs.msdn.com/b/ie/archive/2011/12/09/media-capture-api-helping-web-developers-directly-import-image-video-and-sound-data-into-web-apps.aspx" target="_blank"&gt;&lt;span style="color: #0000ff;" color="#0000ff"&gt;IE blog&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10246241" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/IE/">IE</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/html5/">html5</category></item><item><title>Preview Release of the SQL Server ODBC Driver for Linux Hits the Streets</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/11/30/preview-release-of-the-sql-server-odbc-driver-for-linux-hits-the-streets.aspx</link><pubDate>Thu, 01 Dec 2011 03:24:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10242670</guid><dc:creator>Peter Galli</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10242670</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/11/30/preview-release-of-the-sql-server-odbc-driver-for-linux-hits-the-streets.aspx#comments</comments><description>&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Microsoft's SQL Server team yesterday announced the availability of a preview release of the SQL Server ODBC Driver for Linux, which allows native developers to access Microsoft SQL Server from Linux operating systems. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;For customers with native applications on multi-platform, the existing, reliable and enterprise-class ODBC for Windows driver (a.k.a. SQL Server Native Client, or SNAC) has been ported to the Linux platform.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;You can download the driver &lt;/span&gt;&lt;a href="http://www.microsoft.com/download/en/details.aspx?id=28160" target="_blank"&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;here&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;"In this release, the SQL Server ODBC Driver for Linux will be a 64-bit driver for Red Hat Enterprise Linux 5. We will support SQL Server 2008 R2 and SQL Server 2012 with this release of the driver. Notable driver features (in addition to what you would expect in an ODBC driver) include support for the Kerberos authentication protocol, SSL and client-side UTF-8 encoding. This release also brings proven and effective tools and the BCP and SQLCMD utilities to the Linux world,"said Shekhar Joshi, a Senior Program Manager on the Microsoft SQL Server ODBC Driver For Linux team.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;This is another example of Microsoft and the SQL team's commitment to interoperability. &lt;/span&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;You can read Shekhar's full blog post &lt;/span&gt;&lt;a href="http://blogs.technet.com/b/dataplatforminsider/archive/2011/11/28/available-today-preview-release-of-the-sql-server-odbc-driver-for-linux.aspx" target="_blank"&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;here&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;, while additional information on the first release of Microsoft ODBC Driver for Linux can be found &lt;/span&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/hh568451(SQL.110).aspx" target="_blank"&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;here&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10242670" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/sql+server/">sql server</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/open+source/">open source</category></item><item><title>Prototypes of JavaScript Globalization &amp; Math, String, and Number extensions</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/11/21/prototypes-of-javascript-globalization-amp-math-string-and-number-extensions.aspx</link><pubDate>Mon, 21 Nov 2011 22:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10239281</guid><dc:creator>Claudio Caldato</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10239281</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/11/21/prototypes-of-javascript-globalization-amp-math-string-and-number-extensions.aspx#comments</comments><description>&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;As the HTML5 platform becomes more fully featured, web applications become richer, and scenarios that require server side interaction for trivial tasks become more tedious. &amp;nbsp;This makes deficits in the capabilities of JavaScript as a runtime come into focus. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;Microsoft is committed to advancing the JavaScript standard. Through active participation in the &lt;/span&gt;&lt;a href="http://www.ecma-international.org" target="_blank"&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;Ecma&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt; &lt;/span&gt;&lt;span style="color: #0000ff; font-family: Calibri;" face="Calibri" color="#0000ff"&gt;&lt;a href="http://www.ecma-international.org/memento/TC39.htm"&gt;TC39&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt; working group, we have endorsed and pushed for the completion of proposed standards which provide extensions to the intrinsic &lt;/span&gt;&lt;a href="http://wiki.ecmascript.org/doku.php?id=harmony:more_math_functions" target="_blank"&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;Math&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;, &lt;/span&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;&lt;a href="http://wiki.ecmascript.org/doku.php?id=harmony:number.isinteger" target="_blank"&gt;Number&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;, and &lt;/span&gt;&lt;a href="http://wiki.ecmascript.org/doku.php?id=harmony:string_extras" target="_blank"&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;String&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt; libraries and introduce support for &lt;/span&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;&lt;a href="http://wiki.ecmascript.org/doku.php?id=globalization:specification_drafts" target="_blank"&gt;Globalization&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;. We shared the first version of prototypes for the libraries at the standards meeting on the Microsoft campus in July and are shared our Globalization implementation at the standards meeting last week at Apple&amp;rsquo;s Cupertino campus. In addition, we are also releasing these reference implementations so that the JavaScript community can provide feedback on applying their use in practice. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: medium;" size="4"&gt;&lt;span style="color: #4f81bd;" color="#4f81bd"&gt;&lt;span style="font-family: Cambria;" face="Cambria"&gt;What&amp;rsquo;s in this drop&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;&lt;span style="font-size: small;" size="3"&gt;This drop includes extensions to the Math, Number, and String built-in libraries: &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="font-size: small;" size="3"&gt;Math&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="font-size: small;" size="3"&gt;String&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="font-size: small;" size="3"&gt;Number&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;cosh, sinh, tanh&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;startsWith, endsWith&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;isFinite&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;acosh, asinh, atanh&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;contains&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;isNaN&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;log1p, log2, log10&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Repeat&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;isInteger&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;sign&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;toArray&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;toInteger&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;trunc&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;reverse&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="213"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;To illustrate, a simple code sample using some of these functions is included below:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;code class="js"&gt;var aStr = "24-"; &lt;br /&gt; var aStrR = aStr.reverse(); &lt;br /&gt; var num = aStrR * 1;&lt;br /&gt; if (Number.isInteger(num)) { &lt;br /&gt; console.log("The sign of " + num + " is " + Math.sign(num)); &lt;br /&gt; };&lt;br /&gt; &lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;This drop also includes an implementation of the evolving Globalization specification. Globalization is the software discipline that makes sure that applications can deal correctly with changes in number and date formats, for example. It&amp;rsquo;s a part of the localization of an application to run in a local language. With this library, you can show date and numbers in the specified locale and specify collation properties for the purposes of sorting and searching in other languages. You can also set standard date and number formats to use alternate calendars like the Islamic calendar or formats to show currency as a Chinese Yuan. Again, a code sample illustrates below: &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;pre class="scroll"&gt;&lt;code class="cplusplus"&gt;var nf = new Globalization.NumberFormat(localeList, {&lt;br /&gt; style : "currency",&lt;br /&gt; currency : "CNY",&lt;br /&gt; currencyDisplay: "symbol",&lt;br /&gt; maxmimumFractionDigit: 1&lt;br /&gt; })&lt;br /&gt; &lt;br /&gt; nf.format(100); // "&amp;yen;100.00"&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; var dtf = new Globalization.DateTimeFormat(&lt;br /&gt; new Globalization.LocaleList(["ar-SA-u-ca-islamic-nu-latin"]), {&lt;br /&gt; weekday : "long",&lt;br /&gt; })&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; dtf.format() // today's date&lt;br /&gt; dtf.format(new Date("11/15/2011")); // "الثلاثاء, ١٢ ١٩ ٣٢"&lt;br /&gt; &lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-size: medium;" size="4"&gt;&lt;span style="color: #4f81bd;" color="#4f81bd"&gt;&lt;span style="font-family: Cambria;" face="Cambria"&gt;How to get the bits&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;The prototypes should install automatically if you view the &lt;/span&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;&lt;a href="http://html5labs.interoperabilitybridges.com/tc39_demos/JsExtensions/" target="_blank"&gt;Intrinsics Extensions demo&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt; and the &lt;/span&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;&lt;a href="http://html5labs.interoperabilitybridges.com/tc39_demos/JsGlobalization/" target="_blank"&gt;Globalization demo&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;. Or to install the prototype, run the MSIs found &lt;/span&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;&lt;a href="http://html5labs.com/prototypes/javascript-ie-extensions/javascript-extensions/download" target="_blank"&gt;here&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Note that as with all previous releases of HTML5 labs, this is an unsupported component with an indefinite lifetime. This should be used for evaluation purposes only and should not be used for production level applications. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: medium;" size="4"&gt;&lt;span style="color: #4f81bd;" color="#4f81bd"&gt;&lt;span style="font-family: Cambria;" face="Cambria"&gt;Providing Feedback&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;We&amp;rsquo;ve created a couple of sample applications so you can see what this functionality enables.&amp;nbsp; Once you&amp;rsquo;ve installed the bits, view the &lt;/span&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;&lt;a href="http://html5labs.interoperabilitybridges.com/tc39_demos/JsExtensions/" target="_blank"&gt;Intrinsics Extensions&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt; demo and the &lt;/span&gt;&lt;span style="color: #0000ff; font-family: Calibri; font-size: small;" size="3" face="Calibri" color="#0000ff"&gt;&lt;a href="http://html5labs.interoperabilitybridges.com/tc39_demos/JsGlobalization/" target="_blank"&gt;Globalization&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt; demo to see the APIs in action.&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;As usual, we encourage you to play with the sample apps, download the prototype, and develop your own app to see how it feels. Once you&amp;rsquo;ve tried it out, let us know if you have any feedback or suggestions. We look forward to improving JavaScript and making it ever easier to build great web applications using standard APIs.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Thanks for your interest!&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Claudio Caldato, Adalberto Foresti &amp;ndash; Interoperability Strategy Team&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Calibri; font-size: small;" size="3" face="Calibri"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10239281" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/javascript/">javascript</category></item><item><title>jQuery Mobile Open Source Framework Support for Windows Phone</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/11/18/jquery-mobile-open-source-framework-support-for-windows-phone.aspx</link><pubDate>Fri, 18 Nov 2011 08:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10238446</guid><dc:creator>Abu Obeida</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10238446</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/11/18/jquery-mobile-open-source-framework-support-for-windows-phone.aspx#comments</comments><description>&lt;p&gt;&lt;span style="font-size: small;"&gt;Hello web and mobile developers!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;As you probably noticed, jQuery Mobile version 1.0 was announced &lt;a href="http://jquerymobile.com/blog/2011/11/16/announcing-jquery-mobile-1-0/" target="_blank"&gt;this week&lt;/a&gt;. We are pleased to use this exciting occasion to reinforce our commitment to supporting popular open source mobile frameworks. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;Of the most recent activities, I want to highlight the work done to &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/09/08/phonegap-mobile-html5-framework-adding-support-for-windows-phone-mango.aspx" target="_blank"&gt;supporting PhoneGap&lt;/a&gt; by adding support for Windows Phone 7.5 (Mango), and now we are moving up the stack to improve support of jQuery Mobile on Windows Phone 7.5.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;As you probably know, &lt;a href="http://jquerymobile.com/" target="_blank"&gt;jQuery Mobile&lt;/a&gt; framework is a Javascript HTML5-based user interface system for mobile device platforms, built on the jQuery and jQuery UI foundation.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;While today&amp;rsquo;s version 1 and the recent RC releases contain many features, we wanted to take a minute and highlight the collaboration we started with the jQuery Mobile team. In the last few weeks we have focused our attention on supporting Kin Blas and others in the community to improving the performance on Windows Phone 7.5. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;In particular, as the &lt;a href="http://jquerymobile.com/blog/2011/11/13/jquery-mobile-rc3-released/" target="_blank"&gt;RC3 blog&lt;/a&gt; published earlier this week outlines, Windows Phone performance has improved quite dramatically as shown by the two showcase apps:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-size: small;"&gt;226%&lt;/span&gt;&lt;span style="font-size: small;"&gt; improvement in rendering the form gallery, bringing it down from 5 to 2.2&amp;nbsp;seconds&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-size: small;"&gt;20x &lt;/span&gt;&lt;span style="font-size: small;"&gt;improvement in rendering the complex 400 item listview, from 60 seconds to&amp;nbsp;3 seconds&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;The jQuery team has additional performance optimization tips for Windows Phone in the &lt;a href="http://jquerymobile.com/blog/2011/11/13/jquery-mobile-rc3-released/#changelog" target="_blank"&gt;change log&lt;/a&gt; that saves additional perf time in certain scenarios.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;We are pretty encouraged with this progress, and will continue working with community to bring higher levels of performance and support for jQuery features to Windows Phone... stay tuned, and congratulations again to the jQuery Mobile Team!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;Abu Obeida Bakhach&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;Interoperability Strategy Program Manager&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10238446" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/html5/">html5</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/iphone/">iphone</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/Android/">Android</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/windows+phone/">windows phone</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/mango/">mango</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/jquery+mobile/">jquery mobile</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/jquery/">jquery</category></item><item><title>First Stable Build of Node.js on Windows Released</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/11/07/first-stable-build-of-nodejs-on-windows-released.aspx</link><pubDate>Mon, 07 Nov 2011 18:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10233812</guid><dc:creator>Claudio Caldato</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10233812</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/11/07/first-stable-build-of-nodejs-on-windows-released.aspx#comments</comments><description>&lt;p&gt;Great news for all Node.js developers wanting to use Windows: today we reached an important milestone - &lt;a href="http://blog.nodejs.org/2011/11/05/node-v0-6-0/" target="_blank"&gt;v0.6.0&lt;/a&gt; &amp;ndash; which is the first official stable build that includes Windows support.&lt;/p&gt;
&lt;p&gt;This comes some four months after our&lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/06/23/microsoft-working-with-joyent-and-the-node-community-to-bring-node-js-to-windows.aspx" target="_blank"&gt; June 23rd&lt;/a&gt; announcement that Microsoft was working with Joyent to port Node.js to Windows. Since then we&amp;rsquo;ve been heads down writing code.&lt;/p&gt;
&lt;p&gt;Those developers who have been following our progress on GitHub know that there have been Node.js builds with Windows support for a while, but today we reached the all-important v0.6.0 milestone.&lt;/p&gt;
&lt;p&gt;This accomplishment is the result of a great collaboration with Joyent and its team of developers. With the dedicated team of Igor Zinkovsky, Bert Belder and Ben Noordhuis under the leadership of Ryan Dahl, we were able to implement all the features that let Node.js run natively on Windows.&lt;/p&gt;
&lt;p&gt;And, while we were busy making the core Node.js runtime run on Windows, the Azure team was working on &lt;a href="http://tomasz.janczuk.org/2011/08/hosting-nodejs-applications-in-iis-on.html" target="_blank"&gt;iisnode&lt;/a&gt; to enable Node.js to be hosted in IIS. Among other significant benefits, Windows native support gave Node.js significant performane improvements, as reported by Ryan on the &lt;a href="http://blog.nodejs.org/2011/11/05/node-v0-6-0/" target="_blank"&gt;Node.js.org blog&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Node.js developers on Windows will also be able to rely on NPM to install the modules they need for their application. Isaac Shlueter from the Joyent team is also currently working on porting NPM on Windows, and an early &lt;a href="http://npmjs.org/doc/README.html#Installing-on-Windows-Experimental" target="_blank"&gt;experimental version&lt;/a&gt; is already available on GitHub. The good news is that soon we&amp;rsquo;ll have a stable build integrated in the Node.js installer for Windows.&lt;/p&gt;
&lt;p&gt;So stay tuned for more news on this front.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Claudio Caldato,&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Principal Program Manager, Interoperability Strategy Team&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;" size="3"&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;" size="2"&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10233812" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/NodeJS/">NodeJS</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/Windows/">Windows</category></item><item><title>Windows Gets Eclipse Platform Improvements</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/11/02/windows-gets-eclipse-platform-improvements.aspx</link><pubDate>Wed, 02 Nov 2011 18:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10232569</guid><dc:creator>M. Sawicki</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10232569</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/11/02/windows-gets-eclipse-platform-improvements.aspx#comments</comments><description>&lt;p&gt;Today, David Green at Tasktop posted &lt;a href="http://tasktop.com/blog/eclipse/eclipse-platform-improvements-for-microsoft-windows"&gt;a blog&lt;/a&gt; about the latest Eclipse platform improvements for Windows. As part of Tasktop&amp;rsquo;s ongoing partnership with Microsoft, they&amp;rsquo;ve been working hard to bring two more Eclipse platform improvements for Windows this year: Desktop Search and Glass.&lt;/p&gt;
&lt;p&gt;You can read more about both of these improvements &lt;a href="http://tasktop.com/blog/eclipse/eclipse-platform-improvements-for-microsoft-windows"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We look forward to continuing to work with both Tasktop and the Eclipse community going forward, and would love to hear from you about new features you would like to see in the future. Feel free to let David know about these at &lt;a href="mailto:david.green@tasktop.com."&gt;david.green@tasktop.com.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;Martin Sawicki&lt;/p&gt;
&lt;p&gt;Principal Program Manager: Interoperability&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10232569" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/eclipse/">eclipse</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/Windows/">Windows</category></item><item><title>W3Conf: Get up to Speed on the Modern Open Web Platform</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/10/26/w3conf-get-up-to-speed-on-the-modern-open-web-platform.aspx</link><pubDate>Wed, 26 Oct 2011 19:56:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10230346</guid><dc:creator>paulcotton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10230346</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/10/26/w3conf-get-up-to-speed-on-the-modern-open-web-platform.aspx#comments</comments><description>&lt;p&gt;Are you a Web developer, designer or just interested in the space? Well, if you are, you really don&amp;rsquo;t want to miss &lt;a href="http://www.w3.org/conf/" target="_blank"&gt;W3Conf&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;W3Conf is the &lt;a href="http://www.w3c.org/" target="_blank"&gt;W3C&lt;/a&gt;'s first ever 2-day conference for developers and designers, and is uniquely focused on cutting edge technologies that work today across browsers.&lt;/p&gt;
&lt;p&gt;It is being held in Redmond, Washington November 15-16 2011 and it&amp;rsquo;s packed with top-notch presentations by leading experts in the Web industry on HTML5, CSS3, graphics, accessibility, multimedia, APIs and more.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m participating in the &amp;ldquo;Browsers and Standards: Where the Rubber Hits the Road&amp;rdquo; panel discussion, along with Tantek &amp;Ccedil;elik from Mozilla, Google&amp;rsquo;s Chris Wilson and Divya Manian from Opera.&lt;/p&gt;
&lt;p&gt;Microsoft is proud to be the host sponsor of the event, joined by AT&amp;amp;T, Adobe, and Nokia.&lt;/p&gt;
&lt;p&gt;There are several ways to experience this conference: you can &lt;a href="http://w3conf2011.eventbrite.com/" target="_blank"&gt;register&lt;/a&gt; to attend in person; videos of the presentations (with English captioning) will be streamed live over the Web; and recordings will be archived and made freely available for future reference. Note that the Early Bird registration conference and hotel discount expires on October 31.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can find all the details on the schedule, speakers, and the technologies themselves on the &lt;a href="http://w3conf.org/" target="_blank"&gt;conference web site&lt;/a&gt;, which demonstrates the features enabled in modern browsers and authoring tools to make attractive, interactive, and accessible websites using emerging standards from W3C and other bodies. In other words, the site itself &amp;ldquo;eats the open web dog food.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;Along with my colleagues on the Interoperability Team, I believe this will be a great event, and encourage you to attend virtually or in person.&lt;/p&gt;
&lt;p&gt;I look forward to seeing you there!&lt;/p&gt;
&lt;p&gt;Paul Cotton&lt;/p&gt;
&lt;p&gt;Co-Chair: HTML Working Group&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10230346" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/cloud/">cloud</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/web+services/">web services</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/IE/">IE</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/standards/">standards</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/w3c/">w3c</category></item><item><title>AMQP 1.0 Specification Now Available </title><link>http://blogs.msdn.com/b/interoperability/archive/2011/10/12/amqp-1-0-specification-now-available.aspx</link><pubDate>Wed, 12 Oct 2011 13:05:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10223635</guid><dc:creator>Ram Jeyaraman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10223635</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/10/12/amqp-1-0-specification-now-available.aspx#comments</comments><description>&lt;p&gt;I am happy to report that today the &lt;a href="http://amqp.org/" target="_blank"&gt;&lt;span style="color: #0078c9;" color="#0078c9"&gt;Advanced Message Queuing Protocol (AMQP) Working Group&lt;/span&gt;&lt;/a&gt; announced the availability of the AMQP 1.0 specification.&lt;/p&gt;
&lt;p&gt;I am in New York attending the fourth annual &lt;a href="https://www.seeuthere.com/rsvp/invitation/registration.asp?id=m2625a30-1X7H96TBR7UDP&amp;amp;sutEventRoleID=m2625a30-VUF2A1L58AQ3&amp;amp;sutGuid=40796" target="_blank"&gt;&lt;span style="color: #0078c9;" color="#0078c9"&gt;AMQP business messaging conference&lt;/span&gt;&lt;/a&gt; and launch event for this important milestone,&amp;nbsp;and Microsoft is thrilled to have been able to participate in the work to get the specification to this point.&lt;/p&gt;
&lt;p&gt;As an open, interoperable, high-performance messaging protocol, AMQP opens up new possibilities in communications that span the client to the cloud, and will provide customers with increased choice.&lt;/p&gt;
&lt;p&gt;AMQP has been developed over the years through the collective work of the 24 companies - and the many diverse communities they represent - that constitute the AMQP Working Group, including JP Morgan, VMware, Red Hat, Deutsche Borse Group, Microsoft, INETCO Systems,&amp;nbsp;Goldman Sachs,&amp;nbsp;and WS02.&lt;/p&gt;
&lt;p&gt;These WG members are all committed to working together on open standards and represent a diverse range of communities, many of them Open Source.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Microsoft has been a member of the AMQP WG&amp;nbsp;since 2008 and&amp;nbsp;we have actively contributed to the development and testing of the protocol.&lt;/p&gt;
&lt;p&gt;We are also supportive of, and excited about, the transition of the AMQP work to &lt;a href="http://www.oasis-open.org/" target="_blank"&gt;&lt;span style="color: #0078c9;" color="#0078c9"&gt;OASIS&lt;/span&gt;&lt;/a&gt;, a consortium whose goal is to advance open standards, and the subsequent standardization of AMQP 1.0, which is an important first step towards wider adoption of the specification.&lt;/p&gt;
&lt;p&gt;Microsoft supports thousands of standards in its products and we actively participate in more than 150 standards organizations and over 350 working groups worldwide. We will continue to participate actively in these standards bodies, contributing to the development of new open standards and the improvement of existing standards.&lt;/p&gt;
&lt;p&gt;We recognize that no single company can address interoperability challenges on its own and that collaboration with customers, partners, open source communities&amp;nbsp;and other vendors is of critical importance. This collaboration includes open communication on the &lt;a href="http://www.microsoft.com/openspecifications/en/us/programs/other/interoperability-principles/default.aspx"&gt;interoperability&lt;/a&gt; challenges that customers are experiencing and the ways in which those challenges can be addressed.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.technet.com/b/port25/" target="_blank"&gt;&lt;span style="color: #0078c9;" color="#0078c9"&gt;Openness&lt;/span&gt;&lt;/a&gt; and &lt;a href="http://blogs.msdn.com/b/interoperability/" target="_blank"&gt;&lt;span style="color: #0078c9;" color="#0078c9"&gt;interoperability&lt;/span&gt;&lt;/a&gt; are important to Microsoft, our customers, partners, and developers, and AMQP has the potential to improve interoperability between various vendor products, which is extremely important to our customers.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Ram Jeyaraman&lt;/p&gt;
&lt;p&gt;Technical Diplomat: Microsoft's Interoperability Group&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10223635" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/web+services/">web services</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/standards/">standards</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/open+source/">open source</category></item><item><title>More guidance and tool for porting iPhone &amp; Android apps to Windows Phone</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/10/10/more-guidance-and-tool-for-porting-iphone-amp-android-apps-to-windows-phone.aspx</link><pubDate>Mon, 10 Oct 2011 17:20:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10222570</guid><dc:creator>JC Cimetiere</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10222570</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/10/10/more-guidance-and-tool-for-porting-iphone-amp-android-apps-to-windows-phone.aspx#comments</comments><description>&lt;p&gt;[Cross-posted on the &lt;a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/10/10/more-guidance-and-tool-for-porting-iphone-amp-android-apps-to-windows-phone.aspx"&gt;Windows Phone Developer Blog&lt;/a&gt;]&lt;/p&gt;
&lt;p&gt;Windows Phone 7.5 &amp;ldquo;Mango&amp;rdquo; is just out of the door, &lt;a href="http://windowsteamblog.com/windows_phone/b/windowsphone/archive/2011/10/03/windows-phone-7-5-update-status.aspx"&gt;smoothly going to users&amp;rsquo; phone&lt;/a&gt;s. So, if you or your friends haven&amp;rsquo;t started to look at Windows Phone, this is great timing.&lt;/p&gt;
&lt;p&gt;Today I&amp;rsquo;m excited to announce new guidance based on migration samples and a SQLite to SQL Server Compact database conversion tool. We hope that these new items combined with our previous extensive guides (for &lt;a href="http://windowsphone.interoperabilitybridges.com/articles/windows-phone-7-guide-for-android-application-developers"&gt;Android&lt;/a&gt;, &lt;a href="http://windowsphone.interoperabilitybridges.com/articles/windows-phone-7-guide-for-iphone-application-developers"&gt;iPhone&lt;/a&gt;, and &lt;a href="http://windowsphone.interoperabilitybridges.com/articles/windows-phone-7-guide-for-symbian-qt-application-developers"&gt;Symbian Qt&lt;/a&gt;) will accelerate your ramp up time and improve your experience in porting apps to Windows Phone from iPhone and Android. Read below to see what we&amp;rsquo;ve got for you.&lt;/p&gt;
&lt;h4&gt;Learn by example, from what you know&lt;/h4&gt;
&lt;p&gt;First we have built a series of samples to aid you in the process of migrating your iPhone &amp;amp; Android applications over to Windows Phone by providing a look at the differences and similarities of each platform. Through analysis, you'll see how to implement the same functionality on Windows Phone as you have within your iPhone and Android application. We&amp;rsquo;ve started with 3 samples:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;In-App Advertisements&lt;/li&gt;
&lt;li&gt;Geo-Location&lt;/li&gt;
&lt;li&gt;Group Messaging&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And for each sample, you&amp;rsquo;ll find the source code on Android/iPhone, the Windows Phone ported version and the porting notes. The content is available &lt;a href="http://windowsphone.interoperabilitybridges.com/articles/android-to-wp&amp;ndash;appendix-a-migration-samples"&gt;here for Android&lt;/a&gt;, and &lt;a href="http://windowsphone.interoperabilitybridges.com/articles/iphone-to-wp&amp;ndash;appendix-a-migration-samples"&gt;here for iPhone&lt;/a&gt;. And since we had a little bit of extra time, we added a bonus track for Android developers, with a &lt;a href="http://windowsphone.interoperabilitybridges.com/articles/android-to-windows-phone&amp;ndash;10-simple-tasks"&gt;&amp;ldquo;10 simple tasks: tips &amp;amp; tricks&amp;rdquo; article&lt;/a&gt;, where we explain how common simple tasks performed during Android development can be done when doing Windows Phone development.&lt;/p&gt;
&lt;p&gt;Finally, we also included a sample &amp;ldquo;Notification Service&amp;rdquo;, which shows how to build a multiplatform push-notification services supporting the different providers used by Android, iPhone and Windows Phone. Documentation is &lt;a href="http://windowsphone.interoperabilitybridges.com/articles/common-push-notification-service-sample"&gt;available here&lt;/a&gt; and sample code is &lt;a href="https://github.com/Interop-Bridges/Windows-Phone-Porting-Samples/tree/master/Push%20Notification"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;h4&gt;SQLite to SQL Server Compact database conversion tool&lt;/h4&gt;
&lt;p&gt;Windows Phone 7.5 &amp;ldquo;Mango&amp;rdquo; includes relational database support by way of Microsoft SQL Server Compact (SQLCE). So we thought it might be handy to create a tool to aid developers in getting their database (data, schemas and views) ported over to Windows Phone without too much trouble. Differences in data types between various database platforms can make the manual migration of your data a daunting task. SQLite2SQLCE is a tool developed to make the conversion process simple by converting a SQLite database into SQLCE while simultaneously creating the default classes needed to incorporate the new database into your Windows Phone application.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67-metablogapi/4370.clip_5F00_image002_5F00_409445E5.jpg"&gt;&lt;img style="background-image: none; margin: 0px 12px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="clip_image002" border="0" alt="clip_image002" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67-metablogapi/1323.clip_5F00_image002_5F00_thumb_5F00_14E37BE9.jpg" width="624" height="196" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;With the database conversion tool, we&amp;rsquo;ve also included a nifty tool designed to aid developers in converting their SQL queries to LINQ while simultaneously helping them to learn the new query language. LINQ (Language-Integrated Query) is a native data querying toolset integrated into the .NET Framework and use on Windows Phone.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67-metablogapi/3225.clip_5F00_image004_5F00_6689F63B.jpg"&gt;&lt;img style="background-image: none; margin: 0px 12px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="clip_image004" border="0" alt="clip_image004" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67-metablogapi/5050.clip_5F00_image004_5F00_thumb_5F00_5EFE86CE.jpg" width="515" height="329" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Documentation and a simple migration sample are available here. And by the way, the source code of these utilities is available on &lt;a href="http://sqlite2ce.codeplex.com/"&gt;CodePlex&lt;/a&gt;.&lt;/p&gt;
&lt;h4&gt;Updated API Mapping tool&lt;/h4&gt;
&lt;p&gt;The &lt;a href="http://wp7mapping.interoperabilitybridges.com/"&gt;API Mapping tool&lt;/a&gt; has been expanded: it now covers a few more features like sensors (Camera, Compass &amp;amp; Gyro), multitasking (notification, app switching &amp;amp; background agents) , data access (SQL, file access), launchers/choosers. &lt;br /&gt;The API Mapping tool is available here: &lt;a href="http://wp7mapping.interoperabilitybridges.com/"&gt;http://wp7mapping.interoperabilitybridges.com/&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;Porting apps to Windows Phone: we&amp;rsquo;re here to help!&lt;/h4&gt;
&lt;p&gt;Finally, once you&amp;rsquo;ve be through all &lt;a href="http://windowsphone.interoperabilitybridges.com/porting"&gt;our &amp;ldquo;Porting&amp;rdquo; guidance&lt;/a&gt;, I recommend that you follow at your own pace the &amp;ldquo;Window Phone Mango Jump Start&amp;rdquo; &lt;a href="http://channel9.msdn.com/posts/Mango-Jump-Start-01-Building-Windows-Phone-Apps-with-Visual-Studio-2010"&gt;online video training&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We encourage developers to leave comments and questions on any article. We are watching and we are open to feedback. If you see something missing or want to suggest new API mapping or porting topic to include just go to &lt;a href="http://wp7mapping.uservoice.com/"&gt;http://wp7mapping.uservoice.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Jean-Christophe Cimetiere-&lt;a href="http://twitter.com/jccim"&gt;@jccim&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10222570" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/iphone/">iphone</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/WindowsPhone/">WindowsPhone</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/Android/">Android</category></item><item><title>OpenNebula Clouds on Windows Server Hyper-V</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/10/03/opennebula-clouds-on-windows-server-hyper-v.aspx</link><pubDate>Mon, 03 Oct 2011 19:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10219282</guid><dc:creator>Peter Galli</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10219282</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/10/03/opennebula-clouds-on-windows-server-hyper-v.aspx#comments</comments><description>&lt;p&gt;More good news on Microsoft's commitment to Interoperability in the cloud: last week Sandy Gupta, the General Manager for Microsoft's Open Solutions Group, &lt;a href="http://blogs.technet.com/b/openness/archive/2011/09/26/microsoft-supports-the-creation-of-opennebula-clouds-on-windows-server-hyper-v.aspx" target="_blank"&gt;&lt;b&gt;announced&lt;/b&gt;&lt;/a&gt; that Windows Server Hyper-V is now an officially supported hypervisor for OpenNebula.&lt;/p&gt;
&lt;p&gt;This open source project is working on a prototype for release next month and it will soon be possible for customers to build and manage OpenNebula clouds on a Hyper-V based virtualization platform.&lt;/p&gt;
&lt;p&gt;"Windows Server Hyper-V is an enterprise class virtualization platform that is getting rapidly and widely deployed in the industry. Given the highly heterogeneous environments in today&amp;rsquo;s data centers and clouds, we are seeing enablement of various Linux distributions including &lt;a href="http://blogs.technet.com/b/openness/archive/2011/07/25/microsoft-suse-2-0.aspx" target="_blank"&gt;&lt;b&gt;SUSE&lt;/b&gt;&lt;/a&gt;, &lt;a href="http://blogs.technet.com/b/openness/archive/2011/05/15/expanding-interoperability-to-community-linux.aspx" target="_blank"&gt;&lt;b&gt;CentOS&lt;/b&gt;&lt;/a&gt;, Red Hat, and &lt;a href="http://blogs.technet.com/b/openness/archive/2011/08/22/mixed-source-collaboration-with-leading-chinese-linux-company-fuels-cloud-innovation.aspx" target="_blank"&gt;&lt;b&gt;CS2C&lt;/b&gt;&lt;/a&gt; on Windows Server Hyper-V, as well as emerging open source cloud projects like &lt;b&gt;&lt;a href="http://blogs.technet.com/controlpanel/blogs/posteditor.aspx/%3ca%20href=%22http:/www.openstack.org/%22%3e%3cstrong%3e%3cspan%20style='color:%20#c71e56;' color='#c71e56'&gt;OpenStack&lt;/strong&gt;&lt;/a&gt;" target="_blank"&gt;OpenStack&lt;/a&gt;&lt;/b&gt; -- and now &lt;a href="http://blog.opennebula.org/?p=1991" target="_blank"&gt;&lt;b&gt;OpenNebula&lt;/b&gt;&lt;/a&gt;," Gupta said in a &lt;a href="http://blogs.technet.com/b/openness/archive/2011/09/26/microsoft-supports-the-creation-of-opennebula-clouds-on-windows-server-hyper-v.aspx" target="_blank"&gt;&lt;b&gt;blog post&lt;/b&gt;&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10219282" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/open+source/">open source</category></item><item><title>Nokia Developers: learn Windows Phone even faster</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/09/21/nokia-developers-learn-windows-phone-even-faster.aspx</link><pubDate>Wed, 21 Sep 2011 07:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10214459</guid><dc:creator>JC Cimetiere</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10214459</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/09/21/nokia-developers-learn-windows-phone-even-faster.aspx#comments</comments><description>&lt;p&gt;It&amp;rsquo;s my great pleasure to announce today a comprehensive package to leverage your development skills while learning to build applications for Windows Phone. The Microsoft &amp;amp; Nokia agreement has been described &lt;a href="http://windowsteamblog.com/windows_phone/b/windowsphone/archive/2011/04/21/microsoft-and-nokia-sign-the-definitive-agreement.aspx"&gt;at length over the past few months&lt;/a&gt; and, like Matt Bencke &lt;a href="http://www.youtube.com/watch?v=Q4-wxUpz-_U"&gt;highlighted&lt;/a&gt;, one of our goals has been to make it easy for Nokia Symbian developers to learn Windows Phone.&lt;/p&gt;
&lt;p&gt;So, folks from Microsoft and Nokia worked together to build a great package to help you get started. This helpful package contains the following tools and documentation to help you along the path to learning Windows Phone development:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The &amp;ldquo;&lt;b&gt;Windows Phone Guide for Symbian Qt Application Developers&lt;/b&gt;&amp;rdquo; &lt;a href="http://windowsphone.interoperabilitybridges.com/articles/windows-phone-7-guide-for-symbian-qt-application-developers"&gt;white paper&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;The &lt;b&gt;addition of Symbian Qt &lt;/b&gt;&lt;a href="http://wp7mapping.interoperabilitybridges.com/Library?source=Qt"&gt;&lt;b&gt;to the Windows Phone API mapping tool&lt;/b&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;The &lt;b&gt;&amp;ldquo;Nokia Windows Phone Training&amp;rdquo; &lt;/b&gt;&lt;a href="http://www.cvent.com/events/overview-nokia-windows-phone-training/event-summary-2842a9f2472742e79fa4abf9e87ef3d5.aspx"&gt;&lt;b&gt;roadshow&lt;/b&gt;&lt;/a&gt;, a series of developer events starting today in Paris&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These complement the similar &lt;a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/04/29/leveraging-your-iphone-development-expertise-to-build-windows-phone-7-applications.aspx"&gt;iOS&lt;/a&gt;/&lt;a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/06/09/leveraging-your-android-development-expertise-to-build-windows-phone-applications.aspx"&gt;Android&lt;/a&gt; guidance &amp;amp; mapping work we released a couple months ago.&lt;/p&gt;
&lt;p&gt;The &amp;ldquo;&lt;b&gt;Windows Phone Guide for Symbian Qt Application Developers&lt;/b&gt;&amp;rdquo; white paper is about 100 pages organized in 8 chapters.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div style="padding-left: 30px;"&gt;&lt;a href="http://windowsphone.interoperabilitybridges.com/articles/windows-phone-7-guide-for-symbian-qt-application-developers"&gt;&lt;img style="background-image: none; margin: 0px 35px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="clip_image002" border="0" hspace="12" alt="clip_image002" align="left" src="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-84-metablogapi/6327.clip_5F00_image002_5F00_thumb_5F00_4476F4B7.png" width="174" height="177" /&gt;&lt;/a&gt;&lt;i&gt;Chapter 1: Introducing Windows Phone Platform &lt;br /&gt;to Symbian^3 Qt Application Developers&lt;/i&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div style="padding-left: 30px;"&gt;&lt;i&gt;Chapter 2: Windows Phone Application Design Guidelines&lt;/i&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div style="padding-left: 30px;"&gt;&lt;i&gt;Chapter 3: Windows Phone Developer and Designer Tools&lt;/i&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div style="padding-left: 30px;"&gt;&lt;i&gt;Chapter 4: C# programming&lt;/i&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div style="padding-left: 30px;"&gt;&lt;i&gt;Chapter 5: Introducing Windows Phone Application Life Cycle&lt;/i&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div style="padding-left: 30px;"&gt;&lt;i&gt;Chapter 6: Porting Applications to Windows Phone &lt;/i&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div style="padding-left: 30px;"&gt;&lt;i&gt;Chapter 7: Windows Phone Example Applications&lt;/i&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div style="padding-left: 30px;"&gt;&lt;i&gt;Chapter 8: Using the API Mapping Tool&lt;/i&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The white paper &lt;a href="http://windowsphone.interoperabilitybridges.com/articles/windows-phone-7-guide-for-symbian-qt-application-developers"&gt;is available in different formats (HTML, DOCX &amp;amp; PDF&lt;/a&gt;). Feel free to leave comments, suggestions, and/or corrections on the online version.&lt;/p&gt;
&lt;p&gt;Chapter 6 introduces porting tutorials, in which you will find practical examples and tips on how to port your applications, like the RSS Reader applications or the &amp;ldquo;Diner&amp;rdquo; example, a catalog-type restaurant information application. From design consideration to data binding, the porting story addresses many aspects of the process that will be useful to you; the developer.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-84-metablogapi/0363.clip_5F00_image004_5F00_2F193F4F.jpg"&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="clip_image004" border="0" alt="clip_image004" src="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-84-metablogapi/6254.clip_5F00_image004_5F00_thumb_5F00_439E8ECD.jpg" width="196" height="235" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The &lt;a href="http://www.developer.nokia.com/Develop/Windows_Phone/Code_examples/"&gt;full list of samples and source code&lt;/a&gt; is available to you.&lt;/p&gt;
&lt;p&gt;The &lt;b&gt;addition of Symbian Qt &lt;/b&gt;&lt;a href="http://wp7mapping.interoperabilitybridges.com/Home/Library?source=Qt"&gt;&lt;b&gt;to the Windows Phone API mapping tool&lt;/b&gt;&lt;/a&gt;&lt;b&gt; &lt;/b&gt;is another perk we wanted to deliver in order to speed up the learning curve to Windows Phone. For this first iteration of the mapping, we&amp;rsquo;ve focused on the core libraries for Qt 4.7 for Symbian (QtCore, QtGui, QtLocation, QtNetwork, QtSensors, QtSql, QtXml, QtWebKit, QML Elements, QML Components ). We invite you to &lt;a href="http://wp7mapping.uservoice.com"&gt;offer up ideas&lt;/a&gt; about what additional mapping you feel would make sense and would like to see included in the tool.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-84-metablogapi/4617.clip_5F00_image006_5F00_15450920.jpg"&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="clip_image006" border="0" alt="clip_image006" src="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-84-metablogapi/1376.clip_5F00_image006_5F00_thumb_5F00_74BDC96D.jpg" width="244" height="163" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Finally, keep an eye on the &lt;b&gt;&amp;ldquo;Nokia Windows Phone Training&amp;rdquo; &lt;/b&gt;&lt;a href="http://www.cvent.com/events/overview-nokia-windows-phone-training/event-summary-2842a9f2472742e79fa4abf9e87ef3d5.aspx" mce_href="http://www.cvent.com/events/overview-nokia-windows-phone-training/event-summary-2842a9f2472742e79fa4abf9e87ef3d5.aspx"&gt;&lt;b&gt;roadshow&lt;/b&gt;&lt;/a&gt;, starting today in Paris, France. During this one day training event, you&amp;rsquo;ll learn how to take your ideas and get them running on the Windows Phone platform. Upcoming dates and locations for the roadshow are as follows: &lt;a href="http://www.cvent.com/d/jcq7j6" mce_href="http://www.cvent.com/d/jcq7j6"&gt;Milan, Italy (Sept 26)&lt;/a&gt;, &lt;a href="http://www.cvent.com/d/mcq7jy?lang=es" mce_href="http://www.cvent.com/d/mcq7jy?lang=es"&gt;Madrid, Spain (Sept 29)&lt;/a&gt;, &lt;a href="http://www.cvent.com/d/scq7jh?lang=de" mce_href="http://www.cvent.com/d/scq7jh?lang=de"&gt;Berlin, Germany (Oct 4) &lt;/a&gt;, &lt;a href="http://www.cvent.com/d/0cq7tk" mce_href="http://www.cvent.com/d/0cq7tk"&gt;London, United Kingdom (Oct 10)&lt;/a&gt; and Silicon Valley, USA - date &amp;amp; details coming soon!&lt;br /&gt;Similar events are also happening in Australia: Sydney (Sept 24-25[SOLD OUT], &lt;a href="http://blogs.msdn.com/b/dglover/archive/2011/09/20/windows-phone-developer-workshop-rerun-sydney-oct-8th-and-9th-2011.aspx" mce_href="http://blogs.msdn.com/b/dglover/archive/2011/09/20/windows-phone-developer-workshop-rerun-sydney-oct-8th-and-9th-2011.aspx"&gt;Oct 8-9&lt;/a&gt;), Melbourne (&lt;a href="http://blogs.msdn.com/b/dglover/archive/2011/09/19/windows-phone-developer-workshop-melbourne-oct-8th-and-9th-2011.aspx" mce_href="http://blogs.msdn.com/b/dglover/archive/2011/09/19/windows-phone-developer-workshop-melbourne-oct-8th-and-9th-2011.aspx"&gt;Oct 8-9[SOLD OUT, wait list]&lt;/a&gt;) and Brisbane (&lt;a href="http://blogs.msdn.com/b/dglover/archive/2011/09/21/windows-phone-developer-workshop-brisbane-oct-8th-and-9th-2011.aspx" mce_href="http://blogs.msdn.com/b/dglover/archive/2011/09/21/windows-phone-developer-workshop-brisbane-oct-8th-and-9th-2011.aspx"&gt;Oct 8-9&lt;/a&gt;).&lt;br /&gt;We realize this is only a few dates and locations, so for all the developers who want to learn Windows Phone, I recommend that you follow at your own pace the EXCELLENT &amp;ldquo;Window Phone Mango Jump Start&amp;rdquo; &lt;a href="http://channel9.msdn.com/posts/Mango-Jump-Start-01-Building-Windows-Phone-Apps-with-Visual-Studio-2010" mce_href="http://channel9.msdn.com/posts/Mango-Jump-Start-01-Building-Windows-Phone-Apps-with-Visual-Studio-2010"&gt;online video training&lt;/a&gt;. And stay tuned, there&amp;rsquo;s more to come!&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Start Today!&lt;/b&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;re all eager to see the Nokia hardware running Windows Phone. Windows Phone Mango is just out of the door, so don&amp;rsquo;t wait&lt;a href="http://windowsphone.interoperabilitybridges.com/articles/windows-phone-7-guide-for-symbian-qt-application-developers"&gt;, go get your copy of the &amp;ldquo;&lt;b&gt;Windows Phone Guide for Symbian Qt Application Developers&lt;/b&gt;&amp;rdquo;&lt;/a&gt; white paper and take advantage of its guidance!&lt;/p&gt;
&lt;p&gt;Jean-Christophe Cimetiere, Sr. Technical Evangelist &lt;br /&gt;&lt;a href="http://twitter.com/jccim"&gt;@jccim&lt;/a&gt; - &lt;a href="http://blogs.msdn.com/b/interoperability"&gt;blogs.msdn.com/interoperability&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;[Cross-posted on the &lt;a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/09/21/nokia-developers-learn-windows-phone-even-faster.aspx"&gt;Windows Phone Developer blog&lt;/a&gt;]&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10214459" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/WindowsPhone/">WindowsPhone</category></item><item><title>Community Participation</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/09/16/community-participation.aspx</link><pubDate>Sat, 17 Sep 2011 00:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10212549</guid><dc:creator>Peter Galli</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10212549</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/09/16/community-participation.aspx#comments</comments><description>&lt;p nodeindex="6"&gt;I'm heading off to Paris this weekend to participate in the annual &lt;a href="http://www.cvent.com/events/open-source-think-tank-paris-2011/event-summary-7b763cfb3d0c48528d8d2b7ac9441b50.aspx" target="_blank"&gt;Open Source Think Tank&lt;/a&gt; and &lt;a href="http://www.openworldforum.org/" target="_blank"&gt;Open World Forum&lt;/a&gt; events held in that wonderful city next week.&lt;/p&gt;
&lt;p nodeindex="6"&gt;I'm really looking forward to chatting with all those folk interested in this space, from enthusiasts to developers and end users.&lt;/p&gt;
&lt;p nodeindex="6"&gt;I will be joined at these events by my colleague and Technical Ambassador &lt;a href="http://blogs.technet.com/b/port25/archive/2011/05/26/new-sdk-and-sample-kit-demonstrates-how-to-leverage-the-scalability-of-winodws-azure-with-php.aspx" target="_blank"&gt;Craig Kitterman&lt;/a&gt;, as well as by our local market interoperability program lead Alfonso Castro.&lt;/p&gt;
&lt;p nodeindex="6"&gt;We will present technical sessions and participate in a number of panel discussions, ranging from what Open Source, Open Standards and Open Systems mean today to Open Source as an agent of change.&lt;/p&gt;
&lt;p nodeindex="6"&gt;Our participation in these Paris events complements our existing broad engagement with &lt;a href="http://blogs.technet.com/b/port25/" target="_blank"&gt;OSS communities&lt;/a&gt;, and we look forward to meeting our friends from the&amp;nbsp;PhP, &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/06/23/microsoft-working-with-joyent-and-the-node-community-to-bring-node-js-to-windows.aspx" target="_blank"&gt;Node.js&lt;/a&gt;, Drupal, Joomla, and WordPress.communities as well as to making a lot of&amp;nbsp;new ones.&lt;/p&gt;
&lt;p nodeindex="6"&gt;You can read more about our participation in Paris &lt;a href="http://thinktankblog.olliancegroup.com/?p=426" target="_blank"&gt;here&lt;/a&gt;, and we look forward to meeting those of you lucky enough to be attending in person.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10212549" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/azure/">azure</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/open+source/">open source</category></item><item><title>Site Ready WebSockets</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/09/15/site-ready-websockets.aspx</link><pubDate>Fri, 16 Sep 2011 00:49:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10212053</guid><dc:creator>Peter Galli</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10212053</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/09/15/site-ready-websockets.aspx#comments</comments><description>&lt;p&gt;Today the &lt;a href="http://blogs.msdn.com/b/ie/archive/2011/09/15/site-ready-websockets.aspx" target="_blank"&gt;Internet Explorer blog&lt;/a&gt; has a post on site ready Web Sockets, which talks about how WebSockets technology has made significant progress over the last nine months and how the Web gets richer and developers are more creative when sites and services can communicate and send notifications in real-time.&lt;/p&gt;
&lt;p&gt;As Brian Raymor, Microsoft's Program Manager for WebSockets notes in the blog, the standards around WebSockets have converged substantially, to the point that developers and consumers can now take advantage of them across different implementations, including &lt;a href="http://blogs.msdn.com/b/ie/archive/2011/09/13/ie10pp3.aspx" target="_blank"&gt;IE10 in Windows 8&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can read the full post &lt;a href="http://blogs.msdn.com/b/ie/archive/2011/09/15/site-ready-websockets.aspx" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10212053" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/cloud/">cloud</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/IE/">IE</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/html5/">html5</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/w3c/">w3c</category></item><item><title>The OData Producer Library for PHP is here</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/09/09/the-odata-producer-library-for-php-is-here.aspx</link><pubDate>Fri, 09 Sep 2011 13:41:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10206965</guid><dc:creator>Claudio Caldato</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10206965</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/09/09/the-odata-producer-library-for-php-is-here.aspx#comments</comments><description>&lt;p&gt;&lt;img style="background-image: none; margin: 0px 5px 3px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="clip_image001" border="0" alt="clip_image001" align="left" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-15-67-metablogapi/0312.clip_5F00_image001_5F00_079F93A9.png" width="202" height="57" /&gt;&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m pleased to announce that today we released the OData Producer Library for PHP. In case you missed it, &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2010/03/16/odata-interoperability-with-net-java-php-iphone-and-more.aspx"&gt;we released last year&lt;/a&gt; a client library that allows PHP applications to consume an OData feed, and with this new library it now easy for PHP Applications to generate OData Feeds. PHP developers can now add OData support to their applications so it can be consumed by all &lt;a href="http://www.odata.org/consumers"&gt;clients&lt;/a&gt; and &lt;a href="http://www.odata.org/developers/odata-sdk"&gt;libraries&lt;/a&gt; that support OData.&lt;/p&gt;
&lt;p&gt;The library is designed to be used with a wide range of data sources (from databases such as SQL Server and MySQL to data structures that are at the application level for applications such as CMS systems). The library is available for download under the open source BSD license: &lt;a href="http://odataphpproducer.codeplex.com/"&gt;http://odataphpproducer.codeplex.com/&lt;/a&gt;&lt;br /&gt;In order to make the library generic so it can be used on a wide range of scenarios we didn&amp;rsquo;t take any dependency to specific data structures or data sources. Instead the library is based on 3 main interfaces that, when implemented by the developers for the specific data source, allow the library to retrieve the appropriate data and serialize it for the client. The library takes care of handling metadata, query processing and serialization/deserialization of the data streams.&lt;/p&gt;
&lt;p&gt;Two examples are included that show how a full OData service can be built using the library: the Northwind DB example uses an SQL Express DB as data source and the WordPress example that uses the WordPress&amp;rsquo;s MySQL DB Schema to expose a feed for Posts, Comments and Users.&lt;/p&gt;
&lt;h3&gt;Quick Introduction to OData&lt;/h3&gt;
&lt;p&gt;Open Data Protocol is an open protocol for sharing data. It is built upon AtomPub (&lt;a href="http://tools.ietf.org/html/rfc5023"&gt;RFC 5023&lt;/a&gt;) and JSON. OData is a REST (&lt;a href="http://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm"&gt;Representational State Transfer&lt;/a&gt;) protocol, therefore a simple web browser can view the data exposed through an OData service.&lt;/p&gt;
&lt;p&gt;The basic idea behind OData is to use a well-known data format (Atom feed or JSON) to expose a list of entities.&lt;/p&gt;
&lt;p&gt;The OData technology has two main parts:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The &lt;i&gt;OData data model&lt;/i&gt;, which provides a generic way to organize and describe data. OData uses the Entity Data Model (EDM).The EDM models data as entities and associations among those entities. Thus OData work with pretty much any kind of data.&lt;/li&gt;
&lt;li&gt;The &lt;i&gt;OData protocol&lt;/i&gt;, which lets a client make requests to and get responses from an OData service. Data sent by an OData service can be represented on the wire today either in the XML-based format defined by Atom/AtomPub or in JavaScript Object Notation (JSON).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;An OData client accesses data provided by an OData service using standard HTTP. The OData protocol largely follows the conventions defined by REST, which define how HTTP verbs are used. The most important of these verbs are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;GET : Reads data from one or more entities.&lt;/li&gt;
&lt;li&gt;PUT : Updates an existing entity, replacing all of its properties.&lt;/li&gt;
&lt;li&gt;MERGE : Updates an existing entity, but replaces only specified properties.&lt;/li&gt;
&lt;li&gt;POST : Creates a new entity.&lt;/li&gt;
&lt;li&gt;DELETE : Removes an entity.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Each HTTP request is sent to a specific URI, identifying some resource in the target OData service's data model.&lt;/p&gt;
&lt;h3&gt;The OData Producer Library for PHP&lt;/h3&gt;
&lt;p&gt;The OData Producer Library for PHP is a server library that allows to exposes data sources by using the OData Protocol.&lt;/p&gt;
&lt;p&gt;The OData Producer supports all Read-Only operations specified in the Protocol version 2.0:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It provides two formats for representing resources, the XML-based Atom format and the JSON format.&lt;/li&gt;
&lt;li&gt;Servers expose a metadata document that describes the structure of the service and its resources.&lt;/li&gt;
&lt;li&gt;Clients can retrieve a feed, Entry or service document by issuing an HTTP GET request against its URI.&lt;/li&gt;
&lt;li&gt;Servers support retrieval of individual properties within Entries.&lt;/li&gt;
&lt;li&gt;It supports pagination, query validation and system query options like $format, $top, $linecount, $filter, $select, $expand, $orderby, $skip .&lt;/li&gt;
&lt;li&gt;User can access the binary stream data (i.e. allows an OData server to give access to media content such as photos or documents in addition to all the structured data)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;How to use the OData Producer Library for PHP&lt;/h3&gt;
&lt;p&gt;Data is mapped to the OData Producer through three interfaces into an application. From there the data is converted to the OData structure and sent to the client.&lt;/p&gt;
&lt;p&gt;The 3 interfaces required are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;IDataServiceMetadataProvider: this is the interface used to map the data source structure to the Metadata format that is defined in the OData Protocol. Usually an OData service exposes a $metadata endpoint that can be used by the clients to figure out how the service exposes the data and what structures and data types they should expect.&lt;/li&gt;
&lt;li&gt;IDataServiceQueryProvider: this is the interface used to map a client query to the data source. The library has the code to parse the incoming queries but in order to query the correct data from the data source the developer has to specify how the incoming OData queries are mapped to specific data in the data source.&lt;/li&gt;
&lt;li&gt;IServiceProvider: this is the interface that deals with the service endpoint and allows defining features such as Page size for the OData Server paging feature, access rules to the service, OData protocol version(s) accepted and so on.&lt;/li&gt;
&lt;li&gt;IDataServiceStreamProvider: This is an optional interface that can be used to enable streaming of content such as Images or other binary formats. The interface is called by the OData Service if the DataType defined in the metadata is EDM.Binary.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you want to learn more about the OData Producer Library for PHP, the User Guide included with the code provides detailed information on how to install and configure the library, it also show how to implement the interfaces in order to build a fully functional OData service.&lt;/p&gt;
&lt;p&gt;The library is built using only PHP and it runs on both Windows and Linux.&lt;/p&gt;
&lt;p&gt;This is the first release of a Producer library, future versions may add Write support to be used for scenarios where the OData Service needs to provide the ability to update data. We will also keep it up to date with future versions of the OData Protocol.&lt;/p&gt;
&lt;p&gt;Claudio Caldato, Principal Program Manager, Interoperability Strategy Team&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10206965" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/PHP/">PHP</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/OData/">OData</category></item><item><title>PhoneGap mobile HTML5 framework adding support for Windows Phone Mango</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/09/08/phonegap-mobile-html5-framework-adding-support-for-windows-phone-mango.aspx</link><pubDate>Thu, 08 Sep 2011 16:10:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10207931</guid><dc:creator>JC Cimetiere</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10207931</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/09/08/phonegap-mobile-html5-framework-adding-support-for-windows-phone-mango.aspx#comments</comments><description>&lt;p&gt;[Cross posted from the &lt;a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/09/08/phonegap-mobile-html5-framework-adding-support-for-windows-phone-mango.aspx"&gt;Windows Phone Developer Blog&lt;/a&gt;]&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;re very excited to join Nitobi to announce availability of a&amp;nbsp;PhoneGap beta&amp;nbsp;supporting Windows Phone Mango. This new option to build applications targeting Windows Phone gives more choices to developers. In particular, Web developers will be able to easily leverage their HTML5 skills to target Windows Phone.&lt;/p&gt;
&lt;p&gt;The beta version of the PhoneGap libraries can be downloaded from: &lt;a href="https://github.com/phonegap/phonegap-wp7"&gt;https://github.com/phonegap/phonegap-wp7&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="margin: 5px 2px 10px 0px; border: 0px currentColor; padding-top: 0px; padding-right: 0px; padding-left: 0px; float: left; display: inline; background-image: none;" title="PhoneGap" alt="PhoneGap" src="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-84-metablogapi/7571.image_5F00_thumb_5F00_4FD6233C.png" width="71" height="71" /&gt;&lt;img style="margin: 5px 0px 10px 2px; border: 0px currentColor; padding-top: 0px; padding-right: 0px; padding-left: 0px; float: right; display: inline; background-image: none;" title="Windows Phone Mango" alt="Windows Phone Mango" src="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-84-metablogapi/5736.image_5F00_thumb_5F00_6F84FD04.png" width="53" height="54" /&gt;In case you&amp;rsquo;ve been so busy writing code for months and you&amp;rsquo;ve never heard about PhoneGap, it&amp;rsquo;s an open source mobile framework that enables developers to build applications targeting multiple platforms, by using standard web technologies (HTML5, CSS and JavaScript). On Windows Phone Mango PhoneGap leverages the new HTML5 support provided by IE9.&lt;/p&gt;
&lt;p&gt;We have been in touch with &lt;a href="http://blogs.nitobi.com/andre"&gt;Andr&amp;eacute; Charland&lt;/a&gt; and &lt;a href="http://blogs.nitobi.com/brian"&gt;Brian Leroux&lt;/a&gt; (Co-Founders of Nitobi the creator of PhoneGap), who are seeing a growing interest from the PhoneGap developer community to target Windows Phone. So we&amp;rsquo;ve started working with Nitobi, helping to speed up the development of Windows Phone Mango support in PhoneGap by providing engineering resources and technical support.&lt;/p&gt;
&lt;p&gt;The current beta version includes most of the basic features, and includes JavaScript APIs to use Windows Phone Mango features like:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Access Device Information (UDDI and stuff)&lt;/li&gt;
&lt;li&gt;Add and search Contacts&lt;/li&gt;
&lt;li&gt;Connection status (network / wifi connection status)&lt;/li&gt;
&lt;li&gt;Alerts/Notification (alert and confirm)&lt;/li&gt;
&lt;li&gt;Media Capture (Image and Audio)&lt;/li&gt;
&lt;li&gt;Camera&lt;/li&gt;
&lt;li&gt;Accelerometer&lt;/li&gt;
&lt;li&gt;Geolocation&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here&amp;rsquo;s a screen shot of the PhoneGap Unit Test application running on the Windows Phone emulator:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-84-metablogapi/6443.PhoneGapTestApp_5F00_2B4495B8.png"&gt;&lt;img style="border: 0px currentColor; padding-top: 0px; padding-right: 0px; padding-left: 0px; display: inline; background-image: none;" title="PhoneGapTestApp" alt="PhoneGapTestApp" src="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-84-metablogapi/8424.PhoneGapTestApp_5F00_thumb_5F00_4A873C8B.png" width="260" height="484" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I encourage you to read &lt;a href="http://blogs.nitobi.com/jesse/2011/09/08/pg-wp7mango/"&gt;Nitobi&amp;rsquo;s blog post&lt;/a&gt; to get more details on how the whole process works.&lt;/p&gt;
&lt;p&gt;This is the first step toward having full PhoneGap support for Windows Phone Mango. Stay tuned, we will provide updates and more extensive demos as progress is made. With Windows Phone Mango &lt;a href="http://blogs.msdn.com/windows_phone/b/windowsphone/archive/2011/07/26/windows-phone-mango-released-to-manufacturing.aspx"&gt;Released to Manufacturing&lt;/a&gt; and developer tools &lt;a href="http://create.msdn.com/en-us/news/Windows_Phone_SDK_RC"&gt;hitting &amp;ldquo;Release Candidate&amp;rdquo;&lt;/a&gt;, it&amp;rsquo;s the perfect time to start testing, give feedback and join the PhoneGap open source project.&lt;/p&gt;
&lt;p&gt;Jean-Christophe Cimetiere, Sr. Technical Evangelist &amp;ndash; Interoperability &lt;br /&gt;&lt;a href="http://twitter.com/jccim"&gt;@jccim&lt;/a&gt; - &lt;a href="http://blogs.msdn.com/b/interoperability"&gt;blogs.msdn.com/interoperability&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10207931" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/html5/">html5</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/WindowsPhone/">WindowsPhone</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/open+source/">open source</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/javascript/">javascript</category></item><item><title>W3C Announces Process Innovations Making it More Authoritative And More Agile</title><link>http://blogs.msdn.com/b/interoperability/archive/2011/09/07/w3c-announces-process-innovations-making-it-more-authoritative-and-more-agile.aspx</link><pubDate>Thu, 08 Sep 2011 03:26:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10207592</guid><dc:creator>MCChampion</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/interoperability/rsscomments.aspx?WeblogPostID=10207592</wfw:commentRss><comments>http://blogs.msdn.com/b/interoperability/archive/2011/09/07/w3c-announces-process-innovations-making-it-more-authoritative-and-more-agile.aspx#comments</comments><description>&lt;p&gt;The JTC1 and W3C &lt;a href="http://www.w3.org/2011/07/wspas-pr.html" target="_blank"&gt;jointly announced this week&lt;/a&gt; that the international vote of 8 web services specifications was successful, and that these Recommendations are now ISO/IEC JTC1 International Standards.&lt;/p&gt;
&lt;p&gt;Last year, the W3C applied to ISO/IEC JTC1 to become a &amp;ldquo;&lt;a href="http://www.w3.org/2010/03/w3c-pas-submission.html" target="_blank"&gt;Publicly Available Specification (PAS) Submitter&amp;rdquo;,&lt;/a&gt; which would allow selected W3C Recommendations to be&amp;nbsp; voted on to become international standards.&lt;/p&gt;
&lt;p&gt;After ISO/IEC JTC1&amp;rsquo;s &lt;a href="http://www.w3.org/News/2010.html#entry-8950" target="_blank"&gt;approval&lt;/a&gt;, W3C submitted the &lt;a href="http://www.w3.org/2010/08/ws-pas.html" target="_blank"&gt;package of 8 web services specifications&lt;/a&gt; that was recently approved. With this approval, the W3C is now using successfully another process innovation, the second this month.&lt;/p&gt;
&lt;p&gt;So why is this announcement important? The best answer comes from the W3C press release, which says: "To many national bodies, the ISO and IEC brands will be more familiar than the W3C brand. In some cases, such as procurement, a country may be required to use ISO/IEC standards. For these reasons and others, W3C believes that formal approval by JTC 1 of W3C standards as International Standards will increase deployment, reduce fragmentation, and provide all users with greater interoperability."&lt;/p&gt;
&lt;p&gt;Microsoft already implements these ISO/IEC standards in several ways, especially in .NET Framework which uses all their major features. Thus, products which layer on top of the .NET Framework can also use these standards. Microsoft General Manager Bob Dimpsey notes this in &lt;a href="http://www.w3.org/2011/07/wspas-testimonials.html#microsoft" target="_blank"&gt;his testimonial&lt;/a&gt;, while also pointing to the fact that this announcement validates W3C&amp;rsquo;s ability to build authoritative standards.&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Web Services specifications are an important part of the interoperability surface for Microsoft&amp;rsquo;s enterprise and cloud products.&amp;nbsp; For example, while Web Services specifications are used to enable a Single-Sign-On experience using Access Control Services (ACS), they are also one key way for connectivity with Windows Azure applications through Windows Communication Foundation. We are very pleased that national bodies around the world have agreed to advance these specifications to become ISO/IEC Standards.&amp;nbsp; Microsoft strongly endorses this vote of confidence in W3C&amp;rsquo;s ability to build consensus across diverse communities and produce stable, interoperable, and useful standards,&amp;rdquo; he says.&lt;/p&gt;
&lt;p&gt;This is the second important announcement from W3C in recent weeks about process innovations.&amp;nbsp; As you may remember, on August 16 &lt;a href="http://www.w3.org/community/" target="_blank"&gt;Community Groups&lt;/a&gt; launched to provide an open forum where developers can work with other stakeholders to develop, analyze, test, and promote specifications using a &lt;a href="http://blogs.msdn.com/b/interoperability/archive/2011/06/29/jumpstarting-potential-new-web-standards-jut-got-easier-and-faster.aspx" target="_blank"&gt;lightweight process with sound legal underpinnings&lt;/a&gt;. This announcement was well received, with 15 groups (as of this writing) already up and running, while &lt;a href="http://www.w3.org/community/groups/proposed/" target="_blank"&gt;9 more have been proposed&lt;/a&gt; and are looking for supporters.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.w3.org/Press/Articles-2011.html" target="_blank"&gt;Press reaction&lt;/a&gt; has also been very favorable.&amp;nbsp; I particularly like &lt;a href="http://www.webmonkey.com/2011/08/w3cs-new-community-groups-give-everyone-a-voice-in-html5/" target="_blank"&gt;Webmonkey&amp;rsquo;s summary&lt;/a&gt;: "Well, now is your chance to do something more than whine about the slow pace of standards on your blog. The W3C&amp;rsquo;s new community groups are designed so that anyone can contribute to the development of HTML. Just head over to the site and join a group that interests you. &amp;hellip;&amp;nbsp; With the new community groups you don&amp;rsquo;t need to be a Google or Apple employee to catch the attention of the W3C&amp;rsquo;s members, you just need to sign up and post your ideas for everyone to read."&lt;/p&gt;
&lt;p&gt;Together, the Community Group and PAS Submission announcements add up to a compelling story: The W3C Recommendation process now has an &amp;ldquo;on ramp&amp;rdquo; allowing open and agile development of community specifications that can feed specifications into traditional Working Groups, and it has an &amp;ldquo;off ramp&amp;rdquo; that allows provably useful and interoperable Recommendations to become ISO/IEC JTC1 international standards.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Not all specs will travel the full route from informal brainstorming in a Community Group to formal standardization by ISO/IEC JTC1, but it&amp;rsquo;s good to have that full development path available. Not only can individuals get together and jumpstart potential new web standards but there is a full path to ISO/IEC JTC1 standardization.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Michael Champion, Sr. Program Manager&lt;/p&gt;
&lt;p&gt;Member of W3C Advisory Committee and Advisory Board&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10207592" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interoperability/">interoperability</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/interop/">interop</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/web+services/">web services</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/standards/">standards</category><category domain="http://blogs.msdn.com/b/interoperability/archive/tags/w3c/">w3c</category></item></channel></rss>
