I am using soap to pull data from a list in sharepoint. Pulling plain text fields works great but when I try to pull an image, the only way I can is to pull the URL. The image is stored on the sharepoint server so it asks the user to log in when they view the page.
How can I set permissions so that they dont have to log in? The image must be stored in the sharepoint list.
EDIT: id just like to note that the best way I have found so far to pull an image out of sharepoint is to encode it with a base64 encoder tool like this: http://www.greywyvern.com/code/php/binary2base64
then you can use soap to pull the encoded string like a normal text field. (Apparently I am the only person in the world who is trying to pull images out of sharepoint, there are literally zero resources/posts/documentation about how to do this and not have to log in)