Re: Route Parameters Bean

2014-03-29 Thread bilalalp
I know it won't work. I've just wondered there is a future or not. it seems there is not. String concatenation is not a good way to do that. -- View this message in context: http://camel.465427.n5.nabble.com/Route-Parameters-Bean-tp5749476p5749524.html Sent from the Camel - Users mailing list a

Route Parameters Bean

2014-03-28 Thread bilalalp
Hi everyone, I wonder if i can give parameters of a route with a bean to my route. For ex: instead of this: ftp://localhost:/root?username=admin&password=admin&proxy=#proxy"/> can i do that? ftp://localhost:/root?paramBean=#sftpParams"/> -- View

Soap unmarshall with anytype cast

2014-02-04 Thread bilalalp
Hi everyone, I'm working in a project. We have a web service method. It returns a big object which has some elements that were defined as AnyType in XSD. When i try to unmarshal the object, i can get something different. The parent object is good but my other objects which are defined as anytype a

Re: Soap Fault Unmarshal

2013-12-18 Thread bilalalp
Yes sure, I've changed the original names. When cxf:bean:myServiceEndpoint is called for some conditions, it returns soap:fault message. I handle this with checking whether the message contains faultstring or not. It's not a good solution for me. How can i find out whether it has soap:fault or not

Re: Soap Fault Unmarshal

2013-12-17 Thread bilalalp
I'm using Spring DSL and I dont use ProducerTemplate. I have also catch block but i doesn't catch anything about webservice fault message. -- View this message in context: http://camel.465427.n5.nabble.com/Soap-Fault-Unmarshal-tp5744949p5744978.html Sent from the Camel - Users mailing list arch

Soap Fault Unmarshal

2013-12-17 Thread bilalalp
Hi everyone, I have a problem about soap:fault. When i call a web service, it returns a default soap fault message. In camel side, how can i convert it to an object? Here is an example fault: http://schemas.xmlsoap.org/soap/envelope/";> soapenv:Server My fault string... -- View this messa

Re: Composed Message Processor

2013-11-18 Thread bilalalp
Thank you so much :) -- View this message in context: http://camel.465427.n5.nabble.com/Composed-Message-Processor-tp5743165p5743410.html Sent from the Camel - Users mailing list archive at Nabble.com.

Camel and Testing

2013-11-18 Thread bilalalp
Hi, I've splitted my camel context with using routecontext. Everything is okay except for my unit tests doesn't work after this operation. I'm using annonation based testing. What can be problem? -- View this message in context: http://camel.465427.n5.nabble.com/Camel-and-Testing-tp5743411.html

Composed Message Processor

2013-11-13 Thread bilalalp
Hi everyone, i have a question about composed message processor. I'm using camel in an integration project. For a case , i need to use composed message processor but i don't know where it is suitable or not. Here is the case: A web service request is coming and then i need to create two request f

Sending Body

2013-11-04 Thread bilalalp
Hi everyone, i'm new at camel. I wonder why there is no such method sendBodyAndHeadersAndProperties for ProducerTemplate ? When i looked at its methods, there are sendBodyAndHeaders and sendBodyAndProperty but there is no sendBodyAndHeadersAndProperties. Is there any reasons that it wasn't added?