Questions tagged [camel-cxf]

54 questions
0
votes
0 answers

Issue in publishing IBM MQ JMS Headers after migrating to Camel 3

I am using soap service configured using camel-cxf. The messages are sent into IBM MQ. I get the below exception from the JMS consumer application when it trys to put the response into the reply queue. The below exception is seen only after…
0
votes
0 answers

Apache Camel CXF Component issue

I have exposed a webservice bu using CXFEndpoint. However, there is an error that I guess, MessageContentsList problem can not be converted . May be I made a mistake. Could you help me? public CxfEndpoint insurerService() { CxfEndpoint…
Hasan Birol
  • 136
  • 1
  • 11
0
votes
1 answer

Project build error: Non-resolvable parent POM for org.jboss.quickstarts.fuse:cxf-soap:6.2.1.redhat-084

I am trying to run one of the Red Hat example project: cxf-soap, but encountered below error in POM.xml file. > Project build error: Non-resolvable parent POM for > org.jboss.quickstarts.fuse:cxf-soap:6.2.1.redhat-084: Failure to find >…
mandrin
  • 1
  • 2
0
votes
1 answer

how to configure Camel transport for CXF with Blueprint

The Documentation of Camel transport for CXF with blueprint https://camel.apache.org/components/latest/cxf-transport.html says, the configuration looks like: client: server:…
0
votes
1 answer

Consuming CXF service from Apache Camel returns empty body

I've implemented a simple SOAP service consumer in Camel using Spring DSL. I directed it to my mock service which is running in SoapUI, so that I can see requests coming in and responses returned. I've also configured logging interceptors. What I…
JavaDuke
  • 113
  • 6
0
votes
1 answer

Apache Camel CXF set Transport Properties

Im struggling with the Camel SXF Component. I need it to not use chunked encoding, but I do not find the correct way to set the Parameter. According to the Apache CXF Docs(http://cxf.apache.org/docs/client-http-transport-including-ssl-support.html)…
Ludi
  • 433
  • 2
  • 16
0
votes
1 answer

Apache Camel CXF difficulty calling an RPC/Encoded WSDL when updating list of elements

While not officially supported, with a few minor modifications to the WSDL I was able to successfully generate CXF Objects for the WSDL and get Camel CXF to talk to an RPC/Encoded WSDL endpoint. The code is incredibly simple and most…
skel625
  • 876
  • 3
  • 7
  • 17
0
votes
2 answers

Camel DefaultMessage cannot be created without CamelContext in version 2.23.0

My actual code (Camel 2.10.x) create a new Camel Message to wrap some data (http query) like this: Message message = new DefaultMessage(); message.setHeader(HEADER_QUERY, query); message.setHeader(HEADER_BRAND,…
рüффп
  • 5,172
  • 34
  • 67
  • 113
0
votes
2 answers

How do I handle multiple CXF endpoints in Camel?

I have two endpoints:
이성규
  • 125
  • 11
0
votes
2 answers

Waiting for namespace handlers

I'm upgrading to Fuse 7.3 and getting new errors in any routes that use CXF. Blueprint bundle ruleEngineService/5.0.2 is waiting for namespace handlers [http://camel.apache.org/schema/blueprint] My blueprint.xml contains the correct schema…
djb
  • 1,635
  • 3
  • 26
  • 49
0
votes
1 answer

Even Load Distribution of JMS Queue listeners not happening

I have 2 instances of my application (2 different machines) configured to listen on a single IBM MQ queue, each of them configured with 4 concurrent consumers in the cxf bean.
srikant_mantha
  • 109
  • 1
  • 13
0
votes
0 answers

Integration using Redhat Fuse Karaf 6.3 with OSGi Blueprint

We have requirement to integrate our source system with two external systems. We decided to use below Fuse Environement. - jboss-fuse-6.3.0.redhat-187 - OSGi(blueprint) Their external system (REST Service deployed in Redhat JBoss EAP. We came up…
0
votes
1 answer

Encoding in POJO to/from XML conversion within Camel

We have been very successful to carry out POJO to/from XML conversion within Camel. The following code exemplifies a typical case how we use Camel. Our application listens to an Oracle AQ. The queue entry is an xml String. The xml is then converted…
Chris W
  • 21
  • 1
  • 9
0
votes
1 answer

What is the default cxf endpoint for address="/MyService"?

If my camel-context.xml contains this cxf Endpoint, what is the default url when I run CamelMain locally in my development environment?
vikingsteve
  • 38,481
  • 23
  • 112
  • 156
0
votes
1 answer

apache camel cxf soap client example connection timeout setting

How to set client connection timeout in camel cxf. The following link asked same question, Camel CXF: Soap client timeout but how to apply the http-conf:conduit into the cxf setting. Could anyone provide sample?