<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress.com" -->
<rss version="0.92">
<channel>
	<title>Pradeep</title>
	<link>http://pradeepd.wordpress.com</link>
	<description>a TeamSite blog...</description>
	<lastBuildDate>Fri, 18 Jul 2008 18:06:44 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Connect to SQL Server from UNIX</title>
		<description><![CDATA[If you are looking for how to connect to SQL Server from UNIX here are few simple steps to configure them
1) First Download n  install the POD

http://search.cpan.org/~vizdom/DBD-JDBC-0.69/JDBC.pod

2) Then you need to  run this JDBC driver as init 3 service. The script is at  /etc/rc3.d/S77spmf

Code of  S77spmf

#!/bin/sh
#
# Start/stop processes required for  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeepd.wordpress.com&blog=25246&post=36&subd=pradeepd&ref=&feed=1" />]]></description>
		<link>http://pradeepd.wordpress.com/2008/07/18/connect-to-sql-server-from-unix/</link>
			</item>
	<item>
		<title>Clear ComboBox in DCT</title>
		<description><![CDATA[Since FormAPI doens&#8217;t have a method to clear the first NULL value in the dropdown, this workaround should work
var cmb = IWDatacapture.getItem(&#8220;/combo&#8221;);
var cmb_options = cmb.getOptions();
if (cmb_options != null) {
for (var i = 0; i&#60;cmb_options.length; i++) {
cmb_options[i].selected = false;
}
cmb.setOptions(cmb_options);
}
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeepd.wordpress.com&blog=25246&post=34&subd=pradeepd&ref=&feed=1" />]]></description>
		<link>http://pradeepd.wordpress.com/2008/07/08/clear-combobox-in-dct/</link>
			</item>
	<item>
		<title>Improve EventSubsystem Perfomance</title>
		<description><![CDATA[If you don&#8217;t really use DataDeploy DAS use can comment out the following file from iw-home/httpd/webapps/eventsubsystem/WEB-INF/iw_bridge_cfg.xml
&#60;logFile name=&#8221;TeamSiteClientDASLog&#8221;
baseLogName=&#8221;/logs/iw/iwevents/TeamSiteClientEvents&#8221;
stateFileName=&#8221;/apps/iw-home/servletd/logs/iwclientDASproxy.properties&#8221;
waitTime=&#8221;30000&#8243;
isDAS=&#8221;true&#8221; /&#62;
&#60;logFile name=&#8221;TeamSiteDASLog&#8221;
baseLogName=&#8221;/logs/iw/iwevents/TeamsiteEvents&#8221;
stateFileName=&#8221;/apps/iw-home/servletd/logs/iwDASproxy.properties&#8221;
waitTime=&#8221;30000&#8243;
isDAS=&#8221;true&#8221; /&#62;
Pradeep
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeepd.wordpress.com&blog=25246&post=33&subd=pradeepd&ref=&feed=1" />]]></description>
		<link>http://pradeepd.wordpress.com/2008/06/19/improve-eventsubsystem-perfomance/</link>
			</item>
	<item>
		<title>ssh without password</title>
		<description><![CDATA[Here is a simple how-to on setting up ssh without password
1) Client%: ssh-keygen2
2) Client%: scp id_dsa_2048_a.pub user@server:/$home/.ssh2/id_dsa_2048_a.client.pub
3) Client%: vi identification and put in this line IdKey id_dsa_2048_a
1) Server%: Login as user
2) If .ssh2 directory doesn&#8217;t exist then create one under $home/.ssh2
3) Server%: vi authorization and put in this line Key id_dsa_2048_a.client.pub
1) Client%: ssh user@Server
This should [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeepd.wordpress.com&blog=25246&post=32&subd=pradeepd&ref=&feed=1" />]]></description>
		<link>http://pradeepd.wordpress.com/2007/11/01/ssh-without-password/</link>
			</item>
	<item>
		<title>TeamSite Import Event</title>
		<description><![CDATA[If you ever want to write some TeamSite triggers on Import Event, the event to capture is not CreateFSE or Lock. It&#8217;s RenameFSE, cos TeamSite before the file isimported create a new filename in temporary location. You need to capture ARGV[6] in your script to get the actual original filename. So in brief
Register the event
iwat [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeepd.wordpress.com&blog=25246&post=31&subd=pradeepd&ref=&feed=1" />]]></description>
		<link>http://pradeepd.wordpress.com/2007/07/16/teamsite-import-event/</link>
			</item>
	<item>
		<title>Preview and Generate Error</title>
		<description><![CDATA[The following error occurs when you try to preview a DCR.
Template Preview And Generate Error:
The following error occured while creating file
/.iwmnt/default/main/InternetMarketing/SystemsIntegrator/WORKAREA/Common/zz_tst_sun_lock:
No such file or directory
The templated file was not generated.
Though you the user is part of the group that owns that directory, you might repeatedly and randomly get this error. Resolution to this, navigate to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeepd.wordpress.com&blog=25246&post=30&subd=pradeepd&ref=&feed=1" />]]></description>
		<link>http://pradeepd.wordpress.com/2007/06/06/preview-and-generate-error/</link>
			</item>
	<item>
		<title>MySQL Eventsubsystem Connection Parameters</title>
		<description><![CDATA[&#60;DatabaseConfiguration&#62;
&#60;RdbmsDatabaseConfiguration


driver=&#8221;com.mysql.jdbc.Driver&#8221;
url=&#8221;jdbc:mysql://$hostname/$database_name&#8221;
user=&#8221;$username&#8221;
password=&#8221;$password&#8221;
maxActive=&#8221;10&#8243;
maxIdle=&#8221;5&#8243;
minIdleTime=&#8221;1800&#8243;
evictionInterval=&#8221;3600&#8243; /&#62;
&#60;/DatabaseConfiguration&#62;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeepd.wordpress.com&blog=25246&post=29&subd=pradeepd&ref=&feed=1" />]]></description>
		<link>http://pradeepd.wordpress.com/2007/04/27/mysql-eventsubsystem-connection-parameters/</link>
			</item>
	<item>
		<title>TinyMCE Configuration</title>
		<description><![CDATA[This link will help you configure TinyMCE
http://devnet.interwoven.com/site.fcgi/techlib/56728
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeepd.wordpress.com&blog=25246&post=28&subd=pradeepd&ref=&feed=1" />]]></description>
		<link>http://pradeepd.wordpress.com/2007/03/31/tinymce-configuration/</link>
			</item>
	<item>
		<title>CC Url for Task Transition</title>
		<description><![CDATA[If you would want your emails to contain &#8220;Task Transition Labels&#8221; like &#8220;Accept&#8221;, &#8220;Reject&#8221;. The standard CCI Url provided by IWOV is not sufficient.  Based on the CC interface you are allowing the user to transition here are the URL&#8217;s to task transition
CC Professional
http://servername/iw-cc/command/iw.ccpro.task_details_transition_task?
done%5fpage=/iw-cc/teamsite/common/refresh%5fparent%5fand%5fclose%5fwindow.html&#38;
transition=Accept&#38;taskid=xxxx&#38;full_redirect=true&#38;do_transition=true 
CC Standard
http://servername/iw-cc/command/iw.ccstd.task_details_transition_task?
done%5fpage=/iw-cc/teamsite/common/refresh%5fparent%5fand%5fclose%5fwindow.html&#38;
transition=Reject&#38;taskid=xxxxx&#38;full_redirect=true&#38;do_transition=true 
Hope this helps.
      [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeepd.wordpress.com&blog=25246&post=27&subd=pradeepd&ref=&feed=1" />]]></description>
		<link>http://pradeepd.wordpress.com/2007/02/13/cc-url-for-task-transition/</link>
			</item>
	<item>
		<title>Skip Metadata Step in CC Standard</title>
		<description><![CDATA[If you want to skip tag step in CC standard add the following line to application_custom.xml
&#60;applications&#62;
&#60;application id=&#8221;ccstd&#8221;&#62;
&#60;param id=&#8221;skip-tag-step&#8221; value=&#8221;true&#8221;&#62;
&#60;/param&#62;
&#60;/application&#62;
&#60;/applications&#62;
PS: This is a documented method available in UITK.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeepd.wordpress.com&blog=25246&post=26&subd=pradeepd&ref=&feed=1" />]]></description>
		<link>http://pradeepd.wordpress.com/2007/02/08/skip-metadata-step-in-cc-standard/</link>
			</item>
</channel>
</rss>
