Practical ASP.NET

Technology To Think About: .NET RIA Services on the Client

Peter returns to .NET RIA Services to look at the client side of creating an application.

In last week's column, I looked at .NET RIA Services and spent some time on the server-side, ASP.NET part of the technology. This week, I'm going to look at the client-side, Silverlight portion.

In .NET RIA Services, you create a Silverlight application with a linked ASP.NET Web application. In the ASP.NET Web application, you can have one or more Domain Service classes whose methods return server-side objects. The methods you add to your Domain Service class will cause equivalent methods to be generated in the Silverlight client that will call your server-side methods through Web services calls. Unfortunately, the objects returned from a Web service can't/won't have the Silverlight 3 attributes that support databinding and validation.

Integrating Silverlight
.NET RIA Services lets you add those attributes through a metadata file. If you create a Domain Service class in your Web Project called, for instance, CustomerService.vb, then you can create a second file called CustomerService.metadata.vb. In the metadata file, you can add a description of the interfaces of the classes returned by your Domain Service methods.

In the metadata file, you can decorate the items in the interface (classes, methods, properties) with the Silverlight 3 attributes you want. When the equivalent class is generated in the Silverlight client, those classes will have the attributes you specified in the metadata file added to them. There's an important distinction here, by the way: The objects returned by your server-side methods are not what appears in the Silverlight client; what appears are auto-generated objects equivalent to the classes returned by your methods. It's those classes that will pick up the Silverlight attributes.

I have to admit that this process looks a little "hinky" to me because components are tied together by having the right file names. But it's also very extensible; as new attributes are added to .NET, you can add the ones you want to your Silverlight client-side objects through the metadata file.

Issues
This early in the process, it seems petty to cavil about what isn't present. One of the goals of .NET RIA Services is to simplify Web development (what Microsoft calls "democratizing" development). So some options that I would like to see may not be realistic within that constraint. On the other hand, these features may indeed be present and I just haven't found them yet.

In the Silverlight client, when you call the client-side equivalent of a method, the method doesn't hand you back an object or a collection of objects. Instead, after calling the method, you access the retrieved objects through a property on the class that represents your Web service. This design means that maintaining, for instance, two lists of Orders (one list for each of two customers) is awkward because there's only one instance of the property for any class. I'd prefer to see the client-side code implement the Factory method pattern.

While the Silverlight application has an automatic connection to the methods defined in the Domain Service class, no other client can access the methods. From a SOA point of view, it would be convenient if the services created for this application appeared as Web services that could -- at least in theory -- be shared with other clients.

It doesn't appear that the classes created in the Silverlight application can be extended. It doesn't appear that you can create a partial class for the client-side Silverlight objects and use those partial classes to add the interface to the auto-generated classes.

However, all this is minor sniping at a technology that's still in its infancy -- and may, in fact, only reflect my ignorance. I think the technology looks very cool, indeed.

About the Author

Peter Vogel is a system architect and principal in PH&V Information Services. PH&V provides full-stack consulting from UX design through object modeling to database design. Peter tweets about his VSM columns with the hashtag #vogelarticles. His blog posts on user experience design can be found at http://blog.learningtree.com/tag/ui/.

comments powered by Disqus

Featured

  • VS Code v1.99 Is All About Copilot Chat AI, Including Agent Mode

    Agent Mode provides an autonomous editing experience where Copilot plans and executes tasks to fulfill requests. It determines relevant files, applies code changes, suggests terminal commands, and iterates to resolve issues, all while keeping users in control to review and confirm actions.

  • Windows Community Toolkit v8.2 Adds Native AOT Support

    Microsoft shipped Windows Community Toolkit v8.2, an incremental update to the open-source collection of helper functions and other resources designed to simplify the development of Windows applications. The main new feature is support for native ahead-of-time (AOT) compilation.

  • New 'Visual Studio Hub' 1-Stop-Shop for GitHub Copilot Resources, More

    Unsurprisingly, GitHub Copilot resources are front-and-center in Microsoft's new Visual Studio Hub, a one-stop-shop for all things concerning your favorite IDE.

  • Mastering Blazor Authentication and Authorization

    At the Visual Studio Live! @ Microsoft HQ developer conference set for August, Rockford Lhotka will explain the ins and outs of authentication across Blazor Server, WebAssembly, and .NET MAUI Hybrid apps, and show how to use identity and claims to customize application behavior through fine-grained authorization.

  • Linear Support Vector Regression from Scratch Using C# with Evolutionary Training

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the linear support vector regression (linear SVR) technique, where the goal is to predict a single numeric value. A linear SVR model uses an unusual error/loss function and cannot be trained using standard simple techniques, and so evolutionary optimization training is used.

Subscribe on YouTube