nextime he startes the webclient from this bookmark he receives a expired-message
Is this possible to create a bookmark on the clients-computer from a servoy-webclient ?
Is this possible to ask servoy to not change the link in the browser ?
I redirect all first incoming calls via a apache php mySql system. Bookmarks are possible from
Servoy by redirecting to apache (parameter &showDirl=blabla), set a flag in the DB witch means,
that following php redirect
header("Location: " . $_SERVER['PHP_SELF'] . "?Dirl=" . $_GET['Dirl'] ); // Normaler Link ohne nix
die();
to itself (with no showDirl-Parameter) shows a screen with some instruction and at the same
time a “nice” Link, witch can be bookemarked. Before I reset the flag in the db, what means the
next call leads to an forward to Servoy-Server again.
you can also have a look at the server setting: servoy.webclient.nice.urls
When set to true you will get a URL that can be bookmarked.
But I seem to remember that this might cause issues with certain plugins, maybe Servoy can answer on that.
that should work fine, but 3th party plugins (like webclients utils) need to take that into account when the are really generating/doing certain stuff.
But i think webclient utils is taken this into account
The iframe approach works great. At its simplest, set the source of an iframe to your webclient deep link. The html page somewhere in your tomcat directory is your bookmarkable link. At advanced level, you can create an entire router (intelligent URLs) so you can bookmark various locations and records within your app.
[attachment=0]Screen Shot 2014-12-29 at 2.44.27 PM.png[/attachment]