kalyanms1

Stories submitted by kalyanms1

Web Essentials and CSSCop for Visual Studio 2010 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 7 days, 5 hours ago

This post discuss about new features in Web Essentials extension and Image optimizer which helps developers to write web applications faster. A new extension CSSCop which is a FXCop for style sheets. You can download the Web Essentials for Visual Studio 2010 here. The CSSCop can be download from here. Download link for Image Optimizer is here. You can read my previous post on Web Standards update here to refresh your memories. read more...

1 comment |category: |Views: 43

tags: another

Visual Studio Achievements(www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 8 days, 7 hours ago

What is Visual Studio Achievements? Gamification is an idea behind Visual Studio Achievements. Visual Studio is a powerful tool and it contains many features which you may not know about it. Visual Studio Achievement is something you earn when you unlock the Visual Studio feature. It is an add-in to Visual Studio and works with Visual Studio 2010 professional and above. If you are having a Visual Studio professional edition then you need to download FXcop to add-in work. read more...

add a comment |category: |Views: 1

tags: another

Microsoft Codename Cloud Numerics(www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 27 days, 6 hours ago

Microsoft Codename “Cloud Numerics” is a new .NET programming framework which can be used to perform intensive numeric computations on large distributed data sets. If you are some one who works with large data sets, extracting the data and forming and simulating the models then you might need more computing power and memory. read more...

1 comment |category: |Views: 79

tags: another

Windows Store for Developers (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 28 days, 10 hours ago

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. read more...

add a comment |category: |Views: 3

tags: another

Configuring Custom Master Page in SharePoint 2010 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 3 months, 15 days ago

This post discusses about configuring custom master page in SharePoint 2010 website. You might have use custom images, custom style sheets to create new master page in SharePoint. Follow the below steps to apply custom master page in SharePoint 2010. read more...

add a comment |category: |Views: 0

tags: another

Impersonation and Delegation in WCF (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 3 months, 19 days ago

Impersonation is a technique that WCF Services use to authorize the caller’s identity to access to service resources such as files and database tables. Service resources can be located either on local service machine or remotely hosted. The resources are being accessed by WCF Service’s process identity or specific windows identity. read more...

add a comment |category: |Views: 2

tags: another

Application Lifecycle Management in Visual Studio 11 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 3 months, 20 days ago

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. read more...

add a comment |category: |Views: 2

tags: another

How to choose right WCF binding? (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 3 months, 21 days ago

Binding in WCF defines how clients can connect with your service. The base class for all bindings in WCF is System.ServiceModel.Channels.Binding. A Binding includes definition for WS-* protocols used, the message encoding and the transport protocol. read more...

add a comment |category: |Views: 8

tags: another

Transport and Message Security in WCF (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 3 months, 22 days ago

This post discusses about transport and message security. In Transport Security user credentials and claims are passed using transport layer. The transport protocols are TCP, HTTP, MSMQ and IPC. Each of these protocols have their own mechanism for passing user credentials. The most common approach is using secure socket layer(SSL) for encrypting the details which sent over HTTPS. read more...

1 comment |category: |Views: 16

tags: another

WCF 4.5 Features(www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 4 months ago

This post discusses the new features in WCF 4.5. There have been significant improvements in WCF 4.5 on configuration. Simplifying the generated configuration file in client A client configuration file is generated when you add a service reference in Visual Studio 2010. The configuration files in earlier version of WCF contained the value of every binding property even if it is a default value. In WCF 4.5 Configuration files contain binding properties that are set to non-default value. read more...

add a comment |category: |Views: 14

tags: another

OData and Windows Azure (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 4 months, 1 day ago

This post discusses about building a service using CLOUD platform that can reach various devices. What is OData and Where it fits in? OData is a specification that makes very easy to exchange and interact with data on the web. So OData is all about connecting up devices to the CLOUD. This post also discuss how to create a OData Service in Visual Studio 2010 and host it on Windows Azure then explains how to consume the service on Windows phone Mango. read more...

add a comment |category: |Views: 0

tags: another

Performance Tricks to Metro Style Web Applications (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 4 months, 3 days ago

What is web performance? It is actually when does the user perform an action it self and when does those results occur on the screen. The three key factors to web performance is Network, CPU and Memory. read more...

add a comment |category: |Views: 5

tags: another

What is new in .NET Framework 4.5 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 4 months, 4 days ago

Another major release in .NET Framework, .NET 4.5 which allows the developers to use Windows 8 technologies and windows runtime directly from .NET 4.5. It makes easy and natural to write Metro style applications using C# and VB. .NET 4.5 makes your applications run faster eg: Faster ASP.NET startup. .NET 4.5 gives you easy access to your data with entity framework code first approach and recent SQL Server features. This post discuss these features in detail. read more...

1 comment |category: |Views: 98

tags: another

What’s new in Visual Studio 11 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 4 months, 9 days ago

This post gives you an overview on new features in Visual Studio 11. Developers constantly looking for better user experience, developer experience and team experience while using the Visual Studio IDE. read more...

add a comment |category: |Views: 14

tags: another

WebSockets in ASP.NET 4.5 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 4 months, 10 days ago

This post discuss about using WebSockets in ASP.NET 4.5. You can read this post to get an understanding about WebSockets. This post shows piece of code which uses WebSockets in ASP.NET 4.5 and the code is related to simple chat application. read more...

5 comments |category: |Views: 150

tags: another

Why WebSockets? (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1725) 4 months, 11 days ago

WebSockets are required to develop the rich and real time web applications. WebSockets can securely enable the real-time web. Before explaining the need of WebSockets we see what current Web is and it’s limitations. read more...

add a comment |category: |Views: 4

tags: another