Any samples of the combination lightroom:// and Java
Due to limitations in the UI capabilities of the Lightroom SDK I would like to create a front-end in Java and have it communicate with Lightroom via a HTTP manner with lightroom://.
So sending a HTTP request with <scheme>://<authority><path>?<query>#<fragment>and then have Lightroom send the requested information.
With great interest I have looked at the LRCookmark plug-in of Rob Cole.
He uses for example "lightroom://com.robcole.lightroom.Cookmarks/iBlacks2012=-10&iShadows2012=-10&iHighlights2012=10"
I know I can connect via JDBC directly from Java to the Lightroom SQLite database, but my conviction is that this is not the way to go.
In my opinion all (write, update and delete) access to the Lightroom database should be done via the Lua API in order to use the business logic in the API.
Question: has anyone experience with this would like a very basic sample.
A very small working sample would help me getting started.