Slider 0.80 on secured cluster. Each component exports its host/port and some other info
I am looking @ exported values at http://host:1025/ws/v1/slider/publisher/slider/componentinstancedata 1 - Just export host/port - This works <componentExports> <componentExport> <name>my_info</name> <value>${THIS_HOST}:${site.global.abc.http_port}</value> </componentExport> </componentExports> 2 - Export host/port and ** APPEND some constant - This works <componentExports> <componentExport> <name>my_info</name> <value>${THIS_HOST}:${site.global.abc.http_port}:XYZ</value> </componentExport> </componentExports> 3 - Try host/port/other info derived from param. In this case, ${site.global.abc.http_port} gets evaluated correctly in export but ${site.global.abc.some_other_info} appears as is - that is it does not gets evaluated in export. <componentExports> <componentExport> <name>my_info</name> <value>${THIS_HOST}:${site.global.abc.http_port}:${site.global.abc.some_other_info}</value> </componentExport> </componentExports> Any thoughts on how to achieve this ? Thanks, Manoj