无法在浏览器中打开WSDL

时间:2013-08-07 19:50:21

标签: java eclipse web-services tomcat wsdl

我创建了一个简单的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。我无法弄清楚我哪里出错了。有人可以帮忙吗?

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

时:

<soap:address location="h..p://loca...st:8080/XMSExpenseServicePROD/services/testingPort"/>

实际上是用你的xml在你的xml中定义的吗?如果你省略了任何配置,你可以发布整个配置吗?

在localhost上运行的是什么:8080,这是来自Tomcat吗?你有tomcat日志输出吗?

项目目录结构是什么?