try {
Container c = col.getContainer(tx, docName);
if ( c != null ) {
ContentProxy dp = new ContentProxy(col, docName);
return new ObjectInstance(dp);
}
else
throw new DBException(FaultCodes.COL_CANNOT_RETRIEVE, "Container '"+docName+"' not found");
}
catch ( DBException e ) {