Silverlight 4 – Is it what banks want?

Where is Microsoft going with Silverlight? There is no ambiguity in Microsoft’s intentions to contend with AJAX and Adobe Flash in the RIA space; Friday’s Silverlight 4 release includes me-too features such as enhanced video streaming capabilities aimed at internet broadcasters, better device handling including web-cam, microphone, mouse wheel and right-click support, together with enhanced animation capabilities such as hardware accelerated transforms and rotations.

Yet the capital markets want more than a Microsoft version of Flash, and fulfilling their additional business requirements is where Silverlight 4 looks to shine.

When banks build single-dealer portals they need an application framework that leverages existing skills so that client offerings can be created quickly, deployed easily, and rolled out to clients en masse. The integration and functional requirements on application frameworks across pre-trade, deal-capture and post-trade are varied and not usually completely solved by any single vendor implementation or framework.

The ability though to empower enterprise application developers with a familiar language, good IDE and tools for rapid collaborative implementation is paramount for success. Non-functional requirements on the underlying application platform such as stability, maturity, security and performance are essential, yet often difficult to measure.

Where does Silverlight 4 fit in? The release notes may not immediately instil delight into e-commerce managers around the world as the business benefits aren’t entirely obvious. The presence of features such as right-click support for context menus may be welcomed, but it also gives the impression that other important pieces of functionality might be missing and won’t be around until Silverlight 5 or 6.  Luckily that doesn’t seem to be the case and the business credentials of the Silverlight 4 beta have generally been well received. There’s a plethora of features in the new release and not enough blog space here to cover them all, so here’s a brief description of the key business benefits for financial markets.

Pre-trade

Data aggregation

There are several Silverlight 4 enhancements for pre-trade and analytics, the first being the ability to add external HTML content into your Silverlight application. Silverlight 4’s WebBrowser control allows client-side aggregation of external web content such as market data, calendars, news and technical analysis. AJAX and Adobe Flex content such as charting applications can be easily lifted into a Silverlight app.  Interestingly, duplex interoperability between guest web pages and Silverlight is feasible, as Silverlight can invoke JavaScript methods and receive notification back from the page. A potential (yet unproven) benefit of this feature is to aid the transition period from your legacy RIA application into Silverlight, as an intermediate/hybrid approach is facilitated.

Unfortunately restrictions almost cripple this approach; the browser stack security model prevents cross-domain calls, so the WebBrowser control is limited to Out-Of-the-Browser (OOB) Silverlight deployments. If you attempt to place the control in a browser-based Silverlight instance you get a not-very-useful big blank white box. Just to navigate to a web site, the Silverlight package (XAP) must be signed by a certificate authority (XAPs with elevated trust is a new feature) otherwise the client is subject to the cross-domain policy files of the respective sites.

Persistence

Local disk access within Silverlight 4 opens up a few possibilities for providing client access to saved documents or for saving data generated within Silverlight to your client’s local hard disk.  Disk access may be employed for any persistence of application settings or for your clients to save/load business logic such as client generated structures or derivatives. Similar restrictions also apply here, only IsolatedStorage (sandboxed space) is accessible in browser-based apps. Microsoft also felt the need to restrict signed OOB apps by writing only to the “My Documents”, “My Pictures”, and “My Music” directories. In general, this feature will probably not infringe on the traditional app-server / hibernate/ database deployments for persistence, but there is potential in this new feature for client log storage or large file manipulation.

Low latency rendering

Finally, pre-trade often involves streaming indicative prices from the banks pricing engine to the client’s browser instance. Although we are never likely to see real-time topic based pub/sub messaging capabilities within Silverlight’s default controls, GUI performance plays a critical role in ensuring low latency price consummation and rendering. Exploratory testing of streaming prices across the web to the client and rendering them within the DataGrid control indicates similar performance between Silverlight 3 and 4, however judgement should be postponed until the release version. I suspect Microsoft’s claim of ‘a 200% performance improvement’ is probably centred on Storyboard animations, procedural animations and perspective 3D transforms. Nevertheless, performance has been satisfactory for foreign exchange one click trading since Silverlight 2.

Deal-Capture

Trade ticket stability

