Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Content Management (Extended ECM)
API, SDK, REST and Web Services
downloading livelink docs to harddrive
K__Nair_(SonySemiUser2_(Delete)_1432771)
I know how to programmatically upload docs thru LAPI.Has anybody have some good code with Java that can do the reverse.That is get the documents from a specified folder.I do not want to do the download thru URl
http://localhost/Livelink/livelink.exe?func=ll&objId=xxxx&objAction=download
nor do i want to do an xmlexport .I have been able to use lapi to do an xmlexport but I do not want the content to be xml
Find more posts tagged with
Comments
Thulasiraman__Sathya_(tsathya_(Delete)_2411305)
Message from Sathya Saravanan via eLinkHi,The FetchVersion function should do it.Sathya-----Original Message-----From: eLink Discussion: LAPI Discussion[mailto:lapi@elinkkc.opentext.com]Sent: Thu, June 05, 2003 12:18 AMTo: eLink RecipientSubject: downloading livelink docs to harddrivedownloading livelink docs to harddrivePosted by Nair, K N on 06/04/2003 04:07 PMI know how to programmatically upload docs thru LAPI.Has anybody have somegood code with Java that can do the reverse.That is get the documents from aspecified folder.I do not want to do the download thru URl
http://localhost/Livelink/livelink.exe?func=ll&objId=xxxx&objAction=downloadnor
do i want to do an xmlexport .I have been able to use lapi to do anxmlexport but I do not want the content to be xml[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=viewLivelink
Server:
https://knowledge.opentext.com/knowledge/livelink.exe
eLink User
Message from Sean M. Alderman via eLinkJust do something like this...try{ lapi_documents.FetchVersion( itemVolumeID, itemNodeID, itemVersion, itemFullPath ) ;}catch (Exception e){ e.printStackTrace(System.err);}Where itemFullPath is the local hard disk path to save the document.On Wed, 2003-06-04 at 16:18, eLink Discussion: LAPI Discussion wrote:> downloading livelink docs to harddrive> Posted by Nair, K N on 06/04/2003 04:07 PM> > I know how to programmatically upload docs thru LAPI.Has anybody have some good code with Java that can do the reverse.That is get the documents from a specified folder.I do not want to do the download thru URl>
http://localhost/Livelink/livelink.exe?func=ll&objId=xxxx&objAction=download
nor do i want to do an xmlexport .I have been able to use lapi to do an xmlexport but I do not want the content to be xml> > [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-2795I just forgot my whole philosophy of life!!!
K__Nair_(SonySemiUser2_(Delete)_1432771)
Thanks everybody it helped anybody knows good refernce material on javadoc for LAPI rplete with working examples? or is it too much to ask
John_Shoun
The API installation has HTML docs that are very comprehensive (although without an underlying understanding of the Livelink application server it can be difficult to determine what function to use).There are LAPI examples on the Knowledge Center.