xml returned by camel-web should avoid using a namespace prefix
---------------------------------------------------------------
Key: CAMEL-2280
URL: https://issues.apache.org/activemq/browse/CAMEL-2280
Project: Apache Camel
Issue Type: Improvement
Components: camel-web
Reporter: James Strachan
Fix For: 2.2.0
we need to tweak the JAXBContext a little in the default jaxrs config for
camel-web to avoid using a namespace prefix to make the XML a little easier to
read.
e.g. in FireFox if you view this
http://localhost:8080/endpoints.xml
it tends to look like this
{code}
<ns2:endpoints>
<ns2:endpoint href="/endpoints/activemq:%2F%2Fexample.A"
uri="activemq://example.A"/>
<ns2:endpoint href="/endpoints/activemq:%2F%2Fexample.B"
uri="activemq://example.B"/>
<ns2:endpoint href="/endpoints/activemq:%2F%2Fexample.C"
uri="activemq://example.C"/>
<ns2:endpoint href="/endpoints/mock:%2F%2FsomeName" uri="mock://someName"/>
<ns2:endpoint href="/endpoints/spring-event:%2F%2Fdefault"
uri="spring-event://default"/>
</ns2:endpoints>
{code}
with the ns2 prefix making things less easy to read
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.