To correctly capture RFQ trades, Silverlight must efficiently render quotes and validate form-based data submitted by clients. It is critical for ticket-based workflows that trade tickets operate in a deterministic, stable fashion. One of the most interesting additions to Silverlight 4 is the ‘commanding support’ enhancement, which makes it much easier to unit test applications with complex GUI interactions, resulting in a more stable application.

Without getting too bogged down with the technical details, ‘commanding support’ helps promote implementations using the Model-View-ViewModel (M-V-VM) pattern. M-V-VM extends the standard Model-View-Presenter pattern by featuring a ViewModel, an abstraction of the View which contains the View’s state and behaviour. The idea is that a View is just a rendering of a ViewModel, and Microsoft makes it very easy to keep a View in sync with a ViewModel via ‘Data Bindings’.

So what’s so good about adding this extra layer of abstraction? ViewModel classes are easy to unit test. First hook up your unit-testing framework to the ViewModel in place of the View, then change the Model. Your ViewModel consumer can test the outcome. There’s no need to add any extra binding as ViewModels update all ViewModel consumers, and no XAML needs to be parsed or initialised for your tests. The new ‘commanding support’ comes in for the other direction; your unit-testing framework issues a command emulating something like a button click, and your framework then tests that the input is fed correctly back into the Model.

Although the M-V-VM pattern probably suits WPF better than any other language – and having some code between the XAML View and the Model seems like a good idea – it’s good to see Microsoft promoting test friendly features for enterprise apps, especially when you consider the difficulties in MVC testing in alternative RIAs.

Batch trading

Often deal capture involves assigning pre-trading allocations and importing baskets and lists from external applications such as Excel. Often clients or sales traders open a spreadsheet, tweak the sizes, allocations or portfolio constituents, and then paste the batch directly into the deal capture UI. Silverlight 4 now includes true multi-platform clipboard support, replacing Silverlight 3’s IE-only approach that didn’t work OOB. Developers can customise how Silverlight parses and copies to the clipboard content using the GetText() and SetText() methods. If running Silverlight within a browser, a new prompt warns the user the first time the clipboard is read or set. In Silverlight 4 beta it is not possible for the user to disable these prompts for more than a single session.

Field formatting

Formatting RFQ trade ticket fields such as prices, sizes and settlement dates in real-time is an everyday requirement. Silverlight 4 adds the ability to specify standard or custom string formatting via XAML. Consider a trade ticket displaying the settlement date:

<TextBox Text=”{Binding Path=SettlementDate, Mode=TwoWay, StringFormat=’MM-dd-yyyy’}”/>

Defining the formatting rule within the XAML view removes Silverlight 3’s dependency on boilerplate IValueConverter interface implementations.

Input validation

Validation of user submitted data is another key requirement, and this too is facilitated using the M-V-VM pattern without writing anything into the code-behind. Two interfaces, ‘INotifyDataErrorInfo’ and ‘IDataErrorInfo’ expose validation results into the user interface for both server-side [asynchronous] and custom client-side validation logic.

<TextBox Text="{Binding SettlementDate, Mode=TwoWay, NotifyOnValidationError=True}" ... />

Here the View Model receives client settlement date instructions and can validate them against an internal or external calendar model. On validation failure, the UI is updated with a list of errors.

Post-Trade

Straight Through Processing (STP)

In order to achieve Straight Through Processing, end-to-end automation is required from all processes in the trading cycle between the buy- and sell-side institutions. Automated deal capture, order entry in the buy-side Order Management System (OMS), and settlement and reporting integration systems eliminates human error and speeds up the clearing and settling process. A very important but little emphasised change in Silverlight 4, is the addition of the WCF net.tcp protocol. The addition markedly boosts the client-side integration potential within the buy-side, allowing the client to establish duplex asynchronous TCP/IP communication with a local server.
Across RIA technologies, HTTP communication with the buy-side OMS is hampered by cross-domain policy issues and the necessity for a web facing application server stack. TCP communication offers superior throughput and no web infrastructure is required.


Source:“WCF net.tcp protocol in Silverlight 4″ – Tomek on Software.

