You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by finger <yu...@hotmail.com> on 2011/11/03 06:01:20 UTC

camel is support for s-http?

Hi!

s-http (secure http) I want to use.
camel works support for s-http ?
If you use supporting What should I set?

current setting :
	    <route id="shttp">
	        <from uri="servlet:///test?matchOnUriPrefix=true"/>
	        <camel:convertBodyTo type="String"/>
	        <camel:process ref="inProcessor"/>
	        <to uri="http://shttp.test.com?bridgeEndpoint=true"/>
	        <camel:convertBodyTo type="String"/>
	        <camel:process ref="outProcessor"/>
	    </route>

result :
HttpOperationFailedException

--
View this message in context: http://camel.465427.n5.nabble.com/camel-is-support-for-s-http-tp4960161p4960161.html
Sent from the Camel Development mailing list archive at Nabble.com.

Re: camel is support for s-http?

Posted by finger <yu...@hotmail.com>.
thanx :)

--
View this message in context: http://camel.465427.n5.nabble.com/camel-is-support-for-s-http-tp4960161p4960769.html
Sent from the Camel Development mailing list archive at Nabble.com.

Re: camel is support for s-http?

Posted by Claus Ibsen <cl...@gmail.com>.
Hi

Can you post on the @user mailing list instead.
This is where end users should post questions about using Camel. There
is a lot more people there to help you.


On Thu, Nov 3, 2011 at 6:01 AM, finger <yu...@hotmail.com> wrote:
> Hi!
>
> s-http (secure http) I want to use.
> camel works support for s-http ?
> If you use supporting What should I set?
>
> current setting :
>            <route id="shttp">
>                <from uri="servlet:///test?matchOnUriPrefix=true"/>
>                <camel:convertBodyTo type="String"/>
>                <camel:process ref="inProcessor"/>
>                <to uri="http://shttp.test.com?bridgeEndpoint=true"/>
>                <camel:convertBodyTo type="String"/>
>                <camel:process ref="outProcessor"/>
>            </route>
>
> result :
> HttpOperationFailedException
>
> --
> View this message in context: http://camel.465427.n5.nabble.com/camel-is-support-for-s-http-tp4960161p4960161.html
> Sent from the Camel Development mailing list archive at Nabble.com.
>



-- 
Claus Ibsen
-----------------
FuseSource
Email: cibsen@fusesource.com
Web: http://fusesource.com
Twitter: davsclaus, fusenews
Blog: http://davsclaus.blogspot.com/
Author of Camel in Action: http://www.manning.com/ibsen/

Re: camel is support for s-http?

Posted by Claus Ibsen <cl...@gmail.com>.
On Thu, Nov 3, 2011 at 12:51 PM, finger <yu...@hotmail.com> wrote:
> That's right. Secure_Hypertext_Transfer_Protocol
> It means not supports by camel?
>

Yes I do not think its support. Camel has a number of HTTP related
components, and its the underlying HTTP client that needs to support
it.
camel-http
camel-http4
camel-jetty
camel-ahc

All Camel HTTP components. But I do not think any of the underlying
HTTP clients supports secure HTTP. But you can google and see which
HTTP client Java libraries you can find.


> --
> View this message in context: http://camel.465427.n5.nabble.com/camel-is-support-for-s-http-tp4960717p4960853.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>



-- 
Claus Ibsen
-----------------
FuseSource
Email: cibsen@fusesource.com
Web: http://fusesource.com
Twitter: davsclaus, fusenews
Blog: http://davsclaus.blogspot.com/
Author of Camel in Action: http://www.manning.com/ibsen/

Re: camel is support for s-http?

Posted by finger <yu...@hotmail.com>.
That's right. Secure_Hypertext_Transfer_Protocol
It means not supports by camel?

--
View this message in context: http://camel.465427.n5.nabble.com/camel-is-support-for-s-http-tp4960717p4960853.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Re: camel is support for s-http?

Posted by Claus Ibsen <cl...@gmail.com>.
Ah you mean S-HTTP ?
http://en.wikipedia.org/wiki/Secure_Hypertext_Transfer_Protocol

I guess nobody really uses it.


On Thu, Nov 3, 2011 at 12:24 PM, Willem Jiang <wi...@gmail.com> wrote:
> I just did a quick search and didn't find Apache HTTPClient which is used by
> camel-http supports the s-http.
>
> On Thu Nov  3 13:01:20 2011, finger wrote:
>>
>> Hi!
>>
>> s-http (secure http) I want to use.
>> camel works support for s-http ?
>> If you use supporting What should I set?
>>
>> current setting :
>>        <route id="shttp">
>>        <from uri="servlet:///test?matchOnUriPrefix=true"/>
>>        <camel:convertBodyTo type="String"/>
>>        <camel:process ref="inProcessor"/>
>>        <to uri="http://shttp.test.com?bridgeEndpoint=true"/>
>>        <camel:convertBodyTo type="String"/>
>>        <camel:process ref="outProcessor"/>
>>        </route>
>>
>> result :
>> HttpOperationFailedException
>>
>> --
>> View this message in context:
>> http://camel.465427.n5.nabble.com/camel-is-support-for-s-http-tp4960161p4960161.html
>> Sent from the Camel Development mailing list archive at Nabble.com.
>>
>
>
>
> --
> Willem
> ----------------------------------
> FuseSource
> Web: http://www.fusesource.com
> Blog:    http://willemjiang.blogspot.com (English)
>        http://jnn.javaeye.com (Chinese)
> Twitter: willemjiang Weibo: willemjiang
>



-- 
Claus Ibsen
-----------------
FuseSource
Email: cibsen@fusesource.com
Web: http://fusesource.com
Twitter: davsclaus, fusenews
Blog: http://davsclaus.blogspot.com/
Author of Camel in Action: http://www.manning.com/ibsen/

Re: camel is support for s-http?

Posted by Willem Jiang <wi...@gmail.com>.
I just did a quick search and didn't find Apache HTTPClient which is 
used by camel-http supports the s-http.

On Thu Nov  3 13:01:20 2011, finger wrote:
> Hi!
>
> s-http (secure http) I want to use.
> camel works support for s-http ?
> If you use supporting What should I set?
>
> current setting :
> 	<route id="shttp">
> 	<from uri="servlet:///test?matchOnUriPrefix=true"/>
> 	<camel:convertBodyTo type="String"/>
> 	<camel:process ref="inProcessor"/>
> 	<to uri="http://shttp.test.com?bridgeEndpoint=true"/>
> 	<camel:convertBodyTo type="String"/>
> 	<camel:process ref="outProcessor"/>
> 	</route>
>
> result :
> HttpOperationFailedException
>
> --
> View this message in context: http://camel.465427.n5.nabble.com/camel-is-support-for-s-http-tp4960161p4960161.html
> Sent from the Camel Development mailing list archive at Nabble.com.
>



-- 
Willem
----------------------------------
FuseSource
Web: http://www.fusesource.com
Blog:    http://willemjiang.blogspot.com (English)
         http://jnn.javaeye.com (Chinese)
Twitter: willemjiang 
Weibo: willemjiang