*/
public XindiceCollection(String collPath) throws XMLDBException {
this.collPath = collPath.endsWith("/") ? collPath.substring(0, collPath.length() - 1) : collPath;
// Register all services supported by this collection implementation.
final XPathQueryServiceImpl xpath = new XPathQueryServiceImpl();
xpath.setCollection(this);
// xpath.setSymbolDeserializer(syms);
registerService(xpath);
final XUpdateQueryServiceImpl xupdate = new XUpdateQueryServiceImpl();
xupdate.setCollection(this);