Support createDispatch(QName portName,Class<T> type,Mode
mode,WebServiceFeature... features) etc per JAX-WS 2.1 Spec
---------------------------------------------------------------------------------------------------------------------
Key: CXF-1268
URL: https://issues.apache.org/jira/browse/CXF-1268
Project: CXF
Issue Type: Sub-task
Components: JAX-WS Runtime
Affects Versions: 2.1
Reporter: Jervis Liu
Assignee: Jervis Liu
Support following methods defined in JAX-WS 2.1 Spec
public <T> Dispatch<T> createDispatch(QName portName,
Class<T> type,
Mode mode,
WebServiceFeature... features) {
throw new UnsupportedOperationException();
}
public <T> Dispatch<T> createDispatch(EndpointReference endpointReference,
Class<T> type,
Mode mode,
WebServiceFeature... features) {
throw new UnsupportedOperationException();
}
public Dispatch<Object> createDispatch(QName portName,
JAXBContext context,
Mode mode,
WebServiceFeature... features) {
throw new UnsupportedOperationException();
}
public Dispatch<Object> createDispatch(EndpointReference endpointReference,
JAXBContext context,
Mode mode,
WebServiceFeature... features) {
throw new UnsupportedOperationException();
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.