我创建了一个简单的java程序,如下所示,
import javax.jws.WebService;
@WebService
public class testing {
public static void main(String args[]){
System.out.println("hiiii");
}
}
然后我在 Eclipse 中创建了一个 Web 服务,它是
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="testingService" targetNamespace="http://service.xms.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://service.xms.com/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
<wsdl:portType name="testing">
</wsdl:portType>
<wsdl:binding name="testingServiceSoapBinding" type="tns:testing">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
</wsdl:binding>
<wsdl:service name="testingService">
<wsdl:port name="testingPort" binding="tns:testingServiceSoapBinding">
<soap:address location="h..p://loca...st:8080/XMSExpenseServicePROD/services/testingPort"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
现在,当我在浏览器中打开 h..p://loca...st:8080/XMSExpenseServicePROD/services/testingPort?wsdl 时,它给了我 404 错误,请求的资源不可用...我的程序出了什么问题在这里或我要去的地方。请帮忙。
这不是确切的问题,问题出在另一个项目中,但经过调查我发现,我什至无法在由 eclipse 生成的浏览器中打开这个 url。我无法弄清楚我哪里出错了。任何人都可以帮忙吗?