Hi all,
i want to call a composite application through URL, like:
notes://server/db.nsf
but i want also to pass parameters in URL like:
notes://server/db.nsf?a=1&b=2
composite application has a form inside it.
How can i detect the url parameters inside it?
I try with a @urlquerystring in a field but it doesn’t work.
Can you help me, please?
Thx
Andrea
Subject: Did you get the solution for this.
Hi Did you get the solution for this. I am also looking for the solution for same issue.
Please post the solution if you already know.
Thanks and Regards
Ravindra Aluru.
Subject: Solution
It was helpful this article
http://www-10.lotus.com/ldd/compappwiki.nsf/dx/running-nsf-components-in-context
to set preferences enabled (at composiite page level)
next, in postopen event
Sub Postopen(Source As Notesuiview)
Dim nUIWS As New notesUIWorkspace)
Set value = nUIWS.GetComponentViewPreference
(“com.ibm.portal.app.input.MyUrlVariable”).
End Sub
Subject: doesn’t work…
Hi Andrea,
I tried your solution but I only get an error:
“Specified view preference is unavailable”.
I called:
notes://server/C12570F400443C24/test?OpenFrameset&Test=ABC
In the Framset I got an view with this postopen event script:
Sub Postopen(Source As Notesuiview)
Dim nUIWS As New notesUIWorkspace
Set value = nUIWS.GetComponentViewPreference("com.ibm.portal.app.input.Test")
End Sub
Could you please give me any hints or directions to look at. I am new to this kind of notes programming…
Cheers,
Sebastian