webimageloader
webimageloader copied to clipboard
Allow to post xml with the request
Hi,
I think your api very cool. It solved all my problems to load images. Thank you very much for your contribuition.
But, I still need two little things to can use this API in my App. First, I need to verify the user permission to see the image. So my webservice is prepared to receive a XML post with the login details, to confirm permissions.
Something like this: HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(requestURL); StringEntity se = new StringEntity(requestXMLMessage, HTTP.ISO_8859_1); se.setContentType(text/xml); httppost.setEntity(se);
It is possible to add the usability on this custom request to load images?
Thank you very much,
Ricardo