Skip to content

Commit

Permalink
Merge pull request #32 from keerthu/master
Browse files Browse the repository at this point in the history
Fix to support EI 6.5.0
  • Loading branch information
kesavany authored May 3, 2019
2 parents 1a26d94 + c660483 commit c1b2e6d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 18 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# LDAP EI Connector

The LDAP [Connector](https://docs.wso2.com/display/EI640/Working+with+Connectors) allows you to connect to any LDAP server through a simple web services interface and perform CRUD (Create, Read, Update, Delete) operations on LDAP entries. This connector uses the [JAVA JNDI APIs](https://directory.apache.org/api/user-guide.html) to connect to a required LDAP server.
The LDAP [Connector](https://docs.wso2.com/display/EI650/Working+with+Connectors) allows you to connect to any LDAP server through a simple web services interface and perform CRUD (Create, Read, Update, Delete) operations on LDAP entries. This connector uses the [JAVA JNDI APIs](https://directory.apache.org/api/user-guide.html) to connect to a required LDAP server.

## Compatibility

| Connector version | Supported WSO2 ESB/EI version |
| ------------- | ------------- |
| [1.0.8](https://github.com/wso2-extensions/esb-connector-ldap/tree/org.wso2.carbon.connector.ldap-1.0.8) | EI 6.5.0 |
| [1.0.7](https://github.com/wso2-extensions/esb-connector-ldap/tree/org.wso2.carbon.connector.ldap-1.0.7) | ESB 4.9.0, ESB 5.0.0, EI 6.1.1, EI 6.2.0, EI 6.3.0, EI 6.4.0 |
| [1.0.6](https://github.com/wso2-extensions/esb-connector-ldap/tree/org.wso2.carbon.connector.ldap-1.0.6) | ESB 4.9.0, ESB 5.0.0, EI 6.1.1, EI 6.2.0 |
| [1.0.5](https://github.com/wso2-extensions/esb-connector-ldap/tree/org.wso2.carbon.connector.ldap-1.0.5) | ESB 4.9.0, ESB 5.0.0, EI 6.1.1 |
Expand All @@ -16,9 +17,9 @@ The LDAP [Connector](https://docs.wso2.com/display/EI640/Working+with+Connectors
#### Download and install the connector

1. Download the connector from the [WSO2 Store](https://store.wso2.com/store/assets/esbconnector/details/4ecf8dde-60f3-4e91-ba22-5f49a4e302f4) by clicking the Download Connector button.
2. Then you can follow this [Documentation](https://docs.wso2.com/display/EI640/Working+with+Connectors+via+the+Management+Console) to add and enable the connector via the Management Console in your EI instance.
3. For more information on using connectors and their operations in your EI configurations, see [Using a Connector](https://docs.wso2.com/display/EI640/Using+a+Connector).
4. If you want to work with connectors via EI tooling, see [Working with Connectors via Tooling](https://docs.wso2.com/display/EI640/Working+with+Connectors+via+Tooling).
2. Then you can follow this [Documentation](https://docs.wso2.com/display/EI650/Working+with+Connectors+via+the+Management+Console) to add and enable the connector via the Management Console in your EI instance.
3. For more information on using connectors and their operations in your EI configurations, see [Using a Connector](https://docs.wso2.com/display/EI650/Using+a+Connector).
4. If you want to work with connectors via EI tooling, see [Working with Connectors via Tooling](https://docs.wso2.com/display/EI650/Working+with+Connectors+via+Tooling).

#### Configuring the connector operations

Expand Down
20 changes: 8 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,20 @@
<groupId>org.wso2.carbon.connector</groupId>
<artifactId>org.wso2.carbon.connector.ldap</artifactId>
<packaging>jar</packaging>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
<name>WSO2 Carbon - Mediation Library Connector For LDAP</name>
<url>http://wso2.org</url>
<properties>
<connector.name>ldap</connector.name>
<product.ei.version>6.4.0</product.ei.version>
<carbon.kernel.version>4.4.17</carbon.kernel.version>
<product.ei.version>6.5.0</product.ei.version>
<carbon.kernel.version>4.4.38</carbon.kernel.version>
<automation.framework.utils.version>4.4.2</automation.framework.utils.version>
<automation.framework.version>4.4.3</automation.framework.version>
<emma.version>2.1.5320</emma.version>
<synapse.version>2.1.7-wso2v19</synapse.version>
<carbon.mediation.version>4.6.19</carbon.mediation.version>
<json.version>2.0.0.wso2v1</json.version>
<synapse.version>2.1.7-wso2v95</synapse.version>
<carbon.mediation.version>4.6.123</carbon.mediation.version>
<json.version>3.0.0.wso2v1</json.version>
<org.testng.version>6.1.1</org.testng.version>
<jets3t.version>0.9.4</jets3t.version>
<bouncycastle.version>1.55</bouncycastle.version>
<rampart.apache.version>1.6.1-wso2v18</rampart.apache.version>
<rampart.wso2.version>1.6.1.wso2v18</rampart.wso2.version>
<skip-tests>true</skip-tests>
</properties>
<dependencies>
Expand Down Expand Up @@ -176,9 +172,9 @@
<version>${product.ei.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.ei</groupId>
<groupId>org.wso2.carbon.mediation</groupId>
<artifactId>org.wso2.carbon.integrator.core</artifactId>
<version>${product.ei.version}</version>
<version>${carbon.mediation.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.ei</groupId>
Expand Down
4 changes: 2 additions & 2 deletions src/test/INTEGRATION-TEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@

- Mac OSX 10.9.2
- UBUNTU 16.04
- WSO2 EI 6.4.0
- WSO2 EI 6.5.0

STEPS:

1. Make sure the WSO2 EI 6.4.0 zip file with available at "{LDAP_HOME}/repository/"
1. Make sure the WSO2 EI 6.5.0 zip file with available at "{LDAP_HOME}/repository/"

2. Follow the below mentioned steps for adding valid certificate to access LDAP server over SSL.

Expand Down

0 comments on commit c1b2e6d

Please sign in to comment.