OpenLiberty / openliberty.io

Open Liberty website
https://openliberty.io
Other
54 stars 40 forks source link

https://openliberty.io/schema/ #3143

Open fcorneli opened 1 year ago

fcorneli commented 1 year ago

I have the following ibm-web-ext.xml descriptor within my project:

<web-ext
    xmlns="http://websphere.ibm.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://websphere.ibm.com/xml/ns/javaee http://websphere.ibm.com/xml/ns/javaee/ibm-web-ext_1_0.xsd"
    version="1.0">

    <context-root uri="/whatever"/>

</web-ext>

Unfortunately the XML schema is no longer available at that location. Maybe provide https://openliberty.io/schema/ where all the XML schema's can live?

NottyCode commented 1 year ago

@fcorneli we can look at hosting them on openliberty.io, but they have never been available at websphere.ibm.com so that part isn't a change.

tbitonti commented 1 year ago

In open-liberty they are available here: https://github.com/OpenLiberty/open-liberty/tree/integration/dev/com.ibm.ws.javaee.dd/resources/schemas

fcorneli commented 1 year ago

@tbitonti Exactly what I was looking for: https://raw.githubusercontent.com/OpenLiberty/open-liberty/integration/dev/com.ibm.ws.javaee.dd/resources/schemas/ibm-web-ext_1_1.xsd

Thanks.