Performing CURD operations using Web API - Part 2
In the last post we implemented CRUD operations with Web API. According to HTTP method definitions, all the HTTP requests should return a HTTP response, which consists of Status Line Response Headers Response Message Body (optional) So we can rewrite all these methods with HttpResponseMessage class,this class help to create...
Performing CURD operations using Web API
This post is about creating a HTTP service for CRUD operations using ASP.Net Web API. CRUD stands for “Create, Read, Update, and Delete,” which are the four basic database operations. Many HTTP services also model CRUD operations through REST or REST-like APIs. For this post I am using simple Employee...
Introduction to Web API
Web API is a brand new platform for developing REST services using Microsoft technology stack. It is a framework based on HTTP services, which helps client applications to communicate with services in an object-oriented way. Web API is highly customizable, scalable framework on top of .net framework. If you are...
How to use the Outlook Object Library to send an email
Sometimes we required to send email messages using Outlook Object Library instead of the conventional System.Net.Mail.SmtpClient class. While developing an desktop application, where I couldn’t hard code the SMTP server details and credentials. I found a solution using Outlook Object library, which will help to send email, with the current...
How to handle hardware back button in Windows Phone
If you want to display an exit confirmation from your Windows Phone app, if user press the hardware back button, here is the code snippet. (It is not a recommended practice, as per Windows Phone market place certification requirements, if user pressing the back button from the application’s first page,...
Error Unable to locate package source while installing Visual Studio 2012 Update 3
Recently I tried to update VS 2012, with Update 3. I was not using the offline installer. In the middle of the installation I got a screen like this. As I am installing from online, I tried the Download Packages from Internet option, but it was not working. After searching...
How to reverse engineer .NET applications - A quick guide
In .NET world, all the assemblies are compilied in to MSIL (Microsoft Intermediate Language). The MSIL is converted to machine code by a just-in-time (JIT) compiler when it is executed. MSIL includes metadata that provides a wealth of information on the code. .NET Framework comes with various tools which will...
Skype plugin for updating Skype online status based on outlook appointments
In our organization, we are using both MS Lync and Skype for communications. One of the main problem I faced with Skype, unlike other IMs like Lync or WebEx, Skype will not change the online status, based on outlook appointments, we need to do it manually. So here is an...