-
Web Daemon was unable to contact Servlet Engine
It seems that approximately every other reboot of the Windows 2000 SP2 TeamSite 5.5.2SP2a server, I get this error message. Running the script and iwreset does not help. If I reboot again, it often seems to help. I know about the support articles on this issue, but I am wondering if there is any more information - for…
-
Unable to read datacapture.cfg for type {0}.
Our users at another office are getting the following error when trying to create or edit data capture records. "Templating Error Page Unable to read datacapture.cfg for type {0}. Details regarding this error are contained in the servletd error logs." Any ideas.?
-
InterWoven on AIX?
Hi, We r currently running TS on Solaris 5.0.1 (OD 5.1). For some organizational need we may would like to switch over to IMB-AIX. Can any body please explain me, - about your experience of TeamSite on IBM-AIX Platform. - how much difference it makes running TS on Solaris & AIX though both are unix flaovour - is OD-5.6…
-
Restricted get latest
On Teamsite 5.5.2 - Win 2000, we want a setup, where "Get latest" only returns those directories the person who performs the action has access to. Has anyone done this? Is it possible at all?
-
Explanation of "Review Cycles" in VisualAnnotate
If you're writing a custom workflow for VisualAnnotate and you want your snapshots to be divided up by "review cycle", you need to increment the "cycle" job variable after the content contributor has made changes (in workflow speak: add an external task that increments the variable after the "author work" task). Consider…
-
OpenAPI method to generate from a DCR
In short, is there an OpenAPI method to generate an output file from a DCR? Or to run an arbitrary TeamSite command as a given user? We are replacing the workflow instantiator CGI with a JSP which means I can call OpenAPI methods when the job is being created that connect to the filesystem as the user creating the job…
-
Invoking Workflow
Can a workflow be automatically invoked when a new HTML is added to a workarea or an existing HTML is modified by an author?
-
Get latest Configuration
Curently our environment is set-up to overwrite the whole workarea when a "get latest" is done with overwrite on. This means that any files that weren't submitted to staging are deleted from the workarea. I've worked on other implementations of teamsite where a get latest with overwrite only overwrite files that have…
-
FormAPI Help P{lease
Can we use command buttons on a Datacapture template? For Example when a user selects some items in a dropdown list box and clicks a button ">>" , the selected items move into another dropdown listbox?
-
output separate file
I have a simple template and when I generate it I want it to generate a second file to the same folder as the first one, using some of the content I added to the template. Does anyone know how? /j http://jonk.svart.nu
-
FormAPI
Can we use command buttons on a Datacapture template? For Example when a user selects some items in a dropdown list box and clicks a button ">>" , the selected items move into another dropdown listbox?
-
Where does DCR list come from???
In the teamsite gui when a new dcr is selected from the drop-down menu, it presents a list of the directory structure at some point in your site, Where does it read this from. I made a new dir for a new template but when I went to select a dcr the new category wasn't in the list that poppped up! I tried submitting it to…
-
Where does DCR list come from???
In the teamsite gui when a new dcr is selected from the drop-down menu, it presents a list of the directory structure at some point in your site, Where does it read this from. I made a new dir for a new template but when I went to select a dcr the new category wasn't in the list that poppped up! I tried submitting it to…
-
VFE & Font's
Does anyone know of a way that if a user copies and pastes data into a VFE - that I can code it so that the font's I want then appear with that data. Right now when someone pastes data say from Word - whatever font they used is what's showing up in the DCR. I have the publish attributes set to the following: <style…
-
dcr4.5.dtd and search
When using Domino search on a website it appears that the hits on some DCR files upon clicking them resulted in that the DCR dtd file could not be found (the XML inthe DCRs is invalid per XML specifications - i.e. not a full DTD URL spec). What I found was that placing the dcr4.5.dtd file into the interwoven templatedata…
-
FormAPI and Web Service
I call a Web service from within a javascript which is called from a DCT. I use the response to fill an optionlist. It all works fine, except that every time the web-service is called I resive a message saying: "The page is accessing information that is not under its control. This poses a security risk. Do you want to…
-
DataDeploy sets column values to NULL
We have a problem that DataDeploy is erasing other data from our database when we deploy a DCR. We have a table where several of the columns are deployed to and several are not (they are fed from another system). when we do a DD the non DD columns are all set to NULL. This only happens when the 'deployed to' table is not a…
-
Interwoven Instances
Can I run two instances of Interwoven on the same server? If yes, how do I configure it? Thanks.Krishna
-
Inline command
I have been trying to populate a text box using an inline command within my data capture template without success. I've utilised the perl code provided in technote 002152 and added the following line to my dcr: <item name="LastModifiedBy"> <inline command="/iw-home/iw-perl/bin/iwperl.exe /iw-home/iw-perl/bin/user.ipl"/>…
-
Blank Window on Edit CCI
When I use a CCI edit link in an email message, I get two windows - one blank one and one with the templating window. It appears that the only purpose of the blank window is to spawn a new window with no button bars and menus. I think I can get rid of this blank window if I edit IWHOME/httpd/iw-bin/iweditdcr.itml, but I am…
-
Pointer to VisualAnnotate discussion
Hey all, Some people have been discussing VisualAnnotate in the "Suggestion Box" forum. Here's a pointer to that thread. In the future, if you have a question about VA and workflow, pose it here! Link to VA discussion Thanks! michelle Michelle Neuringer Interwoven Engineer
-
Common DB IPL Scripts
I've run into a very interesting issue - it appears I have Oracle installed on two different locations on two different servers Thus I'm using the iwov perl script to connect to a database and need the following enviroment variables: $ENV {ORACLE_HOME} $ENV {Path} $ENV {SystemRoot} does anyone know how I can get these…
-
How do I specify different VFE settings per DCT?
Does anyone have any hints on how to specify different Visual Format settings for each DCT? For example, our "Builders" DCT needs to allow all VFE settings; however, our "News" DCT must restrict some font changes. The problem is that any change to visualformatconfig.xml is global for all DCTs. Has anyone else had this…
-
SP2 : What Happened?
TeamSite 5.5.2 Service Pack 2 for WIndows 2000 does not seem to be available on the support site anymore. Does this mean it is not supported by Interwoven? What are the technical problems with it (I know there was an issue with SYSTEM permissions and iwextattr, but there was a workaround, and some people may have had…
-
FormAPI to determine number of days between dates
Someone sent me a private message asking how to compare two dates in a template (for instance to ensure one occurs before the other). I had done something like this (not sure it's totally accurate): function daysDiff( d1, d2 ) { diffMilli = d2.getTime() - d1.getTime(); return( Math.round( diffMilli / 86400000 )); } This…
-
EasyDeploy?
I see someting called EasyDeploy on the support site today. Anybody have any idea what it is? Readme not too useful.