reference resolver for WSDL on CXF Endpoint

2015-10-06 Thread dsjaxen
Hi! I set up a URL Protocol handler to load the wsdl from a database on the CXFEndpoint. cxfEndpoint.setWsdlURL("db:///...") That works fine, but the schema files referenced by the wsdl need to be resolved in the database as well. They are relative imports: http://test.xxx"; schema

Re: cxf endpoint configuration in java DSL

2015-09-29 Thread dsjaxen
Hi! What impact would setting the service address have on the cxf endpoint? CxfEndpoint serviceEndpoint = new CxfEndpoint(SERVICE_ADDRESS, cxfComponent); I assume that SERVICE_ADDRESS has to be a URL. Would it then listen for soap requests on that URL? I do not want that. All I want is a clie

Re: cxf endpoint configuration in java DSL

2015-09-23 Thread dsjaxen
Hi! Thanks for the reply. The "camel-cxf" prefix was declared elsewhere for the XML. It was the Java code that I was having trouble with: camelContext_.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { CxfEndpoint cx

IllegalArgumentException for Java DSL

2015-09-21 Thread dsjaxen
Hi! I posted this to nabble before, but I don't think it made it to the camel mailing list. My attempts at subscribing were apparently unsuccessful at that time. I want to create the following route in camel: ...

cxf endpoint configuration in java DSL

2015-09-15 Thread dsjaxen
Hi! I want to create the following route in camel: ... However, when I try to do so, I keep getting this error: java.lang.IllegalArgumentException: endpointUri is not specified and org.apache.camel.compone