2017-03-07 5 views
0

現在、私はキャメルとjavaに基づいたプロジェクトに取り組んでいます。httpsに変更する可能性があります。 多くの研究をした後、私はレセプトhttpsに公開することができます。 しかし、私はrestclientからのURLをヒットしようとしていますが、私は何のエラーもなく応答を得ていません。 オープニングポートを探しているときにポートを見つけることができます。 コードとログを自分のコードとともに送信しています。 この問題を解決するためにいくつかお手伝いをしてください。camel restletを使用してhttpをhttpsに変更するには

ログは

Mar 07, 2017 5:35:51 PM org.restlet.engine.connector.NetServerHelper start 
 
INFO: Starting the internal [HTTPS/1.1] server on port 8060 
 
[pache.camel.spring.Main.main()] RestletComponent    DEBUG Added method based router: [email protected] 
 
[pache.camel.spring.Main.main()] RestletComponent    DEBUG Attached restlet uriPattern: /jsonRestlet method: POST 
 
[pache.camel.spring.Main.main()] RestletComponent    DEBUG Attached methodRouter uriPattern: /jsonRestlet 
 
[pache.camel.spring.Main.main()] RestletComponent    DEBUG Started methodRouter uriPattern: /jsonRestlet 
 
[pache.camel.spring.Main.main()] SpringCamelContext    INFO Route: route1 started and consuming from: Endpoint[https://localhost:8060/jsonRestlet] 
 
[pache.camel.spring.Main.main()] ultManagementLifecycleStrategy DEBUG Load performance statistics disabled 
 
[pache.camel.spring.Main.main()] SpringCamelContext    INFO Total 1 routes, of which 1 are started. 
 
[pache.camel.spring.Main.main()] SpringCamelContext    INFO Apache Camel 2.17.2 (CamelContext: camel-1) started in 1.302 seconds 
 
[pache.camel.spring.Main.main()] MainSupport     DEBUG Starting Spring ApplicationContext: org[email protected]77575e6a 
 
[pache.camel.spring.Main.main()] DefaultListableBeanFactory  DEBUG Returning cached instance of singleton bean 'lifecycleProcessor' 
 
[pache.camel.spring.Main.main()] ClassPathXmlApplicationContext DEBUG Publishing event in org[email protected]77575e6a: org.springframework.context.event.ContextStartedEvent[source=org[email protected]77575e6a: startup date [Tue Mar 07 17:35:49 IST 2017]; root of context hierarchy] 
 
[pache.camel.spring.Main.main()] DefaultListableBeanFactory  DEBUG Returning cached instance of singleton bean 'camel-1' 
 
[pache.camel.spring.Main.main()] SpringCamelContext    DEBUG onApplicationEvent: org.springframework.context.event.ContextStartedEvent[source=org[email protected]77575e6a: startup date [Tue Mar 07 17:35:49 IST 2017]; root of context hierarchy] 
 
[pache.camel.spring.Main.main()] DefaultListableBeanFactory  DEBUG Returning cached instance of singleton bean 'camel-1'

私の要求を生成し

URL:: https://localhost:8060/jsonRestlet 
 
Request body::{"name":"mdnoorshid"}
<?xml version="1.0" encoding="UTF-8"?> 
 
<!-- Configures the Camel Context --> 
 

 
<beans xmlns="http://www.springframework.org/schema/beans" 
 
\t xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camel="http://camel.apache.org/schema/spring" 
 
\t xsi:schemaLocation=" 
 
     http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd 
 
     http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd"> 
 

 
\t <camel:sslContextParameters id="mySslContext"> 
 
\t \t <camel:keyManagers keyPassword="bizruntime"> 
 
\t \t \t <camel:keyStore resource="C:\\Users\\deepalisingh\\Desktop\\keystore.jks" 
 
\t \t \t \t password="bizruntime" /> 
 
\t \t </camel:keyManagers> 
 
\t \t <camel:serverParameters clientAuthentication="WANT" /> 
 
\t </camel:sslContextParameters> 
 
    <bean id="sendPOST" class="com.bizruntime.CamelRestletHTTPS.HTTPSsendPost"></bean> 
 

 
\t <camelContext xmlns="http://camel.apache.org/schema/spring"> 
 
\t \t <route> 
 
\t \t \t <from uri="restlet:https://localhost:8060/jsonRestlet?restletMethod=POST&amp;sslContextParameters=#mySslContext"/> 
 
\t \t \t <to uri="bean:sendPOST?method=sendPost" /> 
 
\t \t </route> 
 
\t </camelContext> 
 

 
</beans>

+0

ログはどこですか? –

+0

デフォルトではHTTPSは443 –

+0

です。こんにちは@SoucianceEqdamRashtiあなたはログを見つけることができます。私はログを添付するのを忘れました。あなたの応答に感謝します。 –

答えて

0

現在の設定です。
クライアント内でssl証明書をインポートする必要があります。
例として、@kellenの回答、Chromeでの操作方法などを参照できます。here

関連する問題