In CXF , we leverage the servlet transport to publish the service through
Tomcat. Maybe we can port some part of CXF Servlet to Camel, in this way we
can deploy Camel Servlet transport into Tomcat and send the message into a
camel context :)

Thoughts?

Willem

On Sat, Oct 18, 2008 at 7:52 AM, Christian Schneider <
[EMAIL PROTECTED]> wrote:

> Hi Christopher,
>
> if I understand you right you want to have a http endpoint that simply
> receives a soap message and sends it to a topic. Is that right?
> In that case you do not need cxf at all. cxf is only needed if you want to
> deserialize the soap message and call a java implementation.
>
> Simply do something like that in camel:
>
> from("jetty:http://localhost:8080/myapp/myservice
> ").to("jms://topic:topicname")
>
> Look at the jetty and jms components for more details.
>
> I think the jetty component is normally used if you are not running in
> tomcat. I do not know how to receive a request using tomcat but I am
> sure someone can help here.
>
> Greetings
>
> Christian
>
>
> huntc schrieb:
>
>> Hi Christian,
>>
>> Thank you for the guidance here. I have indeed read your fine article
>> although I am curious as to what the CXF web service implementation should
>> do if all that is required is to pass on its parameters as a Camel
>> Exchange,
>> and return success if it can do so successfully. Any advice there?
>>
>> Kind regards,
>> Christopher
>>
>>
>>
>>
>
>
> --
>
> Christian Schneider
> ---
> http://www.liquid-reality.de
>
>

Reply via email to