Port and Binding Content Generators

org.eclipse.wst.wsdl.contentGenerators

This extension point is internal and should not be used by any other plugins.

The Port and Binding Content Generators extension point allows clients to register custom generators for Ports and Bindings.

<!ELEMENT extension (contentGenerator)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>

The Port and Binding Content Generators extension point allows clients to register custom content generators for WSDL Ports and Bindings.



<!ELEMENT contentGenerator EMPTY>

<!ATTLIST contentGenerator

name      CDATA #REQUIRED

namespace CDATA #REQUIRED

class     CDATA #REQUIRED>


The following is an example of a content generator contribution:
   

<extension point=

"org.eclipse.wst.wsdl.contentGenerators"

>

<contentGenerator name=

"SOAP"

namespace=

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

class=

"org.eclipse.wst.wsdl.binding.soap.internal.generator.SOAPContentGenerator"

/>

</extension>

The supplied class must implement org.eclipse.wst.wsdl.internal.generator.ContentGenerator.