issue in mail task
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2016 07:25 AM
hello sir..
when i configure mail server on my activiti-custom-context.xml and engine.properties and restart the activiti its not use mysql database which is configure
in db.properties ? activiti run other database when i again restart its use some other database.
activiti-custom-context.xml configuration is
<bean id="processEngineConfiguration" class="org.activiti.engine.impl.cfg.StandaloneInMemProcessEngineConfiguration">
<property name="mailServerHost" value="abc.syz.com" />
<property name="mailServerPort" value="402" />
<property name="mailServerUseSSL" value="true" />
<property name="mailServerUseTLS" value="true" />
<property name="mailServerDefaultFrom" value="saurabh.varma@gmail.com" />
<property name="mailServerUsername" value="saurabh.varma@gamil.com" />
<property name="mailServerPassword" value="xyz" />
</bean>
engine.properties for email server
email properties
engine.email.enabled=true
engine.email.host=abc.syz.com
engine.email.port=402
db.properties configuration
db=mysql
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/activiti
jdbc.username=root
jdbc.password=password
when i configure mail server on my activiti-custom-context.xml and engine.properties and restart the activiti its not use mysql database which is configure
in db.properties ? activiti run other database when i again restart its use some other database.
activiti-custom-context.xml configuration is
<bean id="processEngineConfiguration" class="org.activiti.engine.impl.cfg.StandaloneInMemProcessEngineConfiguration">
<property name="mailServerHost" value="abc.syz.com" />
<property name="mailServerPort" value="402" />
<property name="mailServerUseSSL" value="true" />
<property name="mailServerUseTLS" value="true" />
<property name="mailServerDefaultFrom" value="saurabh.varma@gmail.com" />
<property name="mailServerUsername" value="saurabh.varma@gamil.com" />
<property name="mailServerPassword" value="xyz" />
</bean>
engine.properties for email server
email properties
engine.email.enabled=true
engine.email.host=abc.syz.com
engine.email.port=402
db.properties configuration
db=mysql
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/activiti
jdbc.username=root
jdbc.password=password
Labels:
- Labels:
-
Archive
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2016 06:45 AM
activiti-custom-context.xml configuration is
<bean id="processEngineConfiguration" class="org.activiti.engine.impl.cfg.StandaloneInMemProcessEngineConfiguration">
<property name="mailServerHost" value="cp-47.webhostbox.net" />
<property name="mailServerPort" value="465" />
<property name="mailServerUseSSL" value="true" />
<property name="mailServerUseTLS" value="true" />
<property name="mailServerDefaultFrom" value="saurabh.varma@karexpert.com" />
<property name="mailServerUsername" value="saurabh.varma@karexpert.com" />
<property name="mailServerPassword" value="xyz" />
</bean>
<bean id="processEngineConfiguration" class="org.activiti.engine.impl.cfg.StandaloneInMemProcessEngineConfiguration">
<property name="mailServerHost" value="cp-47.webhostbox.net" />
<property name="mailServerPort" value="465" />
<property name="mailServerUseSSL" value="true" />
<property name="mailServerUseTLS" value="true" />
<property name="mailServerDefaultFrom" value="saurabh.varma@karexpert.com" />
<property name="mailServerUsername" value="saurabh.varma@karexpert.com" />
<property name="mailServerPassword" value="xyz" />
</bean>
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2016 02:57 AM
The "StandaloneInMemProcessEngineConfiguration" should give it away. You are running in memory … you need to use a different configuration class or set the jdbc properties on this config to override the default (but i think it's better not to use the in mem)
