2010-03-19 45 views
0

我已經定義一個名爲CalendarService Web服務的WSDL:調用其他的WebMethod用的SoapExtension

<soap:address location="http://example.com/calendar"/> 

WSDL定義了以下方法:

String setDate(String date) 
int setTime(int time) 

CalendarService不部署在任何地方。 CalendarServiceProxy是從CalendarService WSDL生成的代理。


我命名DummyService訪問的Web服務在 「http://example.com/dummy

DummyService有以下方法:

String dummyMethod(String foo) 

DummyService部署在IIS。


我不知道是否有可能寫的SoapExtension使從CalendarServiceProxy在CalendarService WSDL定義的所有方法的所有調用調用方法DummyService的dummyMethod。這樣,dummyMethod方法將獲取序列化的傳入SOAP消息的參數。

回答