如何从ASP.Net站点返回特定的SOAP响应?

时间:2010-12-20 22:41:14

标签: c# .net soap

外部开发合作伙伴拥有一项服务,该服务将向我们的某个服务发布SOAP请求。他们的请求格式是固定的(由他们)。

我们需要使用固定格式的SOAP消息进行响应(再次由它们修复)。

我在ASP.Net中创建了一个Generic Handler,它成功接收了他们的请求(我们手动解析并处理)。

但是,他们希望得到如下响应:

HTTP/1.1 200 OK
Date: Thu, 01 Apr 2010 09:30:25 GMT
Server: Jetty/5.1.4 (Windows XP/5.1 x86 java/1.5.0_15
Content-Type: multipart/related; boundary=soaptestserver; type="text/xml"; start="<theenvelope>"
SOAPAction: ""
Content-Length: 796
Connection: close

--soaptestserver
Content-ID: <theenvelope>
Content-Transfer-Encoding: 8bit
Content-Type: text/xml; charset=utf-8
Content-Length: 442

<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAPENV="
http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/1999/XMLSchema"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"><SOAPENV:
Body><ns1:processResponse xmlns:ns1="urn:TripFlow" SOAPENV:
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><message
href="cid:thecontentmessage"/></ns1:processResponse></SOAP-ENV:Body></SOAPENV:
Envelope>
--soaptestserver
Content-ID: <thecontentmessage>
Content-Transfer-Encoding: 8bit
Content-Type: text/xml; charset=utf-8
Content-Length: 65

<?xml version="1.0" encoding="UTF-8"?><STATUSLVL>00</STATUSLVL>
--soaptestserver--

多年来,我一直使用.Net Webservices / WCF来避免使用原始SOAP,我不知道如何做出这样的响应。

我该怎么办?

0 个答案:

没有答案