Ejemplo n.º 1
0
  private Node getUPnPErrorCodeNode() {
    Node errorNode = getUPnPErrorNode();

    if (errorNode == null) {
      return null;
    }

    return errorNode.getNodeEndsWith(SOAP.ERROR_CODE);
  }
Ejemplo n.º 2
0
  private Node getUPnPErrorDescriptionNode() {
    Node errorNode = getUPnPErrorNode();

    if (errorNode == null) {
      return null;
    }

    return errorNode.getNodeEndsWith(SOAP.ERROR_DESCRIPTION);
  }
Ejemplo n.º 3
0
  private Node getUPnPErrorNode() {
    Node detailNode = getFaultDetailNode();

    if (detailNode == null) {
      return null;
    }

    return detailNode.getNodeEndsWith(SOAP.UPNP_ERROR);
  }