為了使用Soap Toolkit 3.0,我們?cè)赪S client端輸入的目標(biāo)地址為:http://localhost:8080/WSEWebService/Service.asmx。
Soap Toolkit 3.0設(shè)置為:
Listen
Local port:8080
Forward to
Destination:localhost
Destination:80
之所以這樣設(shè)置,因?yàn)樵贗IS里設(shè)置的本機(jī)Web Services為:http://localhost:80/WSEWebService/Service.asmx。Soap Toolkit 在8080端口監(jiān)聽(tīng)來(lái)自client端的消息,并將消息遞交到IIS監(jiān)聽(tīng)的80端口。
可當(dāng)開(kāi)啟client端wse功能時(shí),拋出如下異常:
查看 Soap Toolkit 監(jiān)聽(tīng)到的SOAP消息可以發(fā)現(xiàn),Request消息的SoapHeader中, 目標(biāo)地址仍然為<wsa:To>http://localhost:8080/WSEWebService/Service.asmx</wsa:To> ,而不是<wsa:To>http://localhost:80/WSEWebService/Service.asmx</wsa:To>.因此,destination不可達(dá),拋出如上異常。
在網(wǎng)上查了資料發(fā)現(xiàn):
“
WS-Addressing moves the destination URL of the message into the message to enable routing and scenarios where messages are delivered over multiple protocols. Before WS-Addressing the URL of the destination was only available in the protocol part of the message. Is you were sending a SOAP message over HTTP, the URL was stored in the HTTP part of the message. You had no access to the URL from within your SOAP processor – unless your Web server vendor chose to give you access to the HTTP headers.
Now with WS-Addressing built into WSE, the Web service platform can actually determine if a message was indeed intended for the service that received it because WSE adds the <to> element to the header of the SOAP message:
<wsa:To xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
http://MyServer/MyService/Service.asmx</wsa:To>
WSE is actually being smart about the header and rejects messages where the destination in the <wsa:To> header and the URL in the HTTP header do not match.
One unfortunate consequence of this behavior is that you cannot use transparent tracing tools like tcpTrace and MSSoapT for message debugging. These tools act like an intermediary receiver and they do cause the URLs in the <To> header and in the HTTP header to not match.
”,大概意思也就是MSSoapt(Soap Toolkit )不支持WSE中WS-Addressing<wsa:To>。所以在調(diào)試WSE提供的特性時(shí),不能再用 tcpTrace或者MSSoapT這樣的工具來(lái)追蹤Soap消息。不過(guò),好的消息是,WSE從2.0開(kāi)始就提供了可以追蹤到SOAP消息的診斷工具。

勾選Enable Message Trace,在調(diào)試過(guò)程中,將生成InputTrace.webinfo和OutputTrace.webinfo文件,里面記錄了我們想要的信息,到此,不需要借助其他Trace工具便可追蹤到Soap消息。