Warning on sip.xml in Eclipse

89 views Asked by At

I have a sip.xml (for SIP servlets)

<?xml version="1.0" encoding="UTF-8"?>

<sip-app>
...
</sip-app>

and I get the Eclipse warning No grammar constraints (DTD or XML Schema) referenced in the document.

How can I fix it? `

1

There are 1 answers

0
Adrian Ber On BEST ANSWER

I modified <sip-app> to <sip-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.jcp.org/xml/ns/sipservlet" xsi:schemaLocation="http://www.jcp.org/xml/ns/sipservlet http://www.jcp.org/xml/ns/sipservlet/sip-app_1_1.xsd">. Problem solved!