I notice that all of the books on web services are pretty old. I don't see
any with anything about "sessions". Is there any good up-to-date books or
material available?
Thanks,
T
> You can use sessions etc just as you can with a website, so think of a
> webservice as a website where another computer is the user.
chandy@totalise.co.uk - 28 Feb 2007 11:35 GMT
> I notice that all of the books on web services are pretty old. I don't see
> any with anything about "sessions". Is there any good up-to-date books or
[quoted text clipped - 3 lines]
> > You can use sessions etc just as you can with a website, so think of a
> > webservice as a website where another computer is the user.
Umm, what? That wouldn't work that I know of! You need to emulate
sessions by passing the same identifier all the time (as standard
sessions do with cookies or url tokens). Think of calling the
webservice like calling a database, if your request is specific to
something (a primary key), you will be passing that as an argument to
the web method.
In principle using webservices is fine though.
My 2c
Chandy