Friday 15 January 2010

xpages using https how to access another application -



xpages using https how to access another application -

we access application using dbcolumn ( want access view database ) , dbname using:

`var = "domain/company" + "!!" + "mybase.nsf"` @unique(@dbcolumn(a, "vwmy", 0)

we changed http https , have error now: selectitems. dbcolumn used within combobox.

how can acces database other way? can work using https also.

i've added next code:

var dbname = ""; if(@clienttype()=="notes"){ dbname = "server/company" + "!!" + "mybase.nsf"; } else if (@clienttype()=="web"){ dbname = session.getservername() + "!!" + "mybase.nsf"; }

it looks specifying in string "server/company" didn't work in case when i'm using on browser. seems https hadn't influence approach.

xpages

No comments:

Post a Comment