Java Web服务示例无法提供服务吗?

时间:2018-12-25 07:54:41

标签: java web browser service publish

我有以下代码段:

@WebService(targetNamespace = "MyWebService")
public class MyWebService {
    public String transWords(String words) {
        String res = "";
        for (char ch : words.toCharArray()) {
            res += ch + ",";
        }
        return res;
    }

    public static void main(String[] args) {
        Endpoint.publish("http://localhost:8099/service/function", new MyWebService());
        System.out.println("OK");
    }
}

是的,它运行并打印“确定”,然后使用“ chrome”浏览器,并且“ http://localhost:8099/service/function”给出了网页错误。

那么我在哪里弄错了以及如何解决呢? 非常感谢。

0 个答案:

没有答案