2013-04-23 36 views
2

我正在尝试使用HTTPS入站端点的流程。在Mule ESB中创建HTTPS服务

到目前为止,我能做到以下几点:

  • 通过终端使用此命令创建密钥库文件:

    keytool -genkey -alias mule -keyalg RSA -keystore keystore.jks

  • 放在keystore.jks在我的骡子应用SRC/main/resources目录

  • 使用以下设置创建全局HTTPS连接器:

enter image description here

  • 在我的HTTP入站端点检查“启用HTTPS”复选框,并选择我的新的全球HTTPS连接器连接器参考。

我的问题是当访问所述端点,可以说 https://localhost:8082/getProducts

浏览器将引发此消息

SSL connection error 
Unable to make a secure connection to the server. This may be a problem with the server,  or it may be requiring a client authentication certificate that you don't have. 
Error 107 (net::ERR_SSL_PROTOCOL_ERROR): SSL protocol error. 

而在我的骡子登录我有以下几点:

ERROR 2013-04-23 12:08:55,451 [[integrador-catalogogit].connector.http.mule.default.receiver.02] org.mule.exception.DefaultSystemExceptionStrategy: Caught exception in Exception Strategy: Http Request line is malformed: "�?��?Qv??e]?.�t#?G??*?p?V*????stS��H?" 
org.apache.commons.httpclient.ProtocolException: Http Request line is malformed: "�?��?Qv??e]?.�t#?G??*?p?V*????stS��H?" 
at org.mule.transport.http.RequestLine.parseLine(RequestLine.java:52) 
at org.mule.transport.http.HttpServerConnection.readRequest(HttpServerConnection.java:190) 
at org.mule.transport.http.HttpMessageReceiver$HttpWorker.run(HttpMessageReceiver.java:155) 
at org.mule.work.WorkerContext.run(WorkerContext.java:311) 
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895) 
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918) 
at java.lang.Thread.run(Thread.java:680) 
ERROR 2013-04-23 12:08:55,467 [[integrador-catalogogit].connector.http.mule.default.receiver.03] org.mule.exception.DefaultSystemExceptionStrategy: Caught exception in Exception Strategy: Http Request line is malformed: "�?��?Qv???P?*?~c?q?6?]??W?[??��H?" 
org.apache.commons.httpclient.ProtocolException: Http Request line is malformed: "�?��?Qv???P?*?~c?q?6?]??W?[??��H?" 
at org.mule.transport.http.RequestLine.parseLine(RequestLine.java:52) 
at org.mule.transport.http.HttpServerConnection.readRequest(HttpServerConnection.java:190) 
at org.mule.transport.http.HttpMessageReceiver$HttpWorker.run(HttpMessageReceiver.java:155) 
at org.mule.work.WorkerContext.run(WorkerContext.java:311) 
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895) 
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918) 
at java.lang.Thread.run(Thread.java:680) 
ERROR 2013-04-23 12:08:55,469 [[integrador-catalogogit].connector.http.mule.default.receiver.03] org.mule.exception.DefaultSystemExceptionStrategy: Caught exception in Exception Strategy: Http Request line is malformed: "��U��Q�Qv?cN????;]<???-???^S???G[?��*�?�?�?�9�8�?�5�E�D�f�3�2�?�A���/��??�" 
org.apache.commons.httpclient.ProtocolException: Http Request line is malformed: "��U��Q�Qv?cN????;]<???-???^S???G[?��*�?�?�?�9�8�?�5�E�D�f�3�2�?�A���/��??�" 
at org.mule.transport.http.RequestLine.parseLine(RequestLine.java:52) 
at org.mule.transport.http.HttpServerConnection.readRequest(HttpServerConnection.java:190) 
at org.mule.transport.http.HttpMessageReceiver$HttpWorker.run(HttpMessageReceiver.java:155) 
at org.mule.work.WorkerContext.run(WorkerContext.java:311) 
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895) 
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918) 
at java.lang.Thread.run(Thread.java:680) 

可能我缺少服务器端或骡方的配置步骤。

我真的很感谢你的帮助。

编辑

我的XML最终看起来像this

<?xml version="1.0" encoding="UTF-8"?> 
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:json="http://www.mulesoft.org/schema/mule/json" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" xmlns:core="http://www.mulesoft.org/schema/mule/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="CE-3.3.1" xsi:schemaLocation=" 
http://www.mulesoft.org/schema/mule/json http://www.mulesoft.org/schema/mule/json/current/mule-json.xsd 
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd 
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd 
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd 
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd "> 
    <https:connector name="HTTP_HTTPS" cookieSpec="netscape" validateConnections="true" sendBufferSize="0" receiveBufferSize="0" receiveBacklog="0" clientSoTimeout="10000" serverSoTimeout="10000" socketSoLinger="0" proxyHostname="localhost" proxyPort="80" doc:name="HTTP\HTTPS"> 
     <https:tls-client path="keystore.jks" storePassword="1234"/> 
     <https:tls-key-store path="keystore.jks" keyPassword="1234" storePassword="1234"/> 
     <https:tls-server path="keystore.jks" storePassword="1234"/> 
    </https:connector> 
    <flow name="getProducts" doc:name="getProducts"> 
     <https:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8082" path="getProducts" doc:name="HTTP" connector-ref="HTTP_HTTPS"/> 
     <json:json-to-object-transformer returnClass="Codefuel.parameters.RequestParameters" doc:name="JSON to Object"/> 
     <component class="Codefuel.product.mulesoft.GetProductByParameters" doc:name="GetProductByParameters"/> 
     <json:object-to-json-transformer doc:name="Object to JSON"/> 
    </flow> 
</mule> 
+0

显示您的XML配置,或者我们无法为您提供帮助。一个IDE屏幕截图是不够的。 – 2013-04-23 17:10:49

+0

完成,请参阅编辑后。 – jonathanwiesel 2013-04-23 17:30:59

+0

“访问上述端点时出现问题”< - 您如何访问它? – 2013-04-23 19:02:47

回答

1

我在你的问题创造了命令一个密钥(密码为1234561234太短)和部署你的配置(除了我删除json:json-to-object-transformercomponent,因为我没有这个类)在Mule 3.4上,它的工作完美。

我可以curl -k https://localhost:8082/getProducts并得到答复。所以一定有别的东西不会造成麻烦。

+0

试过,但仍然没有运气 – jonathanwiesel 2013-04-23 17:50:49

+1

我已经创建了一个密钥库与您的问题中的命令(密码123456, 1234太短了),并部署你的配置(除了我删除了'json:json-to-object-transformer'和'component',因为我没有这个类)在Mule 3.4上完美运行。我可以'curl -k https:// localhost:8082/getProducts'并获得答复。所以一定有别的东西不会造成麻烦。 – 2013-04-23 18:57:21

+0

有可能我的服务器没有正确配置有效的SSL证书等的Tomcat? – jonathanwiesel 2013-04-23 19:02:10

0

我有这样的例外: org.mule.exception.DefaultSystemExceptionStrategy:捕获异常的异常处理策略:HTTP请求行格式有误:(疯狂的字符集caracters)

我滚,直到我意识到,我的HTTP服务是在https服务的相同端口。更改端口并再试一次,它适用于我。