Navigation

Feed your aggregator (RSS 2.0)   Send mail to the author(s)

Recent Entries
Archives
<June 2011>
SunMonTueWedThuFriSat
2930311234
567891011
12131415161718
19202122232425
262728293012
3456789


Categories
Blogroll
Login

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.


Copyright 2012 Manish Kumar Singh
 Wednesday, June 01, 2011
Compact P3P settings with IIS7
Yesterday, I came across a problem where cookies created by application X was not readable to application Y, because X was running under an IFrame, when it created a cookie. Though, both X and Y belonged to same domain, still IE was whining about it. This is a problem with all IE 6 and onwards, Chrome and few other browsers. Firefox works like a breeze. This happens because cookie from an IFrame are treated as Third Party cookies and are restricted by browsers for any kind of spam.

So how the heck do I say the browser that X and Y are legitimate brothers

Simple ... do you have the birth certificate or any document to prove it? No ?? ok, so prepare it ... go to sites like p3p Edit or p3p Writer, pay around $30 - $40 to generate a document. It will generate the policy Xml and compact P3P string for you. Now you need to carry this proof everywhere you go. I mean this compact p3p needs to be attached to every response headers. When a client browser finds this p3p header, it assumes that the site is not a spam and let's other application read the cookie.

Hmmm ... nice security!

So, is it monitored or works like x.509 certificate?

Nope!
It is a standard declaration and as per W3W standards, but frankly, I don't even know if this has anything to do with law!!
But still browsers need it ... hmmm!

I'll take your word

Ok ... it's still not that strict, if you can give your word that X is a brother of Y.

You can provide a compact oath statement called compact p3p everytime you make response, to tell the clients that X or Y is not a spam. You don't need to spend $30-$40 now ... you can do it later.

In a way, the ball is in your court, when you say ... Noooo I am not doing any spam, and not collecting any user data ... bla bla bla. And you have to say it like oath or a legal statement comprised of standard words and points. Well this is what compact p3p is!

To understand these huge list of words and their meaning you can refer to p3pwriter .. All the best!

Fine .. I'll take your word and allow the cookies. So you can attach the proof through a module by adding a header to every response

HttpContext.Current.Response.AddHeader("p3p", "CP=\"CAO PSA OUR...\"");

Or through IIS

IIS 7 settings for compact p3p

I'll show you how to apply for root, so that all sites inside IIS 7 has the header automatically attached to the response. However, you may opt for a particular site, or a folder.
On IIS root look for Http Response Headers item in the features view on the right pane. Add an entry to this header
Name = p3p
Value = CP="IDC DSP COR CURa ADMa OUR IND PHY ONL COM STA"
Thats it! you have declared that X and Y are brothers ... :-).

By doing this you have now allowed the cookies to be shared between IFrame. Later ... you need to have a policy purchased and placed in a URL that can be read by clients and treat your decleration legitimate.

.Net
Tuesday, May 31, 2011 11:00:08 PM (GMT Standard Time, UTC+00:00)  #  Comments [26] Trackback
 Sunday, June 07, 2009
Fun with SQL Query

Find Nth Max or Min Record

This query gets the Nth highest salary from the emp table. You can replace the Max function with Min to obtain Nth lowest salary.

SELECT Eno, Ename, Desig, Sal, Mgr, DNO
FROM dbo.Emp AS
E1
WHERE (N - 1 =
 
         (SELECT COUNT(DISTINCT Sal) AS
DistinctSal 
            FROM dbo.Emp AS E2 WHERE (Sal > E1.Sal)))

Row Number

This query generates the row number for the records fetched.

SELECT (SELECT COUNT(*) AS Counter 
               FROM dbo.Emp AS
e2 
               WHERE (e2.Eno <= e.Eno)) AS RowNumber,
 
            
Ename, Desig,
Sal 
            FROM dbo.Emp AS

            
ORDER BY
RowNumber

Running Total

This query computes the running total on salary for the records in Emp table.

SELECT a.Ename, SUM(b.Sal) AS RunningTotal
FROM dbo.Emp AS
a
INNER JOIN dbo.Emp AS b ON a.Ename >= b.
Ename
GROUP BY a.Ename

Find Duplicates

This query finds the duplicate records in Emp table.

SELECT Ename, Desig, Sal, COUNT(*) AS Duplicate
FROM dbo.
Emp
GROUP BY Ename, Desig,
Sal
HAVING (COUNT(*) > 1
)
ORDER BY Duplicate DESC, Ename

Let SQL Generate SQL

This query emits SQL queries as records fetched.

Select 'Select DName from Dept where Dno=' + CAST(DNO as varchar) from Emp


SQL
Sunday, June 07, 2009 6:07:50 AM (GMT Standard Time, UTC+00:00)  #  Comments [3] Trackback
 Sunday, May 17, 2009
Getting Started with WCF

WCF Kick Start

In this article I would be describing the simplest form of WCF (Windows Communication Foundation) project which would get you started with the WCF concepts and best practices. The purpose is to minimise the confusion from code and configuration and explain the idea along with the best practice. I would also provide description and links to help you move to a more advanced WCF topics as and when required.

For the sake of kick start I would be using basicHttpBinding for the service and consumer, which does not require any kind of authentication when accessing the service. It is kind of open to all.

Below is an overall image of the solution, projects and project files that I have used to demonstrate the simplest form of WCF implementation.

solution

The solution contains a project WcfServiceOne which defines types for contracts exposed by the service. The person class is the data contract, MyService is the service and IMyService is an interface acting as a service contract. This project acts as an API for the services.

The ServiceOneHost is the service exposed to the client. It references the project WcfServiceOne which the actual implementation of the Service as an API. Though, I could have had the service implementation written in the same project, I preferred following the best practices, by implementing the Service and Service API (contracts and its implementation) in a separate project. One advantage of doing this is that, you have decoupled service and Service API, which simplifies using the API in a non-WCF environment by directly referencing it. The web.config file in this project contains the binding information for the service which I will be explaining later in this article.

The ServiceOneConsumer is a simple ASP.Net web application consuming the service exposed by ServiceOneHost. The web.config in this web application contains the binding information defined by the host.

WcfServiceOne

WcfServiceOne project contains:

  • Data Contract - Person.cs
  • Service Contract - IMyService.cs
  • Service Implementation - IMyService.cs
Also notice that the project references System.ServiceModel and System.Runtime.Serialization which are required to assign attributes like ServiceContract, OperationContract, DataContract and DataMember.

Person.cs

using System.Runtime.Serialization;

 

