Updated Branches: refs/heads/master 13cc6cc60 -> 7d5f2f465
[CAMEL-6501] Fix issue in cxf's transports xsd. Patch from Aki Yoshida applied. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/7d5f2f46 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/7d5f2f46 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/7d5f2f46 Branch: refs/heads/master Commit: 7d5f2f46522bdb2dd2dcb3b20356c45763dac0a0 Parents: 13cc6cc Author: Daniel Kulp <dk...@apache.org> Authored: Mon Jul 1 17:07:16 2013 -0400 Committer: Daniel Kulp <dk...@apache.org> Committed: Mon Jul 1 17:07:16 2013 -0400 ---------------------------------------------------------------------- .../src/main/resources/schema/blueprint/camel.xsd | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/7d5f2f46/components/camel-cxf-transport/src/main/resources/schema/blueprint/camel.xsd ---------------------------------------------------------------------- diff --git a/components/camel-cxf-transport/src/main/resources/schema/blueprint/camel.xsd b/components/camel-cxf-transport/src/main/resources/schema/blueprint/camel.xsd index becbf30..2ab9377 100644 --- a/components/camel-cxf-transport/src/main/resources/schema/blueprint/camel.xsd +++ b/components/camel-cxf-transport/src/main/resources/schema/blueprint/camel.xsd @@ -33,9 +33,10 @@ <xsd:element name="destination"> <xsd:complexType> <xsd:complexContent> - <xsd:extension base="beans:Tcomponent"/> - <!-- here we need to specify the CamelContext reference --> - <xsd:attribute name="camelContextId" type="xsd:string" /> + <xsd:extension base="beans:Tcomponent"> + <!-- here we need to specify the CamelContext reference --> + <xsd:attribute name="camelContextId" type="xsd:string" /> + </xsd:extension> </xsd:complexContent> </xsd:complexType> </xsd:element> @@ -43,9 +44,10 @@ <xsd:element name="conduit"> <xsd:complexType> <xsd:complexContent> - <xsd:extension base="beans:Tcomponent"/> - <!-- here we need to specify the CamelContext reference --> - <xsd:attribute name="camelContextId" type="xsd:string" /> + <xsd:extension base="beans:Tcomponent"> + <!-- here we need to specify the CamelContext reference --> + <xsd:attribute name="camelContextId" type="xsd:string" /> + </xsd:extension> </xsd:complexContent> </xsd:complexType> </xsd:element>