我使用JAX-WS製作了Web服務。現在我想使用Web瀏覽器進行測試,但出現錯誤。有人能解釋我請幫助。Web服務測試
我的服務類:
package another;
import javax.jws.WebService;
import javax.xml.ws.Endpoint;
@WebService(name = "WebService")
public class WebServiceTest {
public String sayHello(String name) {
return "Hello : " + name;
}
public static void main(String[] args) {
WebServiceTest server = new WebServiceTest();
Endpoint endpoint = Endpoint.publish(
"http://localhost:9191/webServiceTest", server);
}
}
我運行這個類作爲簡單的Java程序。
而且我可以在我的瀏覽器中看到WSDL,網址爲http://localhost:9191/webServiceTest?wsdl
。
我試圖用URL http://localhost:9191/webServiceTest?sayHello?name=MKGandhi
來調用它,但我沒有得到任何結果。
這裏有什麼問題?