Tuesday, 27 August 2019

Connect Net Tcp Tridion Sites coreservice client using java

Connect Tridion Net Tcp using java Reference: jni4net Problem: Access nettcp connector using java which is a .Net Component Solution: We can create .Net Wrapper which will use Tridion Core Service assembly, and we can generate java proxy using jni4net, and we'll consume those java proxies as reference for java application. First we will create Dot.net Class library project which will deal with CoreService Assembly Let’s give name as NetTcpConnector ...

Wednesday, 10 April 2019

Connect Tridion sites Core service with Java

Introduction Coreservice is used to perform operation on cms i.e. connect to cms, create content, create workflow etc. To work with Coreservice with java we have to setup code which consume coreservice as wsdl soap client. Repository To check reference implementation please checkout https://github.com/neeteshnarvaria/java-tridion-sites-coreservice Here we have used maven to build application Implementation  Setup module to generate library from soap url. 1.          Setup build...

Monday, 4 March 2019

Custom URL extension with Tridion Sites

Custom URL extension with Tridion Sites Introduction Custom URL extension is a feature/functionality which helps Content Editor to select data from 3rd party service. There are two Steps to Implement Custom URL. 1.       Tridion Sites Configuration - Define URL in CM Schema, which serves the data for Component field specified. 2.       Configure Service as Web Application...