Re: [DISCUSS] Code donations: Sheldon and Chatterbox

2017-08-14 Thread chongma
As an end user I moved to TomEE from Tomcat. I originally used Tomcat for Servlets and JSP and then started using JSF and some EE libraries until I discovered that TomEE was built with all the goodies already inside and pre configured. So from my point of view TomEE was a logical migration pa

Re: geronimo-javamail_1.4_mail-1.9.0-alpha-2: sending email fails

2017-09-01 Thread chongma
is the server protected by TLS or SSL? or is it open? if SSL protected have you tried: p.put("mail.smtp.auth", "true"); p.put("mail.smtp.ssl.enable", "true"); Also have you tried loading Mail Session as a Resource in context.xml (or tomee.xml) as per my previous example? I didn't have much luck

Re: geronimo-javamail_1.4_mail-1.9.0-alpha-2: sending email fails

2017-09-01 Thread chongma
actually i just looked at my old code before i changed to loading session in context.xml and this is how i used to create a mail session and authenticate (before i changed to SSL). private Session getSession() { Authenticator authenticator = new Authenticator(); Properties properties = new Prope

Re: geronimo-javamail_1.4_mail-1.9.0-alpha-2: sending email fails

2017-09-01 Thread chongma
so looking at line 31: final String password = properties.getProperty("password"); that might mean the password should be passed as: p.put("password", "smtppassword"); and it is not necessary to pass an Authenticator with PasswordAuthentication? -- Sent from: http://tomee-openejb.979440.n4.na

[GitHub] tomee pull request #228: documentation updates

2018-12-03 Thread chongma
GitHub user chongma opened a pull request: https://github.com/apache/tomee/pull/228 documentation updates First stab at editing the documentation index groups. Correcting typo for General Information You can merge this pull request into a Git repository by running: $ git

[GitHub] tomee pull request #265: assigning article indexes

2018-12-09 Thread chongma
GitHub user chongma opened a pull request: https://github.com/apache/tomee/pull/265 assigning article indexes EJB Datasource Spring You can merge this pull request into a Git repository by running: $ git pull https://github.com/chongma/tomee master Alternatively you can

Re: [VOTE] Release Apache TomEE 8.0.0 MILESTONE 2

2019-01-28 Thread chongma
+1 i will grab a copy and test it locally with my projects later and let you know if there are any difficulties -- Sent from: http://tomee-openejb.979440.n4.nabble.com/TomEE-Dev-f982480.html