-
Page pre-controller is getting called on form submit
Hi I have implemented a controller call on a form submit. Weirdly a page pre-controller configured on the same page is also getting called on the form submit. is this normal or am i missing something? if it is then is there a way to avoid the pre-controller call. Regards Mohit
-
How to create variable workflow and task names?
Hi DevNetters - When writing a .wft workflow, is there a way I can assign a variable as part of the workflow name or task names? I pull the branch name into the ${UpperBranchName} variable at the top of the workflow and then would like to have that variable become part of the name of the workflow and the workflow tasks.…
-
Problem with cgi wrapper
Hi, I have an upload button in my DCT which uses a cgi script to render a upload window through which user can browse to local desktop. The popup window has a submit window, on submit it calls another cgi which helps to upload the chosen asset to Teamsite. This functionality works perfectly in windows but it doesn't work…
-
SitePublisher shared resources -javascript/css
I added my javascript and css files to the default.site, but they are not working. please help ps ---(they are enabled)
-
cannot import FLVs from TeamSite into MB - error
tried via a mediabin button in the templates, then thru a simple file > import from mediabin > pick a *.flv. movs,avis, jpgs, etc all import fine. Root cause:[indent] java.io.FileNotFoundException: http://cscmsadm02/transferfolderws/mbdir_2078508444/aid_jasonkauzlarich_gd3.flv at…
-
Moving to next task in custom Java code
Anybody know what are the possible ways to move to the next task in your custom Java class? The two ways I know would be to either know what the name of the Flow (transition) where you can use the transistionTo method. The other way I know is to know the name of the next task, then you can loop through the task to find the…
-
Extending user profile rules attributes
I extended the user profile and added several new attributes. Now I want to use these new attributes when adding new segments and/or targeting rules. I searched all TeamSite/LiveSite docs and did not see any technical topics that would help me. Could some one point me to a doc or tutorial? I am on release 6.7.2 sp1 Regards
-
Intermittent Slow Performance
TS 6.7.2 with OD 6.1.0 Platform: 32 bit Windows Server 2003 Enterprise SP1 with Physical Address Extension Hardware: Intel Xeon X5355 @ 2.66 Ghz, 32 GB RAM (artificially limited to 4 GB right now so we can take kernel/user memory dumps) Our issue is that we have slowness where the UI will seem to stop, and mostly,…
-
Teamsite Upgrade to 671 and UI does not come up
I am getting following error messages after upgrading to Teamsite 6.7.2 Upgrade by itself was succesful and I can open the Y drive on command prompt . The error message is below. message /iw-cc/command/iw.ui description The requested resource (/iw-cc/command/iw.ui) is not available. Environment: - Windows 2003 SP2 -…
-
SPARs Vs Open Deploy
Hi Guys, I wanted to poll this group for the best practices around deploying sitepublisher content (Components, templates, DCTs, iw-resources, sites) from one Teamsite environment to another. I tried creating spars and was not successful with this approach, when i have components and templates it works fine but if i…
-
How do I disable "Select Next Action" in ccstd after edit an dcr
Hello The version I use is Teamsite 6.7.2. I am wondering that is there a way to disable the "Select Next Action" page(as the attached 2.jpg) after editing/creating the dcr and click the "Next" button(as the attached 1.jpg). In order to avoid the need for the user to click extra unnecessary steps, I would like to totally…
-
Rendered components are stick in Firefox using table render mode
Just modify the template match "table" in the layout.page.xsl like this (in fact add a nbsp in the TD tag) <xsl:template match="table"> <!-- Spacer Table --> <xsl:if test="@margin-left > 0"> <table cellpadding="0" cellspacing="0" border="0" style="display:inline;float:left;"> <tr><td…
-
Read properties file in preview mode
Hi I have a page with a component which has an External configured with it. This external code tries to read a .properties file which it is able to read in runtime, but fails to do so in preview mode and fails. I have kept my .properties file in the \httpd\webapps\iw-preview\WEB-INF\classes. Any ideas Mohit
-
DCR pagination
Hi All, I have product dcr which takes **** lot of time to load due to multiple time connections with database through inline cmd to fetch the values and populating the dcr. Can i convert the single page dcr in multiple page so that loading time actually reduces....? Thanks Manu G
-
DCR pagination
Hi All, I have product dcr which takes **** lot of time to load due to multiple time connections with database through inline cmd to fetch the values and populating the dcr. Can i convert the single page dcr in multiple page so that loading time actually reduces....? Thanks Manu G
-
Forward to another page using ContextRedirectForwardAction
Hi I have a requirement wherein have to forward a request to another page and in that page's external i need to get some object set by the caller page. i do not want to use session scope. I tried to use ContextRedirectForwardAction implementation with the relative path and fullRedirect flag set to false. But i am always…
-
TeamSite Memory
We migrated to a new server which has 32G of memory and when we run perfmon counters our server doesn't appear to be using any memory above 4G. Is there a setting to tell TeamSite there is more memory on the server? We do get some server resources are low but the memory on the server is not being pegged at all. This is a…
-
Problems with convertings RTFs to PDFs using Content Transformation services
Server OS: Solaris 10 Teamsite : Version 6.7.2 Opendeploy : Version 6.2.x Content Transformation services installed on the same machine. We are in the process of setting up Content Transformation Services to convert RTFs to PDFs using a perl script. The sequence of events is as follows: 1. Access generates an RTF format…
-
Renaming pages breaks the ".page <=> Site Map" association (if you don't have perms).
---------------------------------------------------------------- TeamSite/SitePublisher 6.7.2 LiveSite 3.1 Solaris 9 ---------------------------------------------------------------- Hi folks, I created a support ticket for this, but unfortunately Iwov is saying that there’s no fix. They’re filing a defect with engineering.…
-
groups in available_templates.cfg
Hi all, We have an option to configure access to each template listed in available_templates.cfg based on groups.... Do these groups are groups created via Teamsite Admin tab or these are basically unix groups created from backend? Thanks Manu G
-
Cannot run iwmodelc
Hi, We are running TeamSite 6.7.2 on Windows Server 2003, and trying to invoke a Workflow Modeler job from the command line, using the following command: iwmodelc -d "My Workflow" /default/main/MyBranch/WORKAREA/MyWorkArea The command returns the following error: Error: Model My Workflow is not allowed for the user system…
-
NullPointerException when running XSLTransformer
I have implemented a URL external task in Java (using CSSDK) that performs an XSL transformation. The code is as follows: *BEGIN CODE import javax.xml.transform.Transformer; import javax.xml.transform.TransformerFactory; ... StreamSource transform = new StreamSource(xslFileInputStream); TransformerFactory tf =…