svn commit: r1378825 - /camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java

2012-08-30 Thread ningjiang
Author: ningjiang
Date: Thu Aug 30 07:08:46 2012
New Revision: 1378825

URL: http://svn.apache.org/viewvc?rev=1378825view=rev
Log:
CAMEL-5551 fix the issue that String types not converted from CLOB

Modified:

camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java

Modified: 
camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java?rev=1378825r1=1378824r2=1378825view=diff
==
--- 
camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java
 (original)
+++ 
camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java
 Thu Aug 30 07:08:46 2012
@@ -21,6 +21,7 @@ import java.sql.ResultSet;
 import java.sql.ResultSetMetaData;
 import java.sql.SQLException;
 import java.sql.Statement;
+import java.sql.Types;
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
 import java.util.List;
@@ -257,8 +258,14 @@ public class JdbcProducer extends Defaul
 columnName = meta.getColumnName(columnNumber);
 }
 }
-// use index based which should be faster
-row.put(columnName, rs.getObject(columnNumber));
+   // use index based which should be faster
+   int columnType = meta.getColumnType( 
columnNumber );
+   if (columnType == Types.CLOB || columnType == 
Types.BLOB) {
+   row.put(columnName, rs.getString( 
columnNumber));
+   }
+   else {
+   row.put(columnName, 
rs.getObject(columnNumber));
+   }
 }
 data.add(row);
 rowNumber++;




svn commit: r1378826 - /camel/trunk/components/camel-scala/src/main/scala/org/apache/camel/scala/dsl/languages/Languages.scala

2012-08-30 Thread davsclaus
Author: davsclaus
Date: Thu Aug 30 07:11:22 2012
New Revision: 1378826

URL: http://svn.apache.org/viewvc?rev=1378826view=rev
Log:
Updated Scala DSL to be in sync with all the languages in Camel

Modified:

camel/trunk/components/camel-scala/src/main/scala/org/apache/camel/scala/dsl/languages/Languages.scala

Modified: 
camel/trunk/components/camel-scala/src/main/scala/org/apache/camel/scala/dsl/languages/Languages.scala
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-scala/src/main/scala/org/apache/camel/scala/dsl/languages/Languages.scala?rev=1378826r1=1378825r2=1378826view=diff
==
--- 
camel/trunk/components/camel-scala/src/main/scala/org/apache/camel/scala/dsl/languages/Languages.scala
 (original)
+++ 
camel/trunk/components/camel-scala/src/main/scala/org/apache/camel/scala/dsl/languages/Languages.scala
 Thu Aug 30 07:11:22 2012
@@ -26,42 +26,56 @@ trait Languages {
* Implicitly make a method for every language available on the Camel 
Exchange
*/
   implicit def addLanguageMethodsToExchange(exchange: Exchange) = new {
+def constant(expression: String) =   
Languages.this.constant(expression)(exchange)
 def el(expression: String) = 
Languages.this.el(expression)(exchange)
 def groovy(expression: String) = 
Languages.this.groovy(expression)(exchange)
 def header(headerName: String) = 
Languages.this.header(headerName)(exchange)
 def javascript(expression: String) = 
Languages.this.javascript(expression)(exchange)
 def jxpath(expression: String) = 
Languages.this.jxpath(expression)(exchange)
+def method(expression: String) = 
Languages.this.method(expression)(exchange)
 def mvel(expression: String) =   
Languages.this.mvel(expression)(exchange)
 def ognl(expression: String) =   
Languages.this.ognl(expression)(exchange)
 def php(expression: String) =
Languages.this.php(expression)(exchange)
 def property(propertyName: String) = 
Languages.this.property(propertyName)(exchange)
 def python(expression: String) = 
Languages.this.python(expression)(exchange)
+def ref(expression: String) =
Languages.this.ref(expression)(exchange)
 def ruby(expression: String) =   
Languages.this.ruby(expression)(exchange)
 def simple(expression: String) = 
Languages.this.simple(expression)(exchange)
 def spel(expression: String) =   
Languages.this.spel(expression)(exchange)
 def sql(expression: String) =
Languages.this.sql(expression)(exchange)
+def tokenize(expression: String) =   
Languages.this.tokenize(expression)(exchange)
+def vtdxml(expression: String) = 
Languages.this.vtdxml(expression)(exchange)
 def xpath(expression: String) =  
Languages.this.xpath(expression)(exchange)
 def xquery(expression: String) = 
Languages.this.xquery(expression)(exchange)
+def language(language: String, expression: String) = 
Languages.this.language(language)(expression)(exchange)
   }
   
   // a set of methods to allow direct use of the language as an expression
+  def constant(expression: String)(exchange: Exchange) =   
Languages.evaluate(expression)(exchange)(constant)
   def el(expression: String)(exchange: Exchange) = 
Languages.evaluate(expression)(exchange)(el)
   def groovy(expression: String)(exchange: Exchange) = 
Languages.evaluate(expression)(exchange)(groovy)
   def header(headerName: String)(exchange: Exchange) = 
Languages.evaluate(headerName)(exchange)(header)
   def javascript(expression: String)(exchange: Exchange) = 
Languages.evaluate(expression)(exchange)(javascript)
   def jxpath(expression: String)(exchange: Exchange) = 
Languages.evaluate(expression)(exchange)(jxpath)
+  // method call is using the bean language
+  def method(expression: String)(exchange: Exchange) = 
Languages.evaluate(expression)(exchange)(bean)
   def mvel(expression: String)(exchange: Exchange) =   
Languages.evaluate(expression)(exchange)(mvel)
   def ognl(expression: String)(exchange: Exchange) =   
Languages.evaluate(expression)(exchange)(ognl)
   def php(expression: String)(exchange: Exchange) =
Languages.evaluate(expression)(exchange)(php)
   def property(propertyName: String)(exchange: Exchange) = 
Languages.evaluate(propertyName)(exchange)(property)
   def python(expression: String)(exchange: Exchange) = 
Languages.evaluate(expression)(exchange)(python)
+  def ref(expression: String)(exchange: Exchange) =
Languages.evaluate(expression)(exchange)(ref)
   def ruby(expression: String)(exchange: Exchange) =   
Languages.evaluate(expression)(exchange)(ruby)
   def simple(expression: String)(exchange: Exchange) = 
Languages.evaluate(expression)(exchange)(simple)
   def spel(expression: String)(exchange: Exchange) =   
Languages.evaluate(expression)(exchange)(spel)
   def sql(expression: String)(exchange: 

svn commit: r1378827 - /camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java

2012-08-30 Thread ningjiang
Author: ningjiang
Date: Thu Aug 30 07:11:27 2012
New Revision: 1378827

URL: http://svn.apache.org/viewvc?rev=1378827view=rev
Log:
CAMEL-5551 fix the CS error

Modified:

camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java

Modified: 
camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java?rev=1378827r1=1378826r2=1378827view=diff
==
--- 
camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java
 (original)
+++ 
camel/trunk/components/camel-jdbc/src/main/java/org/apache/camel/component/jdbc/JdbcProducer.java
 Thu Aug 30 07:11:27 2012
@@ -258,14 +258,13 @@ public class JdbcProducer extends Defaul
 columnName = meta.getColumnName(columnNumber);
 }
 }
