OperationSelectorJMSDefaultServiceInterceptor.getTargetOperation() should also
handle wireformat type WireFormatJMSBytesXML
---------------------------------------------------------------------------------------------------------------------------
Key: TUSCANY-3973
URL: https://issues.apache.org/jira/browse/TUSCANY-3973
Project: Tuscany
Issue Type: Bug
Components: SCA Java Runtime
Affects Versions: Java-SCA-2.x
Reporter: Jennifer A Thompson
Fix For: Java-SCA-2.x
The code in OperationSelectorJMSDefaultServiceInterceptor.getTargetOperation()
checks for known WireFormat types, but does not included WireFormatJMSBytesXML.
So the code should be updated to
if (serviceOperations.size() == 1) {
..........
} else if (operationName != null) {
..................
} else if (jmsBinding.getRequestWireFormat() instanceof WireFormatJMSDefault
|| jmsBinding.getRequestWireFormat() instanceof
WireFormatJMSTextXML
|| jmsBinding.getRequestWireFormat() instanceof
WireFormatJMSBytesXML) {
}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira