This is an automated email from the ASF dual-hosted git repository. pascalschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit eef4f9ca31a2ee8fa878b63bc2cf88f2b485f676 Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Thu Sep 12 11:49:32 2019 +0200 Remove the very outdated "How to validate the camel 1.x context xml from Apache Camel web site?" FAQ entry. --- docs/user-manual/modules/ROOT/pages/faq.adoc | 1 - ...-1x-context-xml-from-apache-camel-web-site.adoc | 42 ---------------------- 2 files changed, 43 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/faq.adoc b/docs/user-manual/modules/ROOT/pages/faq.adoc index 0e6a101..5c79a52 100644 --- a/docs/user-manual/modules/ROOT/pages/faq.adoc +++ b/docs/user-manual/modules/ROOT/pages/faq.adoc @@ -103,7 +103,6 @@ Questions on using Apache Camel * xref:faq/how-to-switch-the-cxf-consumer-between-http-and-https-without-touching-the-spring-configuration.adoc[How to switch the CXF consumer between HTTP and HTTPS without touching the Spring configuration?] * xref:faq/how-to-use-a-dynamic-uri-in-to.adoc[How to use a dynamic URI in to()?] * xref:faq/how-to-use-extra-camel-componets-in-servicemix-camel.adoc[How to use extra Camel componets in servicemix-camel?] -* xref:faq/how-to-validate-the-camel-1x-context-xml-from-apache-camel-web-site.adoc[How to validate the camel 1.x context xml from Apache Camel web site?] * xref:faq/is-there-an-ide.adoc[Is there an IDE?] * xref:faq/should-i-deploy-camel-inside-the-activemq-broker-or-in-another-application.adoc[Should I deploy Camel inside the ActiveMQ broker or in another application?] * xref:faq/using-camel-core-testsjar.adoc[Using camel-core-tests.jar] diff --git a/docs/user-manual/modules/ROOT/pages/faq/how-to-validate-the-camel-1x-context-xml-from-apache-camel-web-site.adoc b/docs/user-manual/modules/ROOT/pages/faq/how-to-validate-the-camel-1x-context-xml-from-apache-camel-web-site.adoc deleted file mode 100644 index 7c9470b..0000000 --- a/docs/user-manual/modules/ROOT/pages/faq/how-to-validate-the-camel-1x-context-xml-from-apache-camel-web-site.adoc +++ /dev/null @@ -1,42 +0,0 @@ -[[Howtovalidatethecamel1xcontextxmlfromApacheCamelwebsite-Howtovalidatethecamel1xcontextxmlfromApacheCamelwebsite]] -= How to validate the camel 1.x context xml from Apache Camel web site? - -Since Camel became to be Apache Top Level Project for a while, and all -the request to the camel old web site -(http://activemq.apache.org/camel/) will be redirect to the new site -(http://camel.apache.org). We updated the camel schemas' target -namespace to refect the URL change in Camel 2.0. But we don't change the -schemas namespace of Camel 1.x to keep the compatibility. - -We recently released Camel 2.0-ml, and the site schema maintenance -script always copys the latest released Camel version's schema to the -default schema without version number. You may meet the schema -validation problem if your application spring configuration is still -using the old Camel 1.x schema namespace and using the web site schema -for validations. - -To walk around this issue, you just need to specify the schema version -in your Spring configuration's schemaLocation attribute. - -[source,xml] ----- -<beans xmlns="http://www.springframework.org/schema/beans" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xmlns:camel="http://activemq.apache.org/camel/schema/spring" - xmlns:osgi="http://www.springframework.org/schema/osgi" - xmlns:cxf="http://activemq.apache.org/camel/schema/cxfEndpoint" - xsi:schemaLocation=" - http://www.springframework.org/schema/beans - http://www.springframework.org/schema/beans/spring-beans-2.5.xsd - http://www.springframework.org/schema/osgi - http://www.springframework.org/schema/osgi/spring-osgi.xsd - http://activemq.apache.org/camel/schema/osgi - http://activemq.apache.org/camel/schema/osgi/camel-osgi-1.6.0.xsd - http://activemq.apache.org/camel/schema/spring - http://activemq.apache.org/camel/schema/spring/camel-spring-1.6.0.xsd - http://activemq.apache.org/camel/schema/cxfEndpoint - http://activemq.apache.org/camel/schema/cxf/camel-cxf-1.6.0.xsd"> - -... -</beans> -----