Questions tagged [camel-cxf]

54 questions
1
vote
0 answers

Spring Boot Apache Camel Application Not Servicing Requests When in a Container

I have an Spring Boot + Apache Camel Application with the following dependencies listed in the POM file as follows. fuse-000112-redhat-3 2.21.0.${fuse-version}
Paul Plato
  • 1,471
  • 6
  • 28
  • 36
1
vote
0 answers

camel cxf endpoint route creation issue

I am getting a below exception while creating an endpoint using camel cxf. Camel stops when it tries to create service from WSDL INFO: Creating Service {http://soap.ussd.product.web.com/USSD_NW-v1.0}UssdSoapNW from WSDL:…
1
vote
1 answer

Apache Camel SOAP requests using camel route

I want to make a SOAP request using apache camel routing. I have tried cxf, http4, netty4-http. Nothing is working. I want something like from("direct:start") .to(myEndpoint)//should make soap call .process(new Processor(){ public void…
1
vote
0 answers

How to disable streaming on Camel CXFRS component?

On the CXF component there is an allowStreaming option, but it is missing on CXFRS. Is there a way to block streaming on CXFRS as well?
godzsa
  • 2,105
  • 4
  • 34
  • 56
1
vote
3 answers

How to define properties in spring dsl in apache camel

How can I define the properties with Spring DSL in Apache Camel ? With Blueprint you can do it via:
1
vote
1 answer

Camel-cxf 2.18.2 is throwing TypeConversionException

i am trying to upgrade camel cxf from 2.15.0 to 2.18.2 and getting below exception. JDK version is 1.8 CXF endpoint to consume SOAP services is below endpoint id="OTAHotelAvailability_OTA_2012B_EndPoint" …
lkreddy1231
  • 95
  • 12
0
votes
0 answers

OpenApi integrate with apache camel-cxfrs

i want to generate openApi documentation based on my cxf services. i used the following resources: https://cxf.apache.org/docs/openapifeature.html when I start the service without using camel-cxfrs - everything works as it should, openapi.json is…
tim08
  • 25
  • 5
0
votes
1 answer

Camel JBang Error : imported package/class does not exist in the Camel Router program

I am using CXF SOAP to invoke a SOAP webservice. Here I am attaching the sample code from GitHub. and the command i use to run is as below. Git Repository https://github.com/gtata007/camel-k-soap/tree/develop JBang run command below : camel run…
Guru Tata
  • 251
  • 1
  • 3
0
votes
1 answer

Apache Camel Download attachment with attachment body in the response and fileName in the Content-Disposition header

I am trying to download a binary file using rest camel-cxfrs. I am getting the attachment response from http call. After getting the response i am trying to set the same in exchange response body with the fileName and content type as response…
0
votes
1 answer

Camel CXF SOAP API Consumer with https and Security Header

I'm currently facing the issue, that I can not consume a SOAP webservice via camel-cxf. The exception is the following: org.apache.cxf.ws.policy.PolicyException: These policy alternatives can not be…
Raphi1
  • 322
  • 1
  • 9
0
votes
1 answer

Apache Camel SOAP/CXF request to Server (Spring Boot)

I am trying to make requests to dedicated WSDL server with the help of Apache Camel CXF. I have the WSDL URL: http://www.learnwebservices.com/services/tempconverter?wsdl I've made the Java classes of WSDL using the cxf-codegen-plugin:
0
votes
1 answer

Why is camel-cxf throwing Could not find portType ServiceConstructionException?

I have a camel route which is trying to login via an informatica web service using apache-cxf. This is how the route looks : String WS_URL =…
The Dark Knight
  • 5,455
  • 11
  • 54
  • 95
0
votes
2 answers

How to secure a camel cxf endpoint (https) in FUSE 7.6?

We have been using camel-cxf service endpoints for multiple applications. They works well. Recently we have a need to secure these service endpoints. Therefore, we are adding configuration to the camel-context.xml. We also…
Chris W
  • 21
  • 1
  • 9
0
votes
1 answer

Eclipse not recognizing imports of generated classes in same project

I have camel project to invoke soap service using CXF. There are generated classes from WSDL but beans cannot import these classes.
Eduard Nickel
  • 135
  • 1
  • 2
  • 13
0
votes
1 answer

java.lang.AbstractMethodError: org.apache.cxf.transport.http.asyncclient.AsyncHTTPConduitFactory.createConduit

I am getting error on below line final Client client = ClientProxy.getClient(port); final HTTPConduit httpConduit = (HTTPConduit) client.getConduit(); //error on this line final HTTPClientPolicy httpClientPolicy = new…
veer7
  • 20,074
  • 9
  • 46
  • 74