Return-Path: X-Original-To: apmail-camel-users-archive@www.apache.org Delivered-To: apmail-camel-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1108A10DED for ; Thu, 14 Nov 2013 06:46:40 +0000 (UTC) Received: (qmail 6486 invoked by uid 500); 14 Nov 2013 06:46:39 -0000 Delivered-To: apmail-camel-users-archive@camel.apache.org Received: (qmail 6182 invoked by uid 500); 14 Nov 2013 06:46:36 -0000 Mailing-List: contact users-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@camel.apache.org Delivered-To: mailing list users@camel.apache.org Delivered-To: moderator for users@camel.apache.org Received: (qmail 6417 invoked by uid 99); 14 Nov 2013 05:43:47 -0000 X-ASF-Spam-Status: No, hits=2.5 required=5.0 tests=FREEMAIL_ENVFROM_END_DIGIT,SPF_SOFTFAIL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: softfail (athena.apache.org: transitioning domain of malathig52@gmail.com does not designate 216.139.236.26 as permitted sender) Date: Wed, 13 Nov 2013 21:43:22 -0800 (PST) From: Malathi G To: users@camel.apache.org Message-ID: <1384407801775-5743233.post@n5.nabble.com> Subject: Camel to Webservice call - can't find BindingOperationInfo exception MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, I am calling webservice from camel. While routing message to soap based webservice endpoint i am getting the following error. I have included defaultOperation and defaultOperationNamespace in cxf endpoint options. Please provide some ways to correct this exception *java.lang.IllegalArgumentException: Can't find the BindingOperationInfo with operation name {http://service.polaris.com}request. Please check the message headers of operationName and operationNamespace.* *Camel code: * public void configure() { from("mina:tcp://localhost:6789?textline=true&sync=true").process(new Processor(){ public void process(Exchange e)throws Exception{ log.info("Request Message-->"+e.getIn()); } }) .to("cxf://http://localhost:9090/axis2/services/ServiceRequest?wsdlURL=test3/WSSoap.wsdl&serviceClass=com.polaris.service.ServiceRequest&serviceName={http://service.polaris.com}ServiceRequest&portName={http://service.polaris.com}ServiceRequestHttpSoap11Endpoint&dataFormat=PAYLOAD&defaultOperationName=request&defaultOperationNamespace=http://service.polaris.com") .process(new Processor(){ public void process(Exchange res){ log.info("Response Message-->"+res.getIn()); } }); } -- View this message in context: http://camel.465427.n5.nabble.com/Camel-to-Webservice-call-can-t-find-BindingOperationInfo-exception-tp5743233.html Sent from the Camel - Users mailing list archive at Nabble.com.