[jira] [Commented] (TOMEE-2143) AbstractOwbBean.destroy(..) hits NPE in MyFaces 2.2.12 when cleaning up a user's Session and related "ViewScopeBeanHolder"

2018-07-23 Thread Romain Manni-Bucau (JIRA)


[ 
https://issues.apache.org/jira/browse/TOMEE-2143?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16553811#comment-16553811
 ] 

Romain Manni-Bucau commented on TOMEE-2143:
---

[~tandraschko] ear support requires to not overpass classloaders. Means to not 
statt using a parent bean instead of the child flavor. Here it is what is 
happening I think. So either the holder is not correctly looked up or some 
webapp code is in the lib part of the ear and injects a bean which should be 
from the webapp (we prevent it in tomee to keep it sane and align on ear 
classloading rules, alternatives were all worse :()

> AbstractOwbBean.destroy(..) hits NPE in MyFaces 2.2.12 when cleaning up a 
> user's Session and related  "ViewScopeBeanHolder"
> ---
>
> Key: TOMEE-2143
> URL: https://issues.apache.org/jira/browse/TOMEE-2143
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 7.0.3, 7.0.4, 7.0.5
> Environment: TomEE > 7.0.3 (plus)
> MyFaces 2.2.12, Omnifaces 2.6.8
> Shiro 1.4.0
> Java 1.8.0-U171 (OpenJDK / Oracle)
> OS: MacOS 10.13.x, Windows 10 (1607, 1709, 1803)
>Reporter: Martin Wiesner
>Priority: Major
>
> In an *EAR*-bundled application with several EJB jars and two WAR files, when 
> I logout from my JSF-application via this piece of code here:
> {code:java}
> public void logout() throws IOException {
> SecurityUtils.getSubject().logout();
> Faces.invalidateSession();
> Faces.redirect("login.xhtml");
> }
> {code}
> The moment the user session is invalidated, the redirect to the login screen 
> is triggered sucessfully. However, I encounter the following stack trace 
> within my standalone installation of TomEE plus (taken from catalina.out):
> {code:java}
> [http-nio-8080-exec-8] org.apache.webbeans.component.AbstractOwbBean.destroy 
> Exception thrown while destroying bean instance : [ViewScopeBeanHolder, 
> WebBeansType:MANAGED, Name:null, API 
> Types:[org.apache.myfaces.cdi.view.ViewScopeBeanHolder,java.lang.Object,java.io.Serializable],
>  Qualifiers:[javax.enterprise.inject.Default,javax.enterprise.inject.Any]]
>  java.lang.NullPointerException
>   at 
> org.apache.myfaces.cdi.view.ViewScopeContextImpl.destroyAllActive(ViewScopeContextImpl.java:229)
>   at 
> org.apache.myfaces.cdi.view.ViewScopeContextImpl.destroyAllActive(ViewScopeContextImpl.java:223)
>   at 
> org.apache.myfaces.cdi.view.ViewScopeBeanHolder.destroyBeansOnPreDestroy(ViewScopeBeanHolder.java:221)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:498)
>   at 
> org.apache.webbeans.intercept.LifecycleInterceptorInvocationContext.proceed(LifecycleInterceptorInvocationContext.java:103)
>   at 
> org.apache.webbeans.portable.InjectionTargetImpl.preDestroy(InjectionTargetImpl.java:352)
>   at 
> org.apache.webbeans.component.AbstractOwbBean.destroy(AbstractOwbBean.java:179)
>   at 
> org.apache.webbeans.context.AbstractContext.destroyInstance(AbstractContext.java:206)
>   at 
> org.apache.webbeans.context.AbstractContext.destroyInstance(AbstractContext.java:192)
>   at 
> org.apache.webbeans.context.AbstractContext.destroy(AbstractContext.java:218)
>   at 
> org.apache.webbeans.web.context.WebContextsService.destroyRequestContext(WebContextsService.java:408)
>   at 
> org.apache.openejb.cdi.CdiAppContextsService.destroyRequestContext(CdiAppContextsService.java:113)
>   at 
> org.apache.webbeans.web.context.WebContextsService.endContext(WebContextsService.java:223)
>   at 
> org.apache.openejb.server.httpd.BeginWebBeansListener.requestDestroyed(BeginWebBeansListener.java:99)
>   at 
> org.apache.catalina.core.StandardContext.fireRequestDestroyEvent(StandardContext.java:5974)
>   at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
>   at 
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:80)
>   at 
> org.apache.tomee.catalina.OpenEJBSecurityListener$RequestCapturer.invoke(OpenEJBSecurityListener.java:97)
>   at 
> org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:650)
>   at 
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
>   at 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
>   at 
> org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:799)
>   at 
> org.ap

[jira] [Commented] (TOMEE-2143) AbstractOwbBean.destroy(..) hits NPE in MyFaces 2.2.12 when cleaning up a user's Session and related "ViewScopeBeanHolder"

2018-07-23 Thread Martin Wiesner (JIRA)


[ 
https://issues.apache.org/jira/browse/TOMEE-2143?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16553432#comment-16553432
 ] 

Martin Wiesner commented on TOMEE-2143:
---

+FYI:+

I've just updated my self-contained example to use the latest release version 
*7.0.5* and pushed these minor changes to GitHub. I can report that this 
version is also affected by the reported effects.

> AbstractOwbBean.destroy(..) hits NPE in MyFaces 2.2.12 when cleaning up a 
> user's Session and related  "ViewScopeBeanHolder"
> ---
>
> Key: TOMEE-2143
> URL: https://issues.apache.org/jira/browse/TOMEE-2143
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 7.0.3, 7.0.4, 7.0.5
> Environment: TomEE > 7.0.3 (plus)
> MyFaces 2.2.12, Omnifaces 2.6.8
> Shiro 1.4.0
> Java 1.8.0-U171 (OpenJDK / Oracle)
> OS: MacOS 10.13.x, Windows 10 (1607, 1709, 1803)
>Reporter: Martin Wiesner
>Priority: Major
>
> In an *EAR*-bundled application with several EJB jars and two WAR files, when 
> I logout from my JSF-application via this piece of code here:
> {code:java}
> public void logout() throws IOException {
> SecurityUtils.getSubject().logout();
> Faces.invalidateSession();
> Faces.redirect("login.xhtml");
> }
> {code}
> The moment the user session is invalidated, the redirect to the login screen 
> is triggered sucessfully. However, I encounter the following stack trace 
> within my standalone installation of TomEE plus (taken from catalina.out):
> {code:java}
> [http-nio-8080-exec-8] org.apache.webbeans.component.AbstractOwbBean.destroy 
> Exception thrown while destroying bean instance : [ViewScopeBeanHolder, 
> WebBeansType:MANAGED, Name:null, API 
> Types:[org.apache.myfaces.cdi.view.ViewScopeBeanHolder,java.lang.Object,java.io.Serializable],
>  Qualifiers:[javax.enterprise.inject.Default,javax.enterprise.inject.Any]]
>  java.lang.NullPointerException
>   at 
> org.apache.myfaces.cdi.view.ViewScopeContextImpl.destroyAllActive(ViewScopeContextImpl.java:229)
>   at 
> org.apache.myfaces.cdi.view.ViewScopeContextImpl.destroyAllActive(ViewScopeContextImpl.java:223)
>   at 
> org.apache.myfaces.cdi.view.ViewScopeBeanHolder.destroyBeansOnPreDestroy(ViewScopeBeanHolder.java:221)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:498)
>   at 
> org.apache.webbeans.intercept.LifecycleInterceptorInvocationContext.proceed(LifecycleInterceptorInvocationContext.java:103)
>   at 
> org.apache.webbeans.portable.InjectionTargetImpl.preDestroy(InjectionTargetImpl.java:352)
>   at 
> org.apache.webbeans.component.AbstractOwbBean.destroy(AbstractOwbBean.java:179)
>   at 
> org.apache.webbeans.context.AbstractContext.destroyInstance(AbstractContext.java:206)
>   at 
> org.apache.webbeans.context.AbstractContext.destroyInstance(AbstractContext.java:192)
>   at 
> org.apache.webbeans.context.AbstractContext.destroy(AbstractContext.java:218)
>   at 
> org.apache.webbeans.web.context.WebContextsService.destroyRequestContext(WebContextsService.java:408)
>   at 
> org.apache.openejb.cdi.CdiAppContextsService.destroyRequestContext(CdiAppContextsService.java:113)
>   at 
> org.apache.webbeans.web.context.WebContextsService.endContext(WebContextsService.java:223)
>   at 
> org.apache.openejb.server.httpd.BeginWebBeansListener.requestDestroyed(BeginWebBeansListener.java:99)
>   at 
> org.apache.catalina.core.StandardContext.fireRequestDestroyEvent(StandardContext.java:5974)
>   at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
>   at 
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:80)
>   at 
> org.apache.tomee.catalina.OpenEJBSecurityListener$RequestCapturer.invoke(OpenEJBSecurityListener.java:97)
>   at 
> org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:650)
>   at 
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
>   at 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
>   at 
> org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:799)
>   at 
> org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
>   at 
> org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
>   at 
> org.apache.tomcat.util.net.NioEndpoint$So

[jira] [Commented] (TOMEE-2143) AbstractOwbBean.destroy(..) hits NPE in MyFaces 2.2.12 when cleaning up a user's Session and related "ViewScopeBeanHolder"

2018-07-23 Thread Thomas Andraschko (JIRA)


[ 
https://issues.apache.org/jira/browse/TOMEE-2143?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16553431#comment-16553431
 ] 

Thomas Andraschko commented on TOMEE-2143:
--

[~romain.manni-bucau]
Do you have time to check it?
We could easily add a null check in MF but that doesn't fix the origin.