The potential for TCP communication of settlement and clearing information with buy-side internal systems is promising, yet again subject to rather crippling restrictions. Most ports such as (443 or 80) are blocked unless the application is signed, so clients may need to open firewall ports for the 4502-4534 range. It’s also not possible to write a FIX implementation (e.g. OpenFix .Net) directly into your Silverlight app, as Microsoft (being Microsoft) has bound all traffic to the WCF protocol and the Microsoft WCF server-stack (e.g. IIS). Another obvious omission is the lack of transport security (e.g. SSL), which is a big deal even just for internal traffic.

Further pre- and post-trade integration capabilities are provided by Silverlight 4’s newfound access to native Component Object Model (COM) components through COM Automation classes. This means Silverlight 4 OOB applications can interoperate with local Microsoft Office application instances in the same way as Visual Basic for Applications. Examples of use include integration of Spreadsheet pricing structures with the deal capture system, feeding spreadsheet pricing models with real-time data, illustrating payment schedules using Excel graphs and spreadsheets, exporting historical trade blotters into Excel, or auto-generating emails in Outlook. Automation also provides speech support to business applications should it be required for accessibility.

Trade Confirmation Printing

For single-dealer platforms where STP is employed, buy-side clients often require hard copies of trade confirmation. Silverlight hasn’t previously included printing support, and Silverlight 4 duly adds printing capabilities for XAML trees (either the full UI view or specific controls). The Silverlight implementation is rather rudimentary, sending the printer a single paged-sized bitmap. This approach incurs rather high memory usage and slow printing. Flex is still ahead of the game here with better quality vector printing, together with the ability to override the default printing behaviour of individual UI components.

Building Applications with Silverlight 4

Brushing all functional requirements to one side, banks need to build Single Dealer Platforms cheaply and fast. The ability of a development team to consistently deliver good quality business logic is the game played out across platforms like Barx and REDIPlus, and competition is stiff.

Skills

Leveraging existing skills to deliver Single Dealer Platforms means less training, hiring of RIA experts, ramp up periods and better quality releases at project inception. But Silverlight can’t tick this box just by sharing C# with the rest of .Net; alignment between WPF and Silverlight is paramount for Silverlight to be accessible to accessible to an average .Net / WPF developer. In the past it seems Microsoft has tried to deliberately diverge WPF (or ‘XBAP’ which is WPF running in a browser) and Silverlight. Some Silverlight 3 features, such as Deep Zoom, are not in WPF, and the XAML syntax differs between the two platforms.

Silverlight 4 begins to makes some small but important changes in the right direction. Enhancements such as DependencyObject binding and WPF XAML syntax convergence helps bridge the gap:

<Button Content="Launch RFQ"/>
Silverlight (all versions)


<Button>Launch RFQ</Button>
WPF & Silverlight 4

As a distinct subset of WPF, Silverlight will never offer the capabilities of its parent, but it always leaves you wanting more. For example, imagine a client visualisation component representing an orderbook; a WPF solution might employ the SortedDictionary Class to sort depth rows by price. Silverlight however omits this class, forcing you to writing your own efficient implementation which is time intensive and bloats the XAP.

Such analysis is perhaps fastidious; given the availability of skills in ActionScript, Silverlight offers a distinct advantage over other RIA technologies.

Development environment

A good IDE assists UI implementation, runs pre-compile checks, links to documentation and examples, profiles, debugs, and helps test the client application. In the past Single Dealer Platform development has had mixed results with WYSIWYG HTML editors or tools like Adobe FlexBuilder – most machine generated code suffers from poor readability, performance or flexibility. Silverlight 4 is paired with Visual Studio 2010, older versions of which are generally received as the best IDE for RIA development.

Visual Studio 2010 includes a major reworking for Silverlight – the design surface is fully interactive, allowing controls to be dragged and dropped into place. The properties window configures controls without you touching the XAML or writing code. Importantly, XAML generated by the design surface is readable and flexible – controls are easily manipulated by editing the composite controls, and control templates are easily created out of other controls. The generated XAML lends itself to the M-V-VM architecture, and Data Binding between a XAML View and your ViewModel can be completed automatically using the Data Source Configuration wizard or drag-and-drop data binding.

The upgrade sees a good deal of enhancements to the XAML parser – XAML mistakes are more often detected pre-compile rather than run-time, and complete Intellisense is now provided making it faster to lookup UI control properties and classes (although this was a little slow in VS2010 beta).

