webimageloader icon indicating copy to clipboard operation
webimageloader copied to clipboard

Allow to post xml with the request

Open ricardopaulob opened this issue 11 years ago • 0 comments

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

ricardopaulob avatar Jun 04 '13 23:06 ricardopaulob