> AbstractOwbBean.destroy(..) hits NPE in MyFaces 2.2.12 when cleaning up a 
> user's Session and related  "ViewScopeBeanHolder"
> ---
>
> Key: TOMEE-2143
> URL: https://issues.apache.org/jira/browse/TOMEE-2143
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 7.0.3, 7.0.4, 7.0.5
> Environment: TomEE > 7.0.3 (plus)
> MyFaces 2.2.12, Omnifaces 2.6.8
> Shiro 1.4.0
> Java 1.8.0-U171 (OpenJDK / Oracle)
> OS: MacOS 10.13.x, Windows 10 (1607, 1709, 1803)
>Reporter: Martin Wiesner
>Priority: Major
>
> In an *EAR*-bundled application with several EJB jars and two WAR files, when 
> I logout from my JSF-application via this piece of code here:
> {code:java}
> public void logout() throws IOException {
> SecurityUtils.getSubject().logout();
> Faces.invalidateSession();
> Faces.redirect("login.xhtml");
> }
> {code}
> The moment the user session is invalidated, the redirect to the login screen 
> is triggered sucessfully. However, I encounter the following stack trace 
> within my standalone installation of TomEE plus (taken from catalina.out):
> {code:java}
> [http-nio-8080-exec-8] org.apache.webbeans.component.AbstractOwbBean.destroy 
> Exception thrown while destroying bean instance : [ViewScopeBeanHolder, 
> WebBeansType:MANAGED, Name:null, API 
> Types:[org.apache.myfaces.cdi.view.ViewScopeBeanHolder,java.lang.Object,java.io.Serializable],
>  Qualifiers:[javax.enterprise.inject.Default,javax.enterprise.inject.Any]]
>  java.lang.NullPointerException
>   at 
> org.apache.myfaces.cdi.view.ViewScopeContextImpl.destroyAllActive(ViewScopeContextImpl.java:229)
>   at 
> org.apache.myfaces.cdi.view.ViewScopeContextImpl.destroyAllActive(ViewScopeContextImpl.java:223)
>   at 
> org.apache.myfaces.cdi.view.ViewScopeBeanHolder.destroyBeansOnPreDestroy(ViewScopeBeanHolder.java:221)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:498)
>   at 
> org.apache.webbeans.intercept.LifecycleInterceptorInvocationContext.proceed(LifecycleInterceptorInvocationContext.java:103)
>   at 
> org.apache.webbeans.portable.InjectionTargetImpl.preDestroy(InjectionTargetImpl.java:352)
>   at 
> org.apache.webbeans.component.AbstractOwbBean.destroy(AbstractOwbBean.java:179)
>   at 
> org.apache.webbeans.context.AbstractContext.destroyInstance(AbstractContext.java:206)
>   at 
> org.apache.webbeans.context.AbstractContext.destroyInstance(AbstractContext.java:192)
>   at 
> org.apache.webbeans.context.AbstractContext.destroy(AbstractContext.java:218)
>   at 
> org.apache.webbeans.web.context.WebContextsService.destroyRequestContext(WebContextsService.java:408)
>   at 
> org.apache.openejb.cdi.CdiAppContextsService.destroyRequestContext(CdiAppContextsService.java:113)
>   at 
> org.apache.webbeans.web.context.WebContextsService.endContext(WebContextsService.java:223)
>   at 
> org.apache.openejb.server.httpd.BeginWebBeansListener.requestDestroyed(BeginWebBeansListener.java:99)
>   at 
> org.apache.catalina.core.StandardContext.fireRequestDestroyEvent(StandardContext.java:5974)
>   at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
>   at 
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:80)
>   at 
> org.apache.tomee.catalina.OpenEJBSecurityListener$RequestCapturer.invoke(OpenEJBSecurityListener.java:97)
>   at 
> org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:650)
>   at 
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
>   at 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
>   at 
> org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:799)
>   at 
> org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
>   at 
> org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
>   at 
> org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1457)
>   at 
> org.apache.tomcat.util.n

[jira] [Updated] (TOMEE-2143) AbstractOwbBean.destroy(..) hits NPE in MyFaces 2.2.12 when cleaning up a user's Session and related "ViewScopeBeanHolder"

2018-07-23 Thread Martin Wiesner (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-2143?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Wiesner updated TOMEE-2143:
--
Environment: 
TomEE > 7.0.3 (plus)
MyFaces 2.2.12, Omnifaces 2.6.8
Shiro 1.4.0
Java 1.8.0-U171 (OpenJDK / Oracle)
OS: MacOS 10.13.x, Windows 10 (1607, 1709, 1803)

  was:
TomEE 7.0.4 (plus)
MyFaces 2.2.12, Omnifaces 2.6.8
Shiro 1.4.0
Java 1.8.0-U171 (OpenJDK / Oracle)
OS: MacOS 10.13.x, Windows 10 (1607, 1709, 1803)


> AbstractOwbBean.destroy(..) hits NPE in MyFaces 2.2.12 when cleaning up a 
> user's Session and related  "ViewScopeBeanHolder"
> ---
>
> Key: TOMEE-2143
> URL: https://issues.apache.org/jira/browse/TOMEE-2143
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 7.0.3, 7.0.4, 7.0.5
> Environment: TomEE > 7.0.3 (plus)
> MyFaces 2.2.12, Omnifaces 2.6.8
> Shiro 1.4.0
> Java 1.8.0-U171 (OpenJDK / Oracle)
> OS: MacOS 10.13.x, Windows 10 (1607, 1709, 1803)
>Reporter: Martin Wiesner
>Priority: Major
>
> In an *EAR*-bundled application with several EJB jars and two WAR files, when 
> I logout from my JSF-application via this piece of code here:
> {code:java}
> public void logout() throws IOException {
> SecurityUtils.getSubject().logout();
> Faces.invalidateSession();
> Faces.redirect("login.xhtml");
> }
> {code}
> The moment the user session is invalidated, the redirect to the login screen 
> is triggered sucessfully. However, I encounter the following stack trace 
> within my standalone installation of TomEE plus (taken from catalina.out):
> {code:java}
> [http-nio-8080-exec-8] org.apache.webbeans.component.AbstractOwbBean.destroy 
> Exception thrown while destroying bean instance : [ViewScopeBeanHolder, 
> WebBeansType:MANAGED, Name:null, API 
> Types:[org.apache.myfaces.cdi.view.ViewScopeBeanHolder,java.lang.Object,java.io.Serializable],
>  Qualifiers:[javax.enterprise.inject.Default,javax.enterprise.inject.Any]]
>  java.lang.NullPointerException
>   at 
> org.apache.myfaces.cdi.view.ViewScopeContextImpl.destroyAllActive(ViewScopeContextImpl.java:229)
>   at 
> org.apache.myfaces.cdi.view.ViewScopeContextImpl.destroyAllActive(ViewScopeContextImpl.java:223)
>   at 
> org.apache.myfaces.cdi.view.ViewScopeBeanHolder.destroyBeansOnPreDestroy(ViewScopeBeanHolder.java:221)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:498)
>   at 
> org.apache.webbeans.intercept.LifecycleInterceptorInvocationContext.proceed(LifecycleInterceptorInvocationContext.java:103)
>   at 
> org.apache.webbeans.portable.InjectionTargetImpl.preDestroy(InjectionTargetImpl.java:352)
>   at 
> org.apache.webbeans.component.AbstractOwbBean.destroy(AbstractOwbBean.java:179)
>   at 
> org.apache.webbeans.context.AbstractContext.destroyInstance(AbstractContext.java:206)
>   at 
> org.apache.webbeans.context.AbstractContext.destroyInstance(AbstractContext.java:192)
>   at 
> org.apache.webbeans.context.AbstractContext.destroy(AbstractContext.java:218)
>   at 
> org.apache.webbeans.web.context.WebContextsService.destroyRequestContext(WebContextsService.java:408)
>   at 
> org.apache.openejb.cdi.CdiAppContextsService.destroyRequestContext(CdiAppContextsService.java:113)
>   at 
> org.apache.webbeans.web.context.WebContextsService.endContext(WebContextsService.java:223)
>   at 
> org.apache.openejb.server.httpd.BeginWebBeansListener.requestDestroyed(BeginWebBeansListener.java:99)
>   at 
> org.apache.catalina.core.StandardContext.fireRequestDestroyEvent(StandardContext.java:5974)
>   at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
>   at 
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:80)
>   at 
> org.apache.tomee.catalina.OpenEJBSecurityListener$RequestCapturer.invoke(OpenEJBSecurityListener.java:97)
>   at 
> org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:650)
>   at 
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
>   at 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
>   at 
> org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:799)
>   at 
> org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
>   at 
> org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
>

[jira] [Updated] (TOMEE-2143) AbstractOwbBean.destroy(..) hits NPE in MyFaces 2.2.12 when cleaning up a user's Session and related "ViewScopeBeanHolder"

2018-07-23 Thread Martin Wiesner (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-2143?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Wiesner updated TOMEE-2143:
--
Affects Version/s: 7.0.5

> AbstractOwbBean.destroy(..) hits NPE in MyFaces 2.2.12 when cleaning up a 
> user's Session and related  "ViewScopeBeanHolder"
> ---
>
> Key: TOMEE-2143
> URL: https://issues.apache.org/jira/browse/TOMEE-2143
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 7.0.3, 7.0.4, 7.0.5
> Environment: TomEE 7.0.4 (plus)
> MyFaces 2.2.12, Omnifaces 2.6.8
> Shiro 1.4.0
> Java 1.8.0-U171 (OpenJDK / Oracle)
> OS: MacOS 10.13.x, Windows 10 (1607, 1709, 1803)
>Reporter: Martin Wiesner
>Priority: Major
>
> In an *EAR*-bundled application with several EJB jars and two WAR files, when 
> I logout from my JSF-application via this piece of code here:
> {code:java}
> public void logout() throws IOException {
> SecurityUtils.getSubject().logout();
> Faces.invalidateSession();
> Faces.redirect("login.xhtml");
> }
> {code}
> The moment the user session is invalidated, the redirect to the login screen 
> is triggered sucessfully. However, I encounter the following stack trace 
> within my standalone installation of TomEE plus (taken from catalina.out):
> {code:java}
> [http-nio-8080-exec-8] org.apache.webbeans.component.AbstractOwbBean.destroy 
> Exception thrown while destroying bean instance : [ViewScopeBeanHolder, 
> WebBeansType:MANAGED, Name:null, API 
> Types:[org.apache.myfaces.cdi.view.ViewScopeBeanHolder,java.lang.Object,java.io.Serializable],
>  Qualifiers:[javax.enterprise.inject.Default,javax.enterprise.inject.Any]]
>  java.lang.NullPointerException
>   at 
> org.apache.myfaces.cdi.view.ViewScopeContextImpl.destroyAllActive(ViewScopeContextImpl.java:229)
>   at 
> org.apache.myfaces.cdi.view.ViewScopeContextImpl.destroyAllActive(ViewScopeContextImpl.java:223)
>   at 
> org.apache.myfaces.cdi.view.ViewScopeBeanHolder.destroyBeansOnPreDestroy(ViewScopeBeanHolder.java:221)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:498)
>   at 
> org.apache.webbeans.intercept.LifecycleInterceptorInvocationContext.proceed(LifecycleInterceptorInvocationContext.java:103)
>   at 
> org.apache.webbeans.portable.InjectionTargetImpl.preDestroy(InjectionTargetImpl.java:352)
>   at 
> org.apache.webbeans.component.AbstractOwbBean.destroy(AbstractOwbBean.java:179)
>   at 
> org.apache.webbeans.context.AbstractContext.destroyInstance(AbstractContext.java:206)
>   at 
> org.apache.webbeans.context.AbstractContext.destroyInstance(AbstractContext.java:192)
>   at 
> org.apache.webbeans.context.AbstractContext.destroy(AbstractContext.java:218)
>   at 
> org.apache.webbeans.web.context.WebContextsService.destroyRequestContext(WebContextsService.java:408)
>   at 
> org.apache.openejb.cdi.CdiAppContextsService.destroyRequestContext(CdiAppContextsService.java:113)
>   at 
> org.apache.webbeans.web.context.WebContextsService.endContext(WebContextsService.java:223)
>   at 
> org.apache.openejb.server.httpd.BeginWebBeansListener.requestDestroyed(BeginWebBeansListener.java:99)
>   at 
> org.apache.catalina.core.StandardContext.fireRequestDestroyEvent(StandardContext.java:5974)
>   at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
>   at 
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:80)
>   at 
> org.apache.tomee.catalina.OpenEJBSecurityListener$RequestCapturer.invoke(OpenEJBSecurityListener.java:97)
>   at 
> org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:650)
>   at 
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
>   at 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
>   at 
> org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:799)
>   at 
> org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
>   at 
> org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
>   at 
> org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1457)
>   at 
> org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
>   at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
>   at 

