0
我有兩個使用Netbeans 7.2.1部署在Glassfish服務器上的Java Web服務,這兩個服務都在同一個Web應用程序中。我試圖從webservice1調用webservice2,這是代碼:從另一個web服務調用webservice?
ebank.Customer_Service service = new ebank.Customer_Service();
ebank.Customer port = service.getCustomerPort();
port.getData();
但是我得到錯誤說:
cannot find symbol
symbol: class Customer
location: package ebank
感謝。
這是運行時還是編譯時錯誤?爲什麼添加ejb-3.0標籤? – home
運行時錯誤,但我現在修復它。我在同一個項目中爲不同的相關服務使用bean。 – GuyWhoReadsStockoverflow