我正在和一些jax-ws的东西一起工作。
小心翼翼地说,在使用XML时,我想要XSD / DTD架构,理想情况下来自某个闻起来像永恒 URL的东西。
谷歌搜索后,我所能找到的只是http://docs.oracle.com/cd/E17802_01/webservices/webservices/docs/2.0/jaxws/sun-jaxws.xsd,它有一种短暂的气息。
<?xml version="1.0" encoding="UTF-8"?>
<endpoints
xmlns="http://java.sun.com/xml/ns/jax-ws/ri/runtime"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/jax-ws/ri/runtime http://docs.oracle.com/cd/E17802_01/webservices/webservices/docs/2.0/jaxws/sun-jaxws.xsd"
version="2.0">
<endpoint implementation="io.earcam.example.jaxws.Hello" url-pattern="/hello" name="Hello" />
</endpoints>
答案 0 :(得分:5)