svn commit: r1836481 - /tomee/site/trunk/content/download-ng.html

2018-07-23 Thread jgallimore
Author: jgallimore
Date: Mon Jul 23 10:14:39 2018
New Revision: 1836481

URL: http://svn.apache.org/viewvc?rev=1836481&view=rev
Log:
Update download pages

Modified:
tomee/site/trunk/content/download-ng.html

Modified: tomee/site/trunk/content/download-ng.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/download-ng.html?rev=1836481&r1=1836480&r2=1836481&view=diff
==
--- tomee/site/trunk/content/download-ng.html (original)
+++ tomee/site/trunk/content/download-ng.html Mon Jul 23 10:14:39 2018
@@ -135,7 +135,7 @@ Note: Only the TomEE 1.x WebProfile and
 23 Jul 
2018
 60 
MB
 TAR.GZ
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.tar.gz.md5";> MD5
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plume.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plume.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plume.tar.gz.md5";> MD5
 
 
 TomEE 
plume
@@ -143,7 +143,7 @@ Note: Only the TomEE 1.x WebProfile and
 23 Jul 
2018
 61 
MB
 ZIP
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.zip.md5";> MD5
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plume.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plume.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plume.zip.md5";> MD5
 
 
 TomEE 
plus
@@ -151,7 +151,7 @@ Note: Only the TomEE 1.x WebProfile and
 23 Jul 
2018
 54 
MB
 TAR.GZ
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.tar.gz.md5";> MD5
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plus.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plus.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plus.tar.gz.md5";> MD5
 
 
 TomEE 
plus
@@ -159,7 +159,7 @@ Note: Only the TomEE 1.x WebProfile and
 23 Jul 
2018
 54 
MB
 ZIP
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.zip.md5";> MD5
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plus.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plus.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-plus.zip.md5";> MD5
 
 
 TomEE 
webprofile
@@ -167,7 +167,7 @@ Note: Only the TomEE 1.x WebProfile and
 23 Jul 
2018
 38 
MB
 TAR.GZ
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.tar.gz.md5";> MD5
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-webprofile.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-webprofile.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.5/apache-tomee-7.0.5-webprofile.tar.gz.md5";> MD5
 
 
 TomEE 
webprofile
@@ -175,7 +175,7 @@ Note: Only the TomEE 1.x WebProfile and
 23 Jul 
2018
 38 
MB
 ZIP
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.zi

tomee-site-generator git commit: Missed some version replacement

2018-07-23 Thread jgallimore
Repository: tomee-site-generator
Updated Branches:
  refs/heads/master a7ce15998 -> 7c1306e49


Missed some version replacement


Project: http://git-wip-us.apache.org/repos/asf/tomee-site-generator/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/tomee-site-generator/commit/7c1306e4
Tree: http://git-wip-us.apache.org/repos/asf/tomee-site-generator/tree/7c1306e4
Diff: http://git-wip-us.apache.org/repos/asf/tomee-site-generator/diff/7c1306e4

Branch: refs/heads/master
Commit: 7c1306e49cc94b68b9b78093fa3e64f5a86d5906
Parents: a7ce159
Author: Jonathan Gallimore 
Authored: Mon Jul 23 11:11:35 2018 +0100
Committer: Jonathan Gallimore 
Committed: Mon Jul 23 11:11:35 2018 +0100

--
 src/main/jbake/content/download-ng.adoc | 24 
 1 file changed, 12 insertions(+), 12 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tomee-site-generator/blob/7c1306e4/src/main/jbake/content/download-ng.adoc
--
diff --git a/src/main/jbake/content/download-ng.adoc 
b/src/main/jbake/content/download-ng.adoc
index 9356844..24441e0 100755
--- a/src/main/jbake/content/download-ng.adoc
+++ b/src/main/jbake/content/download-ng.adoc
@@ -12,18 +12,18 @@ IMPORTANT: Note: Only the TomEE 1.x WebProfile and JAX-RS 
distributions are cert
 
 |Name|Version|Date|Size|Type|Links
 
-|TomEE plume|7.0.5|23 Jul 2018|60 MB |TAR.GZ| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.tar.gz[icon:download[]
 TAR.GZ] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.tar.gz.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.tar.gz.md5[icon:download[]
 MD5]
-|TomEE plume|7.0.5|23 Jul 2018|61 MB |ZIP| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.zip[icon:download[]
 ZIP] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.zip.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.zip.md5[icon:download[]
 MD5]
-|TomEE plus|7.0.5|23 Jul 2018|54 MB |TAR.GZ| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.tar.gz[icon:download[]
 TAR.GZ] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.tar.gz.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.tar.gz.md5[icon:download[]
 MD5]
-|TomEE plus|7.0.5|23 Jul 2018|54 MB |ZIP| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.zip[icon:download[]
 ZIP] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.zip.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.zip.md5[icon:download[]
 MD5]
-|TomEE webprofile|7.0.5|23 Jul 2018|38 MB |TAR.GZ| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.tar.gz[icon:download[]
 TAR.GZ] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.tar.gz.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.tar.gz.md5[icon:download[]
 MD5]
-|TomEE webprofile|7.0.5|23 Jul 2018|38 MB |ZIP| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.zip[icon:download[]
 ZIP] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.zip.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.zip.md5[icon:download[]
 MD5]
-|OpenEJB Standalone|7.0.5|23 Jul 2018|37 MB |TAR.GZ| 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.tar.gz[icon:download[]
 TAR.GZ] 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.tar.gz.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.tar.gz.md5[icon:download[]
 MD5]
-|OpenEJB Standalone|7.0.5|23 Jul 2018|37 MB |ZIP| 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.zip[icon:download[]
 ZIP] 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.zip.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-

svn commit: r1836480 [2/4] - in /tomee/site/trunk/content: download-archive.html download-archive.pdf download-ng.html download-ng.pdf

2018-07-23 Thread jgallimore
Modified: tomee/site/trunk/content/download-archive.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/download-archive.pdf?rev=1836480&r1=1836479&r2=1836480&view=diff
==
--- tomee/site/trunk/content/download-archive.pdf (original)
+++ tomee/site/trunk/content/download-archive.pdf Mon Jul 23 10:08:52 2018
@@ -4,15 +4,15 @@
 << /Title (Archive)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20171024230343+02'00')
