Package org.apache.jmeter.protocol.ldap.sampler

Examples of org.apache.jmeter.protocol.ldap.sampler.LdapExtClient.disconnect()


  private void singleBindOp(SampleResult res) throws NamingException {
    LdapExtClient ldap_temp;
    ldap_temp = new LdapExtClient();
    res.sampleStart();
    DirContext ctx = ldap_temp.connect(getServername(), getPort(), getRootdn(), getSuserDN(), getSuserPw());
    ldap_temp.disconnect(ctx);
    res.sampleEnd();
  }

  /***************************************************************************
   * This will do a compare Opp for the User and attribute/value pair defined
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.