Is it possible to script deployment of wars/jar using configp - Sure we used to do this back in the 7.x days.
This is for WEM 8.1
Thx
Yes - This is actually done via cfgaction.bat, e.g. from an ANT script:
<exec executable="${WEMDir}/Content/8_5/bin/cfgaction.bat" dir="C:/dev " failonerror="false">
<arg line="-updatecsear -u ${UserName} -p ${Password} -h ${AppServerHost}:${VCMPort} -e -i ${some.folder}/files.properties"/>
</exec>
In files.properties you specify the nature of the extension (single jar, single war, standalone or extension, or multiple modules at one, with the path either in the properties file, or a reference to a text file that lists all the files to be deployed. Should all be documented in the admin guide.
Bertrand
From: eLink Entry: Discussion Group - Web Experience Management [mailto:v7webcontentmanagement@elinkkc.opentext.com]Sent: Tuesday, September 03, 2013 11:14 PMTo: eLink RecipientSubject: Script configp
Script configp
Posted bynigel.wakeling@stonebridgesystems.com.au (Wakeling, Nigel) On 09-03-2013 23:07
[To post a comment, use the normal reply function]
Forum:
Discussion Group - Web Experience Management
Content Server:
Knowledge Center
Thanks Bertrand
This is exactly what I was after - even better since I want to run this as an ANT script.
Nigel.