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)
error saving DCR
duartecordeiro
Setup:
Interwoven Teamsite, TST, WF, 5.0.1 SP1
If I try to save a DCR generated by this DCT:
<?xml version="1.0" standalone="no"?>
<!DOCTYPE datacapture SYSTEM "datacapture5.0.dtd">
<data-capture-requirements type="content" name="itsnotworking">
<!-- data-capture-requirements elements contain area elements -->
<ruleset name="itsnotworking">
<description>
Test nr 1
</description>
<item name="selectme">
<select required="f">
<option value="red" label="red"/>
<option value="blue" label="blue"/>
</select>
</item>
</ruleset>
</data-capture-requirements>
Everything works.
Now, if I add a new select (or a text, textarea, browser, whatever), it fails to save:
<?xml version="1.0" standalone="no"?>
<!DOCTYPE datacapture SYSTEM "datacapture5.0.dtd">
<data-capture-requirements type="content" name="itsnotworking">
<!-- data-capture-requirements elements contain area elements -->
<ruleset name="itsnotworking">
<description>
Test nr 1
</description>
<item name="selectme">
<select required="f">
<option value="red" label="red"/>
<option value="blue" label="blue"/>
</select>
</item>
<item name="selectmetoo">
<select required="f">
<option value="im" label="im"/>
<option value="tired" label="tired"/>
</select>
</item>
</ruleset>
</data-capture-requirements>
In the browser GUI it just fails silently (without saving any file). In the java client, it pops up a error with the following message:
"error saving /myfile.dcs to the server. Error creating and building dcr document."
Any ideas ?
Thanks in advance,
Duarte
Neoris
Find more posts tagged with
Comments
Adam Stoller
For what little it might be worth - I was
unable
to reproduce this problem on my TeamSite 5.5.2 Win2K machine (I know, it's a different environment).
I'm assuming you haven't run out of disk space or anything like that and that you aren't trying to write over a file that might somehow be protected against that - yes?
If you don't get any other ideas here today - you might want to open up a case with Interwoven Support.
--fish
(Interwoven, Curriculum Development)
duartecordeiro
Hi, thanks for trying to help.
Stefan Nickolay solved this with:
-----Original Message-----
From: Stefan Nickolay [mailto:XXXXX REMOVED]
Sent: Wednesday, October 02, 2002 1:48 PM
Duarte,
Email your templating.cfg file, as there maybe a
problem if it will not save. Does the DCT actually
render? In your templating.cfg, check the dcr-type
attribute that relates to this form. Make sure that
dcr-type is set to iwov, and not xml.
-Stefan
and yes, its a dcr-type problem.. it should be iwov NOT xml.
Neoris