Hmm, some how I loaded stuff that wasn't properly compiled, I did an "ant clean" and found I don't have an import for "HttpResponse", do you have the import for that? It doesn't seem to be in those jars, (I had assumed this to be Jersey stuff, is it? Or maybe 3rd party?). It's from this snippet of code:
HttpResponse httpResponse = new HttpResponse(response.getStatus());
httpResponse.setContentType(response.getType().toString());
message.getBody().add(entityResponse);
httpResponse.setResponse(message);
I also started looking at this code and it looks like it's processing an incoming request, is that true? That's cool, but I don't want to do that at the moment., I just want to make an oiutgoing request and then probably enhance a message with the data. Do I still use this same JerseyClientSingleton to create a brand new request I want to make from my WADLAction class? Also, if you have a pointer to docs on this client that would be cool too, thanks.
--j