Interwoven integration

We will be using WLPS2.0.1 with Interwoven 4.2 and Oracle 8i
on a new project.
It's unclear after reading "Installing and Configuring the WLCS/Interwoven
TeamSite Interface" if the procedure described there results in the
deployed content being indexed by the WL DMS - as if the loaddocs executable
had been run.
Thanks for your help,
Sreedhar

When using the TeamSite piece, you just deploy as normal via TeamSite. This will
deploy the metadata into the WLCS document tables, just as if you had run
loaddocs; it should also deploy the files to correct location for WLCS.
Greg
Michael Pratt wrote:
We will be using WLPS2.0.1 with Interwoven 4.2 and Oracle 8i
on a new project.
It's unclear after reading "Installing and Configuring the WLCS/Interwoven
TeamSite Interface" if the procedure described there results in the
deployed content being indexed by the WL DMS - as if the loaddocs executable
had been run.
Thanks for your help,
Sreedhar

Similar Messages

  • WLPS - Interwoven integration

    We are trying to integrate WLPS and Interwoven here. We have a scenario
    where a particular content can apply to multiple countries. So my content
    HTML file will have atrributes like :
    <META name="type" content = "news">
    <META name="Country" content="SINGAPORE">
    <META name="Country" content="HONGKONG">
    <META name="Country" content="TAIWAN">
    My Question is :
    1. Academic Question - Is this a legal syntax in html . (I believe it is as
    IE does not complain and bother about meta tags)
    2. Can WLPS be configiured to support this scenario ?
    I see this constraint for WLCS_DOCUMENT_METADATA in SQL which may mean it
    does not support it OOB .
    ALTER TABLE WLCS_DOCUMENT_METADATA
    ADD CONSTRAINT WLCS_DOCUMENT_METADATA_PK Primary Key (
    ID,
    NAME)
    Also when I run dbloader , it only loads 1 record which is Country = Taiwan
    I think it overwrites this record bcse of the constraint.
    3. What are the implications if I add ID, NAME and VALUE as PK constraint
    4. Will my rules engine work if I make this change ?
    5. Any documenation available for this type of changes ?

    Hiyas,
    To shed some light, from a different point of view ...
    We used to use SQLServer7, which did not support constraints.
    Therefore, there was no constraint between WLCS_DOCUMENT and
    WLCS_DOCUMENT_METADATA. And we would will-nilly delete data
    from either table. So altering the schema, should have no
    adverse effect.
    Further, if you analyse the sql trace of a content query,
    you'll see that it looks something like -
    select [wlcs_document fields]
    from wlcs_document, wlcs_document_metadata
    where (select [wlcs_document_metadata fields]
         where name="country"
         and value="Singapore")
    and (another meta-data sub-select)
    and (yet another meta-data sub-select)
    So, you see that in a straight content query, you will not run
    into trouble either.
    The caveat, is that other constructs, such as Ebiz-Control-
    Centre, or even the caching may not like multiple metadata
    pointing to the same content item.
    Conceptually, there is nothing wrong with having multiple
    metadata pointing to a single content item. So, in theory, it
    should be ok.
    dk-
    In article <[email protected]>,
    [email protected] says...
    >
    Hi Sanathana,
    We are engaged in a similar excercise in my place of work and
    have arrived at the same conclusion re the primary key constraint for the multi-valued
    data.
    Have you tried to implement this yet? We were concerned re any possible adverse
    effects that may arise from altering the WLPS DB schema.
    How did you get the data from Interwoven into the WLPS DB in the first place -
    did you use DataDeploy to populate the WLCS_DOCUMENT_METADATA table?
    My other point is that I would not make any judgments on the legality of HTML
    syntax based on what IE will or will not accept.
    IE, rightly or wrongly, will construct a page from a wide variety of possible
    tags and formatting. Netscape on the other hand actually bothers to implement
    the spec and therefore will not accept misformed or poor syntactical HTML documents.
    Regards,
    James
    "Santhana Shri" <[email protected]> wrote:
    We are trying to integrate WLPS and Interwoven here. We have a scenario
    where a particular content can apply to multiple countries. So my content
    HTML file will have atrributes like :
    <META name="type" content = "news">
    <META name="Country" content="SINGAPORE">
    <META name="Country" content="HONGKONG">
    <META name="Country" content="TAIWAN">
    My Question is :
    1. Academic Question - Is this a legal syntax in html . (I believe it
    is as
    IE does not complain and bother about meta tags)
    2. Can WLPS be configiured to support this scenario ?
    I see this constraint for WLCS_DOCUMENT_METADATA in SQL which may mean
    it
    does not support it OOB .
    ALTER TABLE WLCS_DOCUMENT_METADATA
    ADD CONSTRAINT WLCS_DOCUMENT_METADATA_PK Primary Key (
    ID,

  • Adobe Reader 9 DMS integration issue

    Hi all
    We're trying to deploy Adobe Reader 9 to 1800+ users but having trouble with the integration with our Document Management System (Interwoven) in that the users have to manually open, close then re-open Reader before integration works. We'd like to automate this if possible within the existing batch file. We've tried the following command lines:-
    :: Install Adobe Reader 9
    msiexec /i \\server\share\AdobeReader9\AcroRead.msi TRANSFORMS=\\server\share\AdobeReader9\ar9.mst /qb! /norestart ALLUSERS=1 /l*vx C:\AdobeReader9.log
    :: Copy IManAcrobatReader.api to the local machine to re-enable Interwoven-integration
    mkdir "C:\Program Files\Adobe\Reader 9.0\Reader\plug_ins\Interwoven"
    xcopy /Q /R /Y \\server\share\AdobeReader9\IManAcrobatReader.api "C:\Program Files\Adobe\Reader 9.0\Reader\plug_ins\Interwoven"
    :: Update NRTDDE.INI to amend path to new Adobe Acrobat executable
    xcopy /Q /R /Y \\server\share\AdobeReader9\NRTDDE.INI "C:\Program Files\Interwoven\WorkSite"
    :: \\server\share\AdobeReader9\subinacl /subkeyreg "HKEY_LOCAL_MACHINE\SOFTWARE\Adobe" /grant=everyone=F
    :: Open then close Adobe Reader 9 to register Interwoven-integration
    "C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe"
    taskkill /F /IM AcroRd32.exe /T
    Adobe Reader 9 launches ok but will not close, the taskkill process does not appear to run for some reason.
    Any ideas why not please?
    Thanks
    Scott

    AutoIT worked a treat.
    I used the following code:-
    ; Open Adobe Reader 9
    Run("C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe")
    ; Close Adobe Reader 9
    WinWaitActive("Adobe Reader")
    WinClose("Adobe Reader")
    Then compiled as .exe and added to my script. Hope this helps others.
    Scott

  • Integration of Interwoven with Sun ONE PS6

    Hi,
    where can i get the details of Sun ONE PS6 integration with Interwoven TS.
    I need low level details(like API details).
    Any API's available for this?????????????
    regards
    Arun

    Hi jay
    Thanks for your Information
    We have our clamav library (libclamav.so) installed in following dir
    root@--------- # pwd
    /usr/local/lib
    root@--------- # ls
    libbz2.a libclamav.la libclamav.so.1 libexpatw.a libexpatw.so libexpatw.so.1.5.0 libclamav.a libclamav.so libclamav.so.1.0.17 libexpatw.la libexpatw.so.1 pkgconfig
    this is my msg version
    root@-------------- # ./imsimta version
    Sun Java(tm) System Messaging Server 6.2-3.04 (built Jul 15 2005)
    libimta.so 6.2-3.04 (built 01:43:03, Jul 15 2005)
    SunOS ndlbbpa1-a-fixed 5.9 Generic_118558-28 sun4u sparc SUNW,Sun-Fire-V240
    As my organization told us to do the msg scanning through conversion channel
    So here's my setup for that
    mappings file
    CONVERSION
    in-chan=tcp_auth;out-chan=tcp_*;convert yes
    in-chan=tcp_auth;out-chan=tcp_*;convert yes
    imta.cnf file
    ! conversion
    sourcespamfilter2optin virus
    conversion-daemon
    option.dat file
    spamfilter2_config_file=/data/sunjava/Sunmsg/config/clamav.opt
    spamfilter2_library=/usr/local/lib/libclamav.so
    spamfilter2_optional=1
    Spamfilte2_string_action=data:,addtag "[PROBABLE SPAM DETECTED]";
    1) can you tell me the options which i have to specify in my
    clamav.opt file? if possible give me example file.
    2) I think the above setup is correct and if i have to made any
    changes please let me know?
    3) In your option.dat file you have specified
    sourcespamfilter2 sourcespamfilter1optin spam
    here you have not specified "virus" for sourcespamfilter2 is it correct ??
    Thanks in Advance
    Jai

  • Need info on integration of Interwoven with portal

    Hi,
    Can somebody throw me some info on integration of interwoven
    content express with weblogic portal 4.0.
    1.The content express version is 1.1.0
    2.The product to be integrated is Weblogic Portal 4.0
    Thanx in advance
    Prashanth Bhat

    Hello,
    You can connect sap to .net using .net libraries.
    Kind regards
    Ash Thomas
    Sap Consultant
    <a href=http://www.ashpeople.com>Ash People, Sap Consultants & Sap Consultancy</a>
    <a href=http://www.ashpeople.com>www.ashpeople.com</a>

  • Integrating NetWeaver Portal and Interwoven's TeamSite

    Hi All,
    I have to integrate NetWeaver with Interwoven Web Content Management tool named TeamSite.
    Can somedody pass some information for the integration of both(NetWeaver Portal and Interwoven's TeamSite).
    Regards,
    Srikanth

    << Do not post the same question across a number of forums >>

  • Integration with Interwoven Teamsite 6.1

    Hi,
    I am looking for resources for configuration of WLS Portal 8.1 with Teamsite 6.1.
    Regards
    - K

    "psk" <[email protected]> wrote in message news:40f62d81$1@mktnews1...
    I am looking for resources for configuration of WLS Portal 8.1 withTeamsite 6.1.
    Sign up for the Interwoven Devnet (http://devnet.interwoven.com) and search
    the site for Weblogic. They have a PDF which describes all of the
    integration option s available.
    Gerald

  • [Fwd: Re: Integration with CM Systems ...]

    -------- Original Message --------
    Subject: Re: Integration with CM Systems ...
    Date: Thu, 10 Aug 2000 15:47:21 -0600
    From: Cindy Eldenburg <[email protected]>
    Organization: BEA Systems, Inc.
    Newsgroups: weblogic.developer.interest.personalization
    References: <398f3c55$[email protected]>
    Prashanth,
    The are a lot of differences in what the Documentum does as compared to
    Interwoven Teamsite. Comparing these items is like comparing apples and
    oranges.
    Normally in Teamsite, during the document capture process, a Teamsite
    user
    categorizes documents by specifying the documents' metadata attributes
    using
    Teamsite templates. Once the documents are captured, the Interwoven
    OpenDeploy
    workflow mechanism is used to publish the content to the WLCS database.
    Unlike Interwoven Teamsite, Documentum products manage the metadata and
    documents in their own repositories. Thus, with this integration, WLCS
    queries
    the Documentum system at runtime via a specialized JDBC driver supplied
    by
    Documentum. Once the Documentum user captures a document and tags it
    with
    metadata attributes, the document may be immediately available to WLCS
    (depending on administrative options in Documentum, such as whether
    staging is
    involved).
    Please contact your sales person for a more detailed overview of what
    these two
    products do and how they interface to WLPS.
    Cindy Eldenburg
    Prashanth A wrote:
    Can anyone explain to me clearly what does Weblogic mean when it says it
    integrated with Interwoven and Documentum. Is there any difference in the
    way it interacts with Interwoven as compared to Documentum. As in a run-time
    interaction with Documentum whereas a static integration with Interwoven

    Prashanth,
    The are a lot of differences in what the Documentum does as compared to
    Interwoven Teamsite. Comparing these items is like comparing apples and
    oranges.
    Normally in Teamsite, during the document capture process, a Teamsite
    user
    categorizes documents by specifying the documents' metadata attributes
    using
    Teamsite templates. Once the documents are captured, the Interwoven
    OpenDeploy
    workflow mechanism is used to publish the content to the WLCS database.
    Unlike Interwoven Teamsite, Documentum products manage the metadata and
    documents in their own repositories. Thus, with this integration, WLCS
    queries
    the Documentum system at runtime via a specialized JDBC driver supplied
    by
    Documentum. Once the Documentum user captures a document and tags it
    with
    metadata attributes, the document may be immediately available to WLCS
    (depending on administrative options in Documentum, such as whether
    staging is
    involved).
    Please contact your sales person for a more detailed overview of what
    these two
    products do and how they interface to WLPS.
    Cindy Eldenburg
    Prashanth A wrote:
    Can anyone explain to me clearly what does Weblogic mean when it says it
    integrated with Interwoven and Documentum. Is there any difference in the
    way it interacts with Interwoven as compared to Documentum. As in a run-time
    interaction with Documentum whereas a static integration with Interwoven

  • Integration with CM Systems ...

    Can anyone explain to me clearly what does Weblogic mean when it says it
    integrated with Interwoven and Documentum. Is there any difference in the
    way it interacts with Interwoven as compared to Documentum. As in a run-time
    interaction with Documentum whereas a static integration with Interwoven

    Prashanth,
    The are a lot of differences in what the Documentum does as compared to
    Interwoven Teamsite. Comparing these items is like comparing apples and
    oranges.
    Normally in Teamsite, during the document capture process, a Teamsite
    user
    categorizes documents by specifying the documents' metadata attributes
    using
    Teamsite templates. Once the documents are captured, the Interwoven
    OpenDeploy
    workflow mechanism is used to publish the content to the WLCS database.
    Unlike Interwoven Teamsite, Documentum products manage the metadata and
    documents in their own repositories. Thus, with this integration, WLCS
    queries
    the Documentum system at runtime via a specialized JDBC driver supplied
    by
    Documentum. Once the Documentum user captures a document and tags it
    with
    metadata attributes, the document may be immediately available to WLCS
    (depending on administrative options in Documentum, such as whether
    staging is
    involved).
    Please contact your sales person for a more detailed overview of what
    these two
    products do and how they interface to WLPS.
    Cindy Eldenburg
    Prashanth A wrote:
    Can anyone explain to me clearly what does Weblogic mean when it says it
    integrated with Interwoven and Documentum. Is there any difference in the
    way it interacts with Interwoven as compared to Documentum. As in a run-time
    interaction with Documentum whereas a static integration with Interwoven

  • Do SunONE Portal Server 6 supports Interwoven????????????????

    Hi,
    I have installed Sun ONE portal Server 6. In the ReleaseNotes , it is mentioned that SunOne PS6 doesn't support Interwoven, Tarantella and Vignette. But in some sites it is mentioned that SunONEPS supports these products. Whom should i belive and if Sun ONEPS6 supports these tools, which version of 6 it supports ??????.
    regards
    Arun Aithal

    I suggest you contact Interwoven. They support the integration for Portal Server 3.0.
    Have a look at http://wwws.sun.com/software/products/portal_srvr/portlet_library/interwoven.html

  • Teamsite,  Turbo,  Interwoven people wanted

    Location: Belgium Brussells
    Length: 3mth - 6mth
    Looking for :
    Teamsite 4.5.1 - 5.0.1 with good knowledge of Turbo to assist
    integration to BEA's Weblogic servers. Some or all of the skills
    below.
    Java, XML, EJB, JSP, Weblogic Server, Weblogic Personalization
    Server,TeamSite, DataDeploy, OpenDeploy, Perl, CGI, Oracle,
    SQL-Server, and HTML.
    Interview tomorrow morning. Start 2nd April.
    Rush your resumes ASAP.
    Thanks,

    Anil,
    You need a component called Turbo BEA 2.0 (add on to Teamsite) to get this
    work. I suspect Turbo BEA 2.0 only works on Teamsite 5.0. You may want
    to check your Interwoven contact to confirm this.
    cheers
    Alex
    "anil bhojani" <[email protected]> wrote in message
    news:3bf2b6a7$[email protected]..
    Hi,
    We are using TeamSite 4.5.1 with weblogic personalisationserver(3.5..).Earlier we were using Calio as the personalisation
    component.For this new integration we would be deploying the metadata
    attributes from teamsite into one of the personlisation tables.Just wanted
    to know if any one has worked on it or if there is a documentation on this.
    Anil

  • Interwoven and Weblogic Personalisation server

    Hi,
    We are using TeamSite 4.5.1 with weblogic personalisation server(3.5..).Earlier we were using Calio as the personalisation component.For this new integration we would be deploying the metadata attributes from teamsite into one of the personlisation tables.Just wanted to know if any one has worked on it or if there is a documentation on this.
    Anil

    Anil,
    You need a component called Turbo BEA 2.0 (add on to Teamsite) to get this
    work. I suspect Turbo BEA 2.0 only works on Teamsite 5.0. You may want
    to check your Interwoven contact to confirm this.
    cheers
    Alex
    "anil bhojani" <[email protected]> wrote in message
    news:3bf2b6a7$[email protected]..
    Hi,
    We are using TeamSite 4.5.1 with weblogic personalisationserver(3.5..).Earlier we were using Calio as the personalisation
    component.For this new integration we would be deploying the metadata
    attributes from teamsite into one of the personlisation tables.Just wanted
    to know if any one has worked on it or if there is a documentation on this.
    Anil

  • ATG CMS vs Interwoven Teamsite

    Is there any specific advantages of Teamsite CMS, which we can not implement in ATG CMS?
    Can anyone please share your experience. Why people are going for other CMS systems?
    Thanks,
    MBS.

    A CMS like Interwoven Teamsite is usually required to manage complex content. Without a dedicated CMS, it would be problematic to handle the situation when content is generated/aggregated dynamically through various sources or it is dependent on some other content. A dedicated CMS will provide various authoring, publishing, reporting, integration and other set of utilities and tools. You can imagine how convenient it can be to develop a content with a WYSIWYG type of interface and host of drag-n-drop components. While ATG does have some CMS like functionality e.g. content management, authoring workflow, deployment etc. but it is not a replacement for full-fledged CMS. ATG Content Admin is for the content that you have in ATG repositories. But many a times there will be content which is outside ATG repository.
    Imagine a scenario where you want to define a template page for the product details and promotions. In BCC, you can use an existing JSP as the template which takes the relevant data and other details from ATG repositories. But you have little control over the presentation side of it. So a CMS can be used to define the page using WYSIWYG editor and then export it to be used as JSP template in ATG. Similarly various other content like product details, promotion contents (text and images), product brochure PDFs, static HTMLs, etc. can be defined within CMS and then exported in their original format or as an XML which can then be used in our ATG application.
    Hope this helps.

  • Refresh System Data in Integration Directory PI 7.11

    Hey,
    I have setup a new technical system and a business system in SLD, but now I still can't find it in Integration Directory.
    I knew from the later PI Version, that there was an option to transfer SLD data to integration directory, but now I can't find it
    anymore.
    Can anybody help?
    Thanks!
    Michael

    I have setup a new technical system and a business system in SLD, but now I still can't find it in Integration Directory.
    I knew from the later PI Version, that there was an option to transfer SLD data to integration directory, but now I can't find it
    Tools (or right-click in ID) --> Assign Business System --> follow the wizard...it will assign the business system from SLD to ID

  • What is new AT&T iPhone MMS date? I see integrated messaging feature

    Okay, I heard that this was to happen at then end of Summer, then end of July.
    So what is the new date? I see Integrated Messaging counters in my AT&T profile as of this week.
    Should we expect another update to sync with iTunes to get it working?

    Funny. I'm going to mark this question as answered -and this last post as funny.
    I hope it isn't sarcasm, cause my sarcasm detector runs on Windows 7 and I currently have my VMware Fusion session powered off.
    The heart of my question was really the "integrated message" counter in my AT&T profile. I was hoping to hear others just got it, or don't have it, or when they got it, and they I could magically extrapolate a new MMS rumor date.
    Anyway, I don't have to go to UK (although a good choice), cause Rogers in Canada has MMS already.
    One Mac. One World.

Maybe you are looking for