OBPM 11g Email Configuration
Step 1 :
http://localhost:7001/em
User Messaging Service -- >usermessagingdriver-email -- >Email Driver properties
Step 2 :
OutgoingMailServer - The SMTP hostname
OutgoingMailServerPort - The SMTP port
OutgoingMailServerSecurity - The type of security (e.g. SSL)
OutgoingUsername - The mail user account
OutgoingPassword - The mail user password
Example :
OutgoingMailServer - smtp.gmail.com
OutgoingMailServerPort - 465
OutgoingMailServerSecurity - SSl
Step 3:
SOA -->SOA-Infra- > SOA Administration --> workflow Notification
choose Email and clip apply
Download Openssl client from following site
www.openssl.org
openssl s_client -connect host:port
where Gmail SMTP host:port is smtp.gmail.com:465
where Gmail IMAP host:port is imap.gmail.com:993
Save the file for both smtp and imap .
keytool available in java/bin >
keytool -import -alias AliasName -keystore KeystoreLocation -file CertificateLocation
For example:
keytool -import -alias gmail-imap -keystore gmail-keystore.jks -file imap.txt
keytool -import -alias gmail-smtp -keystore gmail-keystore.jks -file smtp.txt
paste the below code in setDomainEnv.bat
set EXTRA_JAVA_PROPERTIES=%EXTRA_JAVA_PROPERTIES% -Djavax.net.ssl.trustStore=C:\Oracle\Middleware\SOA11g6\user_projects\domains\base_domain\servers\lib\gmail-keystore.jks -Djavax.net.ssl.trustStorePassword=Admin123
No comments:
Post a Comment