示例#1
0
  protected SOAPElement findChild(NameImpl name) {
    Iterator eachChild = getChildElementNodes();
    while (eachChild.hasNext()) {
      SOAPElement child = (SOAPElement) eachChild.next();
      if (child.getElementName().equals(name)) {
        return child;
      }
    }

    return null;
  }
示例#2
0
  public SOAPElement addChildElement(SOAPElement element) throws SOAPException {

    // check if Element falls in SOAP 1.1 or 1.2 namespace.
    String elementURI = element.getElementName().getURI();
    String localName = element.getLocalName();

    if ((SOAPConstants.URI_NS_SOAP_ENVELOPE).equals(elementURI)
        || (SOAPConstants.URI_NS_SOAP_1_2_ENVELOPE).equals(elementURI)) {

      if ("Envelope".equalsIgnoreCase(localName)
          || "Header".equalsIgnoreCase(localName)
          || "Body".equalsIgnoreCase(localName)) {
        log.severe("SAAJ0103.impl.cannot.add.fragements");
        throw new SOAPExceptionImpl(
            "Cannot add fragments which contain elements " + "which are in the SOAP namespace");
      }

      if ("Fault".equalsIgnoreCase(localName) && !"Body".equalsIgnoreCase(this.getLocalName())) {
        log.severe("SAAJ0154.impl.adding.fault.to.nonbody");
        throw new SOAPExceptionImpl("Cannot add a SOAPFault as a child of " + this.getLocalName());
      }

      if ("Detail".equalsIgnoreCase(localName) && !"Fault".equalsIgnoreCase(this.getLocalName())) {
        log.severe("SAAJ0155.impl.adding.detail.nonfault");
        throw new SOAPExceptionImpl("Cannot add a Detail as a child of " + this.getLocalName());
      }

      if ("Fault".equalsIgnoreCase(localName)) {
        // if body is not empty throw an exception
        if (!elementURI.equals(this.getElementName().getURI())) {
          log.severe("SAAJ0158.impl.version.mismatch.fault");
          throw new SOAPExceptionImpl(
              "SOAP Version mismatch encountered when trying to add SOAPFault to SOAPBody");
        }
        Iterator it = this.getChildElements();
        if (it.hasNext()) {
          log.severe("SAAJ0156.impl.adding.fault.error");
          throw new SOAPExceptionImpl("Cannot add SOAPFault as a child of a non-Empty SOAPBody");
        }
      }
    }

    // preserve the encodingStyle attr as it may get lost in the import
    String encodingStyle = element.getEncodingStyle();

    ElementImpl importedElement = (ElementImpl) importElement(element);
    addNode(importedElement);

    if (encodingStyle != null) importedElement.setEncodingStyle(encodingStyle);

    return convertToSoapElement(importedElement);
  }
示例#3
0
  protected SOAPElement circumventBug5034339(SOAPElement element) {

    Name elementName = element.getElementName();
    if (!isNamespaceQualified(elementName)) {
      String prefix = elementName.getPrefix();
      String defaultNamespace = getNamespaceURI(prefix);
      if (defaultNamespace != null) {
        Name newElementName =
            NameImpl.create(elementName.getLocalName(), elementName.getPrefix(), defaultNamespace);
        SOAPElement newElement = createElement(newElementName);
        replaceChild(newElement, element);
        return newElement;
      }
    }
    return element;
  }
示例#4
0
  protected String getSOAPNamespace() {
    String soapNamespace = null;

    SOAPElement antecedent = this;
    while (antecedent != null) {
      Name antecedentName = antecedent.getElementName();
      String antecedentNamespace = antecedentName.getURI();

      if (NameImpl.SOAP11_NAMESPACE.equals(antecedentNamespace)
          || NameImpl.SOAP12_NAMESPACE.equals(antecedentNamespace)) {

        soapNamespace = antecedentNamespace;
        break;
      }

      antecedent = antecedent.getParentElement();
    }

    return soapNamespace;
  }