我遇到了问题:
有wsdl http://localhost:8080/foo/foo.wsdl
使用:
<xsd:schema xmlns:app="http://foo/equeue/ws/"
xmlns:jxb="http://java.sun.com/xml/ns/jaxb" xmlns:smev="http://bar/123"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
jxb:version="2.0" targetNamespace="http://bar/123">
<xsd:import namespace="http://foo/equeue/ws/types/" schemaLocation="../types/etypes.xsd"/>
<xsd:import namespace="http:/foo/equeue/ws/" schemaLocation="../types/eapptypes.xsd"/>
<xsd:include schemaLocation="../types/123.xsd"/>
<xsd:complexType name="SomeType">
...
并且soapUi无法打开此wsdl:错误是 加载[http://localhost:8080/types/eapptypes.xsd]时出错:java.io.IOException:尝试从封闭流中读取
如果我使用来自hdd的//文件 - 并将所有请求发送到localhost:8080 / foo 一切正常。
你可以帮帮我吗?为什么suapUI无法打开localhost wsdl?谢谢!