Reputation: 504
Last mule question for now:
<https:connector name="httpsConnector" doc:name="HTTP\HTTPS">
<https:tls-key-store path="keystore.jks" keyPassword="pass" storePassword="pass"/>
</https:connector>
<https:inbound-endpoint exchange-pattern="request-response" host="localhost" port="65081" path="path" connector-ref="httpsConnector" doc:name="HTTP"/>
So I have those two snippets in my code, yet whenever it starts i get:
1. The required object/property "tls-key-store" is null (org.mule.transport.ConnectException)
But the tls-key-store isn't null.
Whats going on?
Thanks
Tom
Upvotes: 0
Views: 767
Reputation: 3264
This is usually caused when the keystore.jks can't locate the within your application. Can you make sure that it is present in the classpath or set the whole path as the value of the path attribute
Upvotes: 1