I’m trying to have a domino web application have a link that’ll open up a form within the Notes Client. I know this will only work if Notes is successfully installed on the computer. I have the url built inside HTML code:
Right now I’m just trying to get the database open in Notes from clicking a link on a web application. The first computed value is @Name([CN]; @Servername) and the 2nd computed value is @Subset(@DbName; -1).
It opens up in Notes, but I get an alert error message box that says “File does not exist”. Any ideas?
Is it even possible to do this? I read throughout the forum that it is if Notes is installed on the computer. But I must have my URL wrong. Eventually I’d like to open up to a specific form.
Chrissy – you just have a couple things wrong with the way you specified the URL: Use only TWO slashes after the “Notes:” instead of three, and use a FORWARD slash instead of a BACKSLASH between the two Computed Values. You do NOT have to use the Replica ID – You can use the formula you are using to get the database path and name…
I did what you asked, and I no longer get the ‘File does not exist’ error, however, the database still doesn’t open it. It switches to Notes, but doesn’t open the database.
Use @WebDbName instead of @Subset(@DbName; -1) in your second Computed Value – it switches backslashes to forward slashes – depending on which browser you are using and where your database resides it may make a difference…
Look ath the HTML Source of the web page – what does the URL evaluate to?