Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogblamecommitdiffstats
blob: ecbdbb95e8933e2f60f5700b0f8028592baba326 (plain) (tree)
1
2
3
4
5
6

                                      
        
 
                                                                      
                                                                    






                                                                                                                 
                                                    











                                                                                              







                                                                                                              
         
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>

     <!-- WSDL extension validator. This is an extension that will run
        after WSDL validation if WSDL validation is successful.  -->
   <extension-point id="extvalidator" name="WSDL Extension Validator" schema="exsd/extvalidator.exsd"/>
   
   <!-- WSDL 1.1 validator extension. To provide a namespace specific WSDL 1.1
        validator. -->
   <extension-point id="wsdl11validator" name="WSDL 1.1 Extension Validator" schema="exsd/wsdl11validator.exsd"/>
   
   <!-- An extension to add XML catalog entries to the WSDL validator.
        Many entries can be added as seen below. -->
   <extension-point name="WSDL XML Catalog" id="xmlcatalog" schema="exsd/xmlcatalog.exsd"/>

   <!-- An extension to add a URI resolver to the WSDL validator. URI resolvers
        are used to resolve the location of imported documents such as WSDL and
        XSD through the WSDL and schema import mechanisms. 
        This is how this extension point is used.
        <extension point="org.eclipse.wsdl.validate.uriresolver">
          <uriresolver class="full name of your class"/>
        </extension>                                                             -->
   <extension-point name="WSDL URI Resolver" id="uriresolver" schema="exsd/uriresolver.exsd"/>

   <!-- ====================================================== -->
   <!-- An extension for adding the URI resolver from          -->
   <!-- org.eclipse.wst.common.uriresolver to the WSDL         -->
   <!-- validator.											   -->
   <!-- ====================================================== -->
   <extension point="org.eclipse.wst.wsdl.validation.uriresolver">
     <uriresolver class="org.eclipse.wst.wsdl.validation.internal.ui.eclipse.URIResolverWrapper"/>
   </extension>
   
</plugin>

Back to the top