[ https://issues.apache.org/activemq/browse/CAMEL-2280?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=56494#action_56494 ]
James Strachan commented on CAMEL-2280: --------------------------------------- I've a fix i'm about to apply shortly. One of the complications is the various XML rest URIs in Camel web return a mixture of the regular spring namespace and the web namespace (such as for endpoints as shown above) and sometimes a mixture of the 2. For now I've gone with better default namespace prefixes - and using no namespace prefix for the default spring namespace (so when looking at a route, there's no namespaces at all). Its mostly just the endpoints which will have a small, single character namespace prefix now. I guess we could try figure out how to extend the web xsd/namespace from the spring one, so there's a single universal namespace but thats maybe going a step too far - or hand crafting a JAXB configuration for a few special resources maybe > 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.