Beispiel #1
0
 public void tryToFindEncodingStyleAttributeName() {
   try {
     findEncodingStyleAttributeName();
   } catch (SOAPException e) {
     /*okay to fail*/
   }
 }
Beispiel #2
0
 public void setParentElement(SOAPElement element) throws SOAPException {
   if (element == null) {
     log.severe("SAAJ0106.impl.no.null.to.parent.elem");
     throw new SOAPException("Cannot pass NULL to setParentElement");
   }
   element.addChildElement(this);
   findEncodingStyleAttributeName();
 }