![]() |
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 Email data from a connection pool in Tomcat.
The User and Password properties, under the Authentication section, must be set to valid credentials. The Server must be specified to retrieve emails and the SMTPServer must be specified to send emails.
For assistance in constructing the JDBC URL, use the connection string designer built into the Email JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.
java -jar cdata.jdbc.email.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/email" auth="Container" type="javax.sql.DataSource" driverClassName="cdata.jdbc.email.EmailDriver" factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" url="jdbc:email:[email protected];Password=password;Server=imap.gmail.com;Port=993;SMTP Server=smtp.gmail.com;SMTP Port=465;SSL Mode=EXPLICIT;Protocol=IMAP;Mailbox=Inbox;" maxActive="20" maxIdle="10" maxWait="-1" />
To allow a single application to access Email 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 Email for all applications.
Email data JSP jdbc/Email javax.sql.DataSource Container
Context initContext = new InitialContext();
Context envContext = (Context)initContext.lookup("java:/comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/Email");
Connection conn = ds.getConnection();
The steps above show how to connect to Email 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 Email Driver to get started:
Download NowLearn more:
👁 Email IconRapidly create and deploy powerful Java applications that integrate powerful Email send and receive capabilities. Send & Receive Email through POP3, IMAP, and SMTP, Verify Addresses, and more!