在沒有代理的情況下使用JAX-WS 存取XML 請求/回應
在JAX-WS 中,在Web 服務通訊期間存取原始請求和回應XML可以透過啟用詳細日誌記錄來實現。操作方法如下:
在程式碼或環境中設定下列系統屬性:
System.setProperty("com.sun.xml.ws.transport.http.client.HttpTransportPipe.dump", "true"); System.setProperty("com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.dump", "true"); System.setProperty("com.sun.xml.ws.transport.http.HttpAdapter.dump", "true"); System.setProperty("com.sun.xml.internal.ws.transport.http.HttpAdapter.dump", "true"); System.setProperty("com.sun.xml.internal.ws.transport.http.HttpAdapter.dumpTreshold", "999999");
這些屬性可將所有通訊記錄到控制台。 「dumpTreshold」屬性確保記錄整個請求和回應 XML,無論其大小為何。
或者,您也可以使用「-D」標誌將這些屬性設定為命令列參數或環境
請注意,雖然此方法比使用Axis 或CXF 等框架簡單且開銷更少,但它不提供請求攔截或回應修改等附加功能。
以上是如何在不使用代理程式的情況下存取 JAX-WS 中的原始 XML 請求和回應?的詳細內容。更多資訊請關注PHP中文網其他相關文章!