Ну, факт, что у вас с namespace где-то намудрено или отсутствует составная часть тела запроса:
Постарайтесь сделать так: либо распечатайте весь текст SOAP-запроса, либо перехватите пакеты с помощью, к примеру, Wireshark или smsniff. Рабочий запрос должен выглядеть как-то так:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="urn://x-artefacts-gnivc-ru/inplat/servin/OpenApiMessageConsumerService/types/1.0">
<soapenv:Header/>
<soapenv:Body>
<ns:GetMessageRequest>
<ns:Message>
<AuthRequest xsi:schemaLocation="urn://x-artefacts-gnivc-ru/ais3/kkt/AuthService/types/1.0 schema.xsd" xmlns="urn://x-artefacts-gnivc-ru/ais3/kkt/AuthService/types/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<AuthAppInfo>
<MasterToken>eyJhbGciOiJIUzI1NiIsInR5cCI6...</MasterToken>
</AuthAppInfo>
</AuthRequest>
</ns:Message>
</ns:GetMessageRequest>
</soapenv:Body>
</soapenv:Envelope>
Ответ (потому что не из РФ):
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<soap:Fault>
<faultcode>soap:Server</faultcode>
<faultstring>Доступ к сервису для переданного IP, запрещён</faultstring>
</soap:Fault>
</soap:Body>
</soap:Envelope>
Я вот к чему: если у вас пусто, как в примере (или namespace чего-то там не того), то при запросе вида
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="urn://x-artefacts-gnivc-ru/inplat/servin/OpenApiMessageConsumerService/types/1.0">
<soapenv:Header/>
<soapenv:Body>
<ns:GetMessageRequest>
<ns:Message>
<!--You may enter ANY elements at this point-->
</ns:Message>
</ns:GetMessageRequest>
</soapenv:Body>
</soapenv:Envelope>
То получите и ответ, как в вашем примере:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<soap:Fault>
<faultcode>soap:Client</faultcode>
<faultstring>Unmarshalling Error: cvc-complex-type.2.4.b: The content of element 'ns:Message' is not complete. One of '{WC[##other:"urn://x-artefacts-gnivc-ru/inplat/servin/OpenApiMessageConsumerService/types/1.0"]}' is expected.</faultstring>
</soap:Fault>
</soap:Body>
</soap:Envelope>