Microsoft WebMatrix–Easy to use IDE

June 21st, 2011 by Sanket 
  Microsoft WebMatrix–Easy to use IDE for Web Development Hello Friends, In resent years Microsoft is coming with lot more things for developers, specially web developers. They have introduced various development tools and IDE’s. Now I am going to tell you about new IDE from Microsoft, it is called as “Microsoft® WebMatrix”, following are the details. Microsoft® WebMatrix is a brand...

Failed to access IIS metabase

March 18th, 2011 by Sanket 
  Resolution for error: “Failed to access IIS metabase” while browsing a web site from local host on XP machine with IIS 5.1 version Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Follow following steps to resolve the issue - 1. Unregistered...

Microsoft Visual Studio LightSwitch – Introduction

September 1st, 2010 by Sanket 
What is Microsoft Visual Studio LightSwitch?   Microsoft has finally announced the Visual Studio LightSwitch, which is featured as the newest member of the Visual Studio product family. Microsoft Visual Studio LightSwitch gives you a simpler and faster way to create professional-quality business applications for the desktop, the web, and the cloud. Microsoft has revealed that LightSwitch dramatically...

What is Google App Engine”

February 5th, 2010 by Sanket 
What is Google App Engine?   Google App Engine enables developers to build their web applications on the same scalable systems that power Google’s own apps. Google App Engine enables you to build web applications on the same scalable systems that power Google applications. Google App Engine gives you access to the same building blocks that Google uses for its own applications, making...

Transport level security VS message level security in WCF

January 28th, 2010 by Sanket 
Transport level security VS message level security in WCF   Advantages of Transport level security Does not need any extra coding as protocol inherent security is used. Performance is better as we can use hardware accelerators to enhance performance. There is lot of interoperability support and communicating clients do not need to understand WS security as it’s built in the protocol itself. Disadvantages...

WCF Security modes provided in .NET

January 27th, 2010 by Sanket 
WCF Security modes provided in .NET Across all service bindings there are five possible security modes: None. Turns security off. Transport. Uses transport security for mutual authentication and message protection. Message. Uses message security for mutual authentication and message protection. Both. Allows you to supply settings for transport and message-level security (only MSMQ supports this). TransportWithMessageCredential....

Default types of WCF bindings in .NET

January 27th, 2010 by Sanket 
Default types of WCF bindings in .NET   Within the Windows Communication Foundation programming model, bindings are represented by the System.ServiceModel.Channels.Binding class. All binding classes must derive from this base class. Following are the different bindings provided by WCF by default: 1. BasicHttpBinding 2. WSHttpBinding 3. WSDualHttpBinding 4. WSFederationHttpBinding 5. NetTcpBinding...

Client Credential Type in WCF

January 16th, 2010 by Sanket 
Different Client Credential Type provided in WCF – Windows communication foundation   The choice of client credential type depends on the security mode in place. For transport security you can require a Windows credential or certificate-and there are variations on how Windows credentials are passed via TCP, HTTP and MSMQ. Message security supports any of the following settings for clientCredentialType: None...

Features of Curl programming – RIA development

January 16th, 2010 by Sanket 
Features of Curl programming – RIA development   The Curl Rich Internet Application Platform is the most powerful environment for rapidly developing complex, industrial-strength Web applications. Using Curl, organizations can create a new class of Web-based applications that provide all of the rich interactivity, functionality and performance of client-server applications. Unlike tools such...

What Is Message level Security in WCF?

January 8th, 2010 by Sanket 
What Is Message level Security in WCF?   Message security uses the WS-Security specification to secure messages. The specification describes enhancements to SOAP messaging to ensure confidentiality, integrity, and authentication at the SOAP message level (instead of the transport level). In brief, message security differs from transport security by encapsulating the security credentials and claims...

Get Vs Post Method

October 29th, 2009 by Sanket 
Get Vs Post Method in HTML, PHP and ASP.NET   Using "get" to pass information sends the information appended to the request for the processing page. It tends to be simpler and you can troubleshoot any problems simply by looking at the address bar in your browser since all values passed are displayed there. This is also the primary weakness of this method. The data being passed is visible...