I have a very strage problem and I've been searching the solution for a while. The thing is a have a Expressjs server configured with the Connect session, It works great in the development machine but when I try to access from others browsers in the same LAN using the IP, it doesn't store the cookie. I can see it in the Chrome Network tab, and the server send it, but in the Resources tab it doesn't appear, and obviously nothing works.
I hope you can help me.
I'm just posting this because I'm too confused and happy at the same time. First I can only have sessions and cookies working in Express 3.0, with Express 2.5 works only in my development machine. I don't know why yet but now I use the 3.0 version because is what it works for me. But then appears a new problem, the sid of the cookie it wasn't the same that in Express 2.5, so I look the source and I found a new function of Connect, called parseSignedCookie, I have to use, in order to retrieve the session from the session Store. I hope this helps somebody with a problem like mine.