Microsoft Silverlight: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
added (google) gears to list of comparables.
→‎Criticism: retitle per mos- also please consider merging this text into existing article text, another mos recommendation...
Line 158: Line 158:
| accessdate=2008-03-08}}</ref>
| accessdate=2008-03-08}}</ref>


==Criticism==
==Response==
Silverlight has been criticized for keeping Linux out of their official offering. Even though Microsoft is officially collaborating on the [[Moonlight (runtime)|Moonlight]] project, Bruce Chizen, former CEO of [[Adobe Systems|Adobe]], and maker of direct competitor Flash, has questioned "the commitment of Microsoft to keep the Silverlight platform compatible with other OS than [[Microsoft Windows|Windows]]".<ref>{{cite web | url=http://www.java-entrepreneur.com/50226711/adobe_ceo_questions_microsoft_silverlight_crossplatform_commitment.php
Silverlight has been criticized for keeping Linux out of their official offering. Even though Microsoft is officially collaborating on the [[Moonlight (runtime)|Moonlight]] project, Bruce Chizen, former CEO of [[Adobe Systems|Adobe]], and maker of direct competitor Flash, has questioned "the commitment of Microsoft to keep the Silverlight platform compatible with other OS than [[Microsoft Windows|Windows]]".<ref>{{cite web | url=http://www.java-entrepreneur.com/50226711/adobe_ceo_questions_microsoft_silverlight_crossplatform_commitment.php
| title=Adobe CEO questions Microsoft Silverlight cross-platform commitment | author=gautam | date=[[April 20]], [[2007]] | publisher=Java Entrepreneur | accessdate=2007-12-06}}</ref> His concerns are based on "examples from history" where Microsoft has launched products with promises of ongoing cross-platform compatibility that no longer apply, such as [[Internet Explorer for UNIX]], the [[Microsoft Java Virtual Machine]], [[OS/2]], and [[Windows_Media_Player#Other_versions|Windows Media Player]].
| title=Adobe CEO questions Microsoft Silverlight cross-platform commitment | author=gautam | date=[[April 20]], [[2007]] | publisher=Java Entrepreneur | accessdate=2007-12-06}}</ref> His concerns are based on "examples from history" where Microsoft has launched products with promises of ongoing cross-platform compatibility that no longer apply, such as [[Internet Explorer for UNIX]], the [[Microsoft Java Virtual Machine]], [[OS/2]], and [[Windows_Media_Player#Other_versions|Windows Media Player]].

Revision as of 06:25, 25 August 2008

Microsoft Silverlight
Developer(s)Microsoft
Initial releaseApril 2007
Stable release5.1.50918.0[1] (January 15, 2019; 5 years ago (2019-01-15)) [±]
Preview releaseNone [±]
Written incombination of C++ and C#
Operating systemMicrosoft Windows,
Mac OS X Symbian OS
TypeWeb Application framework
LicenseMS-EULA, with MS-PL components
WebsiteMicrosoft Silverlight
Silverlight.net

Microsoft Silverlight is a programmable web browser plugin that enables features such as animation, vector graphics and audio-video playback that characterize rich internet applications. Silverlight competes with products such as Adobe Flash, Adobe Flex, Adobe Shockwave, Gears (software), and JavaFX. Version 2.0, now in beta-testing, brings improved interactivity and support for .NET languages and development tools.

Silverlight was developed under the codename Windows Presentation Foundation/Everywhere (WPF/E). It is compatible with multiple web browser products used on Microsoft Windows and Mac OS X operating systems. Mobile devices, starting with Windows Mobile 6 and Symbian (Series 60) phones, will also be supported.[2] A third-party free software implementation named Moonlight is under development to bring compatible functionality to GNU/Linux.

Overview

Silverlight provides a retained mode graphics system, similar to WPF and integrates multimedia, graphics, animations and interactivity into a single runtime environment. It is being designed to work in concert with XAML and is scriptable with JavaScript. XAML can be used for marking up the vector graphics and animations. Textual content created with Silverlight would be more searchable and indexable than that created with Flash as it is not compiled, but represented as text (XAML).[3] (This, however, will become less true as more search engines (currently only Google) adopt the new Adobe flash player for search engines.[4]) Silverlight can also be used to create Windows Sidebar gadgets for Windows Vista.[5]

Silverlight supports playback of WMV, WMA and MP3 media content[6] across all supported browsers without requiring Windows Media Player, the Windows Media Player ActiveX control or Windows Media browser plugins. Because Windows Media Video 9 is an implementation of the SMPTE VC-1 standard, Silverlight also supports VC-1 video, though still only in an ASF file format. Furthermore, the Software license agreement says VC-1 is only licensed for the "personal and non-commercial use of a consumer".[7] Silverlight does not support playback of H.264 video. Silverlight makes it possible to dynamically load XML content that can be manipulated through a DOM interface, a technique that is consistent with conventional Ajax techniques. Silverlight exposes a Downloader object which can be used to download content, like scripts, media assets or other data, as may be required by the application.[8] With version 2.0, the programming logic can be written in any .NET language, including some common dynamic programming languages like Ruby and Python.[9]

Releases

Silverlight 1.0

File:SilverlightGame.PNG
A Silverlight 1.0 application hosted in Internet Explorer. Interactivity is provided by Silverlight, but user input controls are HTML controls overlaid on top of Silverlight content

Silverlight 1.0 consists of the core presentation framework, which is responsible for UI, interactivity and user input, basic UI controls, graphics and animation, media playback, DRM support, and DOM integration.[10] It is made up of the following components:

  • Input – handling input from devices like keyboard, mouse, stylus etc.
  • UI core – managing rendering of bitmap images (including compressed raster images like JPEG), vector graphics, text and animations.
  • Media – playback of MP3, WMA Standard, WMV7, WMV8 and WMV9/VC-1 streams.
  • XAML – to allow the UI layout to be created using XAML markup language.

A Silverlight application starts by invoking the Silverlight control from the HTML page, which then loads up a XAML file. The XAML file contains a Canvas object, which acts as placeholder for other elements. Silverlight provides various geometrical primitives like lines, ellipses and other shapes, to elements like text, images, and media etc. The elements are properly positioned to achieve the desired layout. Any arbitrary shape can be created as well. These elements can be animated using Event triggers; some animation effects are predefined, others can be created as composite of the pre-defined effects. Events like keyboard or mouse movements can also raise Events which can be handled by custom scripts.[11]

Programmatic manipulation of the UI is achieved by using scripting languages to modify the Document Object Model of the Silverlight Canvas object.[10] To facilitate this, Silverlight exposes a DOM API, accessible from any scripting language supported by Silverlight, which in version 1.0 release is limited only to JavaScript running in the browser. However, there are no UI widgets built in. The native widgets of the browser must be overlaid on top of the Silverlight Canvas for user input. Support for data formats is limited to XML and JSON only.[10]

Silverlight 2

File:SilverLight.PNG
A Silverlight 2 application hosted in Internet Explorer

Silverlight 2 (previously referred to as version 1.1)[12] includes a version of the .NET Framework, implementing the same full Common Language Runtime version as .NET Framework 3.0; so it can execute programs written in any .NET language. Unlike the CLR included with .NET Framework, multiple instances of the CoreCLR included in Silverlight can be hosted in one process.[13] With this, the XAML layout markup file (.xaml file) can be augmented by code-behind code, written in any .NET language, which contains the programming logic. It can be used to programmatically manipulate both the Silverlight application and the HTML page which hosts the Silverlight control. The XAML markup as well as the code, is compiled into .NET assemblies which are then compressed using ZIP and stored in a .xap file.[14]

Silverlight ships with a lightweight class library which features, among others, extensible controls, XML Web Services, networking components and LINQ APIs. This class library is a subset of and is considerably smaller than .NET Framework's Base Class Library. Silverlight code runs in a sandbox which prevents invoking platform APIs.[15] Silverlight 2 also adds support for adaptive streaming of media files (which allows Silverlight to choose the bit rate of the media based on available bandwidth) as well as Windows Media DRM[16] and PlayReady[17] DRM in media files.[10]

File:SLSkin.PNG
A set of Silverlight controls rendered with different skins

The version of .NET Framework in Silverlight adds[10] a subset of WPF UI programming model, including support for shapes, documents, media and animation objects of WPF. Beta 2 onwards,[17] it ships with more than 30 UI controls[16] (including TextBox, CheckBox, Slider, ScrollViewer, and Calendar controls, among others),[18] supporting two-way databinding support, automated layout management (by means of StackPanel, Grid etc)[18] as well as data manipulation controls such as DataGrid[19][12] and ListBox.[18] UI controls are skinnable using a template-based approach.[18] Third party libraries for expanded sets of UI controls are also available.[20]

Silverlight 2 Architecture

The included Base Class Library (BCL) provides classes for collections, reflection, regular expressions, string handling and data access. It also supports LINQ, with the full support for LINQ to Objects and expression trees. Almost all of the System.LINQ and System.LINQ.Expression namespaces are exposed. It also supports serialization of objects, for data persistence. Silverlight can handle data in RSS or JSON format, in addition to XML. The BCL provides enhanced support for working with XML data, including the XMLReader and XMLWriter classes. Silverlight 2 also supports asynchronous programming via the use of the threading libraries.[19]

Silverlight also includes classes for data access over XML-based Web services, REST, WCF Services and ADO.NET Data Services.[17] The networking support in Silverlight can be used by Silverlight applications to communicate using HTTP, or at the lower socket level. Cross-domain communication is supported. [16] Silverlight uses an XML-based configuration file to control the cross-domain resource access policy, both for HTTP connections as well as socket connections. It can be used by site administrators to control which resources a Silverlight application that did not originate in the domain of the site can access. In addition, Silverlight also supports the Adobe Flash cross domain policy file format.[21] Silverlight sockets can only initiate a connection; they cannot listen for connections.[22]

File:SilverLightMS.PNG
A Python interpreter in Silverlight 2 hosted in Mozilla Firefox

Silverlight 2 includes[17] the Dynamic Language Runtime (DLR) which allows dynamic compilation and execution of dynamic (scripting) languages. Compilers for the languages based on the DLR (including IronPython and IronRuby) are be packaged with the DSL app in the .xap package.[23] The DSL SDK includes a web server named Chiron that can dynamically package all the dependencies for the DSL application and serve it to the browser.[23] The first upcoming languages written for the DLR are Managed JScript, IronPython 2.0, and IronRuby. Microsoft also plans to build Visual Basic .NET 10.0 (VBx) on the DLR. All four languages share the same infrastructure to allow Silverlight to compile and execute the language source. Conversely, other .NET languages must be compiled ahead of time and delivered to Silverlight as .NET assemblies. The implementation of Managed JScript conforms to the ECMAScript 3.0 specification, and Microsoft claims that it is 250 times faster than interpreted JScript.[19]

With the integration of .NET Framework, Silverlight also allows HTML-managed code interaction, which allows manipulation of HTML DOM elements from managed code,[10] as well as allow JavaScript code to call managed code and use objects instantiated by managed code. Silverlight encloses JavaScript objects and DOM elements in managed wrappers to make them available from managed code.[24] However, in the 1.1 alpha release directly calling JavaScript code is not implemented, but managed code events can fire JavaScript handlers. A Silverlight instance does not need to have a UI component in order to manipulate the HTML DOM from managed code.[25] It is done by creating a XAML Canvas with its width and height set to zero, and using its code-behind code to modify the Document Object Model of the HTML page via the APIs in the System.Browser namespace.[26]

File:DeepZoom.PNG
A Silverlight 2 application using DeepZoom running in Safari 3.1 on Windows XP

Silverlight 2 includes Deep Zoom, a technology derived from Microsoft Live Labs Photosynth. It allows users to zoom into or out of an image (or a collage of images), with smooth transitions, using the mouse wheel.[27] The images can scale from 2 or 3 megapixels in resolution to gigapixel range, but the user need not wait for it to be downloaded entirely; rather Silverlight downloads only the parts in view, optimized for the zoom level being viewed.[28] Beta 2 onwards, Deep Zoom uses an XML-based file format.[17]

Silverlight 2 also allows limited filesystem access to Silverlight applications.[24] It can use the operating system's native Open file dialog box to browse to any file (which the user has access to). The file is sanitized of path information to prevent the application from getting access to information like user name and can be opened only in read-only mode. For local storage of data, Silverlight provides isolated local storage (isostorage),[24] which is stored, outside the browser cache, in a hidden folder inside the user profile's private folder. It is by default set to 1 MB per URL,[24] but can be changed by the user.[17] Data stored by a Silverlight application in the isostorage is identified by the URL that it loads from, can be accessed by that application only. All instances of Silverlight share the same isostorage, so all instances of the same Silverlight application can share the saved data, even if they are running on different browsers.

Silverlight CoreCLR uses an attribute based security model, as opposed to the Code Access Security (CAS) model of the desktop version of .NET Framework.[29] All assemblies are marked with a security attribute, which can be either transparent (SecurityTransparentAttribute), safecritical (SecuritySafeCriticalAttribute) or critical (SecurityCriticalAttribute). Methods in transparent assemblies runs with partial trust, and any code in such assemblies cannot call critical methods. They also cannot contain unverifiable code (use the unsafe C# keyword or use pointers) or invoke system functions by means of P/Invoke. Code in both critical and safecritical assemblies run with full trust, and are not subject to such limitations. However, critical methods can only be called from safecritical methods and not transparent methods. Thus transparent methods are prevented from using methods that can cause system wide changes. Instead, they have to call safecritical methods which will verify that the call is safe and within the limited rights of the caller, and then proxy it to the critical methods. In fact, the IsoStorage APIs are exposed as safecritical methods.[29] An assembly that does not have any attribute set is run as a transparent method. The limitations also apply for type inheritance, virtual method calls and interface method calls as well.[30] Silverlight assemblies can contain members that are not usable by CoreCLR but can be by .NET Framework CLR; such methods will not be loaded when the assembly is being executed by CoreCLR.[31]

However, only platform code is allowed to be marked as Critical or SafeCritical. The Silverlight runtime ensures that platform assemblies are loaded only from the Silverlight installation directory, and are digitally signed by Microsoft. This effectively means that all user application assemblies can only be transparent code and run under partial trust and limited rights.[32] Platform code can be marked with either attribute. The BCL methods of the .NET Framework, which have the Internet attribute set allowing them to be called from untrusted code originating from Internet, are exposed in Silverlight BCL as transparent methods.[32]

Release history

Version name Version number Release date
1.0 CTP 1.0.? December 2006
1.0 RTW 1.0.20816 2007-09-05
2.0 Pre-Release
(As 1.1 Alpha Refresh)
1.1.20926.0 2007-09-05
1.0 service release 1.0.21115.0 2007-11-20
1.0 service release 1.0.30109.0 2008-01-15
2 Beta 1[33] 2.0.30226.2 2008-03-05
1.0 service release[34] 1.0.30401.0 2008-04-08
2 Beta 2 2.0.30523.6 2008-06-06[35]
2.0.30523.8 2008-07-16
1.0 service release 1.0.30716.0 2008-08-18
2 RTM[36] TBA October, 2008

Compatibility

The following table presents an availability and compatibility matrix of Silverlight versions for various operating systems and web browsers.

OS/browser IE 6 SP1 IE 6 SV1 IE 7 IE 8 Firefox/SeaMonkey/Mozilla Safari Konqueror Opera
Windows Vista/2008 N/A N/A 1.0, 2.0 2.0 1.0, 2.0 1.0, 2.0; via NPAPI N/A Unofficially[37][38]
Windows XP/2003/Home Server N/A 1.0, 2.0 1.0, 2.0 2.0 1.0, 2.0 1.0, 2.0; via NPAPI N/A Unofficially[37][38]
Windows 2000 2.0 N/A N/A N/A N/A[39] 2.0; via NPAPI N/A Planned[37]
Windows Mobile 6 1.0 N/A N/A N/A N/A N/A N/A N/A
Mac OS 10.4/10.5 PowerPC N/A N/A N/A N/A 1.0 1.0 N/A Planned[37]
Mac OS 10.4/10.5 Intel N/A N/A N/A N/A 1.0, 2.0 1.0, 2.0 N/A Planned[37]
Linux x86(Moonlight) N/A N/A N/A N/A Planned[40][41] N/A Planned[41] Planned[37][41]
Linux x86-64(Moonlight) N/A N/A N/A N/A Planned[40][41] N/A Planned[41] Planned[37][41]
  • Opera will be officially supported with future builds.[37] Unofficially Silverlight supports Opera already, via a hack.[38]
  • On Linux^, the functionality will be made available via the compatible third-party Moonlight runtime.[40][41] Moonlight will be available for the major Linux distributions, with support for Firefox, Konqueror, and Opera browsers.
  • Silverlight for Mobile will be used to run Silverlight content on mobile devices. The first CTP for Windows Mobile 6 will be released in 2nd Quarter of 2008.[2] Nokia has announced plans to make Silverlight for Mobile available for S60 on Symbian OS, as well as for Series 40 devices and Nokia Internet tablets.[42] Silverlight for Mobile will initially support Silverlight 1.0 content.[2]
  • Additional platforms are being considered as well.[43]

Development tools

File:VSSilverlight.PNG
A Silverlight application being edited in Microsoft Visual Studio.

Silverlight applications can be written in any .NET programming language. As such, any development tools which can be used with .NET languages can work with Silverlight, provided they can target the Silverlight CoreCLR for hosting the application, instead of the .NET Framework CLR. Microsoft has positioned Microsoft Expression Blend versions 2.0 and 2.5 for designing the UI of Silverlight 1.0 and 2 applications respectively. Visual Studio 2008 can be used to develop and debug Silverlight applications. To create Silverlight projects and let the compiler target CoreCLR, Visual Studio 2008 requires the Silverlight Tools for Visual Studio which is available as a beta release.[44]

A Silverlight project contains the Silverlight.js and CreateSilverlight.js files which initializes the Silverlight plugin for use in HTML pages, a XAML file for the UI, and code-behind files for the application code. Silverlight applications are debugged in a manner similar to ASP.NET applications. Visual Studio's CLR Remote Cross Platform Debugging feature can be used to debug Silverlight applications running on a different platform as well.[45]

Licensing

An unattributed report claimed[46] that Microsoft aims to release certain parts of Silverlight source code as open source software, but Sam Ramji, director of platform technology strategy at Microsoft, said the company has no plans to do so.[47] However, the Dynamic Language Runtime, included with Silverlight, have been made available on Microsoft's CodePlex website using the Microsoft Public License. The collection of controls included in Silverlight 2 will also be made available under the same license.[48]

Alternative implementations

The Mono team is currently developing Moonlight, a free and open-source implementation of both the Silverlight 1.0 and 2.0 runtimes[49].

The project is officially supported by Microsoft who,[40] under an agreement with Novell, has made additional specifications, access to the Silverlight Base Class Library APIs, binary codecs and test cases available to the Mono team,[41] none of which are available to other members of the public.[50]

Response

Silverlight has been criticized for keeping Linux out of their official offering. Even though Microsoft is officially collaborating on the Moonlight project, Bruce Chizen, former CEO of Adobe, and maker of direct competitor Flash, has questioned "the commitment of Microsoft to keep the Silverlight platform compatible with other OS than Windows".[51] His concerns are based on "examples from history" where Microsoft has launched products with promises of ongoing cross-platform compatibility that no longer apply, such as Internet Explorer for UNIX, the Microsoft Java Virtual Machine, OS/2, and Windows Media Player.

The international, non-profit European Committee for Interoperable Systems has voiced concerns that with Silverlight Microsoft aims to introduce content on the web that can only be accessed from the Windows platform. They argue that use of XAML in Silverlight is positioned to replace the cross-platform HTML standard. Effectively, if Silverlight usage becomes widespread enough, users will risk having to purchase Microsoft products to access web content.[52]

California and several other U.S. states also have asked a District Judge to extend most of Microsoft's antitrust case settlement for another five years,[53] citing "a number of concerns, including the fear that Microsoft could use the next version of Windows to 'tilt the playing field' toward Silverlight, its new Adobe Flash competitor," says a Seattle Post-Intelligencer article.

Microsoft has also been criticized for not using the Scalable Vector Graphics standard for Silverlight, which, according to Ryan Paul of Ars Technica, is consistent with Microsoft's ignoring of open standards in other products, as well.[54] However, according to David Betz, an independent .NET technologies specialist, Microsoft would have needed to alter the SVG specification to add .NET integration and UI constructs on top of SVG to make it suitable for scenarios Silverlight uses markup for (UI and vector markup, by default). Consequently, he thinks the "choice by Microsoft to use XAML over SVG, served to retain the SVG standard by not adding proprietary technology [to extend SVG]".[55]

See also

References

  1. ^ "Microsoft Silverlight Release History". Microsoft Corporation. Retrieved 15 January 2019.
  2. ^ a b c "Silverlight for Mobile". Silverlight.net. Retrieved 2008-03-09.
  3. ^ Rafe Needleman. "What is Silverlight, really?". Retrieved 2007-05-05.
  4. ^ RJ Owen. "Flash becomes more searchable". Retrieved 2007-07-17.
  5. ^ Charles Sterling. "Writing a Windows Sidebar Gadget in Silverlight dead simple". MSDN Blogs. Retrieved 2008-03-09.
  6. ^ Silverlight FAQs
  7. ^ "Microsoft Silverlight 1.0 beta license". Retrieved 2007-06-14.
  8. ^ "Using a Downloader Object". Retrieved 2007-05-25.
  9. ^ Mono developers to bring Silverlight to Linux
  10. ^ a b c d e f "Silverlight architecture". Retrieved 2007-06-05.
  11. ^ "Silverlight 1.0 Beta QuickStart". Retrieved 2007-06-05.
  12. ^ a b ".NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)". Retrieved 2007-11-30.
  13. ^ "Side by Side In Process CLRs Start with Silverlight". Retrieved 2007-05-12.
  14. ^ Scott Guthrie. "Silverlight Tutorial Part 1: Creating "Hello World" with Silverlight 2 and VS 2008". Retrieved 2008-02-24.
  15. ^ "Microsoft polishes the Silverlight". Retrieved 2007-05-02.
  16. ^ a b c Scott Guthrie. "Silverlight 2 Beta2 Released". Retrieved 2008-07-06.
  17. ^ a b c d e f Silverlight SDK Team. "What's new in Silverlight 2 Beta 2?". MSDN Blogs. Retrieved 2008-07-06.
  18. ^ a b c d Scott Guthrie. "First Look at Silverlight 2". Retrieved 2008-02-24.
  19. ^ a b c "Silverlight". Retrieved 2007-05-12.
  20. ^ Tim Sneath. "Some Great Silverlight Controls". Retrieved 2007-06-30.
  21. ^ Scott Guthrie. "Silverlight Tutorial Part 3: Using Networking to Retrieve Data and Populate a DataGrid". Retrieved 2008-02-24.
  22. ^ Michael Schwarz. "Silverlight Socket Comments". Retrieved 2008-03-12.
  23. ^ a b John Lam. "Dynamic Silverlight, Part 1: Hello World". MSDN Blogs. Retrieved 2008-03-12.
  24. ^ a b c d Danny Thorpe (2007-05-02). "MIX07: Extending the Browser Programming Model with Silverlight". Retrieved 2007-05-03.
  25. ^ Tim Sneath (2007-06-07). "Silverlight isn't just about presentation". Retrieved 2007-06-13.
  26. ^ Tim Sneath (2007-06-13). "Programming HTML with C#". Retrieved 2007-06-30.
  27. ^ "Silverlight 2 and Deep Zoom - Get ready to build your own photozooming collections". LiveSide. Retrieved 2008-03-06.
  28. ^ "Silverlight 2 'Deep Zoom'". Microsoft Live Labs. Retrieved 2008-03-09.
  29. ^ a b Shawn Farkas. "The Silverlight Security Model". Retrieved 2007-06-08.
  30. ^ Shawn Farkas. "Silverlight Security III: Inheritance". Retrieved 2007-06-08.
  31. ^ "How to: Explore Silverlight Assemblies with the Visual Studio Object Browser". Retrieved 2007-06-08.
  32. ^ a b Shawn Farkas. "Silverlight Security II: What makes a method critical". Retrieved 2007-06-08.
  33. ^ "Quick update on Silverlight". Retrieved 2007-11-30.
  34. ^ MSFN - Microsoft rolls out Silverlight maintenance release
  35. ^ Emil Protalinski. "Silverlight 2 Beta 2 arrives on time, available now". Ars Technica. Retrieved 2008-06-06.
  36. ^ Emil Protalinski. "Silverlight 2 targeted for "late summer" release". Ars Technica. Retrieved 2008-04-03.
  37. ^ a b c d e f g h "Opera Watch: More details on Silverlight support in Opera". Retrieved 2007-05-02.
  38. ^ a b c "Silverlight in Opera". Retrieved 2008-03-10.
  39. ^ Install Silverlight : Unsupported platform, system requirements
  40. ^ a b c d "Silverlight 1.0 Released and Silverlight for Linux Announced". Retrieved 2007-09-05.
  41. ^ a b c d e f g h "Microsoft/Novell Collaboration on Silverlight". Retrieved 2007-09-05.
  42. ^ "Nokia to enable Silverlight". blog.anta.net. 2008-03-04. ISSN 1797-1993. Retrieved 2008-03-04. {{cite journal}}: Check date values in: |date= (help)
  43. ^ Joe Stegman. "MSDN Forums Silverlight General Discussion: Linux support". Retrieved 2007-04-29.
  44. ^ "How to: Create a Silverlight Project". Retrieved 2008-03-10.
  45. ^ Nigel Parker. "MIX07 Your Product is a feature of the Web!". Retrieved 2007-06-08.
  46. ^ Elizabeth Montalbano. "Microsoft Goes Open Source?". Retrieved 2007-04-29.
  47. ^ Gavin Clarke. "Silverlight glow dimmed by cross-platform concerns". Retrieved 2007-05-05.
  48. ^ Miguel De Icaza. "Mix 08". Retrieved 2008-03-12.
  49. ^ "Mono Moonlight". Mono Project. Retrieved 2008-06-22.
  50. ^ "Pre-Mix 08: Moonlight Updates". 2008-03-03. Retrieved 2008-03-08. {{cite web}}: Check date values in: |date= (help); Unknown parameter |name= ignored (help)
  51. ^ gautam (April 20, 2007). "Adobe CEO questions Microsoft Silverlight cross-platform commitment". Java Entrepreneur. Retrieved 2007-12-06. {{cite web}}: Check date values in: |date= (help)
  52. ^ "ECIS Media Release January 26, 2007". ECIS. 2007-01-26. Retrieved 2007-10-19. With XAML and OOXML Microsoft seeks to impose its own Windows-dependent standards and displace existing open cross-platform standards which have wide industry acceptance, permit open competition and promote competition-driven innovation. The end result will be the continued absence of any real consumer choice, years of waiting for Microsoft to improve - or even debug - its monopoly products, and of course high prices {{cite web}}: Check date values in: |date= (help)
  53. ^ Todd Bishop (October 17, 2007). "Antitrust filing cites Microsoft Silverlight concern". Seattle Post-Intelligencer. Retrieved 2007-12-06. {{cite web}}: Check date values in: |date= (help)
  54. ^ Ryan Paul. "Microsoft's Flash-killer Silverlight steals the show at MIX07". Retrieved 2007-05-06. [Microsoft]'s perpetual unwillingness (or perhaps inability) to build on existing standards is deeply detrimental to users and developers. Internet Explorer 7 is still the only major web browser that has no native support for SVG. By neglecting to use the SVG standard in Silverlight and XAML in favor of a limited and incompatible facsimile, Microsoft has once again needlessly ignored what could have been an opportunity to empower developers and help Internet Explorer catch up with browsers that are more functional and standards-compliant.
  55. ^ David Betz. "Silverlight's Adoption as Public De-Facto Standard". Retrieved 2007-06-20. Silverlight can be viewed as a web extension of the Windows Presentation Foundation (WPF), a .NET 3.0 technology and not simply as a new web technology. As such, it makes sense that Silverlight uses XAML, not SVG. If Silverlight were based on SVG, then there would be a chasm between Silverlight and the .NET Framework, but as it stands Silverlight's use of XAML makes it part of the .NET family. In fact, it's important to note that elements in XAML usually represent objects in the .NET Framework; this would simply not be possible in SVG.

External links