I’m trying to update annex of a DN with AIL+PSDKBridge.
So far I found the way to add value to annex via RequestUpdateObject with following xml
String xml = “” +
“” +
“” +
“<DBID value="535"/>” +
" " +
" <list_pair key="TServer">" +
" <str_pair value="Test-ssAgent" key="display-name"/>" +
" </list_pair>" +
" " +
“” +
“” +
“”;
Works fine unless there is already a “display-name” option defined.
How should I change xml so it would update existing value?
I wanna do the exact same thing (that you guys showed in XML) using plain Java PSDK. So, basically i want to update some DN properties from under the “TServer” section under the DN option tab in GA
I have tried the sample code provided in the psdk dep guide for updating an Object without success. For example, if I do this :
obj.setPropertyValue(“contact”, “certain value”);
It says attribute contact cannot be found! I guess i will have to create a deltaDN structure first, or may be there’s a better way of doing this.