namespace WcfServiceOne

{

    [DataContract]

    publicclassPerson

    {

        [DataMember]

        publicstring FullName { get; set; }

 

        [DataMember]

        publicstring Gender { get; set; }

    }

}

IMyService.cs

using System.ServiceModel;

 

namespace WcfServiceOne

{

    [ServiceContract]

    publicinterfaceIMyService

    {

        [OperationContract]

        string Callme(Person p);

    }

}

MyService

namespace WcfServiceOne

{

    publicclassMyService : IMyService

    {

        publicstring Callme(Person p)

        {

            return"Hello " + p.FullName + "  " + " you are a " + p.Gender;

        }

    }

}

ServiceOneHost

Add a reference to WcfServiceOne and then right click on the project. Select "Add New Item" from the context menu and select "WCF Service" templates. Name the new file ServiceOneHost.svc. The template would also create the code files for you in the App_Code folder. You can delete it, the code file is not required. Open the ServiceOneHost.svc and change the line to:

<% @ ServiceHost Language ="C#" Debug ="true" Service ="WcfServiceOne.MyService" %>

 

Now open the web.config file in this project and add the following block at the last within the closing of configuration tag.

  < system.serviceModel >

    < behaviors >

      < serviceBehaviors >

        < behavior name ="ServiceOneHostBehavior">

          < serviceMetadata httpGetEnabled ="true"/>

          < serviceDebug includeExceptionDetailInFaults ="false"/>

        </ behavior >

      </ serviceBehaviors >

    </ behaviors >

    < services >

      < service behaviorConfiguration ="ServiceOneHostBehavior"name="WcfServiceOne.MyService">

        < endpoint address =""binding="basicHttpBinding"contract="WcfServiceOne.IMyService">

          < identity >

            < dns value ="localhost"/>

          </ identity >

        </ endpoint >

        < endpoint address ="mex"binding="mexHttpBinding"contract="IMetadataExchange"/>

      </ service >

    </ services >

  </ system.serviceModel >

system.servicemodeltag defines how the consumer is going to connect to the service exposed here. When you add a "WCF service" to the project using template, it responds with adding the above system.servicemodel in the web.config, except the following two lines.

      < service behaviorConfiguration ="ServiceOneHostBehavior"name="WcfServiceOne.MyService">

        < endpoint address =""binding="basicHttpBinding"contract="WcfServiceOne.IMyService">

Change the name, contract and binding information as shown above. The wsHttpBinding is used to provide more secured communication using certificate. Visit The pattern and practices for WCF security at Codeplex for further guidance on how to implement wsHttpBinding using certificates.

ServiceOneConsumer

Before you proceed with consumer, you need to generate a proxy for the service and define how it connects, in the web.config file. To generate the proxy and the configuration block we would use svcutil. Open the Visual studio command prompt from Visual Studio Tools and use the following command to generate the proxy and configuration.

svcutil http://localhost/ServiceOneHost/ServiceOneHost.svc /Language:C# /out:ServiceHostProxy.cs /config:ServiceHost.config

This will create a ServiceHostProxy.cs and ServiceHost.config. Open the ServiceHost.config and copy the block. Now open the web.config file and paste the block at the end before the closing tag of configuration. The endpoint address might differ depending your host and consumer address URL.

    < system.serviceModel >

        < bindings >

            < basicHttpBinding >

                < binding name ="BasicHttpBinding_IMyService"closeTimeout="00:01:00"

                         openTimeout ="00:01:00"receiveTimeout="00:10:00"

                         sendTimeout ="00:01:00"allowCookies="false"

                         bypassProxyOnLocal ="false"

                         hostNameComparisonMode ="StrongWildcard"

                         maxBufferSize ="65536"maxBufferPoolSize="524288"

                         maxReceivedMessageSize ="65536"

                         messageEncoding ="Text"textEncoding="utf-8"

                         transferMode ="Buffered"

                         useDefaultWebProxy ="true">

                    < readerQuotas maxDepth ="32"maxStringContentLength="8192"

                                  maxArrayLength ="16384"

                                  maxBytesPerRead ="4096"

                                  maxNameTableCharCount ="16384" />

                    < security mode ="None">

                        < transport clientCredentialType ="None"proxyCredentialType="None"

                            realm ="" />

                        < message clientCredentialType ="UserName"algorithmSuite="Default" />

                    </ security >

                </ binding >

            </ basicHttpBinding >

        </ bindings >

        < client >

            < endpoint address ="http://localhost/ServiceOneHost/ServiceOneHost.svc"

                binding ="basicHttpBinding"bindingConfiguration="BasicHttpBinding_IMyService"

                contract ="IMyService"name="BasicHttpBinding_IMyService" />

        </ client >

    </ system.serviceModel >

Default.aspx

Now add the following UI in the home page of your consumer site. In this case it is Default.aspx.

< table style =" width: 400px;"cellspacing="0"cellpadding="0">

    <tr>

        <tdstyle="width:100px; vertical-align:top; text-align:left;">

            Your Name

        </td>

        <tdstyle="width:10px; vertical-align:top; text-align:left;">

            :

        </td>

        <tdstyle="width:290px; vertical-align:top; text-align:left;">

            <asp:TextBoxID="txtName"runat="server"Width="200"></asp:TextBox>

        </td>

    </tr>

    <tr>

        <tdstyle="vertical-align:top; text-align:left;">

            Gender

        </td>

        <tdstyle="vertical-align:top; text-align:left;">

            :

        </td>

        <tdstyle="vertical-align:top; text-align:left;">

            <asp:DropDownListID="ddlGender"runat="server">

                <asp:ListItemSelected="True"Text="Male"Value="male"/>

                <asp:ListItemText="Female"Value="female"/>

            </asp:DropDownList>

            <asp:ButtonID="btnSubmit"runat="server"Text="Submit"

                onclick="btnSubmit_Click"/>

        </td>

    </tr>

    <tr>

        <tdcolspan="3">

            <br/>

            <asp:LabelID="lblResult"runat="server"Text=""Font-Bold="true"
                    Font-Size="Large"></asp:Label>

        </td>

    </tr>

</ table >

Default.aspx.cs - Code Behind

using System;

using WcfServiceOne;

 

public partial class _Default : System.Web.UI.Page

{

    protectedvoid Page_Load(object sender, EventArgs e)

    {

        txtName.Text = "Manish Kumar Singh";

    }

    protectedvoid btnSubmit_Click(object sender, EventArgs e)

