hedi wrote: > Hi, > I am using C SDK 5.08 to access the Iplanet Directory server 4.1 and I'd > > like to store a dynamic set of attributes. This set is incoming as an > XML structure, I'd like to make my schema fits to this incoming tree, > and the stored attributes updated (or deleted) with the enclosed data.
If you make your entry have objectclass extensibleObject, you can store any attribute name you want with any value - it effectively turns off schema checking for your entry. This is not recommended, but if you are going to have a large number of attributes whose names you cannot know before hand, this may be the only solution. The other solution would be to just store the XML document as a single value of an attribute. > Do I have to detail all the tree and parse it 'manually' or is there any > new tool to handle this case ? NDS 6.0 has a dsml2ldif and ldif2dsml tool. > > > Thanks. > > Hedi. > .
