On 13/5/04 1:42 pm, Jama Poulsen <[EMAIL PROTECTED]> wrote: > Hi, > > Is there a way to refer to a specific jpegPhoto value of an LDAP entry > without giving all the base64 encoded data?
It is a bit hard to do this, because there are no guarantees that if you retrieve the same attribute twice the values will be in the same order. They may be with your server, but this isn't a safe assumption and your code will eventually break :-( > I would like to be able to retrieve and delete specific jpegPhoto values > via an HTTP URL calling a CGI script and using some kind of an image-ID tag. Yes, that's a bit tricky. Would it be too computationally expensive to take a hash of each value in the initial search, and then pass that hash to the second query that returns the image? Cheers, Chris
