Read Smooth Streaming in Silverlight here This post is walkthrough on enabling smooth streaming of media over IIS and then stream over Windows Phone 7 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 inContinueContinue reading “Smooth Streaming on Windows Phone 7”
Monthly Archives: July 2011
XmlDictionary and XmlDictionaryString classes to create WCF Message
It is common when you will create Message, you may use below classes Class Namespace XmlDictionary System.Xml XmlDictionaryString System.Xml Let us investigate purpose of each class one by one. XmlDictionary class allows us to create a private pair of Key and Value. This key-value pair can be used to represent Element name Attribute name XMLContinueContinue reading “XmlDictionary and XmlDictionaryString classes to create WCF Message”
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 inContinueContinue reading “Working with JavaScript in Silverlight 4.0”
Changing Application Tile in Windows Phone 7
When you create a Windows Phone 7 application, by default newly created app will have Title Background Image Icon Value set to default as below , If you will notice by default Title would be the same as of name of the Windows Phone Application project. On running you will get Application tile as below,ContinueContinue reading “Changing Application Tile in Windows Phone 7”
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 byContinueContinue reading “Smooth Streaming in Silverlight”
Video on Smooth Streaming in Silverlight Part 2
**************
Video on Smooth Streaming in Silverlight Part 1
******************************************* *************************************************************
Presented in Kolkata Community Tech Days on Road
DataAccess [Download slides from clicking DataAccess link] On 2nd July 2011, I presented on “New Ways of Accessing Data “. It was great presenting first time in front of Kolkata audience. Session details are as follows Topic New Ways of Accessing Data Duration 60 Minutes Venue Kolkata Number of Audiences Around 100 This was demoContinueContinue reading “Presented in Kolkata Community Tech Days on Road”
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 inContinueContinue reading “Upload large file of size more than 5 MB from Silverlight to Server location using WCF”
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 ReferenceContinueContinue reading “Consuming ODATA in Silverlight 4.0”