-/ModDate (D:20171024230343+02'00')
+/CreationDate (D:20180723105600+01'00')
+/ModDate (D:20180723105600+01'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
-/Outlines 875 0 R
-/PageLabels 877 0 R
+/Outlines 878 0 R
+/PageLabels 880 0 R
 /PageMode /UseOutlines
 /OpenAction [7 0 R /FitH 842.89]
 /ViewerPreferences << /DisplayDocTitle true
@@ -22,7 +22,7 @@ endobj
 3 0 obj
 << /Type /Pages
 /Count 35
-/Kids [7 0 R 10 0 R 35 0 R 61 0 R 87 0 R 113 0 R 139 0 R 165 0 R 191 0 R 217 0 
R 243 0 R 269 0 R 295 0 R 321 0 R 347 0 R 373 0 R 399 0 R 425 0 R 448 0 R 474 0 
R 497 0 R 523 0 R 549 0 R 572 0 R 598 0 R 621 0 R 644 0 R 670 0 R 693 0 R 719 0 
R 745 0 R 771 0 R 797 0 R 823 0 R 849 0 R]
+/Kids [7 0 R 10 0 R 35 0 R 61 0 R 87 0 R 113 0 R 139 0 R 165 0 R 191 0 R 217 0 
R 243 0 R 269 0 R 295 0 R 321 0 R 347 0 R 373 0 R 399 0 R 425 0 R 451 0 R 477 0 
R 500 0 R 526 0 R 552 0 R 575 0 R 601 0 R 624 0 R 647 0 R 673 0 R 696 0 R 722 0 
R 748 0 R 774 0 R 800 0 R 826 0 R 852 0 R]
 >>
 endobj
 4 0 obj
@@ -77,17 +77,17 @@ endobj
 endobj
 8 0 obj
 << /Type /Font
-/BaseFont /QE+NotoSerif
+/BaseFont /JX+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 879 0 R
+/FontDescriptor 882 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 881 0 R
-/ToUnicode 880 0 R
+/Widths 884 0 R
+/ToUnicode 883 0 R
 >>
 endobj
 9 0 obj
-<< /Length 31841
+<< /Length 31855
 >>
 stream
 q
@@ -620,7 +620,7 @@ S
 BT
 134.3730008 703.30301 Td
 /F1.0 10.5 Tf
-<372e302e33> Tj
+<372e302e34> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -655,7 +655,7 @@ S
 BT
 217.5060016 703.30301 Td
 /F1.0 10.5 Tf
-<37204d61722032303137> Tj
+<3236205365702032303137> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -690,7 +690,7 @@ S
 BT
 300.6390024 703.30301 Td
 /F1.0 10.5 Tf
-<3535204d42> Tj
+<3630204d42> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -892,7 +892,7 @@ S
 BT
 134.3730008 608.623 Td
 /F1.0 10.5 Tf
-<372e302e33> Tj
+<372e302e34> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -927,7 +927,7 @@ S
 BT
 217.5060016 608.623 Td
 /F1.0 10.5 Tf
-<37204d61722032303137> Tj
+<3236205365702032303137> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -962,7 +962,7 @@ S
 BT
 300.6390024 608.623 Td
 /F1.0 10.5 Tf
-<3535204d42> Tj
+<3631204d42> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -1164,7 +1164,7 @@ S
 BT
 134.3730008 528.223 Td
 /F1.0 10.5 Tf
-<372e302e33> Tj
+<372e302e34> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -1199,7 +1199,7 @@ S
 BT
 217.5060016 528.223 Td
 /F1.0 10.5 Tf
-<37204d61722032303137> Tj
+<3236205365702032303137> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -1234,7 +1234,7 @@ S
 BT
 300.6390024 528.223 Td
 /F1.0 10.5 Tf
-<3438204d42> Tj
+<3534204d42> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -1436,7 +1436,7 @@ S
 BT
 134.3730008 433.543 Td
 /F1.0 10.5 Tf
-<372e302e33> Tj
+<372e302e34> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -1471,7 +1471,7 @@ S
 BT
 217.5060016 433.543 Td
 /F1.0 10.5 Tf
-<37204d61722032303137> Tj
+<3236205365702032303137> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -1506,7 +1506,7 @@ S
 BT
 300.6390024 433.543 Td
 /F1.0 10.5 Tf
-<3438204d42> Tj
+<3534204d42> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -1715,7 +1715,7 @@ S
 BT
 134.3730008 353.143 Td
 /F1.0 10.5 Tf
-<372e302e33> Tj
+<372e302e34> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -1750,7 +1750,7 @@ S
 BT
 217.5060016 353.143 Td
 /F1.0 10.5 Tf
-<37204d61722032303137> Tj
+<3236205365702032303137> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -1785,7 +1785,7 @@ S
 BT
 300.6390024 353.143 Td
 /F1.0 10.5 Tf
-<204d42> Tj
+<3338204d42> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -1994,7 +1994,7 @@ S
 BT
 134.3730008 258.462997 Td
 /F1.0 10.5 Tf
-<372e302e33> Tj
+<372e302e34> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -2029,7 +2029,7 @@ S
 BT
 217.5060016 258.462997 Td
 /F1.0 10.5 Tf
-<37204d61722032303137> Tj
+<3236205365702032303137> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -2064,7 +2064,7 @@ S
 BT
 300.6390024 258.462997 Td
 /F1.0 10.5 Tf
-<3334204d42> Tj
+<3338204d42> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -2273,7 +2273,7 @@ S
 BT
 134.3730008 178.062996 Td
 /F1.0 10.5 Tf
-<372e302e33> Tj
+<372e302e34> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -2308,7 +2308,7 @@ S
 BT
 217.5060016 178.062996 Td
 /F1.0 10.5 Tf
-<37204d61722032303137> Tj
+<3236205365702032303137> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -2343,7 +2343,7 @@ S
 BT
 300.6390024 178.062996 Td
 /F1.0 10.5 Tf
-<3335204d42> Tj
+<3337204d42> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -2512,7 +2512,7 @@ endobj
 /Font << /F1.0 8 0 R
 /F2

svn commit: r1836480 [3/4] - in /tomee/site/trunk/content: download-archive.html download-archive.pdf download-ng.html download-ng.pdf

2018-07-23 Thread jgallimore
Modified: tomee/site/trunk/content/download-ng.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/download-ng.html?rev=1836480&r1=1836479&r2=1836480&view=diff
==
--- tomee/site/trunk/content/download-ng.html (original)
+++ tomee/site/trunk/content/download-ng.html Mon Jul 23 10:08:52 2018
@@ -109,19 +109,6 @@ Note: Only the TomEE 1.x WebProfile and
 
 
 
-
-
-
-https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12312320&version=12339959";>TomEE
 7.0.4 release notes
-
-
-https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12312320&version=12335485";>Tomee
 1.7.5 release notes
-
-
-Older versions can be found here
-
-
-
 
 
 
@@ -144,96 +131,96 @@ Note: Only the TomEE 1.x WebProfile and
 
 
 TomEE 
plume
-7.0.4
-26 Sep 
2017
+7.0.5
+23 Jul 
2018
 60 
MB
 TAR.GZ
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.tar.gz.md5";> MD5
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.tar.gz.md5";> MD5
 
 
 TomEE 
plume
-7.0.4
-26 Sep 
2017
+7.0.5
+23 Jul 
2018
 61 
MB
 ZIP
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.zip.md5";> MD5
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plume.zip.md5";> MD5
 
 
 TomEE 
plus
-7.0.4
-26 Sep 
2017
+7.0.5
+23 Jul 
2018
 54 
MB
 TAR.GZ
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.tar.gz.md5";> MD5
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.tar.gz.md5";> MD5
 
 
 TomEE 
plus
-7.0.4
-26 Sep 
2017
+7.0.5
+23 Jul 
2018
 54 
MB
 ZIP
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.zip.md5";> MD5
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-plus.zip.md5";> MD5
 
 
 TomEE 
webprofile
-7.0.4
-26 Sep 
2017
+7.0.5
+23 Jul 
2018
 38 
MB
 TAR.GZ
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.tar.gz.md5";> MD5
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.5-webprofile.tar.gz.md5";> MD5
 
 
 TomEE 
webprofile
-7.0.4
-26 Sep 
2017
+7.0.5
+23 Jul 
2018
 38 
MB
 ZIP
-http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-

svn commit: r1836480 [4/4] - in /tomee/site/trunk/content: download-archive.html download-archive.pdf download-ng.html download-ng.pdf

2018-07-23 Thread jgallimore
Modified: tomee/site/trunk/content/download-ng.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/download-ng.pdf?rev=1836480&r1=1836479&r2=1836480&view=diff
==
--- tomee/site/trunk/content/download-ng.pdf (original)
+++ tomee/site/trunk/content/download-ng.pdf Mon Jul 23 10:08:52 2018
@@ -4,8 +4,8 @@
 << /Title (Downloads)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20171024230343+02'00')
-/ModDate (D:20171024230343+02'00')
+/CreationDate (D:20180723105600+01'00')
+/ModDate (D:20180723105600+01'00')
 >>
 endobj
 2 0 obj
@@ -21,8 +21,8 @@ endobj
 endobj
 3 0 obj
 << /Type /Pages
-/Count 4
-/Kids [7 0 R 10 0 R 37 0 R 63 0 R]
+/Count 5
+/Kids [7 0 R 10 0 R 34 0 R 60 0 R 86 0 R]
 >>
 endobj
 4 0 obj
@@ -77,7 +77,7 @@ endobj
 endobj
 8 0 obj
 << /Type /Font
-/BaseFont /MI+NotoSerif
+/BaseFont /CL+NotoSerif
 /Subtype /TrueType
 /FontDescriptor 93 0 R
 /FirstChar 32
@@ -87,7 +87,7 @@ endobj
 >>
 endobj
 9 0 obj
-<< /Length 32939
+<< /Length 31702
 >>
 stream
 q
@@ -127,298 +127,220 @@ ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-
--0.500 Tc
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-56.880501 758.146 Td
-/F1.0 10.5 Tf
- Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-
-0.000 Tc
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
-
-BT
-66.240001 758.146 Td
-/F1.0 10.5 Tf
-[<54> 29.78515625 <6f6d454520372e302e342072656c65617365206e6f746573>] TJ
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-
--0.500 Tc
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-56.880501 736.366 Td
-/F1.0 10.5 Tf
- Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-
-0.000 Tc
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
-
-BT
-66.240001 736.366 Td
-/F1.0 10.5 Tf
-[<54> 29.78515625 <6f6d656520312e372e352072656c65617365206e6f746573>] TJ
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-
--0.500 Tc
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-56.880501 714.586 Td
-/F1.0 10.5 Tf
- Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-
-0.000 Tc
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
-
-BT
-66.240001 714.586 Td
-/F1.0 10.5 Tf
-<4f6c6465722076657273696f6e732063616e20626520666f756e642068657265> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-48.240 675.490 83.133 23.280 re
+48.240 746.830 83.133 23.280 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-131.373 675.490 83.133 23.280 re
+131.373 746.830 83.133 23.280 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-214.506 675.490 83.133 23.280 re
+214.506 746.830 83.133 23.280 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-297.639 675.490 83.133 23.280 re
+297.639 746.830 83.133 23.280 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-380.772 675.490 83.133 23.280 re
+380.772 746.830 83.133 23.280 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-463.905 675.490 83.135 23.280 re
+463.905 746.830 83.135 23.280 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-48.240 580.810 83.133 94.680 re
+48.240 652.150 83.133 94.680 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-131.373 580.810 83.133 94.680 re
+131.373 652.150 83.133 94.680 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-214.506 580.810 83.133 94.680 re
+214.506 652.150 83.133 94.680 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-297.639 580.810 83.133 94.680 re
+297.639 652.150 83.133 94.680 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-380.772 580.810 83.133 94.680 re
+380.772 652.150 83.133 94.680 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-463.905 580.810 83.135 94.680 re
+463.905 652.150 83.135 94.680 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-48.240 500.410 83.133 80.400 re
+48.240 571.750 83.133 80.400 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-131.373 500.410 83.133 80.400 re
+131.373 571.750 83.133 80.400 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-214.506 500.410 83.133 80.400 re
+214.506 571.750 83.133 80.400 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-297.639 500.410 83.133 80.400 re
+297.639 571.750 83.133 80.400 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-380.772 500.410 83.133 80.400 re
+380.772 571.750 83.133 80.400 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-463.905 500.410 83.135 80.400 re
+463.905 571.750 83.135 80.400 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-48.240 405.730 83.133 94.680 re
+48.240 477.070 83.133 94.680 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-131.373 405.730 83.133 94.680 re
+131.373 477.070 83.133 94.680 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-214.506 405.730 83.133 94.680 re
+214.506 477.070 83.133 94.680 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-297.639 405.730 83.133 94.680 re
+297.639 477.070 83.133 94.680 re
 f
 0.000

svn commit: r1836480 [1/4] - in /tomee/site/trunk/content: download-archive.html download-archive.pdf download-ng.html download-ng.pdf

2018-07-23 Thread jgallimore
Author: jgallimore
Date: Mon Jul 23 10:08:52 2018
New Revision: 1836480

URL: http://svn.apache.org/viewvc?rev=1836480&view=rev
Log:
Update download pages

Modified:
tomee/site/trunk/content/download-archive.html
tomee/site/trunk/content/download-archive.pdf
tomee/site/trunk/content/download-ng.html
tomee/site/trunk/content/download-ng.pdf

Modified: tomee/site/trunk/content/download-archive.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/download-archive.html?rev=1836480&r1=1836479&r2=1836480&view=diff
==
--- tomee/site/trunk/content/download-archive.html (original)
+++ tomee/site/trunk/content/download-archive.html Mon Jul 23 10:08:52 2018
@@ -138,6 +138,110 @@ Note: Only the TomEE 1.x WebProfile and
 
 
 TomEE 
