Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/backbone.js/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 在WSDL+;周转基金_C#_Web Services_Wcf_Soap_Wsdl - Fatal编程技术网

C# 在WSDL+;周转基金

C# 在WSDL+;周转基金,c#,web-services,wcf,soap,wsdl,C#,Web Services,Wcf,Soap,Wsdl,可以转换此wsdl片段: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:com="http://com.lsc.services.financialSystem"> <soapenv:Header/> <soapenv:Body> <com:crearCuentaPorCobrar> <

可以转换此wsdl片段:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:com="http://com.lsc.services.financialSystem">
   <soapenv:Header/>
   <soapenv:Body>
      <com:crearCuentaPorCobrar>
         <!--Optional:-->
         <com:crearCuentaPorCobrarRq>
            <com:infoRequest>
               <com:RequestID>?</com:RequestID>
               <com:Fecha>?</com:Fecha>
               <com:AplicacionCliente>?</com:AplicacionCliente>
               <com:Terminal>?</com:Terminal>
               <com:IP>?</com:IP>
            </com:infoRequest>
          </com:crearCuentaPorCobrarRq>
      </com:crearCuentaPorCobrar>
   </soapenv:Body>
</soapenv:Envelope>

?
?
?
?
?
对于此解决方案:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:com="http://com.lsc.services.financialSystem">
       <soapenv:Header/>
       <soapenv:Body>
          <com:crearCuentaPorCobrar>
             <!--Optional:-->
             <crearCuentaPorCobrarRq>
                <infoRequest>
                   <RequestID>?</com:RequestID>
                   <Fecha>?</com:Fecha>
                   <AplicacionCliente>?</com:AplicacionCliente>
                   <Terminal>?</com:Terminal>
                   <IP>?</com:IP>
                </infoRequest>
              </crearCuentaPorCobrarRq>
          </com:crearCuentaPorCobrar>
       </soapenv:Body>
    </soapenv:Envelope>

?
?
但在wsdl上建立更多的代码并不是mi的兴趣所在

有一种方法可以建立这个


太多了

您的第二个WSDL在结束标记中仍然有
com:
。它是无效的。是的。。。。这就是我的想法。。。我只想用“com”来表达我的意思是你有
,请看com:in here:pohh抱歉。。。。没有com,像这样吗?