-   // use index based which should be faster
-   int columnType = meta.getColumnType( 
columnNumber );
-   if (columnType == Types.CLOB || columnType == 
Types.BLOB) {
-   row.put(columnName, rs.getString( 
columnNumber));
-   }
-   else {
-   row.put(columnName, 
rs.getObject(columnNumber));
-   }
+// use index based which should be faster
+int columnType = meta.getColumnType(columnNumber);
+if (columnType == Types.CLOB || columnType == Types.BLOB) {
+row.put(columnName, rs.getString(columnNumber));
+} else {
+row.put(columnName, rs.getObject(columnNumber));
+}
 }
 data.add(row);
 rowNumber++;




svn commit: r1378832 - in /camel/trunk: parent/pom.xml platforms/karaf/features/src/main/resources/features.xml

2012-08-30 Thread ningjiang
Author: ningjiang
Date: Thu Aug 30 07:33:28 2012
New Revision: 1378832

URL: http://svn.apache.org/viewvc?rev=1378832view=rev
Log:
Fixed the feature package resolve issue of camel-saxon

Modified:
camel/trunk/parent/pom.xml
camel/trunk/platforms/karaf/features/src/main/resources/features.xml

Modified: camel/trunk/parent/pom.xml
URL: 
http://svn.apache.org/viewvc/camel/trunk/parent/pom.xml?rev=1378832r1=1378831r2=1378832view=diff
==
--- camel/trunk/parent/pom.xml (original)
+++ camel/trunk/parent/pom.xml Thu Aug 30 07:33:28 2012
@@ -228,7 +228,7 @@
   org.ccil.cowan.tagsoup.*;version=[1.2,2),
   org.mortbay.cometd.*;version=[6.1,7),
   net.sf.flatpack.*;version=[3.1.1,4),
-  net.sf.saxon.*;version=[9.3.0,9.4),
+  net.sf.saxon.*;version=[9.3.0,9.5),
   freemarker.*;version=[2.3.15,3),
   javax.persistence.*;version=[1.1,3),
 /camel.osgi.import.defaults

Modified: camel/trunk/platforms/karaf/features/src/main/resources/features.xml
URL: 
http://svn.apache.org/viewvc/camel/trunk/platforms/karaf/features/src/main/resources/features.xml?rev=1378832r1=1378831r2=1378832view=diff
==
--- camel/trunk/platforms/karaf/features/src/main/resources/features.xml 
(original)
+++ camel/trunk/platforms/karaf/features/src/main/resources/features.xml Thu 
Aug 30 07:33:28 2012
@@ -684,6 +684,7 @@
   /feature
   feature name='camel-saxon' version='${project.version}' resolver='(obr)' 
start-level='50'
 feature version='${project.version}'camel-core/feature
+bundle 
dependnecy='true'mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xmlresolver/${xmlresolver-bundle-version}/bundle
 bundle 
dependency='true'mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon/${saxon-bundle-version}/bundle
 bundlemvn:org.apache.camel/camel-saxon/${project.version}/bundle
   /feature




svn commit: r1378843 - in /camel/branches/camel-2.10.x: ./ camel-core/src/main/java/org/apache/camel/model/dataformat/XMLSecurityDataFormat.java

2012-08-30 Thread davsclaus
Author: davsclaus
Date: Thu Aug 30 08:03:45 2012
New Revision: 1378843

URL: http://svn.apache.org/viewvc?rev=1378843view=rev
Log:
CAMEL-5545: Fixed the failed test 
(org.apache.camel.model.ModelSanityCheckerTest) on the CI-Server.

Modified:
camel/branches/camel-2.10.x/   (props changed)

camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/model/dataformat/XMLSecurityDataFormat.java

Propchange: camel/branches/camel-2.10.x/
--
  Merged /camel/trunk:r1378731

Propchange: camel/branches/camel-2.10.x/
--
Binary property 'svnmerge-integrated' - no diff available.

Modified: 
camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/model/dataformat/XMLSecurityDataFormat.java
URL: 
http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/model/dataformat/XMLSecurityDataFormat.java?rev=1378843r1=1378842r2=1378843view=diff
==
--- 
camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/model/dataformat/XMLSecurityDataFormat.java
 (original)
+++ 
camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/model/dataformat/XMLSecurityDataFormat.java
 Thu Aug 30 08:03:45 2012
@@ -317,11 +317,11 @@ public class XMLSecurityDataFormat exten
 this.keyOrTrustStoreParameters = keyOrTrustStoreParameters;
 }
 
