Pradeep

a TeamSite blog…

Access DCT Tabs elements using FormAPI January 29, 2007

Filed under: TeamSite — Pradeep @ 9:06 pm

I have a situation where we are using tabs within the DCT’s. Here is my sample structure of the DCT.

root-container combination=”and” name=”press” location=”press”>
tab name=”Presentation”>
container name=”header” label=”Header” location=”header” min=”0″ max=”3″ default=”0″>
item name=”h1″ pathid=”h1″ label=”Heading”>
database data-type=”VARCHAR(100)” />
text required=”t” maxlength=”100″ />

I do have other tabs within the DCT. Now the problem. I’m trying to set the visibility of item h1 using FormAPI. The script is shown below

IWDatacapture.getItem(“/press/Presentation/header/h1″).setVisible(true);

When I try to access this item, it throws
“IWDatacapture.getItem(“/press/Heading/head/h1″) has no properties”

When I remove the container and try to access this item h1, it works fine.

Solution:

Reference the container number

Old Code
IWDatacapture.getItem(“/press/Presentation/header/h1″).setVisible(true);

Modified Code
IWDatacapture.getItem(“/press/Presentation/header[1]/h1″).setVisible(true);

 

TeamSite FronOffice Permission Issue January 3, 2007

Filed under: TeamSite — Pradeep @ 7:35 pm

After installation of Front Office on TeamSite 6.7.1 when I configure the TFO client on the default store, it works fine. When I add a second store to the TFO server and try to configure the client, it throws a “Permission Denied” error. After analysis I found that you need to create a network share for the store that needs TFO enabled. Though most administrators don’t share the folders. No options left.

Note: After installation of TFO server reboot your machine, because even the default store throws permission error.

 

OpenDeploy Fails to Start – ERROR – SQLException: User not found: SA December 4, 2006

Filed under: TeamSite — Pradeep @ 7:10 pm

Wondering what if you get this line of error in your OD logs. Navigate to OD_HOME\db
and ensure that schedDB.script has this piece of line on it.

CREATE USER SA PASSWORD “” ADMIN

If it doesn’t, delete/rename schedDB.properties to .bak and then restart OD service. This will resolve the error. This error is possible when the schedDB.script will is corrupted.

 

TeamSite DCR loads with first section expanded June 22, 2006

Filed under: TeamSite — Pradeep @ 11:33 am

When creating a new DCR form with <container> element, the first <item> below this would be expanded by default. Even though combination=”or” is specified, the first section comes expanded. The solution for this to specify default=”0″.

Eg. <container name=”xxx” combination=”or” default=”0″>

 

Teamsite Preview prompting for IIS authentication March 10, 2006

Filed under: TeamSite — Pradeep @ 8:03 am

After installing Teamsite 6.5 on Win2k3, when trying to preview .html or .asp pages with IIS, IIS was prompting for authentication. Getting to the root of the problem found that the TSIMP_hostname userid password didn’t match with the one specified in the IIS directory security. Reseting the password and specifying the same in IIS made it work.

 

Internet Explorer 6 SP1 – KB905915 fails TeamSite ContentCenter to load in IE February 13, 2006

Filed under: TeamSite — Pradeep @ 3:05 pm

The recent patch for IE 6 (KB905915) was released by Microsoft. After the patch installation, the TeamSite UI fails to load with IE, throws javascript errors(Object not defined) and loads a blank page. This issue is addressed in IE MSDN blog. Reason is although listed, uninstalling or removing the registry key listed in the blog, doesn’t seems to resolve this issue. Requesting developers/admins to watch out for this bug.

Technorati Tags:

 

TeamSite 6.5 Eventsubsystem Manual Install February 2, 2006

Filed under: TeamSite — Pradeep @ 12:56 pm

To configure MSSQL server as the database for event subsystem, you need to perform the following steps:

* Create a database schema using create_sqlserver.sql file located under c:\iw-home\eventsubsystem\conf\ddl directory
* Copy the jar files, mssqlserver.jar, msutil.jar, and msbase.jar, from the MSSQL server lib directory to the c:\iw-home\eventsubsystem\lib directory
* Edit the registry key to include the path of the JDBC driver file: \\HKEY_LOCAL_MACHINE\SYSTEM\Current Control\Services\iweventsubd\parameters\JVM Option Number 0
* Delete the events.lock file if it is located under the iw-home\eventsubsystem directory
* Make the following changes in the jmsconfignew.xml file located under iw-home\eventsubsystem\conf directory
* Restart the event subsystem service.

 

Internal JNI Error While Logging into TeamSite 6.5 February 1, 2006

Filed under: TeamSite — Pradeep @ 8:05 am

You may sometimes receive an Internal JNI Error while trying to login to TeamSite. To resolve this error, you need to do the following;

1. Rename the libeay32.dll file under C:\WINNT\system32 directory.
2. Copy the libeay32.dll from C:\iw-home\sharedll to C:\WINNT\system32 directory.
3. Run iwreset -a to restart all the services.

You may now be able to successfully log into TeamSite.

Technorati Tags:

 

TeamSite 6.5 GroupTask Permission Denied January 30, 2006

Filed under: TeamSite — Pradeep @ 8:35 am

When we migrated from W2K to W2K3, we had to migrate the backing store of TeamSite. Everything went to well, but sooner we realised that we weren’ able to take ownership of existing workflows.
New workflows created were as smooth as “Sandpiper”. During debugging sessions we realised that the job xml was pointing to the old server

We had to run the iwaddtaskgroup “group name”. Later everything started working fine.

Technorati Tags:

 

Teamsite 6.5 Licence Issue October 5, 2005

Filed under: TeamSite — Pradeep @ 12:52 pm

Today during my first TS installation, I came across a few issues after installation.
1) I had a dynamic IP address on my machine, which Teamsite doesn’t allow. So I had to change to manual
2) Licence key was invalid, I checked up \Teamsite\install\tsisvalid.log and tslicinfo.log, the problem was I machine didn’t had a domain, so during licence generation I had mentioned the domain name same as machinename. So with that combination Teamsite generated a licence key casuing problems. I had give NoDomainName in the domain-name field.

Shaamzaam it started to work. Cool isn’t it….

(more…)