Hi!
#set($getSoftwareListQry="select doc.title, version.value from XWikiDocument as doc, BaseObject as obj, StringProperty as version where doc.fullName = obj.name and obj.className = 'SoftwareInventory.Code.SoftwareInventoryClass' and obj.id=version.id.id and version.id.name='softVersion' and doc.fullName not like '%Template'")
$services.query.hql($getSoftwareListQry).execute()
When i run this HQL query in QueryTester macro, all ok, list of values returns, but when i place this code into page source, i see:
[[Ljava.lang.Object;@1368b94, [Ljava.lang.Object;@7e03672d, [Ljava.lang.Object;@116d4b39]
How to convert its to a sting?
Thanks.