![]() |
VOOZH | about |
The CData JDBC Drivers support standard JDBC interfaces to integrate with Web applications running on the JVM. This article details how to connect to Microsoft Exchange data from a connection pool in Tomcat.
Specify the User and Password to connect to Exchange. Additionally, specify the address of the Exchange server you are connecting to and the Platform associated with the server.
For assistance in constructing the JDBC URL, use the connection string designer built into the Microsoft Exchange JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.
java -jar cdata.jdbc.exchange.jar
Fill in the connection properties and copy the connection string to the clipboard.
👁 Using the built-in connection string designer to generate a JDBC URL (Salesforce is shown.)You can see the JDBC URL specified in the resource definition below.
<Resource name="jdbc/exchange" auth="Container" type="javax.sql.DataSource" driverClassName="cdata.jdbc.exchange.ExchangeDriver" factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" url="jdbc:exchange:User='[email protected]';Password='myPassword';Server='https://outlook.office365.com/EWS/Exchange.asmx';Platform='Exchange_Online';" maxActive="20" maxIdle="10" maxWait="-1" />
To allow a single application to access Microsoft Exchange data, add the code above to the context.xml in the application's META-INF directory.
For a shared resource configuration, add the code above to the context.xml located in $CATALINA_BASE/conf. A shared resource configuration provides connectivity to Microsoft Exchange for all applications.
Microsoft Exchange data JSP jdbc/Exchange javax.sql.DataSource Container
Context initContext = new InitialContext();
Context envContext = (Context)initContext.lookup("java:/comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/Exchange");
Connection conn = ds.getConnection();
The steps above show how to connect to Microsoft Exchange data in a simple connection pooling scenario. For more use cases and information, see the JNDI Datasource How-To in the Tomcat documentation.
Download a free trial of the Exchange Driver to get started:
Download NowLearn more:
👁 Microsoft Exchange IconRapidly create and deploy powerful Java applications that integrate powerful Microsoft Exchange send and receive capabilities. . Send & Receive Email, manage Exchange messages, folders, calendars, and more!