Uses of Class
jakarta.xml.ws.WebServiceFeature
Package
Description
This package contains the core Jakarta XML Web Services APIs.
This package defines APIs specific to the SOAP binding.
This package defines SPIs for Jakarta XML Web Services.
-
Uses of WebServiceFeature in jakarta.xml.ws
Modifier and TypeClassDescriptionfinal class
This feature clarifies the use of thewsdl:binding
in a Jakarta XML Web Services runtime.Modifier and TypeMethodDescriptionstatic Endpoint
Endpoint.create
(Object implementor, WebServiceFeature... features) Creates an endpoint with the specified implementor object and web service features.static Endpoint
Endpoint.create
(String bindingId, Object implementor, WebServiceFeature... features) Creates an endpoint with the specified binding type, implementor object, and web service features.static Service
Service.create
(URL wsdlDocumentLocation, QName serviceName, WebServiceFeature... features) Creates aService
instance.static Service
Service.create
(QName serviceName, WebServiceFeature... features) Creates aService
instance.Service.createDispatch
(EndpointReference endpointReference, jakarta.xml.bind.JAXBContext context, Service.Mode mode, WebServiceFeature... features) Creates aDispatch
instance for use with Jakarta XML Binding generated objects.<T> Dispatch
<T> Service.createDispatch
(EndpointReference endpointReference, Class<T> type, Service.Mode mode, WebServiceFeature... features) Creates aDispatch
instance for use with objects of the client's choosing.Service.createDispatch
(QName portName, jakarta.xml.bind.JAXBContext context, Service.Mode mode, WebServiceFeature... features) Creates aDispatch
instance for use with Jakarta XML Binding generated objects.<T> Dispatch
<T> Service.createDispatch
(QName portName, Class<T> type, Service.Mode mode, WebServiceFeature... features) Creates aDispatch
instance for use with objects of the client's choosing.<T> T
EndpointReference.getPort
(Class<T> serviceEndpointInterface, WebServiceFeature... features) ThegetPort
method returns a proxy.<T> T
Service.getPort
(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features) ThegetPort
method returns a proxy.<T> T
Service.getPort
(Class<T> serviceEndpointInterface, WebServiceFeature... features) ThegetPort
method returns a proxy.<T> T
Service.getPort
(QName portName, Class<T> serviceEndpointInterface, WebServiceFeature... features) ThegetPort
method returns a proxy.static Endpoint
Endpoint.publish
(String address, Object implementor, WebServiceFeature... features) Creates and publishes an endpoint for the specified implementor object at the given address.ModifierConstructorDescriptionprotected
Service
(URL wsdlDocumentLocation, QName serviceName, WebServiceFeature... features) Creates aService
. -
Uses of WebServiceFeature in jakarta.xml.ws.soap
Modifier and TypeClassDescriptionfinal class
AddressingFeature represents the use of WS-Addressing with either the SOAP 1.1/HTTP or SOAP 1.2/HTTP binding.final class
This feature represents the use of MTOM with a web service. -
Uses of WebServiceFeature in jakarta.xml.ws.spi
Modifier and TypeMethodDescriptionProvider.createAndPublishEndpoint
(String address, Object implementor, WebServiceFeature... features) Creates and publishes an endpoint object with the specified address, implementation object and web service features.ServiceDelegate.createDispatch
(EndpointReference endpointReference, jakarta.xml.bind.JAXBContext context, Service.Mode mode, WebServiceFeature... features) Creates aDispatch
instance for use with Jakarta XML Binding generated objects.abstract <T> Dispatch
<T> ServiceDelegate.createDispatch
(EndpointReference endpointReference, Class<T> type, Service.Mode mode, WebServiceFeature... features) Creates aDispatch
instance for use with objects of the user's choosing.ServiceDelegate.createDispatch
(QName portName, jakarta.xml.bind.JAXBContext context, Service.Mode mode, WebServiceFeature... features) Creates aDispatch
instance for use with Jakarta XML Binding generated objects.abstract <T> Dispatch
<T> ServiceDelegate.createDispatch
(QName portName, Class<T> type, Service.Mode mode, WebServiceFeature... features) Creates aDispatch
instance for use with objects of the user's choosing.Provider.createEndpoint
(String bindingId, Class<?> implementorClass, Invoker invoker, WebServiceFeature... features) Creates an endpoint object with the provided binding, implementation class, invoker and web service features.Provider.createEndpoint
(String bindingId, Object implementor, WebServiceFeature... features) Creates an endpoint object with the provided binding, implementation object and web service features.Provider.createServiceDelegate
(URL wsdlDocumentLocation, QName serviceName, Class<? extends Service> serviceClass, WebServiceFeature... features) Creates a service delegate object.abstract <T> T
Provider.getPort
(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features) The getPort method returns a proxy.abstract <T> T
ServiceDelegate.getPort
(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features) ThegetPort
method returns a proxy.abstract <T> T
ServiceDelegate.getPort
(Class<T> serviceEndpointInterface, WebServiceFeature... features) ThegetPort
method returns a proxy.abstract <T> T
ServiceDelegate.getPort
(QName portName, Class<T> serviceEndpointInterface, WebServiceFeature... features) ThegetPort
method returns a proxy.