I have written a custom ContentInterceptor, and as per the instructions I am able to differentiate between the retrieval of content and the retrieval of a descriptor when postRetrieveContent() is called (i.e. in the passed parameters, if revisionDescriptors is null, it's a content retrieval, and if revisionContent is null then it's a descriptor retrieval). Only problem is, I want to do some stuff to the descriptors of a file after it has been retrieved. and as such I need its URI. but I have no way of getting it! All that is passed to postRetrieveContent() in that instance is the NodeRevisionDescriptor, NodeRevisionContent and slideToken NONE of which I can get the URI from!
Basically, I can change the parameters that my own postRetrieveContent() takes, but I need to know where it is called from so I can pass the right ones. Any better ways of getting the URI based on what I have got would be preferential. Many thanks Stuart
