Examples of EndpointDescriptionJava


Examples of org.apache.axis2.jaxws.description.EndpointDescriptionJava

                Iterator i = required.iterator();
                while (i.hasNext()) {
                    QName name = (QName) i.next();
                    String featureName = getFeatureForBinding(name);
                    if (featureName != null && featureName.length() > 0) {
                        EndpointDescriptionJava edj = (EndpointDescriptionJava) endpointDesc;
                        Annotation anno = edj.getAnnoFeature(featureName);
                        WebServiceFeatureAnnotation feature = getFeatureFromAnnotation(anno);
                       
                        if (feature == null) {
                            addValidationFailure(this, "Annotation @RespectBinding was enabled, but the " +
                                        "corresponding feature " + featureName + " was not enabled.");
View Full Code Here

Examples of org.apache.axis2.jaxws.description.EndpointDescriptionJava

         
          if (debug) {
            log.debug("Found WSDL extension element {http://www.w3.org/2006/05/addressing/wsdl,UsingAddressing} -- validating");
          }
         
          EndpointDescriptionJava edj = (EndpointDescriptionJava) endpointDesc;
          Annotation anno = edj.getAnnoFeature(AddressingFeature.ID);
          if (getFeatureFromAnnotation(anno) == null) {
            if (debug) {
              log.debug("Enabling addressing annotation was not found, so this extension element is not supported");
            }
            elementToValidate.setState(WSDLValidatorElement.State.NOT_SUPPORTED);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.