michaelklishin / quartz-mongodb

A MongoDB-based store for the Quartz scheduler. This fork strives to be as feature complete as possible. Originally by MuleSoft.
Other
249 stars 203 forks source link

please support ssl #80

Closed hqytchfm closed 9 years ago

hqytchfm commented 10 years ago

I need the quartz-mongodb support ssl,and now I rewrite the source code to support it.but if the version upgrade I need rewrite it to the new version again. so, I suggest that the ssl support will be added at the next version. Thank you!

michaelklishin commented 10 years ago

@hqytchfm can you at least specify what is missing? Is it a way to provide certificates and a key?

michaelklishin commented 10 years ago

The polite thing to do would be to contribute a pull request instead of asking others to do the work.

pwojnowski commented 9 years ago

Hi. Could you try with mongo client uri like so: http://mongodb.github.io/mongo-java-driver/3.0/driver/reference/connecting/ssl/

IMHO to use that with MongoClientOptions it's enough to add property for enabling SSL and use: MongoClientOptions.builder().sslEnabled(enableSSL).build()

Implemented in: https://github.com/michaelklishin/quartz-mongodb/pull/101 @hqytchfm please have a look at it if you are still interested in SSL support.

michaelklishin commented 9 years ago

Should be done in master.