Postman调用gSOAP接口报错:not implemented: method name or namespace not recognized

这是请求的报文

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <ns__SendVehiclePassEx xmlns="http://WebXml.com.cn/">

                <KKMY>卡口密钥</KKMY>
                <KKBH>卡口编号</KKBH>
                <JCSJ>检测时间</JCSJ>
                <XJXX>
                    <XJZT>相机状态</XJZT>
                    <CDZT>
                        <CDBH>01</CDBH>
                        <XQZT>线圈状态</XQZT>
                        <CJQZT>车检器状态</CJQZT>
                        <YCYY>异常原因</YCYY>
                    </CDZT>
                    <CDZT>
                        <CDBH>02</CDBH>
                        <XQZT>线圈状态</XQZT>
                        <CJQZT>车检器状态</CJQZT>
                        <YCYY>异常原因</YCYY>
                    </CDZT>
                </XJXX>

        </ns__SendVehiclePassEx>
    </soap:Body>
</soap:Envelope>

这是返回报文

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns="http://tempuri.org/ns.xsd">
    <SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
        <SOAP-ENV:Fault>
            <faultcode>SOAP-ENV:Client</faultcode>
            <faultstring>Method 'ns__SendVehiclePassEx' not implemented: method name or namespace not recognized</faultstring>
        </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

在本地wsdl中是有的
图片说明
版本gSOAP 2.8.3 generated service definition

解决了,报文格式不正确