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 Chriss Miller 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. Syntergy

    Syntegry Bulk Loader Errors

    This error is caused when the value being added for the list type attribute is not one of the values in the attriubute list. If you copied the value from a database table it may be that the value you added had an extra space at the end or possibly there is a case sensitivity issue. If you are...
  2. Syntergy

    WebNode "Menu"

    You will need to be familiar with the Livelink Builder to do this. Given that, the best place to start is to look at the WEBNODE ospace under the Webnode Root:WebNodeAction:FunctionsMenu object. If you put a debug on the FunctionsMenu _SubclassExecute script you will see how a function menu...
  3. Syntergy

    AddUser call does not seem to create personal volume

    I believe you should be using UAPI.CreateUser. I don't see a call to UAPI.AddUser anywhere in Livelink so you probably are using UAPI.CreateUser. Yes, it does create the home directory. If you are using CreateUser you should check the thread.out files to see if there are any error messages...
  4. Syntergy

    Sharepoint & Google Analytics

    You can add GA to most of the pages (not necessarily all, since in SharePoint you can create a "blank" page starting from scratch without picking up any of the default templates) There are a number of template files that you can edit at your own risk (ie ows.js for example) to add what is...
  5. Syntergy

    KeepAlive script

    Madhu, There are Livelink modules available that have very specific URLs that you can call to get specific information. For instance, we have a module called "Syntergy Keep Alive" that will allow you to make calls from your load balancer and what you get returned is either a "true" or "false"...
  6. Syntergy

    ApplyQuery - ObjectId

    You are correct. A folder is Library object. The library objects are the standard object types in Livelink such as documents, folders, projects, etc. I think in the early days of Livelink they used to call the Enterprise workspace the Library. That was the real early days!
  7. Syntergy

    Avoid permission inheritance when copy folders / documents

    In looking at the source code for a copy it doesn't look there are any options to suppress inheriting permissions. You would have to develop a customization. However, you might be able to accomplish what you want using a folder move which doesn't inherit the permissions. When you want to do a...
  8. Syntergy

    Java and LAPI

    To enable logging on the server you do the following: With a web browser navigate to /livelink/livelink.exe?func=admin.index (This is the Administration page) In the Search Administration section of the page select "Configure Debug Settings". On this page set the Debug Level to 1 to get the...
  9. Syntergy

    Java and LAPI

    You can verify if your call is getting to the Livelink server by turning on logging and checking the thread.out files in the opentext\logs directory. It will show the LAPI call coming into the server with the username and some other basic LAPI parameters regardless of if the login is successful...
  10. Syntergy

    Livelink 9.5 - Workflow Notifications

    Here is a good approach to isolating the problem down. When the workflow step becomes ready you check the notifyevents table to see if the notification record is ready to be processed by the agent process. The agent process runs every 5 minutes and sends out the notifications. The following...
  11. Syntergy

    Live Link Login through .NET application

    If you look at the code behind the login request handler which you are going through it has the following comment to explain the redirect page you are seeing: "Send a small html file with a link to the next page just in case the browser doesn't understand the redirection status code, or if...
  12. Syntergy

    Cant open socket on HTTPS using oScript

    Your problem is putting the pStreaming property on the socket. This is to be used only with the "StreamUntil" and "StreamBytesUntil" socket calls. On a normal Socket.Write call with .pStreaming set you get back an empty string. We tried this below and it works fine (HTTP)...
  13. Syntergy

    Error Adding News to Channel

    We looked at the CreateObjectEX code that executes and the 101103 error is returned after a call to "_MergeCatVersionListIntoAttrData" which is manipulating category information. This is followed by a check of required attributes and then the actual node (news item) creation call. If any of...
  14. Syntergy

    Vertical Scaling

    You might check out Syntergy's latest newsletter which has a section on Architecture strategy. http://www.syntergy.com/general/newsletter/livelink_newsletter.html See the article "Does Your Organization Have the Right Livelink® Architecture Strategy?" It's has a very slight sales job but...
  15. Syntergy

    LIve Report Help

    I think this SQL will give you what you want. There are a couple of issues. One is this gives you the number of versions added. I think that is what you really want as opposed to documents in dtree. The other issue is how to just bring back the top ten. Adding "having count(*) > 10" limits...
  16. Syntergy

    Load balanced front end

    We have done quite a bit with performance tuning including setting up load balanced sites. There are two key settings to consider. The first is how the load balancer determines which front end Livelink instance to send a request to. It is hard to say there is preferred approach in a Livelink...
  17. Syntergy

    Need Livelink Help!

    If you are looking for experts in this area Syntergy has people with extensive experience in Livelink development (especially in the areas of migration and module development) and several years integrating SharePoint with Livelink. The best person to contact at Syntergy is Vijay Sharma at...
  18. Syntergy

    How to attach a document to an existing document?

    You can't add a document as an attachment to another document in out of the box Livelink. Perhaps you have a customization that allows this document attachment functionality? You can only add documents to objects that are containers (folders, projects, compound documents, etc.) In Livelink...
  19. Syntergy

    Extract document info from Livelink to enable viewing in external app

    You could create a SQL statement that gives you the document names and a "Fetch" URL to all the documents in Livelink. Someone selecting the URL would have to have access to Livelink and "See" permissions to view documents. Assuming you have an Oracle database supporting Livelink the SQL you...
  20. Syntergy

    XML Export Problem

    Syntergy has an enhanced version of XMLExport/XMLImport that allows you to specify a filename as a parameter. The export is saved to the file so the size of the export doesn't matter. It also allows you to export audit trail information and preserve object ownership on import. Our customers...

Part and Inventory Search

Back
Top