plume
+7.0.4
+26 Sep 
2017
+60 
MB
+TAR.GZ
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.tar.gz.md5";> MD5
+
+
+TomEE 
plume
+7.0.4
+26 Sep 
2017
+61 
MB
+ZIP
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.zip.md5";> MD5
+
+
+TomEE 
plus
+7.0.4
+26 Sep 
2017
+54 
MB
+TAR.GZ
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.tar.gz.md5";> MD5
+
+
+TomEE 
plus
+7.0.4
+26 Sep 
2017
+54 
MB
+ZIP
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.zip.md5";> MD5
+
+
+TomEE 
webprofile
+7.0.4
+26 Sep 
2017
+38 
MB
+TAR.GZ
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.tar.gz.md5";> MD5
+
+
+TomEE 
webprofile
+7.0.4
+26 Sep 
2017
+38 
MB
+ZIP
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.zip.md5";> MD5
+
+
+OpenEJB 
Standalone
+7.0.4
+26 Sep 
2017
+37 
MB
+TAR.GZ
+http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.tar.gz";> TAR.GZ http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.tar.gz.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.tar.gz.md5";> MD5
+
+
+OpenEJB 
Standalone
+7.0.4
+26 Sep 
2017
+37 
MB
+ZIP
+http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.zip";> ZIP http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.zip.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.zip.md5";> MD5
+
+
+TomEE 
Plume Webapp
+7.0.4
+26 Sep 
2017
+52 
MB
+WAR
+http://repo.maven.apache.org/maven2/org/apache/tomee/tomee-plume-webapp/7.0.4/tomee-plume-webapp-7.0.4.war";> WAR http://repo.maven.apache.org/maven2/org/apache/tomee/tomee-plume-webapp/7.0.4/tomee-plume-webapp-7.0.4.war.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/tomee-plume-webapp/7.0.4/tomee-plume-webapp-7.0.4.war.md5";> MD5
+
+
+TomEE Plus 
Webapp
+7.0.4
+26 Sep 
2017
+45 
MB
+WAR
+http://repo.maven.apache.org/maven2/org/apache/tomee/tomee-plus-webapp/7.0.4/tomee-plus-webapp-7.0.4.war";> WAR http://repo.maven.apache.org/maven2/org/apache/tomee/tomee-plus-webapp/7.0.4/tomee-plus-webapp-7.0.4.war.sha1";> SHA1 http://repo.maven.apache.org/maven2/org/apache/tomee/tomee-plus-webapp/7.0.4/tomee-plus-webapp-7.0.4.war.md5";> MD5
+
+
+TomEE 
Project source-release
+7.0.4
+26 Sep 
2017
+12 
MB
+ZIP
+http://repo.maven.apache.org/maven2/org/apache/tomee/

[jira] [Updated] (TOMEE-1307) Ensure full support of JSR-339 The Java API for RESTful Web Services 2.0 (JAX-RS)

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1307?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1307:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR-339 The Java API for RESTful Web Services 2.0 
> (JAX-RS)
> -
>
> Key: TOMEE-1307
> URL: https://issues.apache.org/jira/browse/TOMEE-1307
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR-339 The Java API for RESTful Web Services 2.0



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


tomee-site-generator git commit: Update download pages

2018-07-23 Thread jgallimore
Repository: tomee-site-generator
Updated Branches:
  refs/heads/master 13efde886 -> a7ce15998


Update download pages


Project: http://git-wip-us.apache.org/repos/asf/tomee-site-generator/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/tomee-site-generator/commit/a7ce1599
Tree: http://git-wip-us.apache.org/repos/asf/tomee-site-generator/tree/a7ce1599
Diff: http://git-wip-us.apache.org/repos/asf/tomee-site-generator/diff/a7ce1599

Branch: refs/heads/master
Commit: a7ce15998aaba01676e58cc902f659d26aca399b
Parents: 13efde8
Author: Jonathan Gallimore 
Authored: Mon Jul 23 10:59:20 2018 +0100
Committer: Jonathan Gallimore 
Committed: Mon Jul 23 10:59:20 2018 +0100

--
 src/main/jbake/content/download-archive.adoc | 14 -
 src/main/jbake/content/download-ng.adoc  | 24 +++
 2 files changed, 25 insertions(+), 13 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tomee-site-generator/blob/a7ce1599/src/main/jbake/content/download-archive.adoc
--
diff --git a/src/main/jbake/content/download-archive.adoc 
b/src/main/jbake/content/download-archive.adoc
index 8b7ea92..6ddca90 100644
--- a/src/main/jbake/content/download-archive.adoc
+++ b/src/main/jbake/content/download-archive.adoc
@@ -12,7 +12,19 @@ IMPORTANT: Note: Only the TomEE 1.x WebProfile and JAX-RS 
distributions are cert
 [.table.table-bordered,options="header"]
 |===
 |Name|Version|Date|Size|Type|Links
-
+|TomEE plume|7.0.4|26 Sep 2017|60 MB |TAR.GZ| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.tar.gz[icon:download[]
 TAR.GZ] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.tar.gz.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.tar.gz.md5[icon:download[]
 MD5]
+|TomEE plume|7.0.4|26 Sep 2017|61 MB |ZIP| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.zip[icon:download[]
 ZIP] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.zip.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plume.zip.md5[icon:download[]
 MD5]
+|TomEE plus|7.0.4|26 Sep 2017|54 MB |TAR.GZ| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.tar.gz[icon:download[]
 TAR.GZ] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.tar.gz.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.tar.gz.md5[icon:download[]
 MD5]
+|TomEE plus|7.0.4|26 Sep 2017|54 MB |ZIP| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.zip[icon:download[]
 ZIP] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.zip.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-plus.zip.md5[icon:download[]
 MD5]
+|TomEE webprofile|7.0.4|26 Sep 2017|38 MB |TAR.GZ| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.tar.gz[icon:download[]
 TAR.GZ] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.tar.gz.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.tar.gz.md5[icon:download[]
 MD5]
+|TomEE webprofile|7.0.4|26 Sep 2017|38 MB |ZIP| 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.zip[icon:download[]
 ZIP] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.zip.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.4/apache-tomee-7.0.4-webprofile.zip.md5[icon:download[]
 MD5]
+|OpenEJB Standalone|7.0.4|26 Sep 2017|37 MB |TAR.GZ| 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.tar.gz[icon:download[]
 TAR.GZ] 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.tar.gz.sha1[icon:download[]
 SHA1] 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.tar.gz.md5[icon:download[]
 MD5]
+|OpenEJB Standalone|7.0.4|26 Sep 2017|37 MB |ZIP| 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standalone-7.0.4.zip[icon:download[]
 ZIP] 
http://repo.maven.apache.org/maven2/org/apache/tomee/openejb-standalone/7.0.4/openejb-standa

