From 70d594cec595cab0f430c0d1bdca41a2770cbfea Mon Sep 17 00:00:00 2001
From: Chris Ridd <chris.ridd@forgerock.com>
Date: Tue, 30 Oct 2012 17:38:23 +0000
Subject: [PATCH] Fix OPENDJ-618 DSML gateway should send an AuthResponse for the initial bind

---
 opends/src/dsml/org/opends/dsml/protocol/DSMLAddOperation.java |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/opends/src/dsml/org/opends/dsml/protocol/DSMLAddOperation.java b/opends/src/dsml/org/opends/dsml/protocol/DSMLAddOperation.java
index f9f0b5a..7b32cbd 100644
--- a/opends/src/dsml/org/opends/dsml/protocol/DSMLAddOperation.java
+++ b/opends/src/dsml/org/opends/dsml/protocol/DSMLAddOperation.java
@@ -71,6 +71,7 @@
    *
    * @param  objFactory  The object factory for this operation.
    * @param  addRequest  The add request for this operation.
+   * @param  controls    Any required controls (e.g. for proxy authz).
    *
    * @return  The result of the add operation.
    *
@@ -83,7 +84,8 @@
    *                         element.
    */
   public LDAPResult doOperation(ObjectFactory objFactory,
-        AddRequest addRequest)
+        AddRequest addRequest,
+        List<org.opends.server.types.Control> controls)
     throws IOException, LDAPException, ASN1Exception
   {
     LDAPResult addResponse = objFactory.createLDAPResult();
@@ -107,7 +109,8 @@
 
     // Create and send the LDAP request to the server.
     ProtocolOp op = new AddRequestProtocolOp(dnStr, attributes);
-    LDAPMessage msg = new LDAPMessage(DSMLServlet.nextMessageID(), op);
+    LDAPMessage msg = new LDAPMessage(DSMLServlet.nextMessageID(), op,
+        controls);
     connection.getLDAPWriter().writeMessage(msg);
 
     // Read and decode the LDAP response from the server.

--
Gitblit v1.10.0