I'm having an issue that perhaps you can help with. I have a wrapper class around HttpClient for sending HTTP requests to a database (the wrapper is to help with opening/closing connections since we are making a lot of them). I can provide relevant code, but I'm still unclear on exactly where the issue is happening.
Basically, a request is sent, and is getting through, but the names of the request params are getting null values, so the query string looks something like: ?null=value1&null=value2&null=value3 Needless to say, this is a problem :) I have verified that the strings are being set properly on my end (via NameValuePair's). An associate claims that it has some of the hallmarks of a threading issue, but I thought that was solved already. This issue occurs only sporadically, and I'm not sure what triggers it, but once it starts, it continues to happen until my web server is restarted. To make matters worse, I am unable to recreate the problem, it seems completely random. I'm not really sure how to proceed here, it's a very strange problem. Again I've verified as well as I can that it has nothing to do with my wrapper code. Has anyone else experienced this type of error? -Will Bagby
