Upload file

Hi,My database using heavy attachments files, so I want to upload them to “livelink”, some one know how to do it?

Thanks

Subject: Upload file

What is livelink?

Subject: RE: Upload file

Hi Nancy,

a href= “Information Management Products | OpenText”>livelink]

I want to know way to upload to different resource then lotus notes, cause I
deal with heavy files lets say 20-30 mb for each document, so I want to store
them on other resource, is it possible, and if yes, how?

Subject: Upload file

If its one-off your best bet would be to unload them to the file system with script and then push them to livelink using webdav. If you want to automate it more then you would need the livelink api (java) which (once you’ve got used to it) allows you to upload fairly easily.Otherwise you have to be able to send the attachments via http as multipart POST and (the most difficult) you have to figure out the right urls to login and create folders and documents.

The apache jakarta project has a http client with multipart capability

http://jakarta.apache.org/commons/httpclient

I’ve used that to upload from cocoon to livelink. Maybe you can do something with that.