I need process link in my Java(Swing) application. E.g. user click link like myproc://test=1&name=name, and my Java application must work with this link. I mean, i need behavoir, like uTorrent when user click on magnet link. Is exists correct way to do this? I mean how my application handle external system event, like click on link in browser on my protocol link.
RESOLVED(WORKAROUND). I not found how register working java application as portocol handler. I do this: - java application contains small http-server and listen some port - on my site i add link to localhost:port
It's ugly, but works