Windows Store for Developers
Windows store is really an important part of Windows 8 platform. Windows store is the place where user find the metro-style apps. Windows Store is the distribution point for metro style applications. The idea behind building the windows store is connecting people to as many apps as possible.
Additional details about the Developer opportunity coming on windows 8 with the windows store can be found here .

Related Posts:
No commentsApplication Lifecycle Management in Visual Studio 11
This post discusses about new Application Lifecycle Management features in Visual Studio 11. Application Lifecycle Management represents how do you prioritize your requirement, how do you breakdown them into tasks and how do you implement those tasks.
Start with the Requirements, Visual Studio 11 coming up with new tool PowerPoint Storyboarding which you can use for visualise your customer requirements without writing a single line of code.
Related Posts:
No commentsDisplaying Custom HTML message in SharePoint 2010
This post explains about displaying a custom HTML message in Visio Web access web part on a SharePoint web part page. We are using two web parts content editor webpart and Visio Web access webpart as shown below
Related Posts:
No commentsWindows Azure–Security essentials
| This post discusses about Security essentials which technical decision maker should know in-order to protect customers applications and data in Windows Azure platform. Instead you building the server racks and datacenters, Cloud takes your traditional data centers from you and run on their premises which greatly reduces the cost and maintenance. Cloud runs as services platform follows the SAS(software as service) model. |
Related Posts:
1 commentSQL Azure vs SQL Server
This post discusses the differences between SQL Azure and SQL Server in the context of security
More detailed comparison can be found here
Related Posts:
No commentsHeterogeneous Development using Visual Studio 2010
Visual Studio 2010 ultimate supports Heterogeneous development and helps to manage multiple teams and spans the team to multiple platforms.
1. Eclipse is a familiar interface for Java developers and everything is based on perspectives. Open the perspective Team foundation server explorer which is an add-on to eclipse.
You can download the Team Explorer from every where from here
Related Posts:
1 commentCreating Code UI Tests in Visual Studio 2010
| This post discusses about creating a test case for windows application in both Microsoft Test Manager and using a Code UI Test in Visual Studio 2010. It also discuss about editing a Code UI test by adding assertions into the UI map using UI controller. | ![]() |
1. Before creating test case we will create small windows application notepad.
Related Posts:
No commentsCreating Firewall rules using SQL Azure
| The firewall feature in Windows Azure portal allows you to store your data securely on cloud which deny all connections by default. The new firewall feature allows you to specify list of IP addresses which can access your SQL Azure Server.You can also programmatically add connections and retrieve information for SQL Azure database. This post discusses about creating the firewall rule using the Azure portal. |
1. Browse the website https://windows.azure.com/ and enter your live account credentials
Related Posts:
No commentsDeploying Windows Azure Application Part2
| In my previous post I have discussed about creating the service accounts which required to create to deploy the windows azure application. This post discusses the second step which is deploying the application management portal. Windows Azure tools for visual studio allows you to create and deploy the service package to Windows Azure using Visual Studio. |
Before deploying the application to the staging environment using management portal, generate the service package using the visual studio
1. Open the ServiceConfiguration.cscfg file in windows azure service project
replace the placeholders [YOUR_ACCOUNT_NAME] with the storage account name which you created in the step1 and [YOUR_ACCOUNT_KEY] with the primary key access value.
Related Posts:
No commentsWCF Services in Windows Azure
| What is Windows Azure? Windows Azure provides developers computation power storage and can scale web applications on internet through Microsoft Datacenters. Developers can use Azure platform to build WCF service application using their existing Visual Studio 2010 expertise. |
Windows Azure supports the protocols and formats including SOAP, REST and XML. This post discuss about creating a simple WCF Service and hosting it on Windows Azure and consuming in client application.
1. Create a WCF Service Contract in Windows Class Library project as shown below which in-turn you use in Web role, worker role and in client application. Read more about roles in windows Azure here
1: using System;
2: using System.ServiceModel;
3: namespace WCFContract
4: {
5: [ServiceContract]
6: public interface IContract
7: {
8: // This operating returns the server information, including
9: // the role's name and instance id
10: [OperationContract]
11: string GetRoleInfo();
12:
13: // This operation returns the information of the channel
14: // being used between the client & the server.
15: [OperationContract]
16: string GetCommunicationChannel();
17: }
18: }




