We're doing testing from different soap clients and have narrowed down a
discrepancy in our responses based on sending in "charset=utf-8" vs
"charset=UTF-8". The native PHP soap client passes in the former and the
namespacing on the child nodes is missing when the lowercase charset is
passed in. Any ideas?
A semi-hacky solution is adding a toUpperCase() to the character encoding in
ServletController:228...
inMessage.put(Message.ENCODING, enc.toUpperCase());
Figured you guys could tell me if this could cause any adverse results...
Regards,
Brad