public void addServiceOperation(
      String sOperationName, String xmlRequestTemplate, String xpathtoOutput) {
    if ((sOperationName != null) && (xmlRequestTemplate != null) && (xpathtoOutput != null)) {
      ServiceOperation op = new ServiceOperationImpl(xmlRequestTemplate, xpathtoOutput);
      op.setName(sOperationName);

      // now add this service operation
      addServiceOperation(op);
    }
  }