Questions tagged [tridion-storage-extension]

Tridion 2011 Storage Extension, includes extending the storage type in Tridion

10 questions
8
votes
1 answer

how to set publish dcp for child or other publications to different location without overiding all other settings

I am trying to configure cd_storage and getting issue in setting up dynamic component presentation as they get over written by child and published to same folder from every publication. I know we can define the publication level settings but once we…
3
votes
4 answers

Getting No bean named defined while implementing storage extension in Tridion 2011 SP1

I am trying to implement the storage extension using below example, http://www.sdltridionworld.com/articles/sdltridion2011/tutorials/extending-content-delivery-storage-sdltridion-2011-1.aspx I created my DAO and other files with the same name used…
2
votes
1 answer

Components details are not getting logged in my database when unpublishing the page using Tridion Deployer extension

I am trying to add the unpublished components entry in my custom storage extension. We know that we don't have any base class in Tridion for ComponentUndeploy as we have for deploy "ComponentDeploy", so I am trying to use…
2
votes
1 answer

Create and Update Methods are getting called twice for each in tridion storage extension

I am not able to figure out why my custom Filesystem DOA for create and update method are getting called twice, so I am getting same records twice in my custom storage extension. Create/Update methods are getting called twice - When I publish any…
2
votes
1 answer

How to get Component object in Component Presentation storage extension

I am trying to write storage extension in Tridion 2011 where I will extend JPAComponentPresentationDAO and implement ComponentPresentationDAO. public void create(ComponentPresentation itemToCreate, ComponentPresentationTypeEnum…
2
votes
3 answers

Implemented Method in DAO Class is not getting called in storage extension of Tridion 2011 SP1

My implemented methods are not getting called from DAO Class. I created bundle xml with name search_dao_bundle.xml as below and placed on same location i.e. tridion_home/config where my cd_storage_xml is placed.
1
vote
3 answers

Getting Unable to persist data entity, Error while commiting the transaction

I successfully managed to write deployer extension as well as storage extension. And below are the logs which I took from core logs, which shows everything is loaded perfectly!! 2013-01-08 11:30:19,759 INFO BundleConfigurationLoader - Added…
0
votes
1 answer

Getting could not locate named parameter from Hibernate Query in Tridion 2011

I have below method in my DAO class. public PublishAction findbyLatestPublishedDate(int tcmURI,int pubID) throws StorageException { log.info("Entering Method: JPAPublishActionDAO.PublishAction.findbyLatestPublishedDate"); StringBuilder…
0
votes
1 answer

How to store only PDF type of Binaries in my storage extension using Custom DAO in Tridion 2011

I have written custom DAO to Add/Update/Delete specific records for my Binaries in my persistence type of storage extension in Tridion 2011. Below is sample code where I am trying to use my custom DAO class/interface (PublishActionDAO and…
0
votes
1 answer

How to get primary key ID from table using Hibernate to update the table while unpublishing the Tridion page

I have succesfully able to populate the my storage extension table using my custom deployer, now I can see my records are going perfectly if user publish any page. Now I want to handle the Unpublishing part, so I have written the Custom page…