Hi,
I've just started using cactus and I'm trying to write tests for a
servlet cache I have.
This servlet caches pages using the request query string as the key,
so I would like to be able to obtain the query string I'm sending, so the
test can directly check the cache's hashtable for pages.
The trouble I'm having is that anywhere I call
request.getQueryString() I'm being returned null - this happens in both the
begin and the test method. If I call request.getParameter then the correct
parameters are returned.
I can't find anything to tell me what I'm doing wrong, the javadoc
doesn't mention any restrictions on the getQueryString method, so I was
hoping someone would be able to help me.
Thankyou very much
Catherine Jung