SearchResultEntryDsml not setting attribute name correctly
----------------------------------------------------------
Key: DIRSTUDIO-710
URL: https://issues.apache.org/jira/browse/DIRSTUDIO-710
Project: Directory Studio
Issue Type: Bug
Components: studio-dsml-parser
Affects Versions: 1.5.3
Reporter: Henri van den bulk
When the DSML repsone creation is converting the LDAP request to a DSML
response the attribute names are not set correctly. Attribute name should be
Camel case for the name field. Below is an example of what is being returned:
{code:xml}
<dsml:attr name="postalcode">
<dsml:value>23337</dsml:value>
</dsml:attr>
{code}
However, according to the DSML specification when I request *postalCode* it
should return Camel backed result. So the valid result should be:
{code:xml}
<dsml:attr name="postalCode">
<dsml:value>23337</dsml:value>
</dsml:attr>
{code}
The issue is cause by using the getID operation instead of the getUpId in
SearchResultEntryDsml.toDsml.
the following line will need to change from
{code:java}
attributeElement.addAttribute( "name", attribute.getId() );
{code}
to
{code:java}
attributeElement.addAttribute( "name", attribute.getUpId() );
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.