Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. prantlf

    ECM API jar?

    This class comes from the LES WS proxy. You needn't look for a jar; use your favourite Java IDE to connect to the Authentication Service WSDL and the necessary proxy classes will be generated. --- Ferdinand Prantl
  2. prantlf

    Intranet site via sharepoint from outside

    You will need a reverse proxy. People from internet obviously cannot access your intranet; making some resources public is usually done by RP servers. You should have a look at SP licensing because running a SP server in internet requires a different license. But I don't knwo how serving just a...
  3. prantlf

    Running xsl:include in Livelink

    The URL you use in xsl:include would have to allow anonymous access. The XSLT processor doesn't necessarily run in an authentificated context (like handling CSS resources on your page in the browser). It is likely that it gets the login page or 403 instead of the XSL fragment. You can try to put...
  4. prantlf

    Livelink builder font size

    You can try to boot Windows to the Safe Mode Command Prompt. You see only command line console, Windows Shell UI does not get initialized and you may be lucky with replacing files like fonts in the Windows directory. If the files are still irreplaceaple you can book other OS capable of writing...
  5. prantlf

    Retaining file creator/owner information during migration using GCI Powertools and Object Importer

    There is another OT product - File System Archiving (FSA). I'm not sure if it can retain created and modified dates but you can ask about it. Generally, I'm not fan if someone wants to set properties like creator, modifier, created and modified dates. They are system properties used internally...
  6. prantlf

    Preserving creation date of MSG files during archiving.

    I would avoid tampering with the system attributes like the creation time and the last modification time. At least the first one can be changed by Oscript but the second one is maintained automatically by Livelink. You can change neither of them by the EWS API, for example. If you need to make...
  7. prantlf

    What is the best way to move folder/files from Livelink to Sharepoint?

    Appu is right, OT develops and sells a product for the integration of SP with LL - CLM Services for SharePoint (CLMSP, CLM = Content Lifecycle Management). It is for customers that run both SP and LL and want to access LL data from SP or copy/move/link/search the data between SP and LL in...
  8. prantlf

    Accessing Livelink via script language

    One idea could be to use the .NET LAPI via CCW in VBScript. However, I doubt that the tlbimp would generate scripting-friendly interfaces. A ready-to-go product LLCOM seems to be a good alternative, you will save time. Alternatively, you need not integrate the entire LAPI. You can also define...
  9. prantlf

    LiveLink authentication from Windows clients using web services

    If you want to get the impersonation running, first you have to login (call AuthenticateUser) as a user who is allowed to impersonate someone else - Admin, for example. Then call ImpersonateUser with the user you want to perform the operation as. But you have to store the Admin's password in...
  10. prantlf

    using LAPI CreateVersion to import docx/xlsx files - are corrupted

    The code does not show any clue. You wrote that the contents of the files "before" and "after" is the same. What is the difference between the files then? -- Ferda Prantl Ferdinand Prantl
  11. prantlf

    Can i get the contents of a compound document with LAPI?

    ListObjects gets children of compound documents the same way like it does for folders (or other containers). You can use XMLExport to get the children too. The description of the methods is in the LAPI SDK. ListObjects: VolumeID=..., NodeID=..., ViewName='DTree' XMLExport: NodeID=...
  12. prantlf

    using LAPI CreateVersion to import docx/xlsx files - are corrupted

    It sounds strange. You could try something more to find out where the problem really is : * Test with the Jaa and C++ LAPI. Maybe the problem is specific to the .NET port? * Test with both the SQL storage and the EFS. Maybe the file system storage works? * Rename the file. Maybe there is a...

Part and Inventory Search

Back
Top