WSDL 1.1 Extension Validator

org.eclipse.wst.wsdl.validation.wsdl11validator

This extension point is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

The WSDL 1.1 Extension Validator extension point allows clients to contribute a validator for a specific namespace to WSDL 1.1 validation.

<!ELEMENT extension (validator)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT validator EMPTY>

<!ATTLIST validator

class     CDATA #REQUIRED

namespace CDATA #REQUIRED>


The following is an example of a WSDL 1.1 Extension Validator contribution:
   

<extension point=

"org.eclipse.wst.wsdl.validation.wsdl11validator"

>

<validator class=

"org.eclipse.wst.wsdl.validation.internal.wsdl11.http.HTTPValidator"

namespace=

"http://schemas.xmlsoap.org/wsdl/http/"

/>

</extension>

The supplied class must implement org.eclipse.wst.wsdl.validation.internal.wsdl11.WSDL11Validator.

org.eclipse.wst.wsdl.validation.internal.wsdl11.http.HTTPValdiator Contributes validation logic for the namespace http://schemas.xmlsoap.org/wsdl/http/. org.eclipse.wst.wsdl.validation.internal.wsdl11.mime.MIMEValdiator Contributes validation logic for the namespace http://schemas.xmlsoap.org/wsdl/mime/. org.eclipse.wst.wsdl.validation.internal.wsdl11.soap.SOAPValdiator Contributes validation logic for the namespace http://schemas.xmlsoap.org/wsdl/soap/.