Announcement Banner
UNSOLVED

wangw98

updated

15 years ago

W

wangw98

11 Posts

0

1522

March 5th, 2012 18:00

ASL script running as DXA issues

Hi,

  I want to do some test for the asl running as DXA hookscript. According to the documentation, using self->object("xxx"), we can get the objects existed in INCHARGE-SA domain manager. I have write a simple asl script as follows:

  START{

    ..eol

  }do{

    notifyObj = self->object("ICS_Notification","xxx");

    print(notifyObj->CreationClassName);

  }

  when i execute this asl using sm_adapter simple.asl, it will generate the exception as follows:

  ICS_Notification: Class of given name not found

 

  So i am wondering that only the object's class name start with "GA" can be create with using self->object or self->create.

  The functionality for the script is getting the notification object in INCHARGE-SA domain manager, fetching some properties of the notification to get more detail information from underlying domain managers such as AM PM.. So in other word, this DXA script will connect two domain managers , one is INCHARGE-SA and the other is underlying domain managers.

  

   So could you please give me some suggestion about it?

  Thanks

BRs

David Wang