    {

        var p = newPerson {FullName = txtName.Text, Gender = ddlGender.SelectedValue};

 

        var proxy = newMyServiceClient();

        lblResult.Text = proxy.Callme(p);

    }

}

That's it. Now run the consumer site and give it a try.

Enjoy!
Manish


.Net
Sunday, May 17, 2009 5:42:17 PM (GMT Standard Time, UTC+00:00)  #  Comments [17] Trackback
 Saturday, May 16, 2009
Beautiful Dream

It was a Dream

Sometimes a dream seems so neat and well formed in its set of events and story line up, that it makes one feel like a creative writer. Though, I am nowhere near to good novel and creative writers, I hope the beauty of this story would appeal to the readers.

This was a dream that has nothing to do with my real life, but still had a lot of steam in its story and hidden meaning. This is my first write-up for the same and I would try to bring it very near to what I dreamt and how I felt while seeing it. I hope I would be able to generate the same enthusiasm and excitement going ahead.

Even though, I was playing the role of main character in my dreams, feeling every part of the emotions gushing through his nerves, in real life, I didn't have any resemblance to the face, background, nature or story of the character. It is more like as if, I got attached to this character at a different dimension of time and space (for few hours), feeling his inner realm without him noticing it. It is like as if, I stayed as a host inside that character for some time sharing every piece of his thoughts and emotions. The only thing I know better is it was not me still it was me.

Hence, let’s replace the name to say “John”, and let me take you to meet John, his emotions, thoughts and his story.


John!

John was in his teenage happily living with his family. The family consisted of his father, mother and an elder sister. Everyone in his family was an earning member employed. John was the only one studying. In his general routines, he used to spend the first half of the day at his college nearby, and then the rest, either playing basketball with local friends, or staying back at home doing some studies. He really cherished the great moments spent together with his family, and eagerly waited for them to return. John’s dressing sense was like many other teens, wearing rugged jeans, t-shirt and his favorite red cap having the letter “J” embroidered on the front. He used to wear it front-side-back.

John and his family stayed in a beautiful city with a lot of greenery and beautiful weather. Let me describe the place I visited in my dreams. Let me show you what I saw. It was a beautiful city having mountain ranges on one side, hazily visible, with peaks touching the sky. It was a pleasant weather, generally found in cities located near to major mountain ranges. It was not a place with high rise buildings. In fact it was a wide open area with condos located at a good 200-300 meter distance from each other. The area had an uneven slope (common near hilly areas), nicely covered with evenly cut grass and trees planted randomly all over. It did not seem to be a crowded place, an area with a small population but well designed and clean. It seemed it was a time of autumn when I visited the place in my dreams, though in realty it was winter. The fallen yellow leaves all over the place, including roads supported my assumption of less traffic here. It was a windy day as well.

There was a big common play ground at half a mile on left of John’s house. It was a good hangout for John and his friends. It was the only place where I saw a little crowd. Children playing outdoor sports, people walking or simply time passing. It had a basketball court where John used to play with his friends. Located further ahead of the play ground, maybe another half a mile was a church, clearly visible from John’s house. As what I read from the illegally invaded thoughts of John, was that a graveyard was also located behind the church.


Memories

It was the last working day of the weekend. At 1 pm, John was eagerly waiting for the last class to get over - the math class. It was not common for John to feel gloomy, especially in his math classes, which was his favorite subject. He was blaming it to the weather and his not-so-good night sleep. He was having hard time concentrating in the class, while his mind today was wandering more on the philosophical side. Memories from past were dominating his present. Some childhood games, he used to play, the kind of comics he used to read, how preciously, he used to keep those comics in the drawer, places he remembered, the things of his childhood, precious memories of friends and family get together, all this were hovering inside his head, one after another like several movie clips knitted into a sequence.

His mind was wandering in his past while his eyes were looking outside the classroom window where some kids were playing near a tree located few meters away. Those kids were playing with the fallen leaves, arranging them on the ground to form an art work like house, tree, animal and other nice things. One of the kids had scribbled a word out of those fallen leaves. It read “Happy Birthday”. Seeing, this John’s mind started knitting the memories of his birthdays he had enjoyed the most. Then suddenly he remembered the date today – It felt like an important day, it appeared as a day, having some event associated with it. “Was it someone’s birthday?” …. “Something, forgotten falls on this day”. John was trying hard to remember, but somehow, he was not able to recollect any event associated with this date. Yet the date was hovering like a feeling of Déjàvu. The shadows of past memory had now stopped disturbing him and the date had taken its place. John was now randomly picking up his family, friends and relatives to figure out whether today was associated to any of these people.

The class had ended and his colleagues were all packing up their bags. John too started packing his bag and wishing his friends. One of his friends had probably noticed his state of absence in the class. Peter came to John and enquired – “Hey John, something wrong? You seem a bit disturbed today.” “Oh no, nothing serious”, replied John. They walked out of the class together while John explained him about his mood swing and past memories. Soon, they were on the street and walking towards home. John’s house was just a mile away and he preferred walk down. Peter usually accompanied John, till the nearby bus stop, from where he used to take a bus to his house.

After Peter had left, John started walking down towards his house. On his way to home, and, even while he was talking to Peter, his mind was busy figuring out any event associate with today. He was sure that today was some important day, and he was trying hard to remember any event associated to this day. The feeling of Déjàvu was strong yet the answer seemed far away.


Déjàvu

After arriving home John threw his bag on his bed and picked up the TV remote to watch some of his favorite channels. He pushed himself into a comfortable couch in front of the television and started playing with the remote. John was glad to find a sports channel showing a basket ball tournament. John made himself comfortable, almost in a lying position, concentrating on the match. The match kept him glued to the television till it ended in a tie. It was a great match, the game was now over and the commentator was uttering his final speech. Before, ending his speech the commentator revealed that the captains of both teams were a childhood friends and also, one of the captain was having his birthday anniversary today. On hearing this, the Dejavu effect again engulfed John’s thought and he started thinking about event that slipped out of his mind. For few minutes, he concentrated hard thinking about it, but in vain, no auspicious event he could memorize had a date today. Then he stopped thinking about it and planned to visit his friends for some refreshment and game at the playground.

John reached the playground and found three of his friends already practicing basket ball. John was greeted with warmth and he joined them. He stayed there for an hour chatting and playing, then decided to go back home. Then suddenly, it clicked to him, and he asked his friends – By the way! … any Birthday today? I mean do you guys remember today as any important day? They looked puzzled, and then answered in chorus – No, Nope, Why? John knew they could not remember any important event for today and thus confused, so he said – Just a thought, forget it – and then left for his home.

