Home| All soft| Last soft| Your Orders| Customers opinion| Helpdesk| Cart

Program Search:


Shopping Cart:




*Note: Minimum order price: €20
We Recommend:

Packt Microsoft Silverlight 5 Data and Services Cookbook PDF ePub eBook €1 buy download
Year: 2012 (April)
Author: Gill Cleeren, Kevin Dockx
Publisher: Packt Publishing
ISBN: 978-1-84968-350-0
Language: English
Format: PDF / EPUB
Pages 662
n this book, Gill Cleeren, Microsoft Regional Director, Silverlight MVP (former ASP.NET MVP), Telerik MVP at Ordina Belgium and Kevin Dockx, a technical specialist/project leader on .NET web applications and a solution manager for Rich Applications at RealDolmen, focus on showing .NET developers how to get their finger on the pulse of data-driven business applications in Silverlight and Windows Phone 7. What’s more, the upcoming Windows 8 will allow developers to build native, immersive Metro-style applications using XAML & C# - exactly what this book is based upon. In other words, the techniques described in this book also apply to Windows 8.
This book is not a general Silverlight 4/5 overview book; it is uniquely aimed at developers who want to build data-driven applications, based on best practices. It focuses on showing .NET developers how to interact with, and handle multiple sources of data in Silverlight business applications, and how to solve particular data problems following a practical hands-on approach, using real-world recipes. It is a practical cookbook that teaches you how to build data-rich business applications with Silverlight that draw on multiple sources of data. Most of the features covered work both in Silverlight 4 and 5. However, we cover some that are specific to Silverlight 5, which will therefore not work with Silverlight 4. Where this is the case, it is clearly indicated.
What you will learn from this book:
Build and maintain data-driven applications easily using the data binding engine, which does most of the work for you
See how validation can be applied effectively to ensure correct input within your applications
Use Isolated Storage classes to store data locally, possibly even between sessions, instead of accessing your services for each data need, bringing down the load on your servers
Learn all about the Model-View-View-Model (MVVM) pattern and how you can access data and services from an MVVM architecture
Access all kinds of services, including WCF, ASMX, REST, RSS, sockets and more from your Silverlight applications, even if hosted in Windows Azure
Get a deep knowledge about WCF RIA Services and how you can build your architecture around them
Build data-driven Windows Phone 7 applications and leverage your knowledge in the mobile platform
Throughout the book, you’ll learn to use XAML & C# to build your LOB applications – skills that can be reused for Windows 8 development
Preface
Chapter 1: Learning the Nuts and Bolts of Silverlight 5
Introduction
Getting our environment ready to start building Silverlight applications
Creating our first service-enabled and data-driven Silverlight 5 application using Visual Studio 2010
Using the workflow between Visual Studio 2010 and Blend 5
Using source control in Visual Studio 2010 and Blend 5
Deploying a Silverlight application on the server
Chapter 2: An Introduction to Data Binding
Introduction
Displaying data in Silverlight applications
Creating dynamic bindings
Binding data to another UI element
Binding collections to UI elements
Enabling a Silverlight application to automatically update its UI
Obtaining data from any UI element it is bound to
Using the different modes of data binding to allow persisting data
Debugging data binding expressions in Visual Studio
Data binding from Expression Blend 5
Using Expression Blend 5 for sample data generation
Chapter 3: Advanced Data Binding
Introduction
Hooking into the data binding process
Replacing converters with Silverlight 5 BindingBase properties
Validating data-bound input
Validating data input using attributes
Validating using IDataErrorInfo and INotifyDataErrorInfo
Using templates to customize the way data is shown by controls
Using implicit data templates
Using the Ancestor RelativeSource binding
Creating custom markup extensions
Building a change-aware collection type
Combining converters, data binding, and DataContext into a custom DataTemplate
Chapter 4: The Data Grid
Introduction
Displaying data in a customized DataGrid
Inserting, updating, and deleting data in a DataGrid
Sorting and grouping data in a DataGrid
Filtering and paging data in a DataGrid
Using custom columns in the DataGrid
Implementing master-detail in the DataGrid
Validating the DataGrid
Chapter 5: Working with Local Data
Introduction
Reading data from and storing data in the isolated storage
Working with IsolatedStorageSettings
Caching data between different Silverlight applications using isolated storage
Using the Sterling database
Chapter 6: MVVM
Introduction
Creating a basic MVVM application
Using MVVM Light to enable MVVM applications
Connecting a View to a ViewModel using a ViewModelLocator
Connecting a View to a ViewModel using MEF
Using commands to pass your events to the ViewModel
Communicating between different ViewModels
Leveraging a messenger to wrap application-wide messages
Chapter 7: Working with Services
Introduction
Connecting and reading from a standardized service
Persisting data using a standardized service
Configuring cross-domain calls
Working cross-domain from a trusted Silverlight application
Reading XML using HttpWebRequest
Reading out an RSS feed
Accessing a database in the cloud
Accessing a service in the cloud
Running a Silverlight application from the cloud
Using socket communication in Silverlight
Chapter 8: Talking to WCF and ASMX Services
Introduction
Invoking a service that exposes data
Invoking a service such as Bing.com
Optimizing performance using binary XML
Debugging a service in Silverlight
Using ASP.NET Authentication in Silverlight
Uploading files to a WCF service
Displaying images as a stream from a WCF service
Chapter 9: Talking to WCF and ASMX Services—One Step Beyond
Introduction
Using duplex communication over HTTP
Using duplex communication with the WCF net.tcp binding
Ensuring data is encrypted
Securing service communication using message-based security
Integrating Windows Identity Foundation in Silverlight
Calling a WCF service from Silverlight using ChannelFactory
Chapter 10: Talking to REST and WCF Data Services
Introduction
Reading data from a REST service
Parsing REST results with LINQ To XML
Persisting data using a REST service
Working with the ClientHttp stack
Communicating with a REST service using JSON
Using WCF Data Services with Silverlight
Reading data using WCF Data Services
Persisting data using WCF Data Services
Talking to Flickr
Talking to Twitter over REST
Passing credentials and cross-domain access to Twitter from a trusted Silverlight application
Chapter 11: Using WCF RIA Services
Introduction
Setting up a data solution to work with WCF RIA Services
Using a WCF RIA Services class library
Getting data on the client
Using LoadBehavior to control what happens to your data once it's sent to the client
Controlling the server-side query from the client
Sorting and filtering data on the server
Paging through your data
Persisting a change set/unit of work
Working with concurrency and transactions
Chapter 12: Advanced WCF RIA Services
Introduction
Tracking a user's identity – default Windows authentication
Tracking a user's identity – a custom authentication service
Integrating Windows Identity Foundation with WCF RIA Services
Controlling a user's access to services and service methods
Validating data: using data annotations
Validating data: writing a custom validator
Validating data: server-side validation with client-side feedback
Validating data: triggering validation when needed
Validating data: using the ValidationContext
Handling errors on the server
Using SQL Azure with WCF RIA Services
Exposing WCF RIA Domain Services as OData endpoints
Exposing WCF RIA Domain Services for other technologies
Chapter 13: Windows Phone 7
Introduction
Getting our environment ready to start building Windows Phone 7 applications
Building your first data-driven Windows Phone 7 application
Getting data on your Windows Phone 7 using WCF
Accessing REST services from Windows Phone 7 using XML
Accessing REST services from Windows Phone 7 using JSON
Working with push notifications using the cloud
Storing data in a local SQL CE database
Using the background transfer service
Appendix
Creating a REST service from WCF
Installing an SQL Server database
Working with Fiddler
Working with the Silverlight control toolkit
Working with WIF
Installing the WCF RIA Services Toolkit
Installing and using NuGet
Index

Download File Size:120.55 MB


Packt Microsoft Silverlight 5 Data and Services Cookbook PDF ePub eBook
€1
Customers who bought this program also bought:

Home| All Programs| Today added Progs| Your Orders| Helpdesk| Shopping cart      





FileMaker Pro 19 €50


Pinnacle Studio Ultimate 25 €25


CorelDRAW Graphics Suite 2022 €65






CorelDRAW Graphics Suite 2021.5 for Mac €65

             

Adobe Master Collection 2021 for Mac €260






Autodesk 3DS MAX 2023 €75

             

Autodesk Inventor Professional 2023 €95