Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 3.1
-
Fix Version/s: None
-
Component/s: JAX-WS Runtime
-
Labels:None
-
Estimated Complexity:Unknown
Description
if (message.containsKey(Message.HTTP_REQUEST_METHOD)) {
String httpMethod = message.get(Message.HTTP_REQUEST_METHOD).toString()
and if (message.containsKey(Message.REQUEST_URI)) {
String requestUri = message.get(Message.REQUEST_URI).toString();
can hit nullpointers when running the cxf bus with a cameltransport (which again uses JMS as the underlying real transport) - as it does not run over http - the check needs to be improved to cater for the value possibly being null.