On his way back he saw a person selling flowers on the roadside. He had not seen that person selling flowers before, here in this place. John kept walking looking at the person, who noticed his attention, and greeted him – Sir, any occasion today, would you like to buy some flowers; they are fresh, handpicked! - John was caught in a bit of surprise, by the coincidences happening one after another, that seemed like pointing to something that he was unable to remember.

It was now getting on his nerves, something inside his head was clearly indicating him that today was special, but it was like pondering in dark, as he had no clue about the event, its type and whether good or bad. The Dejavu effect felt stronger now, the birthday written with leaf, birthday of the basketball team captain and now this person selling flower asking him to buy few for an occasion.

Something urged John to buy some flowers and he followed his urge. He bought some flowers and headed to his home.


Revelation

John kept the flowers on the table and went to bathroom for a shower. After a hot bath, John felt more relaxed, though he was still wondering about the incidents. It was already 5 pm now and, he had no clue of any event today. He looked at the flowers while combing his hairs, as if these flowers might help him to find another clue, or solve the mystery for him. He did not want to act like a crazy asking people about any event today, just because he was experiencing a strong force of Dejavu. But, the day was about to end and soon it would be all over, which made him more impatient. He was thinking about ways that can help, in revealing the Dejavu effect. At the same time he did not want to push things beyond logical explanation, making a fool out of himself. Finally, John decided to give up and stop thinking on the issue. He went to the kitchen to make some sandwiches for himself.

It took him just a few minutes to get the grilled vegetable sandwich ready. He took the sandwich on a plate and came back to his room. He again sat on his couch watching television and enjoying his sandwich. He had switched on a channel showing the top number songs. It was an old Phil Collins number playing on the screen “Another day in paradise…”. John had listened to his song many a times before, and liked it. He started singing along in a low voice trying to match the words and tune. John remembered he had performed the same song in school and had received a flower vase as prize for a good performance. His eyes instantly went to the flowers he had kept on the table, and then he stood up and headed towards the store room, where he remembered he had kept his precious belongings – the flower vase too. His whole day spent roaming in the past and now looking at his belongings were pretty exciting for him. He wanted to see and cherish few of his memories which had gripped him since morning.

The store room was small with lot of things stuffed and piled inside. It was untidy with dust filled all over. Most of the things were John’s childhood possessions. John’s eyes started searching for the most probable place for the vase. His eyes went to a box, which was of the size of vase. John immediately recognized it – it was the vase he had received as a prize. John reached for the vase but, it had other thing piled upon it. John was careful about taking it out without disturbing the balance of other items on the top. John almost succeeded except one thing that fell from the top when he brought out the vase. It was an old album containing photographs. John stared at the album lying beside his feet filled with dust, quiet old, but he remembered it. It was his precious procession, and a time to go back into the past. He picked it up and kept looking at it for a while, then saw up from where it had fallen. Probably, it had touched his heart. He brought it, along with the vase and cleaned the dust. After keeping the flowers in the vase, John sat in his couch with his album on his lap.

John turned the page and saw young John in a school dress smiling at him. His memories started sketching scenes he remembered about the photograph and his school. He turned to next photograph, which was a group photograph of all his class mates and teachers. He kept looking at the photographs with his finger touching every person in the photograph. His mind was helping him to regenerate the live moving images of these persons. Suddenly, his finger stopped at a boy – Steve, his best friend. Steve and he were the one who had sung this song in school. Steve had also received the same prize. They had spent a real good time together. In most of the games and plays he was either his partner or rival of equal potential. Steve was always there to help, whether study or play. They had even childishly decided to opt for same school, same job and even same city when they grow up. Unfortunately, Steve had not kept his promises - he had left him alone and moved to a different world. It was the sample place, same city, John was still there but Steve had left. John remembered how bad he felt when he heard about Steve’s demise. It was an unfortunate accident, which had taken Steve away. He remembered putting flowers on his grave and promising that he would never forget the friendship and Steve. It had been seven years now, without Steve.

Suddenly, John jumped out of his couch - the album fell from his lap on the floor. He was now feeling guilty, he had actually forgotten his promise and not only that, the Dejavu effect was now very clear to him, it was his birthday today – Steve’s birthday. The circumstance, past and the clues were all clear and revealed.

The “Happy Birthday”, with the fallen leaves
The two childhood friends playing basket ball as a rival team captains.
The man selling flowers, the same flowers that he had kept on Steve’s grave.

But how was this happening to him, how come the coincidences matched so well, how can it be logically explained, why was he feeling not-so-good in the college today.

John was guilty, confused and surprised all at the same time. Lot of emotions were exchanging hands at the same time, increasing his breathing speed.

John decided to go to his grave behind the church. It was 6 pm by now; it would take him around 20 minutes to reach there. He quickly, dressed up, grabbed the flower and ran to the door.


Forget Me Not

It was windy evening; the sun had already set, but it was still not dark yet. There were multiple graves lying in peace, very silent and calm. The sound of wind was loud and clear.

John was standing in front of Steve’s grave - his eyes were glimmering with water. He was thinking about the good times and emotions he had shared with his best friend. He wanted to ask Steve, why he left and remind his promise. On the other hand his mature mind was telling him, it is not possible – Steve has gone, gone forever – But, then why these coincidences, clues and Dejavu. Was it not Steve, who was trying to remind me of my promise? Why did birthday appeared so many times in front of me, Why was I feeling gloomy today, Why did I bought flowers today, Why did I thought of the Vase today – the vase, which we had received as a prize together, Why did the album fell today – Was it not Steve’s attempt to remind me my promise made at his grave? Was it really a coincidence and so many of them together? John, was so confused and affected by the Dejavu effect, that he softly spoke to Steve’s grave – Steve was it you, did you try to remind me, are you there? There was no reply, John new there won’t be any.

After spending some time there – praying for Steve – John decided to go back home. It was already late and the sky was quiet dark now. John remembered, his family members would be arriving anytime now, and would get worried not finding him at home. John kept the flowers on the stone and after giving it a last soft look, turned around. Suddenly, he felt, a paper fluttering sound behind, he turned again and saw an old and dusty greeting card stuck on the cross of Steve’s grave making the fluttering sound due to the wind, causing its edges to strike on the cross.

John slowly picked up the card removing it from the cross and saw a sketch of two cute little children embracing each other. It was a friendship card. John was amazed, and started looking everywhere to see where the card came from. There was no one around. Can this be another coincidence? He then slowly, with trembling fingers, turned the card, which had no name but a one liner printed in bold calligraphy “FORGET ME NOT”!

