[GitHub] camel pull request #1220: Added a test class to ensure CAMEL-10322 non-regre...

2016-10-21 Thread aldettinger
GitHub user aldettinger opened a pull request: https://github.com/apache/camel/pull/1220 Added a test class to ensure CAMEL-10322 non-regression Hi, In the context of [CAMEL-10322](https://issues.apache.org/jira/browse/CAMEL-10322), I have implemented a test reproducing

Re: Routing SOAP Camel

2016-10-21 Thread Bilgin Ibryam
I have such example here. Try it out https://github.com/bibryam/fuse-cxf B. On 21 October 2016 at 12:03, inconnu wrote: > Hi > I have two endpoint soap. I want to create a routing between those points. > For example, if I called to the method sayHi of ws A in >

Camel.trunk.notest - Build # 2912 - Still Failing

2016-10-21 Thread Apache Jenkins Server
The Apache Jenkins build system has built Camel.trunk.notest (build #2912) Status: Still Failing Check console output at https://builds.apache.org/job/Camel.trunk.notest/2912/ to view the results.

RE: [DISCUSS] HTTP session handling in Camel routes

2016-10-21 Thread Siano, Stephan
Hi Andrea, I already tried this. Is there any special trick about the result? The build copies some files into the node and node_modules folders and copies a lot of stuff to target/docs/user-manual (all adoc files plus the images). Furthermore it creates a /target/classes/user-manual folder

Re: [DISCUSS] HTTP session handling in Camel routes

2016-10-21 Thread Andrea Cosentino
Hello Stephan, To preview the docs and all the links just run mvn clean install into camel-website folder. You'll have the Gitbook site running locally :-) -- Andrea Cosentino -- Apache Camel PMC Member Apache Karaf Committer Apache Servicemix Committer Email:

Re: [DISCUSS] HTTP session handling in Camel routes

2016-10-21 Thread Andrea Cosentino
I usually test the result only by looking at the gitbook site. The adocs files are the files your are supposed to preview anyway. -- Andrea Cosentino -- Apache Camel PMC Member Apache Karaf Committer Apache Servicemix Committer Email: ancosen1...@yahoo.com

[GitHub] camel pull request #1219: Added array support for input body paremeter

2016-10-21 Thread Sw1m1k
GitHub user Sw1m1k opened a pull request: https://github.com/apache/camel/pull/1219 Added array support for input body paremeter Camel-swagger-java didnt support array of input objects. To check it, you can modify "/put root" in RestSwaggerReaderModelTest.java

Routing SOAP Camel

2016-10-21 Thread inconnu
Hi I have two endpoint soap. I want to create a routing between those points. For example, if I called to the method sayHi of ws A in http://localhost:port/serviceA, the routing system automatically invokes the method sayBye ws B in http://localhost:port/serviceB. Please send me an example if