本文介绍了定制肥皂信封的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在出站时发送我的肥皂请求

 <   soapenv:Envelope  
xmlns:soapenv = " ; http://schemas.xmlsoap.org/soap/envelope /"
xmlns:inb = " http://Inbound.Input " >
< soapenv:标题 / >
< soapenv:身体 >
< inb:Root >
< 记录 Id = "?" / >
< / inb:Root >
< / soapenv:身体 >
< / soapenv:信封 >

但是,我有BizTalk将它发送到BasicHttp端口


< soapenv:Envelope xmlns:soapenv =" http://schemas.xmlsoap.org/soap/envelope/"> 
< soapenv:Header />
< soapenv:Body>
< Root>
< Record Id ="?" />
< / Root>
< / soapenv:Body>
< / soapenv:Envelope>

我该怎么办这个?

解决方案

I need to send my soap request on outbound as

<soapenv:Envelope
  xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:inb="http://Inbound.Input">
  <soapenv:Header/>
  <soapenv:Body>
    <inb:Root>
      <Record Id="?"/>
    </inb:Root>
  </soapenv:Body>
</soapenv:Envelope>

But, I have BizTalk sending it on BasicHttp port as

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
  <soapenv:Header/>
  <soapenv:Body>
    <Root>
      <Record Id="?"/>
    </Root>
  </soapenv:Body>
</soapenv:Envelope>

How do I do this ?

解决方案


这篇关于定制肥皂信封的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-24 15:21