[jira] [Updated] (TOMEE-1378) @Override annotations should be used wherever necessary

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1378?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1378:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> @Override annotations should be used wherever necessary
> ---
>
> Key: TOMEE-1378
> URL: https://issues.apache.org/jira/browse/TOMEE-1378
> Project: TomEE
>  Issue Type: Improvement
>Reporter: Daniel Kasmeroglu
>Priority: Minor
> Fix For: 7.0.6
>
> Attachments: override.patch
>
>
> Overriding methods should be annotated with _@Override_



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1614) Netbeans Tomcat Plugin Integration Does Not Detected TomeeStarted

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1614?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1614:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Netbeans Tomcat Plugin Integration Does Not Detected TomeeStarted
> -
>
> Key: TOMEE-1614
> URL: https://issues.apache.org/jira/browse/TOMEE-1614
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 1.7.3
> Environment: Ubuntu 14 LTS Netbeans latest release
>Reporter: Nuno G. de M
>Priority: Minor
> Fix For: 7.0.6
>
>
> Download the latest TOMEE Plume snapshot release.
> http://repository.apache.org/content/groups/snapshots/org/apache/openejb/apache-tomee/1.7.3-SNAPSHOT/
> After that, open your netbeans and on the Services tab add a new Server of 
> type Tomcat or TOMEE.
> Point to the folder where the snapshort tar.gz got extracted.
> Setup a user with the proper rights to administer tomee.
> for example
>  roles="tomcat,tomee-admin,manager-gui,manager-script,admin" username="admin"/>
> Now click start on the tomee server.
> Tomee quickly starts, but the plugin stays active forever stating:
> Waiting for tomcat to start.
> After a while the plugin will show an alert stating that the server failed to 
> start.
> The server started fine.
> NOTE:
> THe netbeans tomee plugin has a second bug that should be filed under a 
> different bug report.
> Which is, when you deploy an application that breaks during deployment, an 
> infinite loop of tomcat trying to repdeploy the broken application will take 
> place.
> I am leting you know of this second as right now I do not have the 
> opprotunity to make you a sample application to reproduce the problem, and 
> therefore will not open a bug report.
> Kindest regards.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1312) Ensure full support of JSR-345 Enterprise JavaBeans 3.2

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1312?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1312:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR-345 Enterprise JavaBeans 3.2 
> 
>
> Key: TOMEE-1312
> URL: https://issues.apache.org/jira/browse/TOMEE-1312
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR-345 Enterprise JavaBeansTM 3.2



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1311) Ensure full support of JSR 346 Contexts and Dependency Injection for Java EE 1.1

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1311?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1311:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR 346 Contexts and Dependency Injection for Java EE 
> 1.1
> 
>
> Key: TOMEE-1311
> URL: https://issues.apache.org/jira/browse/TOMEE-1311
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR 346 Contexts and Dependency Injection for Java EE 
> 1.1



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1868) Prevent hot deployment of "filepart" archives

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1868?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1868:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Prevent hot deployment of "filepart" archives
> -
>
> Key: TOMEE-1868
> URL: https://issues.apache.org/jira/browse/TOMEE-1868
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 1.7.4, 7.0.1
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 1.7.6, 7.0.6
>
>
> Dropping an application war into webapps sometimes deploys the partially 
> extracted war file with the [appname].filepart and then [appname]. This 
> obviously breaks both deployments and the only solution is to delete both, 
> wait for the undeploy, and then redeploy.
> This is to do with the transfer over scp - the extension is either 
> '.filepart' or '.partial'.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1310) Ensure full support of JSR-318 Interceptors 1.1

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1310?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1310:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR-318 Interceptors 1.1
> ---
>
> Key: TOMEE-1310
> URL: https://issues.apache.org/jira/browse/TOMEE-1310
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR-318 Interceptors 1.1



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1397) Invalid web.xml in example project

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1397?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1397:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Invalid web.xml in example project
> --
>
> Key: TOMEE-1397
> URL: https://issues.apache.org/jira/browse/TOMEE-1397
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 7.0.0
>Reporter: Daniel Kasmeroglu
>Priority: Minor
> Fix For: 7.0.6
>
> Attachments: tomee-1397.patch
>
>
> The _web.xml_ specifies the value _Transactional_ for a 
> _persistence-context-type_ which is incorrect as it should be _Transaction_ . 
> The corresponding commit on my local git could be found on:
> * 
> https://kasisoft.com/stash/projects/TOMEE/repos/tomee/commits/88315131c9b804fe166c2a909cd749768ab45eef



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1300) Support JSON JSR 353 - Java API for JSON Processing (JSON-P)

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1300?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1300:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Support JSON JSR 353 - Java API for JSON Processing (JSON-P)
> 
>
> Key: TOMEE-1300
> URL: https://issues.apache.org/jira/browse/TOMEE-1300
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Support JSON JSR 353 - Java API for JSON Processing (JSON-P)



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1318) Drop or deprecate EJB Entity Beans Support

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1318?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1318:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Drop or deprecate EJB Entity Beans Support
> --
>
> Key: TOMEE-1318
> URL: https://issues.apache.org/jira/browse/TOMEE-1318
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Drop or deprecate EJB Entity Beans Support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1419) [CQ] Removal and cleanup of redundant and unnecessary expressions

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1419?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1419:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> [CQ] Removal and cleanup of redundant and unnecessary expressions
> -
>
> Key: TOMEE-1419
> URL: https://issues.apache.org/jira/browse/TOMEE-1419
> Project: TomEE
>  Issue Type: Improvement
>Affects Versions: 7.0.0
>Reporter: Daniel Kasmeroglu
>Priority: Minor
> Fix For: 7.0.6
>
>
> The codebase currently contains several needless expressions like f.e.
> {code:java}
> File f = ...
> if(f.exists() && f.isFile()) { -> if(f.isFile()) {
>...
> }
> {code}
> {code:java}
> URLS.uri(module.getModuleId()) -> module.getModuleUri()
> {code}
> There are many more examples which I won't list here. These should be cleaned 
> up.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1287) Intermittent test failure org.apache.openejb.server.ssh.SSHServerTest

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1287?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1287:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Intermittent test failure org.apache.openejb.server.ssh.SSHServerTest
> -
>
> Key: TOMEE-1287
> URL: https://issues.apache.org/jira/browse/TOMEE-1287
> Project: TomEE
>  Issue Type: Task
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Intermittent test failure org.apache.openejb.server.ssh.SSHServerTest



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1525) tomee.bat complains about 'input line too long' when deploying big projects

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1525?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1525:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> tomee.bat complains about 'input line too long' when deploying big projects
> ---
>
> Key: TOMEE-1525
> URL: https://issues.apache.org/jira/browse/TOMEE-1525
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 7.0.0
> Environment: Windows.
>Reporter: Mark Struberg
>Priority: Major
> Fix For: 7.0.6
>
>
> tomee.bat complains about 'input line too long' when deploying big projects
> This comes from using -cp on the command to start the jvm. But if there are 
> too many classpath entries then the commandline exceeds the limit of 8k.
> We should use the environment variable CLASSPATH instead.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1319) Drop or deprecate JAX-RPC 1.1 Support

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1319?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1319:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Drop or deprecate JAX-RPC 1.1 Support
> -
>
> Key: TOMEE-1319
> URL: https://issues.apache.org/jira/browse/TOMEE-1319
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Drop or deprecate JAX-RPC 1.1 Support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1315) Ensure full support of JSR-907 JavaTM Transaction API 1.2

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1315?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1315:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR-907 JavaTM Transaction API 1.2
> -
>
> Key: TOMEE-1315
> URL: https://issues.apache.org/jira/browse/TOMEE-1315
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR-907 JavaTM Transaction API 1.2



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1314) Ensure full support of JSR-338 Java Persistence 2.1

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1314:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR-338 Java Persistence 2.1
> ---
>
> Key: TOMEE-1314
> URL: https://issues.apache.org/jira/browse/TOMEE-1314
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR-338 Java Persistence 2.1



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1302) Support JSR 236 - Concurrency Utilities for Java EE

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1302?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1302:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Support JSR 236 - Concurrency Utilities for Java EE
> ---
>
> Key: TOMEE-1302
> URL: https://issues.apache.org/jira/browse/TOMEE-1302
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Support JSR 236 - Concurrency Utilities for Java EE



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1461) Need a machine global mechanism for 'get next available port' to prevent 'address in use' issues

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1461?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1461:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Need a machine global mechanism for 'get next available port' to prevent 
> 'address in use' issues
> 
>
> Key: TOMEE-1461
> URL: https://issues.apache.org/jira/browse/TOMEE-1461
> Project: TomEE
>  Issue Type: Improvement
>Reporter: Andy Gumbrecht
>Assignee: Andy Gumbrecht
>Priority: Minor
> Fix For: 7.0.6
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1395) Invalid package in example: simple-mdb-with-descriptor

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1395?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1395:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Invalid package in example: simple-mdb-with-descriptor
> --
>
> Key: TOMEE-1395
> URL: https://issues.apache.org/jira/browse/TOMEE-1395
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 7.0.0
>Reporter: Daniel Kasmeroglu
>Priority: Minor
> Fix For: 7.0.6
>
> Attachments: tomee-1395.patch
>
>
> Just an invalid package name. A corresponding diff can be found here:
> https://kasisoft.com/stash/projects/TOMEE/repos/tomee/commits/e8f8d08b5733bd93a090fe2ff9e5dbe7f95f817e



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-2139) org.apache.tomee.jul.handler.rotating.ArchivingTest broken in 2nd iteration

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-2139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-2139:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> org.apache.tomee.jul.handler.rotating.ArchivingTest broken in 2nd iteration
> ---
>
> Key: TOMEE-2139
> URL: https://issues.apache.org/jira/browse/TOMEE-2139
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 7.0.4
>Reporter: Mark Struberg
>Assignee: Mark Struberg
>Priority: Major
> Fix For: 8.0.0, 7.0.6
>
>
> Seems the latest change caused the ArchivingTest to break in OSX and Linux. 
> java.lang.AssertionError
> org.apache.tomee.jul.handler.rotating.ArchivingTest.logAndRotateAndPurge(ArchivingTest.java:207)
> It only happens in the 2nd run (gzip).
> If I start gzip alone all works fine.
> So I assume that the delete event from the first run doesn't get consumed. 
> And then later ends up as result in the 2nd run. 
> Because that's what I get in the debugger: ENTRY_DELETE. 
> I'm avail on IRC for hacking on it.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1416) [CQ] Removal of unnecessary null checks.

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1416?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1416:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> [CQ] Removal of unnecessary null checks.
> 
>
> Key: TOMEE-1416
> URL: https://issues.apache.org/jira/browse/TOMEE-1416
> Project: TomEE
>  Issue Type: Improvement
>Affects Versions: 7.0.0
>Reporter: Daniel Kasmeroglu
>Priority: Minor
> Fix For: 7.0.6
>
>
> There are several locations where variables are definitely _null_ or _not 
> null_ . These locations should be cleaned up.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1399) Potential NPE in Assembler

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1399?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1399:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Potential NPE in Assembler
> --
>
> Key: TOMEE-1399
> URL: https://issues.apache.org/jira/browse/TOMEE-1399
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 7.0.0
>Reporter: Daniel Kasmeroglu
>Priority: Minor
> Fix For: 7.0.6
>
> Attachments: tomee-1399.patch
>
>
> There is a test whether _AppContext_ is _null_ or not. But it's dereferenced 
> ahead of this test so a _null_ value would still cause an NPE.
> See: 
> https://kasisoft.com/stash/projects/TOMEE/repos/tomee/commits/d0b85235aacd0a39559abcab677438c056e8aa81



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-2044) threadPool-queue (in ServicePool) from ejbd-Service is never processed

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-2044:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> threadPool-queue (in ServicePool) from ejbd-Service is never processed 
> ---
>
> Key: TOMEE-2044
> URL: https://issues.apache.org/jira/browse/TOMEE-2044
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 1.7.4
> Environment: FreeBSD 10.3-STABLE amd64 
> openjdk8-8.131.11
>Reporter: Lars Herschke
>Priority: Major
> Fix For: 7.0.6
>
>
> If you have many requests to your ejbd-service the queue from the threadPool 
> in ServicePool.java is filled. This queue is never processed depending on 
> your server config. If you have only ejbd-service enabled and the services 
> admin, ejbds and httpejbd are disabled all is fine. If you have two or more 
> of these services enabled the issue could occur. The reason is the following.
> KeepAliveServer.java has the following line to get the queue.
> final ServicePool incoming = 
> SystemInstance.get().getComponent(ServicePool.class);
> SystemInstance.java hold components in a HahMap with the class type as key. 
> On server-startup the above named services are initalized in 
> ServiceManager.manage(...). This method instances new ServicePool for this 
> services. Each ServicePool-instance calls in his constructor
> SystemInstance.get().setComponent(ServicePool.class, this);.
> Every other call of setComponent replace the old entry in the components 
> HashMap. So KeepAliveServer gets always the queue of the last initalized 
> service.
> Workaround:
> Use only one of the four above named services
> or
> set threadsCore for your services at least as high, that the queue is never 
> used.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-2091) NetworkUtilTest

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-2091?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-2091:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> NetworkUtilTest
> ---
>
> Key: TOMEE-2091
> URL: https://issues.apache.org/jira/browse/TOMEE-2091
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Build
>Affects Versions: 1.7.4, 7.0.3
>Reporter: Jonathan Gallimore
>Assignee: Jonathan Gallimore
>Priority: Major
> Fix For: 1.7.6, 7.0.6
>
>
> This test seems to fail occasionally:
> Running org.apache.openejb.util.NetworkUtilTest
> Exception in thread "test-thread-20" java.lang.AssertionError: Got a 
> duplicate port with ten seconds
> at org.junit.Assert.fail(Assert.java:88)
> at 
> org.apache.openejb.util.NetworkUtilTest$1.run(NetworkUtilTest.java:68)
> at java.lang.Thread.run(Thread.java:745)
> Machine safe port list = [1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 
> 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044]
> Tests run: 4, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 15.305 sec 
> <<< FAILURE! - in org.apache.openejb.util.NetworkUtilTest
> testNext(org.apache.openejb.util.NetworkUtilTest)  Time elapsed: 15.019 sec  
> <<< FAILURE!
> java.lang.AssertionError
> at 
> org.apache.openejb.util.NetworkUtilTest.testNext(NetworkUtilTest.java:82)



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1683) Tests for JAX-RS Webservice based on EJBContainerRunner work in OpenEJB 4.7.3 but not in 7.0.0-M1

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1683?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1683:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Tests for JAX-RS Webservice based on EJBContainerRunner work in OpenEJB 4.7.3 
> but not in 7.0.0-M1
> -
>
> Key: TOMEE-1683
> URL: https://issues.apache.org/jira/browse/TOMEE-1683
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 7.0.0-M1
> Environment: MacOS-10.11.2 / Linux (Ubuntu 14.04 LTS) - Maven 3.3.9 - 
> Java 8 (Oracle, 1.8.0-b66)
>Reporter: Martin Wiesner
>Priority: Major
>  Labels: maven, test
> Fix For: 7.0.6
>
>
> I got a couple of JUnit Tests (> 200) based on 
> @RunWith(EJBContainerRunner.class) annotation which stopped working when 
> codebase is updated to use/run with TomEE/OpenEJB 7.0.0-M1. 
> I reproduced this on several projects and build a minimal example that shows 
> that the given Test passes with OpenEJB 4.7.3 and TomEE 1.7.3 (or: 1.7.2) but 
> not when we use "7.0.0-M1". The pom.xml of the example project has commented 
> lines for the older variant in order to quickly switch the environment.
> Demo Project is available for download here:
> https://download.mi.hs-heilbronn.de/tomee/ejb-container-runner-demo-ws.zip
> As it seems, the environment launched via "@EJBContainerRunner" does not 
> start/expose the JAX-RS annotated webservice endpoint so clients can send 
> requests. Again, in 4.7.3/1.7.3 this worked like a charm. When we run the 
> project via maven goal "tomee:run" the endpoint is exposed and clients can 
> successfully send requests and receive HTTP 20x codes as a reply.
> Maybe [~rmannibucau] could have a look at it?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1417) [TEST] Incorrect test function PropertiesTest assertTest

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1417?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1417:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> [TEST] Incorrect test function PropertiesTest assertTest
> 
>
> Key: TOMEE-1417
> URL: https://issues.apache.org/jira/browse/TOMEE-1417
> Project: TomEE
>  Issue Type: Improvement
>Affects Versions: 7.0.0
>Reporter: Daniel Kasmeroglu
>Priority: Trivial
> Fix For: 7.0.6
>
>
> The helper function _PropertiesTest$assertProperties_ contains an invalid 
> comparison for a different property:
> {code:java}
> if (expectedValue != expectedValue && (expectedValue == null || 
> !expectedValue.equals(actual))) {
>   ...
> }
> {code}
> The comparison *expectedValue != expectedValue* obviously always returns 
> false so the contained code will never be executed.
> Furthermore the only use cases of this function returns at it's entry due to 
> the fact that the supplied parameters are always equal.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1618) Replace three register maps in Container in favour of one

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1618?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1618:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Replace three register maps in Container in favour of one
> -
>
> Key: TOMEE-1618
> URL: https://issues.apache.org/jira/browse/TOMEE-1618
> Project: TomEE
>  Issue Type: Improvement
>  Components: TomEE Core Server
>Affects Versions: 7.0.0
>Reporter: Alex
>Assignee: Alex
>Priority: Trivial
>  Labels: newbie
> Fix For: 7.0.6
>
>
> The class org.apache.tomee.embedded.Container currently uses three internal 
> ly managed maps to register following information:
> moduleIds, appContexts and appInfos.
> The key used in each of the map is the name of the application.
> The suggested improvement is to introduce a multimap. I think however, it 
> would be cleaner to define an inner class that can hold the information 
> above, and have one map that maps the name to an instance of this class.
> Drawback is an extra null check, but overall I think this better.
> Additionally, this class does not have many unittests so I'd like to add 
> those as well.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-2197) openejb.xml does not work

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-2197?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-2197:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> openejb.xml  does not work
> --
>
> Key: TOMEE-2197
> URL: https://issues.apache.org/jira/browse/TOMEE-2197
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 7.0.4
>Reporter: Mark Struberg
>Assignee: Mark Struberg
>Priority: Minor
> Fix For: 8.0.0, 7.0.6
>
>
> When declaring a deployment in openejb.xml or tomee.xml we scan  
> sections.
> This contains a file= and a jar= attribute. 
> The jar= does not work because it later gets overridden by the (often empty) 
> file attribute.
> WORKAROUND: just use the file= attribute and be done
> Should be fixed nonetheless. And should issue a warning if both attributes 
> are used.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1666) Remove BootstrapTransformer once work is done - no need to see all classes + disable by default web scanning in org.apache.openejb.persistence.PersistenceBootstrap#bootst

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1666?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1666:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Remove BootstrapTransformer once work is done - no need to see all classes + 
> disable by default web scanning in 
> org.apache.openejb.persistence.PersistenceBootstrap#bootstrap
> -
>
> Key: TOMEE-1666
> URL: https://issues.apache.org/jira/browse/TOMEE-1666
> Project: TomEE
>  Issue Type: Improvement
>Affects Versions: 7.0.0-M1
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
>Priority: Minor
> Fix For: 7.0.6
>
>
> Cutting web scanning is for performance reason and is very rarely needed
> Removing the transformer avoids few potential classloading runtime issues in 
> some env.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1636) BrokerXmlConfig xbean:file: does not accept a relative path

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1636?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1636:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> BrokerXmlConfig xbean:file: does not accept a relative path
> ---
>
> Key: TOMEE-1636
> URL: https://issues.apache.org/jira/browse/TOMEE-1636
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 1.7.2
> Environment: NA
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> BrokerXmlConfig xbean:file:conf/activemq.xml resolves to the TomEE bin 
> directory.
> BrokerXmlConfig xbean:file:../conf/activemq.xml fails.
> TomEE should parse and resolve the file path as XBean seems to not use a 
> canonical path to reference this file.
> Possibly worth creating an xbean-spring issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1401) Invalid module lookup of OpenEJBDeploymentManager

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1401?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1401:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Invalid module lookup of OpenEJBDeploymentManager
> -
>
> Key: TOMEE-1401
> URL: https://issues.apache.org/jira/browse/TOMEE-1401
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 7.0.0
>Reporter: Daniel Kasmeroglu
>Priority: Major
> Fix For: 7.0.6
>
> Attachments: tomee-1401.patch
>
>
> There is an error in the following methods:
> * getAvailableModules
> * getRunningModules
> * getNonRunningModules
> The error makes the parameter _moduleType_ useless as it's basically ignored. 
> I suspect that this is the result of an incomplete refactoring attempt.
> See:
> https://kasisoft.com/stash/projects/TOMEE/repos/tomee/commits/b10129e0f66277e003c7ed9f5912faf1f4c65b78
> Apart from that these methods are basically all equal so they could be 
> combined into a single method (I didn't do that to keep the diff readable).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1943) Tomee blows up when it finds tags in beans.xml which it doesn't know

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1943?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1943:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Tomee blows up when it finds tags in beans.xml which it doesn't know
> 
>
> Key: TOMEE-1943
> URL: https://issues.apache.org/jira/browse/TOMEE-1943
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 1.7.4, 7.0.1
>Reporter: Mark Struberg
>Assignee: Mark Struberg
>Priority: Major
> Fix For: 7.0.6
>
>
> We blow up heavily if we find a tag in e.g. beans.xml which we don't know.
> This is really sad since OWB has additional tags since many years and Weld 
> also has them. 
> A hardcoded 'ignore' hack got added for Weld, but not for OWB. 
> We must only log out a warning if we detect a tag or attribute we don't know, 
> but must not blow up. This really limits us.
> There is a simple trick to work around this:
> @XmlAnyElement(lax = true)
> private List unknownElements;
> + log out those values manually afterwards.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-2107) Upgrade CXF

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-2107?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-2107:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Upgrade CXF
> ---
>
> Key: TOMEE-2107
> URL: https://issues.apache.org/jira/browse/TOMEE-2107
> Project: TomEE
>  Issue Type: Dependency upgrade
>  Components: TomEE Core Server
>Affects Versions: 7.0.4
>Reporter: Daniel Cunha
>Priority: Minor
> Fix For: 7.0.6
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1985) SessionBean ejbCreate invoked potentially twice

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1985?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1985:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> SessionBean ejbCreate invoked potentially twice
> ---
>
> Key: TOMEE-1985
> URL: https://issues.apache.org/jira/browse/TOMEE-1985
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 1.7.4, 7.0.2
>Reporter: David Blevins
>Assignee: David Blevins
>Priority: Major
> Fix For: 1.7.6, 7.0.6
>
>
> When an EJB 2.x style Stateless session bean implements the 
> {{javax.ejb.SessionBean}} interface, the "ejbCreate" method is invoked twice 
> if the method signature is {{public void ejbCreate()}}
> If the method signature is {{public void ejbCreateObject()}} or otherwise has 
> a suffix as is allowed in the EJB spec, it is only invoked once as intended.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1442) Show list of deployed applications (including EARs) in the console

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1442:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Show list of deployed applications (including EARs) in the console
> --
>
> Key: TOMEE-1442
> URL: https://issues.apache.org/jira/browse/TOMEE-1442
> Project: TomEE
>  Issue Type: New Feature
>Affects Versions: 1.7.1
>Reporter: Jonathan Gallimore
>Priority: Major
> Fix For: 7.0.6
>
>
> The TomEE gui doesn't currently provide any information other than "Your 
> server is fully installed".
> We should provide a simple screen that lists all of the currently deployed 
> applications including .ear files.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1308) Ensure full support of JSR-340 Java Servlet 3.1

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1308?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1308:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR-340 Java Servlet 3.1
> ---
>
> Key: TOMEE-1308
> URL: https://issues.apache.org/jira/browse/TOMEE-1308
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR-340 Java Servlet 3.1



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1313) Ensure full support of JSR-322 Java EE Connector Architecture 1.7

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1313?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1313:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR-322 Java EE Connector Architecture 1.7
> -
>
> Key: TOMEE-1313
> URL: https://issues.apache.org/jira/browse/TOMEE-1313
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR-322 Java EE Connector Architecture 1.7



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1305) Ensure full support of JSR-344 JavaServer Faces 2.2

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1305?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1305:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR-344 JavaServer Faces 2.2
> ---
>
> Key: TOMEE-1305
> URL: https://issues.apache.org/jira/browse/TOMEE-1305
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR-344 JavaServer Faces 2.2



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1286) Intermittent test failure org.apache.openejb.itest.legacy.LegacyClientTest

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1286?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1286:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Intermittent test failure org.apache.openejb.itest.legacy.LegacyClientTest
> --
>
> Key: TOMEE-1286
> URL: https://issues.apache.org/jira/browse/TOMEE-1286
> Project: TomEE
>  Issue Type: Task
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Intermittent test failure org.apache.openejb.itest.legacy.LegacyClientTest



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1320) Drop or deprecate JAXR 1.0

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1320?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1320:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Drop or deprecate JAXR 1.0
> --
>
> Key: TOMEE-1320
> URL: https://issues.apache.org/jira/browse/TOMEE-1320
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Drop or deprecate JAXR 1.0



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1697) javamail: sending email fails

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1697?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1697:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> javamail: sending email fails
> -
>
> Key: TOMEE-1697
> URL: https://issues.apache.org/jira/browse/TOMEE-1697
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 1.7.3
> Environment: Linux (Ubuntu 14.04.3 LTS), Oracle Java 1.8.0_66
>Reporter: Tamás Greguss
>Priority: Major
> Fix For: 7.0.6
>
>
> Sending email fails. javamail's Transport.send(...) function throws an 
> exception. The same code works fine with previous versions of TomEE which 
> includes javamail 1.8.3. But TomEE 1.7.3 upgraded to javamail 1.9.0-alpha2 
> which does not work well.
> If in TomEE 1.7.3 lib folder I change the content of 
> geronimo-javamail_1.4_mail-1.9.0-alpha-2.jar file to the previous 
> geronimo-javamail_1.4_mail-1.8.3.jar, it also works well.
> Here is the code that works fine with sendmail 1.8.3 in TomEE 1.7.1 but fails 
> with sendmail.1.9.0-alpha2 in TomEE 1.7.3:
>  (This is a low level code only. But using apache commons email library which 
> uses java.mail in the background, also fails.)
> {code:title=MailSender.java|borderStyle=solid}
> public static void SendWithGMailSSL( String email_to, String subject, String 
> text, String email_from, final String senderuser, final String senderpass ) {
>   Properties props = new Properties();
>   props.put("mail.smtp.host", "smtp.gmail.com");
>   props.put("mail.smtp.socketFactory.port", "465");
>   props.put("mail.smtp.socketFactory.class", 
> "javax.net.ssl.SSLSocketFactory");
>   props.put("mail.smtp.auth", "true");
>   props.put("mail.smtp.port", "465");
>   Session session;
>   try {
>   session = Session.getInstance(props, new 
> javax.mail.Authenticator() {
>   @Override
>   protected PasswordAuthentication 
> getPasswordAuthentication() {
>   return new PasswordAuthentication(senderuser, 
> senderpass);
>   }
>   });
>   } catch (Exception e) {
>   throw new RuntimeException(e);
>   }
>   try {
>   Message message = new MimeMessage(session);
>   message.setFrom(new InternetAddress(email_from));
>   message.setRecipients(Message.RecipientType.TO, 
> InternetAddress.parse(email_to));
>   message.setSubject(subject);
>   message.setText(text);
>   Transport.send(message);
>   //System.out.println("e-mail sending done.");
>   } catch (MessagingException e) {
>   throw new RuntimeException(e);
>   }
> }
> {code}
> The calling of Transport.send(message) throws an exception:
> {noformat}
> javax.mail.SendFailedException: Send failure (javax.mail.MessagingException: 
> Connection error (java.io.IOException: Error connecting to smtp.gmail.com, 
> 465))
>   at javax.mail.Transport.send(Transport.java:163)
>   at javax.mail.Transport.send(Transport.java:48)
>   at com.gbit.lib.GBITMail.SendWithGMailSSL(GBITMail.java:136)
>   at com.gbit.lib.GBITMail.SendMail(GBITMail.java:103)
>   at 
> com.gbit.efoglalo.test.UnitTestMB.testSendingEmailOld(UnitTestMB.java:503)
>   at 
> com.gbit.efoglalo.test.UnitTestMB$$OwbNormalScopeProxy0.testSendingEmailOld(com/gbit/efoglalo/test/UnitTestMB.java)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:497)
>   at org.apache.el.parser.AstValue.invoke(AstValue.java:278)
>   at 
> org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:273)
>   at 
> org.apache.myfaces.view.facelets.el.ContextAwareTagMethodExpression.invoke(ContextAwareTagMethodExpression.java:96)
>   at 
> javax.faces.event.MethodExpressionActionListener.processAction(MethodExpressionActionListener.java:88)
>   at javax.faces.event.ActionEvent.processListener(ActionEvent.java:51)
>   at 
> javax.faces.component.UIComponentBase.broadcast(UIComponentBase.java:420)
>   at javax.faces.component.UICommand.broadcast(UICommand.java:103)
>   at javax.faces.component.UIViewRoot._broadcastAll(UIViewRoot.java:1041)
>   at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:289)
>   at javax.faces.component.UIViewRoot._process(UIViewRoot.java:1415)
>   at 
> javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:765)
>   at 
> org.apache.myfaces.lifecycle.InvokeA

