Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Java-SCA-2.x
-
None
Description
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) { } |