Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
DD failing while adding new info to xml file
aby_sam
We have an Admin workarea in TeamSite which deploys language.xml file to a language table in the database. This deployment uses datadeploy. When I add the locale Language_ID & Language_En_Name for New Zealand, the deployment fails. However, when I remove the NZ specific information, the deployment is a success.
I 've observed that newly added values obey all validation rules of the table/database. But surprising that it fails.
Any thoughts on this. Find below the dd deployment log. Hope this info is sufficient.
Thu Dec 8 09:35:34 2005 :
----------------------------------------
Thu Dec 8 09:35:34 2005 : /opt/interwoven/iw-home/local/bin/admin_call_dd.ipl
Script started at Thu Dec 8 09:35:34 2005
Thu Dec 8 09:35:34 2005 : PARAMETERS: QA 41266 41272 /default/main/Admin/WORKAREA/AdminWA standard/avl/language.xml
Thu Dec 8 09:35:34 2005 : Taskid: 41272
Thu Dec 8 09:35:34 2005 : DataDeploy CMD (cfg="/opt/interwoven/datadeploy/conf/avl.cfg" area="/default/main/Admin/WORKARE
A/AdminWA" deployment="language" currentdatetime="2005-12-08 09:35:34.000000" db="QA" )
Thu Dec 8 09:35:34 2005 : remote (dev101)
Thu Dec 8 09:35:34 2005 : port (2345)
Thu Dec 8 09:35:34 2005 : result (1)
Thu Dec 8 09:35:34 2005 : result (1)
Thu Dec 8 09:35:34 2005 : Sending command: cfg="/opt/interwoven/datadeploy/conf/avl.cfg" area="/default/main/Admin/WORKAR
EA/AdminWA" deployment="language" currentdatetime="2005-12-08 09:35:34.000000" db="QA" need-result=yes
Thu Dec 8 09:35:34 2005 : result (189)
Thu Dec 8 09:35:35 2005 : socket_read (result=false)
Thu Dec 8 09:35:35 2005 : Socket read result:result=false
Thu Dec 8 09:35:35 2005 : Command return status (1)
Thu Dec 8 09:35:35 2005 : ERROR: Data Deploy Failed see logfile /opt/interwoven/iw-home/local/logs/dd_in_wf.log
Thu Dec 8 09:35:35 2005 : Workflow called back with error: Data Deploy Failed see logfile /opt/interwoven/iw-home/local/logs/
dd_in_wf.log
Thanks in advance
TS 6.0, OD 5.6, DD 5.6, AIX 5.2
Find more posts tagged with
Comments
Adam Stoller
Thu Dec 8 09:35:35 2005 : ERROR: Data Deploy Failed see logfile /opt/interwoven/iw-home/local/logs/dd_in_wf.log
Perhaps you should look at / post the above referenced log file too - as it might shed some additional light on the problem.
--fish
Senior Consultant, Quotient Inc.
http://www.quotient-inc.com
aby_sam
Thats the log I've posted at of my previous note. Thanks!!!
crosstabgroupheader.rptdesign
Adam Stoller
You're saying this is a self-referencing error log?
Or that you posted the other log in another thread in the forum?
The only thing I see from this log (besides the reference) is that apparently there were problems reading from the socket
Thu Dec 8 09:35:35 2005 : socket_read (result=false)
Thu Dec 8 09:35:35 2005 : Socket read result:result=false
This locale stuff you're talking about adding / removing - is that content, metadata, or system environment settings?
I'm not sure I can help too much beyond the asking of the questions - but hopefully someone else will be able to pick up the thread and run with it a bit further if you provide the answers.
--fish
Senior Consultant, Quotient Inc.
http://www.quotient-inc.com
aby_sam
This deployment is for administration purpose only. These values in the language.xml file thats deployed to language table is used for translating contents from us_en to other locale specific langs. Hence this is not part of content, metadata deploy.
Here we 've an avl.cfg file thats used for the purpose of deploying these values to table. Find the relevant part below.
<deployment name="language">
<source>
<teamsite-templating-records
custom="yes"
area-type="os-filesystem"
area="/iwmnt/default/main/Admin/WORKAREA/AdminWA"
options="wide">
<path name="standard/avl/language.xml" />
</teamsite-templating-records>
</source>
<destinations>
<database use="$db^" delete-tracker="yes" use-db2-app-driver="yes">
<dbschema>
<group name="LANGUAGE" table="LANGUAGE" root-group="yes">
<attrmap>
<column name="LANGUAGE_ID" data-type="VARCHAR(5)" value-from-attribute="LanguageCodes/0/Document/0/Langu
ages/0/ici:Language/[0-250]/code" is-replicant="yes" allows-null="no"/>
<column name="LANGUAGE_EN_NAME" data-type="VARCHAR(128)" value-from-element="LanguageCodes/0/Document/0/
Languages/0/ici:Language/[0-250]/Name/0" is-replicant="yes"/>
</attrmap>
<keys>
<primary-key>
<key-column name="LANGUAGE_ID"/>
</primary-key>
</keys>
</group>
</dbschema>
</database>
</destinations>
</deployment>
reddyl
Unless you post the data deploy logs it will be difficult to point out the reason for failure. My guess is either your avl.cfg is not a well formed xml or it might containg some invalid charecters thats causing the deployment to fail.