Tuesday, 28 January 2025

Write deployer extension for Tridion Sites 10

 To Write deployer extension for Tridion Sites with following steps Create a custom step class which implements "ExecutableStep" (com.sdl.delivery.deployer.api.processing.pipeline.ExecutableStep) interface interface is available on udp-deployer-api-x.x.x-xxxx.jar which can be found on maven repo or in the deployer service installation directory. Override methods in CustomStep class configure @Overridepublic void configure(Configuration...

Tuesday, 2 May 2023

C#: First Blog Console App

To run first C# program you need to have dotnet SDK installed on your local machine which you are going to use for C# programming.Note: this blog represents sample which is prepared using Visual Studio Code IDE.Go to location on you machine where you want to write program.To print let's create first console app.1. Open Visual Studio code and open folder where we are going to run first console app and click on New Terminal.2. Run the following command...

Tuesday, 31 August 2021

Java example to fetch tridion content service PCA graphql response.

- Implementation which is available is built on spring-boot framework, I am gonna put only relative information on graphql and java client.I have prepared one class which is having few example of tridion pca graphql queries using java,QueryService.java@Servicepublic class QueryService { final PCAClientProvider pcaClientProvider; public QueryService(PCAClientProvider pcaClientProvider) { this.pcaClientProvider = pcaClientProvider; } protected ApiClient getPcaClient() { ApiClient pcaClient = this.pcaClientProvider.getClient();...

Thursday, 22 October 2020

SDL Tridion Sites GraphQL Page query

 Graphql url: http://localhost:8081/cd/api (domain can be changed){  page(namespaceId:1,publicationId:8,pageId:689){           rawContent{        data        content      }  }}namespaceId (1 is for Tridion Sites and 2 is for Tridion docs)it will give json data under data keyword and content will be stri...

Tuesday, 28 July 2020

SDL Tridion Docs – HTML output customization - create DITA-OT plugin

Objective Need to customize HTML output when we publish a publication from Tridion Docs. How to Do it We need to create DITA-OT plugin which extends html5 plugin   Let’s do it   What we need is Tridion Docs installed on server😉 And we should be able to publish content on HTML5 Status should be ‘Release Candidate’ or ‘Draft’ after publish a publication And you will see html output once click on download as below         For...