WSDL 1.1 Extension Validator

Identifier:
org.eclipse.wst.wsdl.validation.wsdl11validator

Since:
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.

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

Configuration Markup:

<!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>


Examples:
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>

Supplied Implementation:
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/.


Copyright (c) 2000, 2006 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html