Category: Windows Phone Dev
-
Download PDF on hosting WCF in azure and consuming in window 7 phone
WCF hosted in Azure and consumed in windows 7 phone
-
Hosting WCF service in Windows Azure and consuming in Window 7 phone app
Objective This article will give step by step walkthrough of hosting a WCF service in windows azure and then consuming that in windows7 phone application. Expected output Step 1 Open Visual Studio 2010 as an administrator. Select File -> New -> Cloud Service. Click on Windows Azure cloud service template. Give name of the cloud…
-
Walkthrough on Creating WCF Data Service (ODATA) and Consuming in Windows 7 Mobile application
Note : Now you can consume ODATA in very simpler way updated post can be read at below link https://debugmode.net/2011/06/11/consuming-odata-in-windows-phone-7-1-or-mango-phone/ Objective In this article, I will discuss 1. How to create WCF Data Service 2. How to remove digital signature on System.Data.Service.Client and add in Windows7 phone application. 3. Consume in Windows 7 phone…
-
Video on consuming WCF Data Service (OData) in Windows 7 Phone Application
MainPage.Xaml <phoneNavigation:PhoneApplicationPage x:Class=“ConsumingODATA.MainPage” xmlns=“http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x=“http://schemas.microsoft.com/winfx/2006/xaml” xmlns:phoneNavigation=“clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Navigation” xmlns:d=“http://schemas.microsoft.com/expression/blend/2008” xmlns:mc=“http://schemas.openxmlformats.org/markup-compatibility/2006” mc:Ignorable=“d” d:DesignWidth=“480” d:DesignHeight=“800” FontFamily=“{StaticResource PhoneFontFamilyNormal}” FontSize=“{StaticResource PhoneFontSizeNormal}” Foreground=“{StaticResource PhoneForegroundBrush}”> <Grid x:Name=“LayoutRoot” Background=“{StaticResource PhoneBackgroundBrush}”> <Grid.RowDefinitions> <RowDefinition Height=“Auto”/> <RowDefinition Height=“*”/> </Grid.RowDefinitions> <!–TitleGrid is the name of the application and page title–> <Grid x:Name=“TitleGrid” Grid.Row=“0”> <TextBlock Text=“Windows 7 Phone” x:Name=“textBlockPageTitle” Style=“{StaticResource PhoneTextPageTitle1Style}”/> <TextBlock Text=“ODATA” x:Name=“textBlockListTitle” Style=“{StaticResource PhoneTextPageTitle2Style}”/> </Grid> <!–ContentGrid is…
-
Video on Picture Gallery for Windows 7 Phone using WCF REST Service
IService1.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Runtime.Serialization; 5 using System.ServiceModel; 6 using System.ServiceModel.Web; 7 using System.Text; 8 using System.IO; 9 10 namespace PictureService2 11 { 12 13 [ServiceContract] 14 public interface IService1 15 { 16 [OperationContract] 17 [WebGet(UriTemplate=”/GetFiles”)] 18 List<string> GetFilesName(); 19 20 21 [OperationContract] 22 [WebGet(UriTemplate=”/GetImage/{imageName}”)] 23 Stream…
-
Fixing of ODATA or WCF Data Service Client library bug for Windows7 Phone
Note: I would like to thank Tim for his solution and this article has been referred to his this http://timh.me/bAfFvh You can see video on this article http://dhananjaykumar.net/2010/07/01/videofixingodataclientlibraryissue/ Background When you download ODATA or WCF Data Service client library for Windows 7 phone and extract the System.Data.Service.Client.dll to some location and add this reference to…
-
Video on fixing WCF Data Service Client library for Windows7 phone
I have made this video referring link of tim heuer http://timh.me/bAfFvh Download ODATA Client library from below link , http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=b251b247-70ca-4887-bab6-dccdec192f8d Download WP7fix power script from below link http://storage.timheuer.com/wp7ctpfix.ps1