Home
Extended ECM
API, SDK, REST and Web Services
Urgent! Several Questions/Issues of LL Java API
unknown
Message from Bo Yao via eLinkHi there,I got several questions/issues when i use LL Java API (9.0 Version)1. No fetch Agenda method for session objects.I cannot find the API methods to fetch Agenda objects of a session.2. For a task, Get ObjectInfo( ) doesn't return some key attributes like DUE date, Status, etc..although in the API DOC, it specified that i can get those attributes, following is the samplecode, please let me know if it is correct:LLValue task=documents.GetObjectInfo(volumeID, objID, obj_holder)int assignedTo=task.toInteger("AssignedTo");Date dueDate=task.toDate("DateDue");3. When i use LL search API to fetch meeting objects, I cannot get "OTDateStarted" attribute ofa meeting, but i did get it for a task. It looks to me that OTDateStarted is not implemented formeeting obj. Please confirm!ThanksBarryCisco Systems Inc.
Find more posts tagged with
Comments
eLink User
Message from Sean M Alderman via eLinkOn Thu, 2002-05-09 at 14:34, eLink Discussion: LAPI Discussion wrote:> Urgent! Several Questions/Issues of LL Java API> Posted by eLink on 05/09/2002 02:34 PM> > Message from Bo Yao via eLink> > > Hi there,> > I got several questions/issues when i use LL Java API (9.0 Version)> > 1. No fetch Agenda method for session objects.I'm not following what you're looking for on this. When you refer tosession are you talking about a LAPI Session? What does this Agendaobject have in it?> > I cannot find the API methods to fetch Agenda objects of a session.> > 2. For a task, Get ObjectInfo( ) doesn't return some key attributes like > DUE date, Status, etc..> although in the API DOC, it specified that i can get those attributes, > following is the sample> code, please let me know if it is correct:> > LLValue task=documents.GetObjectInfo(volumeID, objID, obj_holder)> int assignedTo=task.toInteger("AssignedTo");> Date dueDate=task.toDate("DateDue");For this, GetObjectInfo doesn't return a LLValue like the way you'vewritten. You want something like -LLValue task = (new LLValue()).setAssocNotSet();int result = documents.GetObjectInfo(volumeID, objID, task);if (result != 0){ //Something went wrong}else{ //Everything's OK ...}> > 3. When i use LL search API to fetch meeting objects, I cannot get > "OTDateStarted" attribute of> a meeting, but i did get it for a task. It looks to me that OTDateStarted > is not implemented for> meeting obj. Please confirm!This Meeting Object doesn't seem to be available on my system. Do youhave some module like MeetingZone installed? It's possible that thereisn't a Lapi interface setup for meetingZone objects.> > Thanks> Barry> Cisco Systems Inc.> > [To reply to this thread, use your normal e-mail reply function.]> > ============================================================> > Discussion: LAPI Discussion>
https://knowledge.opentext.com/knowledge/livelink.exe?func=ll&objId=765428&objAction=view>
; > Livelink Server:>
https://knowledge.opentext.com/knowledge/livelink.exe>
; > -- Sean M. AldermanITRACK Systems AnalystPACE/NCI - NASA Glenn Research Center(216) 433-2795Calling a windowed operating system "Windows" is like naming anautomobile "Wheels."