Return-Path: Delivered-To: apmail-activemq-camel-user-archive@locus.apache.org Received: (qmail 24798 invoked from network); 29 Sep 2008 15:33:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Sep 2008 15:33:53 -0000 Received: (qmail 47877 invoked by uid 500); 29 Sep 2008 15:33:51 -0000 Delivered-To: apmail-activemq-camel-user-archive@activemq.apache.org Received: (qmail 47858 invoked by uid 500); 29 Sep 2008 15:33:51 -0000 Mailing-List: contact camel-user-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: camel-user@activemq.apache.org Delivered-To: mailing list camel-user@activemq.apache.org Received: (qmail 47847 invoked by uid 99); 29 Sep 2008 15:33:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Sep 2008 08:33:51 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of willem.jiang@gmail.com designates 209.85.142.188 as permitted sender) Received: from [209.85.142.188] (HELO ti-out-0910.google.com) (209.85.142.188) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Sep 2008 15:32:49 +0000 Received: by ti-out-0910.google.com with SMTP id a20so3840983tia.0 for ; Mon, 29 Sep 2008 08:33:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=ide6G7B/7ngH35qzF+e9OiTtOtWvQrjceHOvagMtKPg=; b=mxwETta3MOnry5jMkBRZtpqMvrhC9ch8LxqAIGLJS9kBl0wst0Eak7PaMTSkorQdUu dtHTKf6LYDNPMWpiy7WFyXWcXSkkJz/ulLTOKjM5hnsyw6sK45oIWcHjnc9DPN4jJ1ve i6+N8SXhgHow5T5vseCauVEP9CGSHllTA+YSc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; b=Rr5/LPszi25DCuaG8C0HxZs08T580/d2o3z96jGFTvo2p7DLCH3gxW/9cfJ4EwRW7/ LJsLBEgAkgvT8+endKXY5IYOBg9d1oDcFA1a8gdNYc1/KizLXp6u+bz3/rptc3yXUvO5 7lFlF8zF2/zt/a7jkgQlwKcjTR8fUMdMhBw34= Received: by 10.110.46.3 with SMTP id t3mr7650069tit.30.1222702402574; Mon, 29 Sep 2008 08:33:22 -0700 (PDT) Received: from ?192.168.0.118? ([123.113.119.6]) by mx.google.com with ESMTPS id w5sm1203791tib.14.2008.09.29.08.33.19 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 29 Sep 2008 08:33:20 -0700 (PDT) Message-ID: <48E0F52A.7070506@gmail.com> Date: Mon, 29 Sep 2008 23:32:58 +0800 From: Willem Jiang User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: camel-user@activemq.apache.org Subject: Re: Web service provider References: <19722939.post@talk.nabble.com> In-Reply-To: <19722939.post@talk.nabble.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Hi , Did you put the camel-http jar into your class path? It looks like the camel context can resolve the http endpoint . Willem w�n� wrote: > Hello, > > I have a problem to figure out, how to call a web service provider (web > service external to camel) from within a camel route: > > > > > > > > > > > > > This gives me an error during startup: > > No endpoint could be found for: http://a-host:a-port/a-path > > I understand, that I didn't configure an endpoint at > http://a-host:8080/a-path, but I have no idea how to do that. > > The camel manual only shows how to directly use an http URL in the DSL way. > > To give some context, the situation is as follows: > - A web service consumer into camel (camel should offer a wsdl interface), > this works and is the cxf:bean thing above in the from element > - Some pojos massaging the content, which works also > - A web service provider, which needs to be adapted, which doesn't work for > me at the moment > > I first thought, I could use the cxf component to stand for the consumer and > the provider (different wsdls), but this didn't work either, because as far > as I understand, it only works as a consumer. > > Any help is appreciated, possibly with concrete links or examples. > > Thank you! > > Best regards, Werner > > >