Hi,I want to deploy static content to a different path on LSDS server than the livesite pages, I tried creating a new definition in commit-deploy-plc.xml but it didn't work , I raised a case for the same to Interwoven support and got to know that new definition cannot be added in commit-deploy-plc.xml and it wont work , so I had to resort to adding a new bean in customer-teamsite-resource-config.xml to invoke the deployment for static content. I have added a bean for Custom Datadeploy in customer-teamsite-resource-config.xml and it is working perfectly fine but the OD bean is not working. I have earlier run the same OD bean successfully on Teamsite 7.1 but same thing is not working on 7.3.1 .Below is my Bean in customer-teamsite-resource-config.xml :<bean id="customer.teamsite.DeploymentService.DeploymentDescriptors" parent="teamsite.DeploymentService.DeploymentDescriptors"> <property name="sourceList"> <!-- merge *must* be "true" here to ensure that all descriptors in the parent set are maintained. --> <list merge="true"> <!-- this is WORKING --> <bean class="com.interwoven.livesite.opendeploy.impl.DataDeploymentDescriptor"> <property name="name" value="pageMetadata"/> <property name="configFile" value="LiveSite/pageMetadata"/> <property name="failOnError" value="true"/> <property name="filterPatterns"> <bean class="com.interwoven.livesite.common.util.PatternWrapper" factory-method="createList"> <constructor-arg> <list> <value>+.*\.page</value> </list> </constructor-arg> </bean> </property> </bean> <!-- this is NOT WORKING --> <bean class="com.interwoven.livesite.opendeploy.impl.OpenDeploymentDescriptor"> <property name="name" value="WebLivesiteDeployment" /> <property name="configFile" value="LiveSite/WebLivesiteDeployment" /> <property name="failOnError" value="true" /> <property name="filterPatterns"> <bean class="com.interwoven.livesite.common.util.PatternWrapper" factory-method="createList"> <constructor-arg> <list> <value>-.*iw/compXSL/head.xsl$</value> </list> </constructor-arg> </bean> </property> </bean> </list> </property> </bean>Please can anybody why "com.interwoven.livesite.opendeploy.impl.OpenDeploymentDescriptor" bean is not working in Teamsite 7.3.1 ?Thanks !Regards,Ankit
Hi, Only way out is to add a separate external task for Static content deployment as suggested by Ghoti.Regards,Ankit