Category: Silververlight
-
Learn WCF RIA Service: Day 3
Learn WCF RIA Service: Day 1 Learn WCF RIA Service: Day 2 Overview of Domain Service Class On day 2 we ran through creating our first line of business application using RIA services. We did not look deeper much into generated classes. Today we will take a step back and examine Domain Service class. Better…
-
Learn WCF RIA Service: Day 2
Learn WCF RIA Service: Day 1 Building a simple line of business Application using RIA Services Last day we had enough of theory on RIA Services. Today let us get our hand dirty and launch visual studio. We will keep it simple and easy in flow since it is our first exercise. Essentially we will…
-
Learn WCF RIA Service: Day 1
Why WCF RIA Service ? It is said that, “If you want to have better understanding on a technology; first find why you need that technology? “ And to adhering above saying, we will start our journey of WCF RIA learning with a discussion on “Why WCF RIA Service? “ Most developers are very much…
-
Working with JavaScript in Silverlight 4.0
In this post I will show you calling of Javascript function from Silverlight. It is very simple and straight forward. Assume you have a JavaScript function on aspx page as below, SilverlightTestPage.aspx You want to call this Javascript function on page load of the Silverlight page then you will have to add namespace And in…
-
Smooth Streaming in Silverlight
This post is walkthrough on enabling smooth streaming of media over IIS and then stream over Silverlight client. There are very good documentation available on IIS official site to have a better understanding of smooth streaming. So I am not touching theoretical concept behind smooth streaming in this post. However I have shown steps by…
-
Video on Smooth Streaming in Silverlight Part 1
******************************************* *************************************************************
-
Upload large file of size more than 5 MB from Silverlight to Server location using WCF
This post is based on post File Upload from Silverlight using WCF. So please read it before proceeding with this post Long back I wrote post on uploading a File from Silverlight to server location using WCF. I found my own post quiet useful. However, when I reread and implemented the code, I mentioned in…
-
Consuming ODATA in Silverlight 4.0
ODATA is everywhere and so is Silverlight. In this post, I will show, How ODATA can be consumed in Silverlight? “ OData URL I will be using NorthWind OData URL. You can access that URL from below link. http://services.odata.org/Northwind/Northwind.svc/ We are going to fetch Customers table from NorthWind DataBase. Create Project and Add Service Reference…
-
AutoCompleteBox in Silverlight 4.0 with DataSource from SQL Server
In my last article AutoCompleteBox in Silverlight 4.0 , Data Source for Autocomplete Box was an IEnumerable list. In this post we will work with a column value of table from SQL Server as Data Source for Autocomplete Box. Our approach would be 1. Create WCF Service 2. Exposed data 3. Consume in Silverlight 4.…