我有以下代码段:
@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”给出了网页错误。
那么我在哪里弄错了以及如何解决呢? 非常感谢。