I’d like to start the smart client and deeplink a method+argument from a URL issued by a 1/3 application to end up where I want
But this triggers as many sessions as URLS executed: is there a way to re-use the existing client instance instead of firing a new client everytime?
Yes, have a look at the admin pages for the “servoy.allowExistingClientActivate” property.
I have this “on” and found what was wrong:
it does work only if the URL does not specify the solution and method argument like that:
http://server:8080/servoy-client/servoy … d=yyyyyyyy
so if you first launch the client with no arg, and a 2nd attempt with arguments, it does not work, so you must always use both arguments even if not needed and thus left empty like this:
http://server:8080/servoy-client/servoy … xx&method=
thanks anyway, I would not have pinpointed on this, I thought it was not that specific, something like “1 or several instance”.