-
Same deployment different paths
I know I can do this. Do I need to do a fanout ? deploy from WA to server 1 /patha and server2 /pathb I tried: <target > <targetFilesystem area="/patha" /> <replicationFarmLink > <external name="SERVER1" /> </replicationFarmLink> </target> <target > <targetFilesystem area="/pathB" /> <replicationFarmLink > <external…
-
view thumbnails of large images via browse element ?
Simple DCR, using this: <item name="image" pathid="image"> <label>Image</label> <description>Insert the image</description> <browser required="t" initial-dir="/images" ceiling-dir="/images" extns=".jpg,.gif,.JPG"/> </item> If I browse a thumbnail (10-20KB) I see the image in the little window. However when I browse large…
-
TS 6.7 install failure
Solaris 9 was running 6.7 Beta now trying to move to 6.7 got this: The following error occurred. The installation will now quit. ============================================================= Product TeamSite Module "cssoapsrvr" failed at phase IW_INSTALL_MODE_PREINSTALL with the following errors: A mandatory Module…
-
making an index page
OK, doing the typical index of sub pages made with templates. Easy enough, I know how to create the page. What I have not decided is what is the best way to invoke the creation of this page ? I have though of the following ideas, just curious what other people thought: Invoke during workflow, when a DCR is submitted, then…
-
customizing cc_std new_forms
Any idea how to customize the new_form portlet for cc_std ? Customer wants to restrict authors to only 1 new form, but they can edit current ones. Got it working in cc_pro. But I cannot figure out how to limit what forms are shown in the new_form portlet. Actually hardly found any reference to the new_form in the reference…
-
ideas for no new templates (except 1 type) for Authors ?
So I have 15 different templates. Requirement is On 14 of them, author can only edit existing. On the 15th, the can create new. TS 6.5, Win 2K Ideas ? My two thoughts: set (via submit.cfg) permissions on the data dir to a second group. On Unix, then you could change the files, but not create new. or Remove New Form, put it…
-
Receiver timeout ?
I am seeing timeouts refering to the sender, but not the receiver. TS Win2K 6.5, OD 6.0.1 Rec. AIX 6.0.1 OD-Home was full and jobs hung, eventually terminated on the server. The receiver still shows them active. Trying to get root access to restart OD. Any other ideas ? iwodserverreset will not work with active…
-
DNR on AIX server
Any tips, pointers, RTFMs appreciated Got a DNR Trying to run this script: #!/usr/bin/perl use lib "/usr/OpenDeploy/OpenDeployNG/solutions/perl"; use IWXML; my @list = (); my($xml) = IWXML::GetLogDataFromSTDIN(); my(@list) = $xml->GetSucceededFiles(); ... /usr/bin/perl check.pl Can't load…
-
WF to submit only selected files
Interestingly enough, I got this to work (without really trying). I added a new button to the GUI, submit direct, which is defined as such: HTML Code: [html] url="/iw-cc/command/iw.ccpro.new_job?iw_file=web/emer_deploy.wft" id="iw.ccpro.submit_direct.link" operationID="custom.opID.direct_deploy"…
-
WF to submit checked files only
Interestingly enough, I got this to work (without really trying). I added a new button to the GUI, submit direct, which is defined as such: [html] description="This will send it out" url="/iw-cc/command/iw.ccpro.new_job?iw_file=web/emer_deploy.wft" id="iw.ccpro.submit_direct.link" operationID="custom.opID.direct_deploy"…
-
Change button in cc_pro ?
I have been requested to add a new button (or change a button in cc_pro). It is URL addressible. Can I rename a button (like get latest) and point it to my URL ? I have found how to delete it, but not certain how to change. Tips/pointers/RTFMs appreciated Andy
-
Shared workareas and NT and....
Arrgh TS 6.5, Win 2K. My WF does a generate of a DCR (runs as the person who started the WF). After that I want to iwlock the file (as an administrator so the user cannot change the file) MY lock fails D: \iw-home\bin\iwlock "Y:\default\main\Web\WORKAREA\andy\dir\file.html" comment ERROR:00001: Failure in operation Running…
-
Timeout with date/time ?
In old TS, (5.5X) you needed to go calculate the time in seconds until the timeout. 6.5 says you can use the date/time which makes life much easier. Anyone use this ? Andy
-
How does a TPL know what it is generating ?
I am writing a very generic TPL that will do some stuff and run another TPL. The only thing I have not figured out is how the TPL knows if it is generating HTML, JSP, etc. When I ran iwpt_compile and looked at the IPL, i noticed the only thing that has the destination file is in %iw_arg. Not certain how to reference that.…
-
sharing files to sub branches
OK, so I have a main branch, with templates defined, accessable to users from the corp group. THere will also be business unit sub branches. They will use the same DCTs and TPLs but not DCRs. Different branches was the decision for complexity and permissions. Win2003 TS 6.5 So, how can I make the change once to a DCT ? In…
-
click in DCT to view
TS 6.5 Solaris 2.9 Dev server, a user can click on the DCT to view the object and the browser shows the DCT. On prod you get the XML cannot be displayed. DOCTYPE datacapture SYSTEM "datacapture5.0.dtd" in the beginning of trhe DCTs datacapture5.0.dtd is on both servers in iw-home/local/config iw.cfg is the same (except…
-
Command iw.ccpro.list_directory not found in the c
TS 6.5 SP2, Solaris I was mucking with a custom menu item. Then this started happening whenever I was trying to read a dir with cc_pro - Command iw.ccpro.list_directory not found in the command descriptors. I have restored the working ui_custom.xml from a known good server and ran make_toolkit plus iwreset no luck Called…
-
Custom menu items, who do they run as ?
I have taken the showenv.cgi and placed it into a custom menu item in TS 6.5 Solaris. I made a change to touch a file /tmp/foo When I do that the ownership is iwui and nobody. I thought custom menu items would impersonate the user and follow my group and user info ? IIRC, it worked that way in 5.5 ANdy