Unable to send a 48681 bytes message to secure wcf service from java

前端 未结 5 2039
野性不改
野性不改 2021-02-09 16:07

I have to call a secure WCF service from java using mutual authentication. Everything works fine except I\'m unable to send messages which are greater than 48680 bytes in size.

5条回答
  •  余生分开走
    2021-02-09 16:58

    This could be a SOAP version mismatch. The default version for basichttpbinding is SOAP 1.1. If the java client is using SOAP 1.2 you will get an error.

    We have often seen that the error you get when the SOAP version does not match, has nothing to do with the real erros.

提交回复
热议问题