You’ve got a weird mix of CXF versions in your pom. You have 2.2.4 of cxf-tools-common, 3.0.0-milestone2 of cxf-bundle, 2.5.6 of cxf-rt-frontend-jaxws, and some others. First step would be to get that all cleaned up and just use 3.0.4.
Dan > On Apr 9, 2015, at 2:10 AM, Sergey Shapoval <[email protected]> > wrote: > > Hi, > > I am using herokuapp.com for staging my app. > > > > Several builds are throwing next error when I am trying to make any SOAP > request: > > https://www.dropbox.com/s/pj1aqkcwkc0to71/errorLog.txt?dl=0 > > > > I have generated CXF client by wsdl2java: > > https://www.dropbox.com/s/nao5ilph11k8f3j/pom.xml?dl=0 > > > > I am using generated classes in next configuration of play framework - > > https://www.dropbox.com/s/iy88w0g5opqf1zt/build.sbt?dl=0 > > > > I have tryed to add additional dependencies or cancel requests validation > as it was described here - > http://stackoverflow.com/questions/7611803/cxf-2-4-2-no-conduit-initiator-was-found-for-the-namespace-htt > p-schemas-xmlso > > > > JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean(); > > factory.getInInterceptors().add(new LoggingInInterceptor()); > > factory.getOutInterceptors().add(new LoggingOutInterceptor()); > > Logger.info("webServiceAddress:" + webServiceAddress); > > > > factory.setAddress(webServiceAddress); > > factory.setServiceClass(clazz); > > factory.setProperties(new HashMap<String, Object>(){{ > > put("schema-validation-enabled", false); > > put("set-jaxb-validation-event-handler", false); > > }}); > > Logger.info("service factory:" + factory); > > return factory.create(); > > > > but no success. > > > > when I make SOAP requests on localhost or test my app in > https://codeship.com I don't have such problem. > > > > so, I think it is platform dependent problem. > > > > How I can resolve this error? > > > > > > Environment: > > Stack: cedar-10 > > Framework: Play 2.x - Java > > > > JavaOpts: -Xss512k -XX:+UseCompressedOops > > SBT_OPTS : -Xss512k -XX:+UseCompressedOops > > > > OpenJDK 1.8, 64-Bit Server VM > > > > deployed on herokuapp.com, cannot determine platform on which I have > problem - some deploys don't throw exceptions, some throw > > > > Best regards, > Sergey Shapoval -- Daniel Kulp [email protected] - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com
