[jboss-jira] [JBoss JIRA] Commented: (AS7-1177) JavaMail not available
Tomaz Cerar (JIRA)
jira-events at lists.jboss.org
Mon Jul 25 09:57:23 EDT 2011
[ https://issues.jboss.org/browse/AS7-1177?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12616252#comment-12616252 ]
Tomaz Cerar commented on AS7-1177:
----------------------------------
That might good for host name and port what about other properties:
for example: (all props from example mail-service.xml)
{code:xml}
<mail-session jndi-name="java:/Mail">
<username>nobody</username>
<password>password</password>
<properties>
<property name="mail.store.protocol">pop3</property>
<property name="mail.transport.protocol">smtp</property>
<property name="mail.user">nobody</property>
<property name="mail.pop3.host">pop3.nosuchhost.nosuchdomain.com</property>
<property name="mail.smtp.host">smtp.nosuchhost.nosuchdomain.com</property>
<property name="mail.smtp.port">25</property>
<property name="mail.from">nobody at nosuchhost.nosuchdomain.com</property>
<property name="mail.debug">false</property>
</properties>
</mail-session>
{code}
> JavaMail not available
> ----------------------
>
> Key: AS7-1177
> URL: https://issues.jboss.org/browse/AS7-1177
> Project: Application Server 7
> Issue Type: Bug
> Components: Modules
> Affects Versions: 7.0.0.CR1
> Reporter: Juergen Zimmermann
> Assignee: Tomaz Cerar
>
> JavaMail cannot be used as it was in JBossAS 6 and earlier.
> 1) I tried as in JBoss 6:
> @Resource(mappedName = "java:Mail")
> private Session mailer;
> ... and got this logging info within the Arquillian tests:
> 11:12:08,454 INFO [org.jboss.as.server.controller] (pool-1-thread-48) Deployment of "test.ear.ear" was rolled back with failure message {"Services with missing/unavailable dependencies" => ["jboss.naming.context.java.comp.\"test.ear\".test.KundenverwaltungListener.\"env/de.swe2.kundenverwaltung.service.KundenverwaltungListener/mailer\".jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.KundenverwaltungListener.8","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.Dao.START","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.KundenverwaltungListener.START","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.KundenverwaltungResourceImpl.START","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.ValidationService.START","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.Kundenverwaltung.START","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.Artikelverwaltung.START","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.FileStore.START","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.RolesService.START","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.BestellverwaltungResourceImpl.START","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.PasswordService.START","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".jndiDependencyService","jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.Bestellverwaltung.START"]}
> 11:12:08,468 INFO [org.jboss.jpa] (MSC service thread 1-1) stopping Persistence Unit Service 'test.ear.ear/test.jar#swe2Persistence'
> 11:12:08,470 INFO [org.jboss.weld] (MSC service thread 1-1) Stopping weld service
> 2) I tried
> @Resource
> private Session mailer;
> ... and got this logging info within the Arquillian tests:
> 11:09:20,085 INFO [org.jboss.as.server.controller] (pool-1-thread-46) Deployment of "test.ear.ear" was rolled back with failure message {"Services with missing/unavailable dependencies" => ["jboss.deployment.subunit.\"test.ear.ear\".\"test.jar\".component.KundenverwaltungListener.START"]}
> 11:09:20,094 INFO [org.jboss.jpa] (MSC service thread 1-2) stopping Persistence Unit Service 'test.ear.ear/test.jar#swe2Persistence'
> 11:09:20,098 INFO [org.jboss.weld] (MSC service thread 1-2) Stopping weld service
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list