earcam
earcam

Reputation: 6682

XSD for sun-jaxws.xml

I'm working with some ye olde jax-ws stuff.

Pedantically, when using XML, I want the XSD/DTD schema and ideally from something that smells like a published, eternal, URL.

After googling, all I can find is http://docs.oracle.com/cd/E17802_01/webservices/webservices/docs/2.0/jaxws/sun-jaxws.xsd which has an ephemeral whiff.

<?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>

Upvotes: 0

Views: 1398

Answers (1)

Related Questions