We're looking into populating UI components with directory entry data using
JSON.
Apache Synapse could do this but we're looking for something simpler..
For example something to convert an Entry[] array to :
[{
"cn" : "Mike Smith",
"sn" : "Smith",
"employeeNumber" : 00000000
},
{
"cn" : "Adam West",
"sn" : "West",
"employeeNumber" : 11111111
}]We'll write our own if we have to but we were wondering there's anything to exchange/transform directory entry objects using JSON? Thanks.
