Hi Everyone,
I guess I couldn't come back to this topic once I found the reason behind this problem and its kinda a little late right now, but here goes ...
My problem was, I was trying to send the cookie from an SSL application to a non-SSL application. While doing so, what we must keep in mind is that the domain name of both the url's should be same otherwise the cookie will not be sent across.
However, if both the url's are working on non-SSL and the domains are different, the cookie can be sent over from the first url to the second. This should hold true even for two url's working on SSL but having different domains although I haven't tested it yet.
In short, the problem of cookie not getting tranferred arises only when the control goes from SSL to non-SSl or vice versa.
If we require that data be sent across from SSL to non-SSL where the domain names are different, then the option of cookies cannot be used. In such a case, other modes of data transfer needs to be applied for ex : Url Rewriting,
SOAP, etc...
[ July 16, 2008: Message edited by: Sourin K. Sen ]