Correct. Web queries don't support cookies because they are geared primarily towards REST services, which are generally meant to be stateless. However, it is possible (and fairly easy) to implement your own cookie support. G
On Nov 11, 2010, at 6:40 PM, Bill van Melle wrote: > Is there any kind of cookie jar facility for GetQuery? > > I didn't find anything in the API, so I'm guessing I have to roll my own -- > parse the set-cookie fields out of query.getResponseHeaders(), and add them > to the query.getRequestHeaders() dictionary on each call. > > >