This was the instance when I woke up and the story ended right there. But I got up remembering each and every scenes. I decided to blog it, since it was too precious to loose or forget.


General
Saturday, May 16, 2009 9:16:59 AM (GMT Standard Time, UTC+00:00)  #  Comments [11] Trackback
 Saturday, May 09, 2009
Compile .NET code on the fly

In this section I would like to demonstrate how to compile a .NET code on the fly. The code has been written in C#. It contains a class "InlineParser" which does the main job. It mainly, defines the class, does in-memory compilation and exposes a method for the execution of an inner method defined in the class. It also supports a choice of language whether C# or VB.NET for compilation.

    1 using System;

    2 using System.Collections.Generic;

    3 using System.Linq;

    4 using System.Text;

    5 using Microsoft.CSharp;

    6 using Microsoft.VisualBasic;

    7 using System.CodeDom.Compiler;

    8 using System.Reflection;

    9 using System.Xml.Linq;

   10 

   11 namespace com.eforceglobal.crux.bre

   12 {

   13     internalclassInlineParser

   14     {

   15         string expression = string.Empty;

   16         string functionArguments = string.Empty;

   17         string language = "CSharp";

   18         XDocument paramList = null;

   19         object objBase = null;

   20 

   21         public InlineParser(string expr, string functionArgs, XDocument parameters, string lang)

   22         {

   23             expression = expr;

   24             functionArguments = functionArgs;

   25             paramList = parameters;

   26             language = lang;

   27         }

   28 

   29         publicbool init()

   30         {

   31             if(language.ToLower().Equals("csharp"))

   32                 return InitCSharp();

   33             else

   34                 return InitVB();

   35         }

   36 

   37         internalbool InitCSharp()

   38         {

   39             // Compile the expression in a class on the fly

   40             CSharpCodeProvider cp = newCSharpCodeProvider(

   41                 newDictionary<string, string>() { { "CompilerVersion", "v3.5" } } );

   42 

   43             //ICodeCompiler ic = cp.CreateCompiler();

   44             CompilerParameters cparam = newCompilerParameters();

   45             cparam.GenerateInMemory = true;

   46             cparam.GenerateExecutable = false;

   47 

   48 

   49             // Reference Assembly

   50             cparam.ReferencedAssemblies.Add( "system.dll" );

   51             cparam.ReferencedAssemblies.Add( "mscorlib.dll" );

   52             cparam.ReferencedAssemblies.Add( "System.Core.dll" );

   53             cparam.ReferencedAssemblies.Add( "System.Xml.dll" );

   54             cparam.ReferencedAssemblies.Add( "System.Xml.Linq.dll" );

   55 

   56 

   57             // Write your code

   58             StringBuilder sb = newStringBuilder();

   59             sb.Append( "using System;\n" );

   60             sb.Append( "using System.Collections;\n" );

   61             sb.Append( "using System.Collections.Generic;\n" );

   62             sb.Append( "using System.Text;\n" );

   63             sb.Append( "using System.Text.RegularExpressions;\n" );

   64             sb.Append( "using System.Reflection;\n" );

   65             sb.Append( "using System.Linq;\n" );

   66             sb.Append( "using System.Xml.Linq;\n" );

   67 

   68             sb.Append( "namespace com.eforceglobal.crux.bre {\n" );

   69             sb.Append( "public class EvalClass {\n" );

   70             sb.Append( "public EvalClass(){}\n" );

   71             sb.Append( "public object Evaluate(\n" );

   72             sb.Append( functionArguments ).Append( " ) {\n" );

   73             sb.Append( expression ).Append("\n");

   74             sb.Append( "}\n}\n}" );

   75 

   76             //Console.WriteLine( sb.ToString() );

   77 

   78             string code = sb.ToString();

   79             CompilerResults cres = cp.CompileAssemblyFromSource( cparam, code );

   80 

   81             // Compilation Unsuccessfull

   82             StringBuilder errors = newStringBuilder();

   83             foreach ( CompilerError cerr in cres.Errors )

   84                 errors.Append( cerr.ErrorText );

   85 

   86             if ( cres.Errors.Count > 0 )

   87                 thrownewException( errors.ToString() );

   88 

   89             // Compilation Successfull

   90             if ( cres.Errors.Count == 0 && cres.CompiledAssembly != null )

   91             {

   92                 Type ClsObj = cres.CompiledAssembly.GetType( "com.eforceglobal.crux.bre.EvalClass" );

   93                 try

   94                 {

   95                     if ( ClsObj != null )

   96                     {

   97                         objBase = Activator.CreateInstance( ClsObj );

   98                     }

   99                 }

  100                 catch ( Exception ex )

  101                 {

  102                     throw;

  103                 }

  104                 returntrue;

  105             }

  106             else

  107                 returnfalse;

  108         }

  109 

  110         internalbool InitVB()

  111         {

  112             // Compile the expression in a class on the fly

  113             VBCodeProvider vb = newVBCodeProvider(

  114                 newDictionary<string, string>() { { "CompilerVersion", "v3.5" } } );

  115 

  116             //ICodeCompiler ic = cp.CreateCompiler();

  117             CompilerParameters cparam = newCompilerParameters();

  118             cparam.GenerateInMemory = true;

  119             cparam.GenerateExecutable = false;

  120 

  121 

  122             // Reference Assembly

  123             cparam.ReferencedAssemblies.Add( "system.dll" );

  124             cparam.ReferencedAssemblies.Add( "mscorlib.dll" );

  125             cparam.ReferencedAssemblies.Add( "System.Core.dll" );

  126             cparam.ReferencedAssemblies.Add( "System.Xml.dll" );

  127             cparam.ReferencedAssemblies.Add( "System.Xml.Linq.dll" );

  128 

  129 

  130             // Write your code

  131             StringBuilder sb = newStringBuilder();

  132             sb.Append( "Imports System\n" );

  133             sb.Append( "Imports System.Collections\n" );

  134             sb.Append( "Imports System.Collections.Generic\n" );

  135             sb.Append( "Imports System.Text\n" );

  136             sb.Append( "Imports System.Text.RegularExpressions\n" );

  137             sb.Append( "Imports System.Reflection\n" );

  138             sb.Append( "Imports System.Linq\n" );

  139             sb.Append( "Imports System.Xml.Linq\n" );

  140 

  141             sb.Append( "Namespace com.eforceglobal.crux.bre \n" );

  142             sb.Append( "Public Class EvalClass \n" );

  143             sb.Append( "Public Function Evaluate ( " );

  144             sb.Append( functionArguments ).Append(" ) As Object\n");

  145             sb.Append( expression ).Append( "\n" );

  146             sb.Append( "End Function\n" );

  147             sb.Append( "End Class\n" );

  148             sb.Append( "End Namespace" );

  149 

  150             //Console.WriteLine( sb.ToString() );

  151 

  152             string code = sb.ToString();

  153             CompilerResults cres = vb.CompileAssemblyFromSource( cparam, code );

  154 

  155             // Compilation Unsuccessfull

  156             StringBuilder errors = newStringBuilder();

  157             foreach ( CompilerError cerr in cres.Errors )

  158                 errors.Append( cerr.ErrorText );

  159 

  160             if ( cres.Errors.Count > 0 )

  161                 thrownewException( errors.ToString() );

  162 

  163             // Compilation Successfull

  164             if ( cres.Errors.Count == 0 && cres.CompiledAssembly != null )

  165             {

  166                 Type ClsObj = cres.CompiledAssembly.GetType( "com.eforceglobal.crux.bre.EvalClass" );

  167                 try

  168                 {

  169                     if ( ClsObj != null )

  170                     {

  171                         objBase = Activator.CreateInstance( ClsObj );

  172                     }

  173                 }

  174                 catch ( Exception ex )

  175                 {

  176                     throw;

  177                 }

  178                 returntrue;

  179             }

  180             else

  181                 returnfalse;

  182         }

  183 

  184         publicstring Evaluate()

  185         {

  186             string result = string.Empty;

  187             Type type = objBase.GetType();

  188             MethodInfo mInfo = type.GetMethod( "Evaluate" );

  189 

  190             if ( mInfo != null )

  191             {

  192                 ParameterInfo[] pInfo = mInfo.GetParameters();

  193                 object[] arguments = null;

  194                 if(pInfo!=null) arguments = newobject[pInfo.Length];

  195                 if ( pInfo != null )

  196                 {

  197                     foreach(ParameterInfo p in pInfo )

  198                         if ( paramList.Element( "arguments" ).Elements( p.Name ) != null )

  199                         {

  200                             arguments[p.Position] = (paramList.Element( "arguments" )

  201                                 .Elements( p.Name ).Single().Value);

  202                         }

  203                     if ( pInfo.Length != arguments.Length )

  204                         thrownewArgumentException( "Insufficient parameters." );

  205                 }

  206 

  207                 result = mInfo.Invoke( objBase, arguments ).ToString();

  208             }

  209 

  210             return result;

  211         }

  212     }

  213 }

