Store store = null;
String id = Long.toHexString((hashCode()^HashUtil.hash(requestURI)) + fragmentID);
try {
store = (Store) this.manager.lookup(Store.TRANSIENT_STORE);
store.store(id, this.serializer.getSAXFragment());
} catch (ServiceException se) {
throw new SAXException("Could not lookup for transient store.", se);
} catch (IOException ioe) {
throw new SAXException("Could not store fragment.", ioe);
} finally {