在沒有代理的情況下使用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 等框架簡單且開銷更少,但它不提供請求攔截或回應修改等附加功能。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3