Notice that the class name of the class to be compiled is "EvalClass" and the inner method of the class is "Evaluate". Calling the "Evaluate()" method requires you to execute the following lines of code.

  1 var parser = newInlineParser(subExpression, funcArgs, Arguments.Document, lang);

  2 parser.init();

  3 retString = parser.Evaluate();

Manish


.Net
Saturday, May 09, 2009 6:21:03 AM (GMT Standard Time, UTC+00:00)  #  Comments [29] Trackback
 Sunday, March 29, 2009
Microsoft Surface ... CLI to GUI and Now NUI (Natural User Interface)

Introduction

Microsoft Surface Touch TableI was hearing about Microsoft Surface far last few months, but did not get much information. Recently, I saw a post "PDC 2008" by Robert Levy and Brad Carpenter having a video session demonstrating the capabilities of Microsoft Session. The demonstrate the unique attributes of Microsoft Surface computing, with a dive into vision-based object recognition and core controls like ScatterView, and how the Surface SDK aligns with the multi-touch developer roadmap for Windows 7 and WPF. The software giant has built a new touch screen computer — a coffee table that will change the world. Forget the keyboard and mouse, the next generation of computer interfaces will be NUI (Natural User Interface) which uses natural motions, hand gesture and real world physical objects. The surface is capable of object recognition, object/finger orientation recognition and tracking, and is multi-touch and is multi-user. Users can interact with the machine by touching or dragging their fingertips and objects such as paintbrushes across the screen, or by placing and moving placed objects. This paradigm of interaction with computers is known as a natural user interface (NUI). Surface has been optimized to respond to 52 touches at a time.

Microsoft Surface applications can be written in Windows Presentation Foundation (WPF) and .Net language like C# or VB.Net. It is nicely integrated with Visual Studio 2008 following the same pattern of programming paradigms the .Net developers are used to. However it has custom WPF controls to allow programming for the unique interface of Surface. Developers already proficient in WPF can utilize the SDK to write Surface apps.

Object Recognition Multi User Application

Microsoft Surface SDK 1.0

Right now, Microsoft Surface SDK is not available for public. It has been distributed only to some of the Microsoft partners. I am eagerly waiting to get my hands on the SDK once it is launched. Since, I have already worked with SilverLight and WPF, I think, it would be quite easy to pick Microsoft Surface. This is true for every developer worked on WPF and used XAML. However, there is a small catch ... Working for surface would require more creativity and unlearning the GUI which we are used to. The new interface requires us to think about the UI from entirely a new perspective ... a 360 degree multi-touch perspective.

I am sure the developers deep in love with .NET programming and having high respect for Microsoft Technologies, would be very excited after seeing the video session of PDC 2008. The features demonstrated, and the ease of programming together with seamless process of learning would make you sit up staright on your seat, open Google to find out whether you can get hold of Microsoft Surface SDK. Hmm! As you might be thinking after watching the video, whether you need the touch screen device which costs $10K-15K, to practice Microsoft Surface? The answer is No! Microsoft has a simulator for Surface which would allow you to deploy and play around with your surface code. Unfortunately, that too is not available to public right now. So you might have to wait a little more, until of course you are working for the company included in the Microsoft's Partner list, currently allowed to download and use Microsoft Surface SDK and Simulator.

It Is Not Just Another Glorified And Hyped Touch Screen Computer

Many had a wrong impression about Microsoft Surface thinking it to be another glorified and hyped touch screen computer. The touch screen computers enable users to do away with keyboard and mouse. They can navigate the menu by touching various options to reach a logical end of viewing data or printing. And there ends the comparison. Microsoft Surface device also known as Microsoft Tabletop can do many more things, which you might think are not possible!

