0
在Axis2中我知道這是可能搞一個模塊如下:如何在Axis1中使用模塊?
stub._getServiceClient().engageModule("myloggingmod");
怎麼能在這個被軸1做?
在Axis2中我知道這是可能搞一個模塊如下:如何在Axis1中使用模塊?
stub._getServiceClient().engageModule("myloggingmod");
怎麼能在這個被軸1做?
Axis2中引入了模塊,Axis1 does not have modules。
Axis1與處理程序一起工作,因此充其量,您可以嘗試通過配置某個處理程序來實現您正在嘗試執行的操作。如果我沒有弄錯,你甚至可以通過抓住處理鏈來編程添加一個:
stub._getService().getHandlerRegistry().getHandlerChain(portName);
是的你是對的。我做的。謝謝! – Harsha