Java SOAP サービスを呼び出すときに、WCF に XML 名前空間プレフィックスを使用させる必要があります。
現在、送信する SOAP メッセージは次のようになっています。
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<getStuff xmlns="http://XXXXXX.com/">
<Id>84</Id>
</getStuff>
</s:Body>
メッセージを正しく解析するには、cxf サービスの名前空間プレフィックスを利用する必要があります。
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<nsXX:getStuff xmlns:nsXX="http://XXXXXX.com/">
<nsXX:Id>84</nsXX:Id>
</nsXX:getStuff>
</s:Body>