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)
inline not working
xsriniva
I am using the following code to populate a drop down in my dct.However i get the error saying "An internal problem was encountered trying to create a requirements object for type cm/fmvld"
Can anyone pl help me out on this
<item name="Country">
<label>Country</label>
<database data-type="NUMBER(10)" />
<select required="f">
<inline command ="__IW_HOME__/iw-perl/bin/iwperl __IW_HOME__/examples/Templating/config/example_server_side_inline_callout.ipl" />
</select>
</item>
Find more posts tagged with
Comments
Migrateduser
You have to replace the IWHOME token with the hard-coded IWHOME value. Assuming you have installed TeamSite to /iw-home on Solaris (which is not realistic):
<inline command = "/iw-home/iw-perl/bin/iwperl /iw-home/examples/Templating/config/example_server_side_inline_callout.ipl" />
It is lame when you want to move code from one TeamSite server to another. Interwoven has a feature request to fix this but who knows how important they consider it. You could build a more generic custom solution for running arbitrary Perl scripts.
xsriniva
Perfect.It works fine now