01-13-06 04:48 PM
Hi!
I know that in XML code of Macros, there are three HTML variables
$HTMLSessionUtil.getHost()$
$HTMLSessionUtil.getLabel()$
$HTMLSessionUtil.getName()$
I want to get this three values with the blInfo object of a BussinesLogicInf
o class. Do you know where are these values related on blInfo ?
(f.ex.)
XXX xxx = blInfo.getConnectionHashtable().get("xxx");
xxx.getHost();
xxx.getLabel();
xxx.getName();
Thaks
RHJ
Pd. I'm trying with
com.ibm.eNetwork.beans.HOD.Session
with this code... ( i keep trying )
com.ibm.eNetwork.beans.HOD.Session hses = ( com.ibm.eNetwork.beans.
HOD.Session )blInfo.getConnectionHashtable().get("xxx");
String macro_host = hses.getProperties().getProperty(Session.HOST);
String macro_label = hses.getProperties ().getProperty(Session.SSO_L
OCAL_ID);
String macro_name = hses.getProperties().getProperty(Session.SSO_NET
WORK_ID );
[ Post a follow-up to this message ]
|