The three main components that differentiates it from a regular Touch-Screen device, Direct interaction, Multi-Touch Contact and Object Recognition.

  Object Recognition
  • Multi-touch contact: User need not use only one finger to manage digital data. If user dips five fingers in five different colors in the on screen paint palette and draws five lines with five fingers, you get five lines with five colors . . .
  • Direct interaction: Facility to manage digital information with hand gestures and touch instead on mouse and keyboard.
  • Object Recognition: This technology allows non-digital objects to be used as input devices. This means that the input source does not necessarily have to be digital in form.

This Is The Future

Companies are putting in millions of dollar in research for NUI. There is a nice video "TED: Sixth Sense" from Pattie Maes' lab at MIT, spearheaded by Pranav Mistry. It's a wearable device with a projector that paves the way for profound interaction with our environment. It demonstrates a device which responds to natural gestures of hand which is read by a camera. The UI is developed and projected using a small projector fitted in the same device. If you guys have seen movies like "Minority Report", see these technologies nearing to the imaginations.

The NUI immensely increases interaction with digital contents in a more simplified manner. One does not need to practice with mouse. It won't be a single user interface anymore. Two users can open two different menus at the same time .... (Right now your application would open one menu at a time). A 360 degree interaction, with each person using the same application independently. Surely, we need to think and see the UI very differently now and you are bound only by your imaginations.

So friend's start unlearning the GUI you are accustomed to, and buckle your seat belts for the next gen -- NUI.

Manish


.Net | Thoughts
Sunday, March 29, 2009 9:26:22 AM (GMT Standard Time, UTC+00:00)  #  Comments [41] Trackback
 Monday, February 23, 2009
Interactive Video Advertising With Silverlight 2

Introduction

Rich media advertisement is a buzz word today. Organizations are spending a huge amount to move out from a traditional banner advertisement approach, booklets and television to a more effective tactics where they can reach out to a wider mass through internet. Rich media advertisement forms a basis of wider coverage at less cost together with a wonderful user experience.

Macromedia Flash, already provides a state-of-art solution for it. However, it is mostly tied to its proprietary engine for shock wave and interaction. Flash are further, required to be embedded as a compiled unit. Besides all, it requires you to learn Flash an extra skill.

Something I like about silverlight is that it supports XAML based platform with language support for programming. EXtensible Application Markup Language (XAML) which is pronounced as Zamel, is used to define your canvas and storyboard, which are easy to manipulate at runtime using languages like C# or VB.Net. These are further deployed as a compressed unit rather than a compiled unit. This is no doubt a step further than what Flash has achieved. One drawback, however, is, adoption among wide number of serious users. I don't see it as a big drawback as long as Microsoft is serious about this product.

Silverlight Kickstart

My silverlight development environment includes VS2008 with SP1, Framework 3.5, Silverlight SDK and Microsoft Expression Encoder. I would not get into these details for the scope of this article. You may refer to Getting Started article for Silverlight, to setup your development environment. Further, if you donot want to get into the intrecacies of XAML, then you might also require Microsoft Expression Blend.

WMV for streaming Video with Silverlight

Silverlight supports WMV format for videos. Using Microsoft Expression Encoder these WMV files can be encoded to have markers on their timelines. These markers can be used by siliverlight for interaction. The markers are simply names given to a time in the video's timeline. Silverlight raises MarkerReached event (if registered) when a marker is reached while playing the video. This forms the basis of interaction between silverlight and streaming videos. There is a nice video tutorial explaining, how to add a marker using Microsoft Expression Encoder.

Silverlight UI

XAML in Silverlight allows you to do a lot of stuffs with the UI using its declarative tags. Few, real interesting things you can do, without any extra skill required, includes, drawing a curve, masking, controlling opacity, define animation ... all through XML like declarative tags ... Wow!. In this tutorial, I will be showing you how to create an interactive overlay on a running video. For this, I have a video with three markers defined on it (using Encoder). Now let us first examine the UI.

The UI

Few things, I would like to explain here, before we proceed to next step, since they have been referred ahead. Take a sneak into the code for things, I have marked in bold. Notice that:

  • Movie name is "MainMovieStream" defined as an attribute "x:Name".
  • The "MarkerReached" event is registered for the movie as "MainMovieStream_MarkerReached".
  • Canvas with a name "TopOverlay" which is placed -325 pixels on the left.
  • "TopOverlay" canvas has an inner element "TopText" with an event "MouseLeftButtonDown" handled by "TopText_MouseLeftButtonDown" function
  • A Canvas "BottomOverlay" is defined in a similar faishon except its top is "131".
Silverlight Story Board

Take a sneak into the code for things, I have marked in bold. Notice that:

  • Storyboard "TopOverlayIn" targets the canvas "TopOverlay".
  • The "Storyboard.TargetProperty" tells us that the "Left" property has to be changed.
  • The "SplineDoubleKeyFrame" defines, that after every 1 sec the target property moves near to the "Value=0". Hence, the Canvas.Left moves from -325 to 0
  • The Storyboard "TopOverlayOut" does exactly the opposite of "TopOverlayIn".

MediaControl.xaml

The Storyboards are treated as Canvas resource which would be used when required. Let us see the complete XAML for our tutorial.

C# Code

When you add a XAML file into your solution, visual studio responds with adding an associated code behind file for the XAML. Besides, you would also find a App.xaml and its code behind file with same name. While doing any development on Silverlight, most of the time you would ask "How can I pass values to Silverlight application at runtime" or in another way "How can I make it as a component to be used in other projects?". This is done through parameter passing at the time of initialization.

App.xaml.cs