-private String getKeyPassword() {
+public String getKeyPassword() {
 return this.keyPassword;
 }
 
-private void setKeyPassword(String keyPassword) {
+public void setKeyPassword(String keyPassword) {
 this.keyPassword = keyPassword;
 }
 




[CONF] Apache Camel How do I use Spring Property Placeholder with Camel XML

2012-08-30 Thread confluence







How do I use Spring Property Placeholder with Camel XML
Page edited by Claus Ibsen


 Changes (4)
 




h2. How do I use Spring Property Placeholder with Camel XML  
We dont do *NOT* yet support the {{$\{something}}} notation inside arbitrary Camel XML. For example at the time of writing this is not *NOT* supported (due Spring limitations) 
 
{code} 
{code:title=IS NOT SUPPORTED} 
beans xmlns=http://www.springframework.org/schema/beansxmlns:xsi=http://www.w3.org/2001/XMLSchema-instance 
...
However you can use the *endpoint/* element to define endpoints which does support the property resolving which you can then refer to by name, using the [Ref] component as shown below (notice the ref: in the uri):  
{code:title=SUPPORTED} 
beans xmlns=http://www.springframework.org/schema/beansxmlns:xsi=http://www.w3.org/2001/XMLSchema-instance 
...


Full Content

How do I use Spring Property Placeholder with Camel XML

We do NOT yet support the ${something} notation inside arbitrary Camel XML. For example at the time of writing this is NOT supported (due Spring limitations)

IS NOT SUPPORTED

beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="
   http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
   http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd
"

  bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/

  camelContext xmlns="http://activemq.apache.org/camel/schema/spring"
route
  from uri="activemq:${someQueueName}"/
  to uri="mock:results"/
/route
  /camelContext

/beans



However you can use the endpoint/ element to define endpoints which does support the property resolving which you can then refer to by name, using the Ref component as shown below (notice the ref: in the uri):

SUPPORTED

beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="
   http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
   http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd
"

  bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/

  camelContext xmlns="http://activemq.apache.org/camel/schema/spring"
endpoint id="input1" uri="activemq:${someQueueName}"/

route
  from uri="ref:input1"/
  to uri="activemq:OutputQueue"/
/route
  /camelContext

/beans



Camel does not yet fully support property placeholders as there is a limitation in Spring. See JIRA SPR-4466

Bridge Spring and Camel property placeholdersFrom Camel 2.10 onwards you can bridge Spring and Camel property placeholders, see Using PropertyPlaceholder for more details.

Here is a trick that you can use to define the uri in a property file using Spring injection and Camel endpoint : http://cmoulliard.blogspot.com/2009/05/trick-to-pass-uri-declared-in-property.html.

From Camel 2.3 onwards there is a Properties component build in Camel core which allows you to use properties in the same way as Spring property placeholders, and even more.



Change Notification Preferences

View Online
|
View Changes
|
Add Comment









svn commit: r830548 - in /websites/production/camel/content: cache/main.pageCache how-do-i-use-spring-property-placeholder-with-camel-xml.html

2012-08-30 Thread buildbot
Author: buildbot
Date: Thu Aug 30 12:17:45 2012
New Revision: 830548

Log:
Production update by buildbot for camel

Modified:
websites/production/camel/content/cache/main.pageCache

websites/production/camel/content/how-do-i-use-spring-property-placeholder-with-camel-xml.html

Modified: websites/production/camel/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: 
websites/production/camel/content/how-do-i-use-spring-property-placeholder-with-camel-xml.html
==
--- 
websites/production/camel/content/how-do-i-use-spring-property-placeholder-with-camel-xml.html
 (original)
+++ 
websites/production/camel/content/how-do-i-use-spring-property-placeholder-with-camel-xml.html
 Thu Aug 30 12:17:45 2012
@@ -77,9 +77,9 @@
 td valign=top width=100%
 div class=wiki-content maincontenth2a shape=rect 
name=HowdoIuseSpringPropertyPlaceholderwithCamelXML-HowdoIuseSpringPropertyPlaceholderwithCamelXML/aHow
 do I use Spring Property Placeholder with Camel XML/h2
 
-pWe don't yet support the tt${something/tt} notation inside arbitrary 
Camel XML. For example at the time of writing this is not supported/p
+pWe do bNOT/b yet support the tt${something/tt} notation inside 
arbitrary Camel XML. For example at the time of writing this is bNOT/b 
supported (due Spring limitations)/p
 
-div class=code panel style=border-width: 1px;div class=codeContent 
panelContent
+div class=code panel style=border-width: 1px;div class=codeHeader 
panelHeader style=border-bottom-width: 1px;bIS NOT 
SUPPORTED/b/divdiv class=codeContent panelContent
 pre class=code-java
 lt;beans xmlns=span class=code-quotehttp:span 
class=code-comment//www.springframework.org/schema/beans/span
 /span   xmlns:xsi=span class=code-quotehttp:span 
class=code-comment//www.w3.org/2001/XMLSchema-instance/span
@@ -103,7 +103,7 @@
 
 pHowever you can use the blt;endpoint/gt;/b element to define 
endpoints which does support the property resolving which you can then refer to 
by name, using the a shape=rect href=ref.html title=RefRef/a 
component as shown below (notice the ref: in the uri):/p
 
-div class=code panel style=border-width: 1px;div class=codeContent 
panelContent
+div class=code panel style=border-width: 1px;div class=codeHeader 
panelHeader style=border-bottom-width: 1px;bSUPPORTED/b/divdiv 
class=codeContent panelContent
 pre class=code-java
 lt;beans xmlns=span class=code-quotehttp:span 
class=code-comment//www.springframework.org/schema/beans/span
 /span   xmlns:xsi=span class=code-quotehttp:span 
class=code-comment//www.w3.org/2001/XMLSchema-instance/span




[CONF] Apache Camel Download

2012-08-30 Thread confluence







Download
Page edited by Daniel Kulp


 Changes (6)
 




...
Grab these releases while they are hot!  
* The latest release for Camel 2.10.x is [Camel 2.10.01 Release]. * The latest release for Camel 2.9.x is [Camel 2.9.23 Release]. 
* The latest release for Camel 2.8.x is [Camel 2.8.6 Release].  * Support for Camel 2.7.x is discontinued. 
...
 ||Description||Download Link||PGP Signature file of download||MD5 Checksum file of download||SHA1 Checksum file of download|| 
|Windows Distribution| [apache-camel-2.10.0.zip|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.10.0/apache-camel-2.10.0.zip]| [apache-camel-2.10.0.zip.asc|http://www.apache.org/dist/camel/apache-camel/2.10.0/apache-camel-2.10.0.zip.asc]| [apache-camel-2.10.0.zip.md5|http://www.apache.org/dist/camel/apache-camel/2.10.0/apache-camel-2.10.0.zip.md5]| [apache-camel-2.10.0.zip.sha1|http://www.apache.org/dist/camel/apache-camel/2.10.0/apache-camel-2.10.0.zip.sha1]| |Unix/Linux/Cygwin Distribution| [apache-camel-2.10.0.tar.gz|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.10.0/apache-camel-2.10.0.tar.gz]| [apache-camel-2.10.0.tar.gz.asc|http://www.apache.org/dist/camel/apache-camel/2.10.0/apache-camel-2.10.0.tar.gz.asc]| [apache-camel-2.10.0.tar.gz.md5|http://www.apache.org/dist/camel/apache-camel/2.10.0/apache-camel-2.10.0.tar.gz.md5]| [apache-camel-2.10.0.tar.gz.sha1|http://www.apache.org/dist/camel/apache-camel/2.10.0/apache-camel-2.10.0.tar.gz.sha1]| |Windows Distribution (2.9.x branch)| [apache-camel-2.9.2.zip|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.9.2/apache-camel-2.9.2.zip]| [apache-camel-2.9.2.zip.asc|http://www.apache.org/dist/camel/apache-camel/2.9.2/apache-camel-2.9.2.zip.asc]| [apache-camel-2.9.2.zip.md5|http://www.apache.org/dist/camel/apache-camel/2.9.2/apache-camel-2.9.2.zip.md5]| [apache-camel-2.9.2.zip.sha1|http://www.apache.org/dist/camel/apache-camel/2.9.2/apache-camel-2.9.2.zip.sha1]| |Unix/Linux/Cygwin Distribution (2.9.x branch)| [apache-camel-2.9.2.tar.gz|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.9.2/apache-camel-2.9.2.tar.gz]| [apache-camel-2.9.2.tar.gz.asc|http://www.apache.org/dist/camel/apache-camel/2.9.2/apache-camel-2.9.2.tar.gz.asc]| [apache-camel-2.9.2.tar.gz.md5|http://www.apache.org/dist/camel/apache-camel/2.9.2/apache-camel-2.9.2.tar.gz.md5]| [apache-camel-2.9.2.tar.gz.sha1|http://www.apache.org/dist/camel/apache-camel/2.9.2/apache-camel-2.9.2.tar.gz.sha1]| 
|Windows Distribution| [apache-camel-2.10.1.zip|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.10.1/apache-camel-2.10.1.zip]| [apache-camel-2.10.1.zip.asc|http://www.apache.org/dist/camel/apache-camel/2.10.1/apache-camel-2.10.1.zip.asc]| [apache-camel-2.10.1.zip.md5|http://www.apache.org/dist/camel/apache-camel/2.10.1/apache-camel-2.10.1.zip.md5]| [apache-camel-2.10.1.zip.sha1|http://www.apache.org/dist/camel/apache-camel/2.10.1/apache-camel-2.10.1.zip.sha1]| |Unix/Linux/Cygwin Distribution| [apache-camel-2.10.1.tar.gz|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.10.1/apache-camel-2.10.1.tar.gz]| [apache-camel-2.10.1.tar.gz.asc|http://www.apache.org/dist/camel/apache-camel/2.10.1/apache-camel-2.10.1.tar.gz.asc]| [apache-camel-2.10.1.tar.gz.md5|http://www.apache.org/dist/camel/apache-camel/2.10.1/apache-camel-2.10.1.tar.gz.md5]| [apache-camel-2.10.1.tar.gz.sha1|http://www.apache.org/dist/camel/apache-camel/2.10.1/apache-camel-2.10.1.tar.gz.sha1]| |Windows Distribution (2.9.x branch)| [apache-camel-2.9.3.zip|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.9.3/apache-camel-2.9.3.zip]| [apache-camel-2.9.3.zip.asc|http://www.apache.org/dist/camel/apache-camel/2.9.3/apache-camel-2.9.3.zip.asc]| [apache-camel-2.9.3.zip.md5|http://www.apache.org/dist/camel/apache-camel/2.9.3/apache-camel-2.9.3.zip.md5]| [apache-camel-2.9.3.zip.sha1|http://www.apache.org/dist/camel/apache-camel/2.9.3/apache-camel-2.9.3.zip.sha1]| |Unix/Linux/Cygwin Distribution (2.9.x branch)| [apache-camel-2.9.3.tar.gz|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.9.3/apache-camel-2.9.3.tar.gz]| [apache-camel-2.9.3.tar.gz.asc|http://www.apache.org/dist/camel/apache-camel/2.9.3/apache-camel-2.9.3.tar.gz.asc]| [apache-camel-2.9.3.tar.gz.md5|http://www.apache.org/dist/camel/apache-camel/2.9.3/apache-camel-2.9.3.tar.gz.md5]| [apache-camel-2.9.3.tar.gz.sha1|http://www.apache.org/dist/camel/apache-camel/2.9.3/apache-camel-2.9.3.tar.gz.sha1]| 
|Windows Distribution (2.8.x branch)| [apache-camel-2.8.6.zip|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.8.6/apache-camel-2.8.6.zip]| [apache-camel-2.8.6.zip.asc|http://www.apache.org/dist/camel/apache-camel/2.8.6/apache-camel-2.8.6.zip.asc]| 

svn commit: r830552 [1/5] - in /websites/production/camel/content/schema: blueprint/ cxf/ spring-security/ spring/ spring/integration/

2012-08-30 Thread dkulp
Author: dkulp
Date: Thu Aug 30 13:57:32 2012
New Revision: 830552

Log:
Uploading released schemas for camel-2.9.3

Added:
websites/production/camel/content/schema/blueprint/camel-blueprint-2.9.3.xsd
websites/production/camel/content/schema/cxf/camel-cxf-2.9.3-blueprint.xsd
websites/production/camel/content/schema/cxf/camel-cxf-2.9.3-spring.xsd

websites/production/camel/content/schema/spring-security/camel-spring-security-2.9.3.xsd
websites/production/camel/content/schema/spring/camel-spring-2.9.3.xsd

websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.9.3.xsd



svn commit: r830552 [5/5] - in /websites/production/camel/content/schema: blueprint/ cxf/ spring-security/ spring/ spring/integration/

2012-08-30 Thread dkulp
Added: 
websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.9.3.xsd
==
--- 
websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.9.3.xsd
 (added)
+++ 
websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.9.3.xsd
 Thu Aug 30 13:57:32 2012
@@ -0,0 +1,65 @@
+?xml version=1.0 encoding=UTF-8?
+!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  License); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+--
+xsd:schema xmlns=http://camel.apache.org/schema/spring/integration;
+  xmlns:xsd=http://www.w3.org/2001/XMLSchema;
+  xmlns:beans=http://www.springframework.org/schema/beans;
+  xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
+  xmlns:camel-spring=http://camel.apache.org/schema/spring;
+  targetNamespace=http://camel.apache.org/schema/spring/integration;
+  elementFormDefault=qualified
+  attributeFormDefault=unqualified
+
+  xsd:import namespace=http://www.springframework.org/schema/beans; 
schemaLocation=http://www.springframework.org/schema/beans/spring-beans.xsd/
+  xsd:import namespace=http://camel.apache.org/schema/spring; 
schemaLocation=http://camel.apache.org/schema/spring/camel-spring.xsd/
+
+  xsd:complexType name=camelEndpointType
+   xsd:sequence
+   xsd:element ref=camel-spring:camelContext minOccurs=0 /
+   xsd:element name=camelContextRef type=xsd:string 
minOccurs=0 /
+   /xsd:sequence
+   xsd:attribute name=id type=xsd:ID use=required /
+   xsd:attribute name=camelEndpointUri type=xsd:string /
+   xsd:attribute name=replyChannel type=xsd:string /
+   xsd:attribute name=expectReply type=xsd:boolean default=true/
+  /xsd:complexType
+
+  xsd:element name=camelSource
+ xsd:complexType
+xsd:annotation
+   xsd:documentation
+ Defines a camel-source for handling the Camel context message 
in Spring Integration message bus.
+   /xsd:documentation
+   /xsd:annotation
+xsd:complexContent
+  xsd:extension base=camelEndpointType
+   xsd:attribute name=requestChannel type=xsd:string 
use=required /   
+ /xsd:extension
+   /xsd:complexContent
+ /xsd:complexType
+  /xsd:element
+
+  xsd:element name=camelTarget type=camelEndpointType
+xsd:annotation
+   xsd:documentation
+ Defines a camel-target to feed Spring Integration message to 
the Camel context.
+   /xsd:documentation
+   /xsd:annotation
+  /xsd:element
+/xsd:schema




svn commit: r830552 [3/5] - in /websites/production/camel/content/schema: blueprint/ cxf/ spring-security/ spring/ spring/integration/

2012-08-30 Thread dkulp
Added: 
websites/production/camel/content/schema/cxf/camel-cxf-2.9.3-blueprint.xsd
==
--- websites/production/camel/content/schema/cxf/camel-cxf-2.9.3-blueprint.xsd 
(added)
+++ websites/production/camel/content/schema/cxf/camel-cxf-2.9.3-blueprint.xsd 
Thu Aug 30 13:57:32 2012
@@ -0,0 +1,176 @@
+?xml version=1.0 encoding=UTF-8?
+!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  License); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+--
+xsd:schema xmlns=http://camel.apache.org/schema/blueprint/cxf;
+xmlns:xsd=http://www.w3.org/2001/XMLSchema;
+xmlns:beans=http://www.osgi.org/xmlns/blueprint/v1.0.0;
+xmlns:cxf-beans=http://cxf.apache.org/configuration/beans;
+xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
+targetNamespace=http://camel.apache.org/schema/blueprint/cxf;
+elementFormDefault=qualified
+attributeFormDefault=unqualified
+xsi:schemaLocation=http://www.osgi.org/xmlns/blueprint/v1.0.0 
http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd;
+
+  xsd:import namespace=http://www.osgi.org/xmlns/blueprint/v1.0.0; 
schemaLocation=http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd/
+  xsd:import namespace=http://cxf.apache.org/configuration/beans; 
schemaLocation=http://cxf.apache.org/schemas/configuration/cxf-beans.xsd/
+
+  xsd:element name=cxfEndpoint
+xsd:complexType
+  xsd:complexContent
+xsd:extension base=beans:Tcomponent
+  xsd:all
+xsd:element name=binding type=xsd:anyType minOccurs=0/
+xsd:element name=dataBinding type=xsd:anyType minOccurs=0/
+xsd:element name=features type=xsd:anyType minOccurs=0/
+xsd:element name=inInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=inFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=outInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=outFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=handlers type=xsd:anyType minOccurs=0/
+xsd:element name=properties type=beans:Tmap minOccurs=0/
+xsd:element name=schemaLocations type=schemasType 
minOccurs=0/
+xsd:element name=serviceBean type=xsd:anyType minOccurs=0/
+xsd:element name=serviceFactory type=xsd:anyType 
minOccurs=0/
+  /xsd:all
+  !-- xsd:attributeGroup ref=cxf-beans:beanAttributes/--
+  xsd:attribute name=address type=xsd:string/
+  xsd:attribute name=bindingId type=xsd:string/
+  xsd:attribute name=bus type=xsd:string/
+  xsd:attribute name=serviceClass type=xsd:string/
+  xsd:attribute name=transportId type=xsd:string/
+  xsd:attribute name=wsdlURL type=xsd:string/
+  xsd:attribute name=endpointName type=xsd:QName/
+  xsd:attribute name=serviceName type=xsd:QName/
+  xsd:attribute name=loggingFeatureEnabled type=xsd:boolean/
+  xsd:attribute name=loggingSizeLimit type=xsd:integer /
+/xsd:extension
+  /xsd:complexContent
+/xsd:complexType
+  /xsd:element
+
+  xsd:element name=rsServer
+xsd:complexType
+  xsd:complexContent
+xsd:extension base=beans:Tcomponent
+  xsd:all
+xsd:element name=executor type=xsd:anyType minOccurs=0/
+xsd:element name=features type=xsd:anyType minOccurs=0/
+xsd:element name=binding type=xsd:anyType minOccurs=0/
+xsd:element name=inInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=inFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=invoker type=xsd:anyType minOccurs=0/
+xsd:element name=outInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=outFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=properties type=beans:Tmap minOccurs=0/
+xsd:element name=serviceBeans type=xsd:anyType minOccurs=0/
+xsd:element name=modelBeans type=xsd:anyType minOccurs=0/
+xsd:element name=model type=model minOccurs=0/
+xsd:element name=providers type=xsd:anyType minOccurs=0/
+   

svn commit: r830554 [3/5] - in /websites/production/camel/content/schema: blueprint/ cxf/ spring-security/ spring/ spring/integration/

2012-08-30 Thread dkulp
Added: 
websites/production/camel/content/schema/cxf/camel-cxf-2.10.1-blueprint.xsd
==
--- websites/production/camel/content/schema/cxf/camel-cxf-2.10.1-blueprint.xsd 
(added)
+++ websites/production/camel/content/schema/cxf/camel-cxf-2.10.1-blueprint.xsd 
Thu Aug 30 14:04:08 2012
@@ -0,0 +1,176 @@
+?xml version=1.0 encoding=UTF-8?
+!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  License); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+--
+xsd:schema xmlns=http://camel.apache.org/schema/blueprint/cxf;
+xmlns:xsd=http://www.w3.org/2001/XMLSchema;
+xmlns:beans=http://www.osgi.org/xmlns/blueprint/v1.0.0;
+xmlns:cxf-beans=http://cxf.apache.org/configuration/beans;
+xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
+targetNamespace=http://camel.apache.org/schema/blueprint/cxf;
+elementFormDefault=qualified
+attributeFormDefault=unqualified
+xsi:schemaLocation=http://www.osgi.org/xmlns/blueprint/v1.0.0 
http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd;
+
+  xsd:import namespace=http://www.osgi.org/xmlns/blueprint/v1.0.0; 
schemaLocation=http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd/
+  xsd:import namespace=http://cxf.apache.org/configuration/beans; 
schemaLocation=http://cxf.apache.org/schemas/configuration/cxf-beans.xsd/
+
+  xsd:element name=cxfEndpoint
+xsd:complexType
+  xsd:complexContent
+xsd:extension base=beans:Tcomponent
+  xsd:all
+xsd:element name=binding type=xsd:anyType minOccurs=0/
+xsd:element name=dataBinding type=xsd:anyType minOccurs=0/
+xsd:element name=features type=xsd:anyType minOccurs=0/
+xsd:element name=inInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=inFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=outInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=outFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=handlers type=xsd:anyType minOccurs=0/
+xsd:element name=properties type=beans:Tmap minOccurs=0/
+xsd:element name=schemaLocations type=schemasType 
minOccurs=0/
+xsd:element name=serviceBean type=xsd:anyType minOccurs=0/
+xsd:element name=serviceFactory type=xsd:anyType 
minOccurs=0/
+  /xsd:all
+  !-- xsd:attributeGroup ref=cxf-beans:beanAttributes/--
+  xsd:attribute name=address type=xsd:string/
+  xsd:attribute name=bindingId type=xsd:string/
+  xsd:attribute name=bus type=xsd:string/
+  xsd:attribute name=serviceClass type=xsd:string/
+  xsd:attribute name=transportId type=xsd:string/
+  xsd:attribute name=wsdlURL type=xsd:string/
+  xsd:attribute name=endpointName type=xsd:QName/
+  xsd:attribute name=serviceName type=xsd:QName/
+  xsd:attribute name=loggingFeatureEnabled type=xsd:boolean/
+  xsd:attribute name=loggingSizeLimit type=xsd:integer /
+/xsd:extension
+  /xsd:complexContent
+/xsd:complexType
+  /xsd:element
+
+  xsd:element name=rsServer
+xsd:complexType
+  xsd:complexContent
+xsd:extension base=beans:Tcomponent
+  xsd:all
+xsd:element name=executor type=xsd:anyType minOccurs=0/
+xsd:element name=features type=xsd:anyType minOccurs=0/
+xsd:element name=binding type=xsd:anyType minOccurs=0/
+xsd:element name=inInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=inFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=invoker type=xsd:anyType minOccurs=0/
+xsd:element name=outInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=outFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=properties type=beans:Tmap minOccurs=0/
+xsd:element name=serviceBeans type=xsd:anyType minOccurs=0/
+xsd:element name=modelBeans type=xsd:anyType minOccurs=0/
+xsd:element name=model type=model minOccurs=0/
+xsd:element name=providers type=xsd:anyType minOccurs=0/
+

svn commit: r830554 [1/5] - in /websites/production/camel/content/schema: blueprint/ cxf/ spring-security/ spring/ spring/integration/

2012-08-30 Thread dkulp
Author: dkulp
Date: Thu Aug 30 14:04:08 2012
New Revision: 830554

Log:
Uploading released schemas for camel-2.10.1

Added:

websites/production/camel/content/schema/blueprint/camel-blueprint-2.10.1.xsd
websites/production/camel/content/schema/cxf/camel-cxf-2.10.1-blueprint.xsd
websites/production/camel/content/schema/cxf/camel-cxf-2.10.1-spring.xsd

websites/production/camel/content/schema/spring-security/camel-spring-security-2.10.1.xsd
websites/production/camel/content/schema/spring/camel-spring-2.10.1.xsd

websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.10.1.xsd



[CONF] Apache Camel Apache Camel 2.10.1 and 2.9.3 Released

2012-08-30 Thread confluence







Apache Camel 2.10.1 and 2.9.3 Released
Blog post  added by Daniel Kulp

 

 Apache Camel 2.10.1 and 2.9.3 Released

The Camel community announces the immediate availability of new bug fix releases: camel-2.9.3 and camel-2.10.1.   Over 60 issues were fixed for 2.10.1 and over 125 issues were fixed for 2.9.3.  The artifacts are published and ready for you to download either from the Apache mirrors or from the Central Maven repository.

Many thanks to the Camel community for making these releases possible.


   
Change Notification Preferences
   
   View Online
  |
   Add Comment
   








[CONF] Apache Camel Camel 2.9.3 Release

2012-08-30 Thread confluence







Camel 2.9.3 Release
Page  added by Daniel Kulp

 

 Camel 2.9.3 release




New and Noteworthy

Welcome to the 2.9.3 release which is mainly a bug fix release with 125 issues resolved. 

For more details see the JIRA tickets

Known Issues


	See Camel 2.9.2 Release



Important changes to consider when upgrading


	See Camel 2.9.2 Release



Notice


	See Camel 2.9.2 Release



Getting the Distributions

Binary Distributions




 Description 
 Download Link 
 PGP Signature file of download 


 Windows Distribution 
 apache-camel-2.9.3.zip 
 apache-camel-2.9.3.zip.asc 


 Unix/Linux/Cygwin Distribution 
 apache-camel-2.9.3.tar.gz 
 apache-camel-2.9.3.tar.gz.asc 




The above URLs use redirectionThe above URLs use the Apache Mirror system to redirect you to a suitable mirror for your download. Some users have experienced issues with some versions of browsers (e.g. some Safari browsers). If the download doesn't seem to work for you from the above URL then try using FireFox

Source Distributions




 Description 
 Download Link 
 PGP Signature file of download 


 Source (zip) 
 apache-camel-2.9.3-src.zip 
 apache-camel-2.9.3-src.zip.asc 





Getting the Binaries using Maven 2

To use this release in your maven project, the proper dependency configuration that you should use in your Maven POM is:


dependency
  groupIdorg.apache.camel/groupId
  artifactIdcamel-core/artifactId
  version2.9.3/version
/dependency



SVN Tag Checkout



svn co http://svn.apache.org/repos/asf/camel/tags/camel-2.9.3



Changelog

For a more detailed view of new features and bug fixes, see the:

	release notes for 2.9.3




   
Change Notification Preferences
   
   View Online
  |
   Add Comment
   








[CONF] Apache Camel Camel 2.10.1 Release

2012-08-30 Thread confluence







Camel 2.10.1 Release
Page  added by Daniel Kulp

 

 Camel 2.10.1 release




New and Noteworthy

Welcome to the 2.10.1 release which is mainly a bug fix release with 65 issues resolved. 

For more details see the JIRA tickets

Known Issues


	See Camel 2.10.0 Release



Important changes to consider when upgrading


	See Camel 2.10.0 Release



Notice


	See Camel 2.10.0 Release



Getting the Distributions

Binary Distributions




 Description 
 Download Link 
 PGP Signature file of download 


 Windows Distribution 
 apache-camel-2.10.1.zip 
 apache-camel-2.10.1.zip.asc 


 Unix/Linux/Cygwin Distribution 
 apache-camel-2.10.1.tar.gz 
 apache-camel-2.10.1.tar.gz.asc 




The above URLs use redirectionThe above URLs use the Apache Mirror system to redirect you to a suitable mirror for your download. Some users have experienced issues with some versions of browsers (e.g. some Safari browsers). If the download doesn't seem to work for you from the above URL then try using FireFox

Source Distributions




 Description 
 Download Link 
 PGP Signature file of download 


 Source (zip) 
 apache-camel-2.10.1-src.zip 
 apache-camel-2.10.1-src.zip.asc 





Getting the Binaries using Maven 2

To use this release in your maven project, the proper dependency configuration that you should use in your Maven POM is:


dependency
  groupIdorg.apache.camel/groupId
  artifactIdcamel-core/artifactId
  version2.10.1/version
/dependency



SVN Tag Checkout



svn co http://svn.apache.org/repos/asf/camel/tags/camel-2.10.1



Changelog

For a more detailed view of new features and bug fixes, see the:

	release notes for 2.10.1




   
Change Notification Preferences
   
   View Online
  |
   Add Comment
   








svn commit: r830558 - /websites/production/camel/content/cache/main.pageCache

2012-08-30 Thread dkulp
Author: dkulp
Date: Thu Aug 30 14:18:49 2012
New Revision: 830558

Log:
Trigger full build

Removed:
websites/production/camel/content/cache/main.pageCache



svn commit: r1378953 - /camel/trunk/etc/scripts/release-website.sh

2012-08-30 Thread dkulp
Author: dkulp
Date: Thu Aug 30 14:24:56 2012
New Revision: 1378953

URL: http://svn.apache.org/viewvc?rev=1378953view=rev
Log:
This script doesn't need the dist area and can be run locally

Modified:
camel/trunk/etc/scripts/release-website.sh

Modified: camel/trunk/etc/scripts/release-website.sh
URL: 
http://svn.apache.org/viewvc/camel/trunk/etc/scripts/release-website.sh?rev=1378953r1=1378952r2=1378953view=diff
==
--- camel/trunk/etc/scripts/release-website.sh (original)
+++ camel/trunk/etc/scripts/release-website.sh Thu Aug 30 14:24:56 2012
@@ -28,16 +28,9 @@ COMPLIST=( camel-spring:spring
   camel-spring-integration:spring/integration
   camel-spring-security:spring-security
   camel-blueprint:blueprint )
-DIST_DIR=/www/www.apache.org/dist
 SITE_DIR=${DOWNLOAD}/websites/production/camel
 
WEBSITE_URL=https://svn.apache.org/repos/infra/websites/production/camel/content;
 
-if [ ! -d ${DIST_DIR}/camel/apache-camel ]
-then
- echo Apache Camel distro repository not present on this box
- echo Use this script on people.apache.org to publish release
- exit 1
-fi
 
 if [ -z ${VERSION} -o ! -d ${DOWNLOAD} ]
 then




svn commit: r1378954 - in /camel/trunk/components: camel-cxf/src/main/resources/META-INF/ camel-spring-integration/src/main/resources/META-INF/ camel-spring-security/src/main/resources/META-INF/ camel

2012-08-30 Thread dkulp
Author: dkulp
Date: Thu Aug 30 14:25:01 2012
New Revision: 1378954

URL: http://svn.apache.org/viewvc?rev=1378954view=rev
Log:
Update spring.schemas

Modified:
camel/trunk/components/camel-cxf/src/main/resources/META-INF/spring.schemas

camel/trunk/components/camel-spring-integration/src/main/resources/META-INF/spring.schemas

camel/trunk/components/camel-spring-security/src/main/resources/META-INF/spring.schemas

camel/trunk/components/camel-spring/src/main/resources/META-INF/spring.schemas

Modified: 
camel/trunk/components/camel-cxf/src/main/resources/META-INF/spring.schemas
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/main/resources/META-INF/spring.schemas?rev=1378954r1=1378953r2=1378954view=diff
==
--- camel/trunk/components/camel-cxf/src/main/resources/META-INF/spring.schemas 
(original)
+++ camel/trunk/components/camel-cxf/src/main/resources/META-INF/spring.schemas 
Thu Aug 30 14:25:01 2012
@@ -45,4 +45,7 @@ http\://camel.apache.org/schema/cxf/came
 http\://camel.apache.org/schema/cxf/camel-cxf-2.9.0.xsd=schema/cxfEndpoint.xsd
 http\://camel.apache.org/schema/cxf/camel-cxf-2.9.1.xsd=schema/cxfEndpoint.xsd
 http\://camel.apache.org/schema/cxf/camel-cxf-2.9.2.xsd=schema/cxfEndpoint.xsd
+http\://camel.apache.org/schema/cxf/camel-cxf-2.9.3.xsd=schema/cxfEndpoint.xsd
+http\://camel.apache.org/schema/cxf/camel-cxf-2.10.0.xsd=schema/cxfEndpoint.xsd
+http\://camel.apache.org/schema/cxf/camel-cxf-2.10.1.xsd=schema/cxfEndpoint.xsd
 
http\://camel.apache.org/schema/cxf/camel-cxf-${project.version}.xsd=schema/cxfEndpoint.xsd

Modified: 
camel/trunk/components/camel-spring-integration/src/main/resources/META-INF/spring.schemas
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-spring-integration/src/main/resources/META-INF/spring.schemas?rev=1378954r1=1378953r2=1378954view=diff
==
--- 
camel/trunk/components/camel-spring-integration/src/main/resources/META-INF/spring.schemas
 (original)
+++ 
camel/trunk/components/camel-spring-integration/src/main/resources/META-INF/spring.schemas
 Thu Aug 30 14:25:01 2012
@@ -42,4 +42,7 @@ http\://camel.apache.org/schema/spring/i
 
http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.0.xsd=schema/camel-spring-integration.xsd
 
http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.1.xsd=schema/camel-spring-integration.xsd
 
http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.2.xsd=schema/camel-spring-integration.xsd
+http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.3.xsd=schema/camel-spring-integration.xsd
+http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.10.0.xsd=schema/camel-spring-integration.xsd
+http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.10.1.xsd=schema/camel-spring-integration.xsd
 
http\://camel.apache.org/schema/spring/integration/camel-spring-integration-${project.version}.xsd=schema/camel-spring-integration.xsd
\ No newline at end of file

Modified: 
camel/trunk/components/camel-spring-security/src/main/resources/META-INF/spring.schemas
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-spring-security/src/main/resources/META-INF/spring.schemas?rev=1378954r1=1378953r2=1378954view=diff
==
--- 
camel/trunk/components/camel-spring-security/src/main/resources/META-INF/spring.schemas
 (original)
+++ 
camel/trunk/components/camel-spring-security/src/main/resources/META-INF/spring.schemas
 Thu Aug 30 14:25:01 2012
@@ -36,4 +36,7 @@ http\://camel.apache.org/schema/spring-s
 
http\://camel.apache.org/schema/spring-security/camel-spring-security-2.9.0.xsd=schema/camel-spring-security.xsd
 
http\://camel.apache.org/schema/spring-security/camel-spring-security-2.9.1.xsd=schema/camel-spring-security.xsd
 
http\://camel.apache.org/schema/spring-security/camel-spring-security-2.9.2.xsd=schema/camel-spring-security.xsd
+http\://camel.apache.org/schema/spring-security/camel-spring-security-2.9.3.xsd=schema/camel-spring-security.xsd
+http\://camel.apache.org/schema/spring-security/camel-spring-security-2.10.0.xsd=schema/camel-spring-security.xsd
+http\://camel.apache.org/schema/spring-security/camel-spring-security-2.10.1.xsd=schema/camel-spring-security.xsd
 
http\://camel.apache.org/schema/spring-security/camel-spring-security-${project.version}.xsd=schema/camel-spring-security.xsd
\ No newline at end of file

Modified: 
camel/trunk/components/camel-spring/src/main/resources/META-INF/spring.schemas
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/main/resources/META-INF/spring.schemas?rev=1378954r1=1378953r2=1378954view=diff

svn commit: r1379257 - /camel/trunk/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelCmisTest.java

2012-08-30 Thread ningjiang
Author: ningjiang
Date: Fri Aug 31 02:23:49 2012
New Revision: 1379257

URL: http://svn.apache.org/viewvc?rev=1379257view=rev
Log:
CAMEL-5552 Added karaf itest of camel-cmis component

Added:

camel/trunk/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelCmisTest.java

Added: 
camel/trunk/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelCmisTest.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelCmisTest.java?rev=1379257view=auto
==
--- 
camel/trunk/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelCmisTest.java
 (added)
+++ 
camel/trunk/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelCmisTest.java
 Fri Aug 31 02:23:49 2012
@@ -0,0 +1,40 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the License); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.itest.karaf;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.ops4j.pax.exam.Option;
+import org.ops4j.pax.exam.junit.Configuration;
+import org.ops4j.pax.exam.junit.JUnit4TestRunner;
+
+
+@RunWith(JUnit4TestRunner.class)
+public class CamelCmisTest extends AbstractFeatureTest {
+public static final String COMPONENT = extractName(CamelCxfTest.class);
+
+@Test
+public void test() throws Exception {
+testComponent(COMPONENT);
+}
+
+@Configuration
+public static Option[] configure() {
+return configure(COMPONENT);
+}
+
+}