Sun Java System Content Delivery Server

Hi,

Can any one please provide me with the solution of this,

When we submit some content through Content provider to Catalog Manager in SUN Content Delivery Server the contents are validated automatically but the Catalog Manager Admistrator has to manually change the status of content to published so that it is avilable to the vender manager and hence subscriber.

Can we change the configuration such that when content is submitted it will be validated as well as automatically published by the Catalog Manager with out any mannual administrator intervention.

thanks

[600 byte] By [Mohit_agara] at [2008-2-14]
# 1
Hi Mohit: I will pass on your query to the product development team and they should have an answer for you shortly.
Binu_Ka at 2007-7-9 > top of java,Java Essentials,Training...
# 2

hi

I'm the Product Specialist on CDS. With the current release you can set it to autopublish which will allow content to be automatically put in the publish state in the Catalog Manager when the content is submitted.

You can set this for content types and/or developer plans.

There are three files to tweek in the conf directory

The AutoPublish.properties sets the rules..

Here is an example

auto_publish.rule=TrustedDeveloper

auto_publish.rule.TrustedDeveloper.content.types=*

auto_publish.rule.TrustedDeveloper.developer.plans=TrustedDeveloper

Here any content from a developer who is in the TrustedDeveloper plan gets their stuff autopublished.

Need to add the AutoPublishAdapter to the SubmissionVerifierAdapters.xml file.

<adapter id="AutoPublishAdapter" name="com.sun.content.server.validation.adapter.AutoPublishAdapter" property-file=""/>

This is the adapter that does the work.

Finally in the SubmissionVerifierWorkflows.xml add the step in the workflow you want.

<step id="400" name="AutoPublish" adapter="AutoPublishAdapter">

<desc>

Auto publish depending on rules inside AutoPublishRules.properties

</desc>

<argument-list>

<argument name="AutoPublish.PropertyFile" kind="direct" value="AutoPublishRules.properties"/>

</argument-list>

</step>

walto

waltoa at 2007-7-9 > top of java,Java Essentials,Training...
# 3

hi Walto

Thanks for the valuable information,

Can you please also help me on how to register a developer in the TrustedDeveloper plan and the path where i can find TrustedDeveloper plan and Autopublish.properties file since i am not able to find it.

Issue 2: Is it also possible to send Live streaming video in System Content Delivery Server, I got that we can send and publish static contents like images, videos, application etc for the suscribers can we also submit Live streaming videos for example Live cricket match.

Thanks,

Mohit

Mohit_agara at 2007-7-9 > top of java,Java Essentials,Training...
# 4
Thanks a lot Binu
Mohit_agara at 2007-7-9 > top of java,Java Essentials,Training...