[jira] [Updated] (TOMEE-1316) Ensure full support of JSR-343 Java Message Service 2.0

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1316?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1316:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR-343 Java Message Service 2.0
> ---
>
> Key: TOMEE-1316
> URL: https://issues.apache.org/jira/browse/TOMEE-1316
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR-343 Java Message Service 2.0



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1291) Example Moviefun updated to servlet 3.1 and bootstrap 3.2.0

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1291?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1291:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Example Moviefun updated to servlet 3.1 and bootstrap 3.2.0
> ---
>
> Key: TOMEE-1291
> URL: https://issues.apache.org/jira/browse/TOMEE-1291
> Project: TomEE
>  Issue Type: Improvement
>Reporter: Helio Frota
>Priority: Trivial
>  Labels: patch
> Fix For: 7.0.6
>
> Attachments: TOMEE-1291.patch
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1908) Proxy for JCA connections does not implement interface

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1908?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1908:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Proxy for JCA connections does not implement interface
> --
>
> Key: TOMEE-1908
> URL: https://issues.apache.org/jira/browse/TOMEE-1908
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 7.0.0, 7.0.1
>Reporter: Kilian Matt
>Assignee: Romain Manni-Bucau
>Priority: Major
>  Labels: patch-available
> Fix For: 7.0.6
>
> Attachments: AutoConnectionTrackerTest.java, TOMEE-1908.patch
>
>
> When the connection implementation of a JCA resource adapter does not contain 
> any implements clauses in the class declaration, the proxy will not implement 
> any interfaces.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1945) extract TomEEEmbeddedSingleRunner logic in org.apache.tomee.embedded.TomEEEmbeddedApplicationRunner

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1945?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1945:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> extract TomEEEmbeddedSingleRunner logic in 
> org.apache.tomee.embedded.TomEEEmbeddedApplicationRunner
> ---
>
> Key: TOMEE-1945
> URL: https://issues.apache.org/jira/browse/TOMEE-1945
> Project: TomEE
>  Issue Type: New Feature
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
>Priority: Major
> Fix For: 7.0.6
>
>
> Goal is to ensure this is reusable not only for tests:
> {code:java}
> @Application
> @Classes(context = "app")
> public class MyApp {
> public static void main(final String[] args) {
> TomEEEmbeddedApplicationRunner.run(new MyApp(), args);
> }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-2110) DefaultContextService missing like default resource.

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-2110?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-2110:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> DefaultContextService missing like default resource.
> 
>
> Key: TOMEE-2110
> URL: https://issues.apache.org/jira/browse/TOMEE-2110
> Project: TomEE
>  Issue Type: Bug
>  Components: TomEE Core Server
>Affects Versions: 7.0.4
>Reporter: Daniel Cunha
>Priority: Major
> Fix For: 7.0.6
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1867) Investigate FileNotFoundException warning

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1867?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1867:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Investigate FileNotFoundException warning
> -
>
> Key: TOMEE-1867
> URL: https://issues.apache.org/jira/browse/TOMEE-1867
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 1.7.4
> Environment: Windows
>Reporter: Andy Gumbrecht
>Priority: Trivial
> Fix For: 1.7.6, 7.0.6
>
>
> Only a warning, but wondering why this broken path is generated:
> 2016-07-15 11:00:35 WARN  FileZippedJarVisitor:74 - HHH015010: Unable to find 
> file (ignored): 
> file:/C:/Integration/workspace/project/project-service-impl/jar:file:/C:/repository/com/company/division/app/app-service-impl/1.2.3/app-service-impl-1.2.3.jar!/META-INF/persistence.xml
> java.io.FileNotFoundException: 
> C:\Integration\workspace\project\project-service-impl\jar:file:\C:\repository\com\company\division\app\app-service-impl\1.2.3\app-service-impl-1.2.3.jar!\META-INF\persistence.xml
>  (Die Syntax für den Dateinamen, Verzeichnisnamen oder die 
> Datenträgerbezeichnung ist falsch)
>   at java.util.zip.ZipFile.open(Native Method)
>   at java.util.zip.ZipFile.(ZipFile.java:215)
>   at java.util.zip.ZipFile.(ZipFile.java:145)
>   at java.util.jar.JarFile.(JarFile.java:154)
>   at java.util.jar.JarFile.(JarFile.java:91)
>   at 
> org.hibernate.ejb.packaging.FileZippedJarVisitor.doProcessElements(FileZippedJarVisitor.java:70)
>   at 
> org.hibernate.ejb.packaging.AbstractJarVisitor.getMatchingEntries(AbstractJarVisitor.java:149)
>   at 
> org.hibernate.ejb.packaging.NativeScanner.getClassesInJar(NativeScanner.java:128)
>   at 
> org.hibernate.ejb.Ejb3Configuration.addScannedEntries(Ejb3Configuration.java:488)
>   at 
> org.hibernate.ejb.Ejb3Configuration.scanForClasses(Ejb3Configuration.java:862)
>   at 
> org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:607)
>   at 
> org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:75)
>   at 
> org.apache.openejb.assembler.classic.EntityManagerFactoryCallable.call(EntityManagerFactoryCallable.java:64)
>   at 
> org.apache.openejb.assembler.classic.ReloadableEntityManagerFactory.createDelegate(ReloadableEntityManagerFactory.java:116)
>   at 
> org.apache.openejb.assembler.classic.ReloadableEntityManagerFactory.(ReloadableEntityManagerFactory.java:102)
>   at 
> org.apache.openejb.assembler.classic.PersistenceBuilder.createEntityManagerFactory(PersistenceBuilder.java:154)
>   at 
> org.apache.openejb.assembler.classic.Assembler.loadPersistenceUnits(Assembler.java:985)
>   at 
> org.apache.openejb.assembler.classic.Assembler.createApplication(Assembler.java:744)
>   at 
> org.apache.openejb.assembler.classic.Assembler.createApplication(Assembler.java:680)
>   at 
> org.apache.openejb.assembler.classic.Assembler.createApplication(Assembler.java:676)
>   at 
> org.apache.openejb.testing.ApplicationComposers.before(ApplicationComposers.java:830)
>   at 
> org.apache.openejb.testing.ApplicationComposers.evaluate(ApplicationComposers.java:984)
>   at 
> org.apache.openejb.junit.DeployApplication.evaluate(DeployApplication.java:40)
>   at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
>   at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
>   at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
>   at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
>   at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
>   at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
>   at org.junit.runners.ParentRunner.run(ParentRunner.java:363)



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (TOMEE-1323) Ensure full support of JSR-919 JavaMail 1.5

2018-07-23 Thread Jonathan Gallimore (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-1323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Gallimore updated TOMEE-1323:
--
Fix Version/s: (was: 7.0.5)
   7.0.6

> Ensure full support of JSR-919 JavaMail 1.5
> ---
>
> Key: TOMEE-1323
> URL: https://issues.apache.org/jira/browse/TOMEE-1323
> Project: TomEE
>  Issue Type: Task
>Affects Versions: 7.0.0
>Reporter: Andy Gumbrecht
>Priority: Major
> Fix For: 7.0.6
>
>
> Ensure full support of JSR-919 JavaMail 1.5



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


svn commit: r28287 - /dev/tomee/staging-1115/

2018-07-23 Thread jgallimore
Author: jgallimore
Date: Mon Jul 23 09:29:05 2018
New Revision: 28287

Log:
Removing staging area

Removed:
dev/tomee/staging-1115/



svn commit: r28286 - /release/tomee/tomee-7.0.5/

2018-07-23 Thread jgallimore
Author: jgallimore
Date: Mon Jul 23 09:28:39 2018
New Revision: 28286

Log:
Moving TomEE 7.0.5 to released area

Added:
release/tomee/tomee-7.0.5/
  - copied from r28285, dev/tomee/staging-1115/