prasad katankot
prasad katankot

Reputation: 157

How to open a document in Xpages mobile controls from an URL

How do I open a document in XPages mobile controls from a URL?

My application notifies users about pending review using an embedded URL link in an email. The requirement is to open the document in mobile controls (SinglePage/App Page). As of now I get a grey page on ipad when the link is clicked from the email.

However I am able to edit the same document using a button and <moveTo> tag. The following is a sample URL when loaded to a browser renders a grey page.

http://175.x.y.z/db.nsf/MN.xsp#newRequest&docId=123761231653&action=openDocument

Upvotes: 1

Views: 709

Answers (1)

Declan Lynch
Declan Lynch

Reputation: 3345

The #newRequest part of the URL needs to be moved to the END of the url string. Nothing after the # symbol in a URL is transfered to the server so the server never gets the docId or action parameters.

Upvotes: 4

Related Questions