Let us sneak into App.xaml.cs file where the necessary changes has been made for the same. The only changes required in the App.xaml.cs file are:

  • Declare an "IDictionary" object for paramters as a class variable

    public partial class App : Application {

        private IDictionary<string, string> initParams;


    ...

  • Initialize it in the "Application_Startup"

    private void Application_Startup(object sender, StartupEventArgs e)

    {

        this.RootVisual = new MediaControl();

        InitParams = e.InitParams;

    }

MediaControl.xaml.cs

Now let us sneak into the MediaControl.xaml.cs file to see how we collect the parameters and how we handle the animation and events.

In the code above we get the reference of the Silverlight application using "Application.Current as App" (marked in bold) in the "Page_Loaded" event. Once we have got the handle of the application we can access its public properties. In this case the parameters. As you can see, I am iterating through each parameters and storing the values into my local variables. The marker parameters here contains the storyboard names that we would see in the next section. Also notice, how I am handling the "MarkerReached" event and the "MouseLeftButtonDown" events. The actions are self explanatory here.

Embedding Silverlight RichMediaAd Control

Once you have done with this code, your control is ready to be used. When you compile a Silverlight application, you would notice that it generates a RichMediaAd.xap file under ClientBin folder of your web application which references the Silverlight application. This .xap file is nothing but a compressed file containing your application manifest and the DLL. You can use a simple un-zip command to view the files inside. In the page

Now let us see the code where we embed this Silverlight control we made.

Once you have embedded the XAP file. It is ready to run. Notice, that I am sending all necessary parameters at runtime, including the media I want to use.

Happy Silverlight Programming !!


.Net
Monday, February 23, 2009 2:14:53 PM (GMT Standard Time, UTC+00:00)  #  Comments [13] Trackback
 Monday, January 19, 2009
Life full of Talents and Skillz

Skillz is my current project, where I have been involved for over 6 months now. The core part of Skillz is to do a Talent Management while additionally it supports performance management.

This is a breed of very interesting project for me with lot of grilling, learning and testing one’s self Talent Quotient. We faced lots of challenges and kept working our ways through to achieve what we initially set out to achieve. With time the product evolved as we developed a stronger understanding of the requirements across industries and formed our own opinions on how these should be addressed. It has been a real interesting journey, delving into unknowns, digging out answers and putting it into implementations. I feel like sharing some of my experiences with Skillz here for benefit of all developers and architects, trying to decipher the same unknowns.

The Challenges

The First Challenge

On this project the biggest challenge was the need to correctly understand what Talent Management is and what is really expected of a Talent Management application. While researching, I found many articles and blogs explaining Talent management.

The problem with the information and articles out there is that it creates a fair amount of confusion between talent management and performance management. Both are fairly inter linked. So much so that at times it becomes hard to differentiate between the two. It is like you have been asked to differentiate between the words [opinion, attitude, belief and faith]. We compared few products currently available. Some of them were far from catering the actual need of talent management, while others offered a wide range of tools most of which, would be of no use to most organizations.

Only some were quite near to what was expected. There are quiet good articles out there on the web, worth mentioning here. Tony DiRomualdo in one of his article defines seven management practices that matters. He is in a view that for becoming a well rounded talent requires continuous learning and development of knowledge and skills. One of the articles published by Nasscom and written by Prof. Peter Cappelli, Center for Human Resources, University of Pennsylvania, explains the more subtle difference between Performance and Talent Management titled Talent Management is a business problem.

The Second Challenge

Another, challenge was about architecting Skillz, such that, it fits into the requirement posed by different industries. A skill itself varies hugely from industry to industry. To explain this, try comparing some common skills for a Doctor, Bank Manager and a Software Developer. Specializations for a doctor (like MD, MBBS etc), matters much more, than it does for a Bank Manager or a Software Developer. Similarly, Global Client Exposures for a Software Developer is more important than it is for a bank manager or for that matter, a doctor. Accounting exposures stands more important for a bank manager. Thus a common skill like education or experience needs different design for different industry/practices. This is because individual professions and verticals vary hugely from each other. This leads to a fresh challenge; the very fundamental nomenclatures used in the application, changes completely depending on which vertical the system is deployed in.  A classic example for this is the entity ‘user’. For every vertical where skillz is implemented, the very meaning and attributes for a ‘user’ changes drastically. Attributes like medical registration number and Medical Specializations make more sense for doctors than they do for developer or a bank manager. Rank/Grade does not imply to a doctor or a software developer.

Further, aspects like Security, Reporting, Usability together with the nature of Talent Management, additively, pushed the design of Skillz to a level of challenge.

Solving the challenges

Solving First Challenge

The first challenge took the major portion of our time; which was spent in   discovering the true nature and taste of Talent Management vis-a-vis differentiating it with performance. Talent Management is all about getting the right people with right skills into the right job by measuring the following quotients:

  1. Learning Quotient (LQ): Measures how an individual learns and improves
  2. Conceptual Quotient (CQ): Measures the ability of thought process in solving a problem.
  3. Relationship Quotient (RQ): Measures how an individual behaves in a group
  4. Action Quotient (AQ): Measures the individual as a team member by his actions.

For an individual the Talent Quotient (TQ) = (LQ+CQ+RQ+AQ) * Values.

Well, how do we measure it? I am sure our HR would be highly interested and can add another hundred paragraphs here about these quotients, process of measuring it, appraisal, questionnaires and many more.

Different companies have adopted different techniques to measure the TQ. The most common techniques  used are appraisals, interviews, trainings and feedbacks. But, seldom people understand the continuous nature and difference between the talent management and performance.

Now the most interesting part, Talent Management is not only about measuring TQ. It is about Identifying TQ, Acquiring TQ, measuring TQ, mentoring TQ and Retention of TQ. So where does Performance comes in? The answer is:  

TALENT MANAGEMENT + PERFORMANCE MANAGEMENT = PERFORMANCE

Put simply, tracking ‘performance’ is much more than most people think of it. It doesn’t start and end with performance management. Talent management which involves acquiring, goal setting, training, mentoring and retaining individuals also forms a huge part of tracking their performance.

Building a system which allows administrators and implementers to capture talent management and beyond was our initial design goal for skillz and after months of hard work, eating our own dog food and months of testing with a couple of beta customers, we believe we’ve come decently close to achieving it.

This solves the first challenge!

Solving Second Challenge

The second challenge was to design a system which fits into various industries catering to their unique needs. We decided to have a core system and extend it according to the organizational need. User, Skills, Activities, Trainings are entities within the system which are simple, flexible and easy to extend.

Security within individual organizations can be easily configured and tweaked by individual organizational administrators. Skillz is designed to be offered as a service (SaaS). For us this means easier deployments for all our customers and for our customers it means easy updates to newer versions as we continue to work on newer versions and add new functionality.

Skillz is a result of months of hard work, countless brainstorming sessions and a lot of thought that has gone into areas like security, reporting and usability. We’ve given special attention to extendibility so that customers can tweak skillz to fit their requirements.
 
The following diagram defines some interesting prepositions that are uniquely available in Skillz.

Skillz Features

Even though we’ve been using it within small teams @ eFORCE and with some of our beta customers, the official launch date for a public beta will be announced soon.

The entire team is very excited about its acceptance, performance and criticism in the world of PERFORMANCE. This release for me is the starting of the race which we struggled to qualify and it took us almost one full year.

I hope this article is helpful for those working in similar areas. I would keep posting more about Skillz as and when time permits.

Thanks,
Manish


Skillz
Monday, January 19, 2009 2:14:29 PM (GMT Standard Time, UTC+00:00)  #  Comments [83] Trackback