You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Emmanuel Lecharny (JIRA)" <ji...@apache.org> on 2019/04/29 22:01:00 UTC

[jira] [Resolved] (DIRAPI-300) Weird batchResponse when batchRequest contains grammar error

     [ https://issues.apache.org/jira/browse/DIRAPI-300?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Emmanuel Lecharny resolved DIRAPI-300.
--------------------------------------
    Resolution: Fixed

Should be fixed with commit 104adb97d3e474d269a2f94c1509b4cc71ef5a35 (2.0 branch) and commit a3b855a44858006f72997cd5df9f47fc725f9ff0 (1.0 branch)

> Weird batchResponse when batchRequest contains grammar error
> ------------------------------------------------------------
>
>                 Key: DIRAPI-300
>                 URL: https://issues.apache.org/jira/browse/DIRAPI-300
>             Project: Directory Client API
>          Issue Type: Bug
>    Affects Versions: 1.0.0
>            Reporter: Anne-Gaƫlle BERGE
>            Priority: Major
>             Fix For: 2.0.0.AM3, 1.0.4
>
>
> I am using the apacheDS API (org.apache.directory.api:api-all:1.0.0) to forward the DSML messages I received in my app to my local LDAP directory (apacheDS). 
> When I forward such a message (I guess it is an errorneous message because the newrdn attribute is not formatted as a DN):
> {code:xml}
> <batchRequest xmlns="urn:oasis:names:tc:DSML:2:0:core">  
>   <modDNRequest deleteoldrdn="false" dn="uid=test,ou=HCProfessional,dc=HPD,o=gazelle,c=CH" newrdn="teststststst" requestID="3186"/> 
> </batchRequest>
> {code}
> The Dsmlv2Engine.process(OutputStream, OutputStream) method logs
> {noformat}
> [0m[33m16:25:30,236 WARN  [org.apache.directory.api.dsmlv2.engine.Dsmlv2Engine] (http-/0.0.0.0:8380-2) Failed while getting next request: org.xmlpull.v1.XmlPullParserException: ERR_04201 No more characters available at position 12 (position: START_TAG seen ...al,dc=HPD,o=gazelle,c=CH" newrdn="teststststst" requestID="3186"/>... @3:134) caused by: org.apache.directory.api.ldap.model.exception.LdapInvalidDnException: ERR_04201 No more characters available at position 12
> {noformat}
> and the received batchResponse is 
> {code:xml}
> <batchResponse xmlns="urn:oasis:names:tc:DSML:2:0:core" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" requestID="0"><?xml version="1.0" encoding="UTF-8"?>
>     <batchResponse xmlns="urn:oasis:names:tc:DSML:2:0:core" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
>         <errorResponse xmlns="" type="malformedRequest">
>             <message>ERR_03001 ERR_04201 No more characters available at position 12 (position: START_TAG seen ...al,dc=HPD,o=gazelle,c=CH"
>                 newrdn="teststststst" requestID="3186"/&gt;... @3:134) caused by:
>                 org.apache.directory.api.ldap.model.exception.LdapInvalidDnException: ERR_04201 No more characters available at position 12 - Line 3 -
>                 Column 134
>             </message>
>         </errorResponse>
>     </batchResponse>
> {code}
> Which cannot be parsed using an XML parser since first batchResponse declaration is present prior to the actual batchResponse message.
> Note that when the engine does not include errorResponse in the batchResponse, the returned message is correct.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)