The debugging capabilities of Visual Studio have long been class leading, but they have improved with the upgrade – debugging of Silverlight applications’ worker threads is simpler and easier, and Microsoft have added a historical debugger called ‘Intellitrace’. Profiling support is enhanced but was not assessed at the time of writing.

Developing large Enterprise Applications

Considerable effort is expended in designing Single Dealer Platforms in a modular manner. Modular development allows better collaboration of multiple development groups and helps reduce the scope of end-to-end testing.  If the client application is designed with a ‘plug-in’ architecture, modules can be downloaded on demand. Typical business use cases involve functionality packs such as ‘Fixed Income trading’ or ‘Foreign Exchange Options’ built on top of the underlying client framework.

A major addition in Silverlight 4 is the Managed Extensibility Framework (MEF). Instead of building your own dynamic classloader, and framework for building and testing modules separately, Silverlight 4 solves the problem out-of-the-box. Your Silverlight application does not need any plumbing code; to design a pluggable widget you simply declare what attributes each class imports or exports. Using MEF, you can split a monolithic XAP into multiple XAPs that reduce the general startup time of the application, allowing on demand loading only when a MEF package is required. An added benefit is that third-parties can take your MEF packages and extend them themselves.

Deployment

Most Single Dealer Portals now need to target IE6, IE7 and Firefox, and some less regulated end-users are using IE8, Safari or Chrome. Having to target multiple platforms reduces the ability to roll out new features to your client base and platform-specific testing adds a test burden.

Silverlight 4 provides support for IE, Firefox, Safari, Chrome and out-of-browser instances. At present there are few identified platform-specific issues with Silverlight 4. The most significant differences occur with Mac drag-and-drop file handling (e.g. when dragging a Mac desktop icon onto the Silverlight window).

Client onboarding of out-of-browser applications is aided by the Silverlight 4 silent installation tool, and installation of the Silverlight plugin can be invoked by group policy administration or by Windows update. The process of deploying or running a signed Silverlight application running with elevated trust is similar to running a standard application, with no client-side certificate required. Note that AJAX will always offer a distinct advantage with its zero-footprint deployment model; proliferation of the Silverlight plug-in is often cited as an impediment to client onboarding, and the recent succession of Silverlight runtime releases will not help.

Internationalisation is a key requirement for single-dealer platforms owned by the tier 1 banks and Silverlight 4 adds support for right-to-left languages such as Arabic and Hebrew. Other languages such as Bengali, Tamil and Devanagari are now officially supported.

Finally, deployment of Single Dealer Portals onto Smartphones such as the iPhone, Android and Blackberry often arise as business requirements.  Silverlight is now the application development platform for the Windows Phone 7 series, which means no code changes need to be made to get your Silverlight application working on a Windows Phone. Silverlight will power built-in and custom applications, and Visual Studio 2010 now includes an excellent phone development environment, complete with a Windows Phone emulator. Again the new design surface allows you to drag-and-drop controls onto the phone, resizing them and rapidly design compelling UIs.


Windows Phone running Silverlight within Visual Studio 2010

The Crunch

Microsoft has delivered a surprisingly complete release, adding some new out-of-browser functionality and filling the gaps in Silverlight 3.

Enhancements seem focused at the business application developer, and features like the Managed Extensibility Framework are rather nice for the capital markets. Visual Studio 2010 makes it easier than ever to design a compelling client offering; it even builds things for phones that haven’t been invented yet.

3 thoughts on “Silverlight 4 – Is it what banks want?”

  1. This just might be the best thing for banks. It has an awesome rating it looks like an the IP communication would be a great thing for banks to have sine there are so many branches around the world it would help them get a better idea of how well they are doing.

  2. While your coverage on Silverlight 4 is fantastic, I find the comparisons to Flex somewhat lacking. Lumping in HTML WYSIWYG editors with [Flash] Builder is a very large misstep, and honestly does little to convince me that you have even used Eclipse. Flex is a rich, strongly-typed, compiled front-end solution that is a far cry from DHTML. Flash Builder has intellisense, snippets, debugging, conditional breakpoints, refactoring tools and a (very lacking) design view.

Leave a Reply

Your e-mail address will not be published. Required fields are marked *