Hello Gerhard,
thank you for your fast response. I did so and it worked, however this problem
seems to occur in almost ALL AppicationScoped classes. I've come across two new
ones after that:
@ApplicationScoped
public class WindowContextProducer
{
@Inject
private DeltaSpikeContextExtension deltaSpikeContextExtension;
@Produces
@Named("dsWindowContext")
@Dependent
public WindowContext getWindowContext()
{
return new
InjectableWindowContext(deltaSpikeContextExtension.getWindowContext());
}
}
Here, deltaSpikeContextExtension is null.
or
JsfRequestBroadcaster
here are both injected events null.
Is this WAS8 a legacy in CDI or a real bug. For the latter case I could open up
a PMR to let them fix it. Do you by chance know, if that problem existed in
deltaspike 0.6 too?
Regards,
Heiko
--
Dr.-Ing. Heiko Kopp
> -----Ursprüngliche Nachricht-----
> Von: Gerhard Petracek [mailto:[email protected]]
> Gesendet: Dienstag, 20. Mai 2014 12:10
> An: [email protected]
> Betreff: Re: 0.7/0.8-SNAPSHOT - Error under WAS 8 - NullPointerException at
> Application Start in ViewConfigResolverProducer.createViewConfigResolver
>
> short addition:
> please pull the latest change and try it again.
>
> regards,
> gerhard
>
>
>
> 2014-05-20 11:46 GMT+02:00 Gerhard Petracek
> <[email protected]>:
>
> > hi heiko,
> >
> > the only way to get around that WAS8 issue is to deactivate
> > org.apache.deltaspike.jsf.impl.config.view.ViewConfigPathValidator (it
> > implements Deactivatable).
> >
> > regards,
> > gerhard
> >
> >
> >
> > 2014-05-20 11:36 GMT+02:00 <[email protected]>:
> >
> > Hello,
> >>
> >> we've come across an issue with Version 0.7 and even 0.8-SNAPSHOT
> >> under WebSphere 8 in the JSF module. When the application is started
> >> the following stack trace occurs.
> >>
> >> I've debugged into this a bit more. The SPI extension
> >> ViewConfigExtension is present and exists and the observers are
> >> correctly called, however it seems that afterwards within the
> >> ViewConfigResolverProducer the ViewConfigExtension is not correctly
> >> injected. The problem seems to be related to WAS 8 and not WAS 8.5 as
> the liberty profile works.
> >>
> >> I've changed the producer in the following way which made it work
> >> under WAS 8.
> >>
> >> @Produces
> >> @ApplicationScoped
> >> public ViewConfigResolver createViewConfigResolver()
> >> {
> >> if (viewConfigExtension == null)
> >> {
> >> viewConfigExtension =
> >> BeanProvider.getContextualReference(ViewConfigExtension.class);
> >> }
> >>
> >> ...
> >> }
> >>
> >>
> >> Can somebody help out what might happen here? WebSphere 8 uses a
> >> rather old version of OWB, but still it would be great if deltaspike
> >> would support it.
> >>
> >> Thanks,
> >>
> >> Heiko
> >>
> >> [20.05.14 10:52:52:745 CEST] 00000025 webapp E
> >> com.ibm.ws.webcontainer.webapp.WebApp notifyServletContextCreated
> >> SRVE0283E: Es wurde eine Ausnahme beim Initialisieren des Kontextes
> >> abgefangen: {0}
> >> java.lang.NullPointerException
> >> at
> >>
> org.apache.deltaspike.jsf.impl.config.view.ViewConfigResolverProducer.create
> ViewConfigResolver(ViewConfigResolverProducer.java:50)
> >> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >> at
> >>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
> 60)
> >> at
> >>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorI
> mpl.java:37)
> >> at java.lang.reflect.Method.invoke(Method.java:611)
> >> at
> >>
> org.apache.webbeans.intercept.InterceptorHandler.invoke(InterceptorHandler.j
> ava:297)
> >> at
> >>
> org.apache.webbeans.intercept.NormalScopedBeanInterceptorHandler.invoke(
> NormalScopedBeanInterceptorHandler.java:98)
> >> at
> >>
> org.apache.deltaspike.jsf.impl.config.view.ViewConfigResolverProducer_$$_ja
> vassist_31.createViewConfigResolver(ViewConfigResolverProducer_$$_javassi
> st_31.java)
> >> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >> at
> >>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
> 60)
> >> at
> >>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorI
> mpl.java:37)
> >> at java.lang.reflect.Method.invoke(Method.java:611)
> >> at
> >>
> org.apache.webbeans.inject.InjectableMethods.doInjection(InjectableMethods.j
> ava:205)
> >> at
> >>
> org.apache.webbeans.component.ProducerMethodBean.createDefaultInstance(
> ProducerMethodBean.java:204)
> >> at
> >>
> org.apache.webbeans.component.ProducerMethodBean.createInstance(Produc
> erMethodBean.java:166)
> >> at
> >>
> org.apache.webbeans.component.AbstractOwbBean.createNewInstance(Abstra
> ctOwbBean.java:216)
> >> at
> >>
> org.apache.webbeans.portable.creation.AbstractProducer.produce(AbstractPro
> ducer.java:82)
> >> at
> >>
> org.apache.webbeans.component.InjectionTargetWrapper.produce(InjectionTar
> getWrapper.java:142)
> >> at
> >>
> org.apache.webbeans.component.AbstractOwbBean.create(AbstractOwbBean.j
> ava:174)
> >> at
> >>
> org.apache.webbeans.context.creational.BeanInstanceBag.create(BeanInstanc
> eBag.java:80)
> >> at
> >>
> org.apache.webbeans.context.AbstractContext.getInstance(AbstractContext.jav
> a:226)
> >> at
> >>
> org.apache.webbeans.context.AbstractContext.get(AbstractContext.java:191)
> >> at
> >>
> org.apache.webbeans.intercept.NormalScopedBeanInterceptorHandler.getCont
> extualInstance(NormalScopedBeanInterceptorHandler.java:135)
> >> at
> >>
> org.apache.webbeans.intercept.NormalScopedBeanInterceptorHandler.invoke(
> NormalScopedBeanInterceptorHandler.java:95)
> >> at
> >>
> org.javassist.tmp.java.lang.Object_$$_javassist_30.getConfigDescriptors(Obj
> ect_$$_javassist_30.java)
> >> at
> >>
> org.apache.deltaspike.jsf.impl.config.view.ViewConfigPathValidator.validateVie
> wConfigPaths(ViewConfigPathValidator.java:63)
> >> at
> >>
> org.apache.deltaspike.jsf.impl.config.view.ViewConfigPathValidator.contextIniti
> alized(ViewConfigPathValidator.java:52)
> >> at
> >>
> com.ibm.ws.webcontainer.webapp.WebApp.notifyServletContextCreated(WebA
> pp.java:1686)
> >> at
> >>
> com.ibm.ws.webcontainer.webapp.WebAppImpl.initialize(WebAppImpl.java:410
> )
> >> at
> >>
> com.ibm.ws.webcontainer.webapp.WebGroupImpl.addWebApplication(WebGrou
> pImpl.java:88)
> >> at
> >>
> com.ibm.ws.webcontainer.VirtualHostImpl.addWebApplication(VirtualHostImpl.j
> ava:169)
> >> at
> >>
> com.ibm.ws.webcontainer.WSWebContainer.addWebApp(WSWebContainer.jav
> a:746)
> >> at
> >>
> com.ibm.ws.webcontainer.WSWebContainer.addWebApplication(WSWebContai
> ner.java:634)
> >> at
> >>
> com.ibm.ws.webcontainer.component.WebContainerImpl.install(WebContainerI
> mpl.java:422)
> >> at
> >>
> com.ibm.ws.webcontainer.component.WebContainerImpl.start(WebContainerIm
> pl.java:714)
> >> at
> >>
> com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.j
> ava:1164)
> >> at
> >>
> com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectSt
> art(DeployedApplicationImpl.java:1369)
> >> at
> >>
> com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleIm
> pl.java:639)
> >> at
> >>
> com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplic
> ationImpl.java:967)
> >> at
> >>
> com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(Applicatio
> nMgrImpl.java:770)
> >> at
> >>
> com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplicationDynamicall
> y(ApplicationMgrImpl.java:1361)
> >> at
> >>
> com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.j
> ava:2162)
> >> at
> >>
> com.ibm.ws.runtime.component.CompositionUnitMgrImpl.start(CompositionUni
> tMgrImpl.java:446)
> >> at
> >>
> com.ibm.ws.runtime.component.CompositionUnitImpl.start(CompositionUnitImp
> l.java:123)
> >> at
> >>
> com.ibm.ws.runtime.component.CompositionUnitMgrImpl.start(CompositionUni
> tMgrImpl.java:389)
> >> at
> >>
> com.ibm.ws.runtime.component.CompositionUnitMgrImpl.access$500(Compos
> itionUnitMgrImpl.java:117)
> >> at
> >>
> com.ibm.ws.runtime.component.CompositionUnitMgrImpl$1.run(CompositionU
> nitMgrImpl.java:664)
> >> at
> >>
> com.ibm.ws.security.auth.ContextManagerImpl.runAs(ContextManagerImpl.jav
> a:5468)
> >> at
> >>
> com.ibm.ws.security.auth.ContextManagerImpl.runAsSystem(ContextManagerI
> mpl.java:5594)
> >> at
> >>
> com.ibm.ws.security.core.SecurityContext.runAsSystem(SecurityContext.java:2
> 55)
> >> at
> >>
> com.ibm.ws.runtime.component.CompositionUnitMgrImpl.startCompositionUnit
> (CompositionUnitMgrImpl.java:678)
> >> at
> >>
> com.ibm.ws.runtime.component.CompositionUnitMgrImpl.startCompositionUnit
> (CompositionUnitMgrImpl.java:622)
> >> at
> >>
> com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(Applicatio
> nMgrImpl.java:1251)
> >> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >> at
> >>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
> 60)
> >> at
> >>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorI
> mpl.java:37)
> >> at java.lang.reflect.Method.invoke(Method.java:611)
> >> at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:69)
> >> at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source)
> >> at
> >>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorI
> mpl.java:37)
> >> at java.lang.reflect.Method.invoke(Method.java:611)
> >> at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:272)
> >> at
> >>
> javax.management.modelmbean.RequiredModelMBean$4.run(RequiredModelM
> Bean.java:1152)
> >> at
> >> java.security.AccessController.doPrivileged(AccessController.java:298)
> >> at
> >>
> com.ibm.oti.security.CheckedAccessControlContext.securityCheck(CheckedAc
> cessControlContext.java:30)
> >> at
> >>
> sun.misc.JavaSecurityAccessWrapper.doIntersectionPrivilege(JavaSecurityAcce
> ssWrapper.java:41)
> >> at
> >>
> javax.management.modelmbean.RequiredModelMBean.invokeMethod(Required
> ModelMBean.java:1146)
> >> at
> >>
> javax.management.modelmbean.RequiredModelMBean.invoke(RequiredModel
> MBean.java:999)
> >> at
> >>
> com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBean
> ServerInterceptor.java:847)
> >> at
> >>
> com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:783
> )
> >> at
> >>
> com.ibm.ws.management.AdminServiceImpl$1.run(AdminServiceImpl.java:133
> 5)
> >> at
> >>
> com.ibm.ws.security.util.AccessController.doPrivileged(AccessController.java:1
> 18)
> >> at
> >>
> com.ibm.ws.management.AdminServiceImpl.invoke(AdminServiceImpl.java:12
> 28)
> >> at
> >>
> com.ibm.ws.management.connector.AdminServiceDelegator.invoke(AdminServ
> iceDelegator.java:181)
> >> at
> >>
> com.ibm.ws.management.connector.ipc.CallRouter.route(CallRouter.java:247)
> >> at
> >>
> com.ibm.ws.management.connector.ipc.IPCConnectorInboundLink.doWork(IPC
> ConnectorInboundLink.java:360)
> >> at
> >>
> com.ibm.ws.management.connector.ipc.IPCConnectorInboundLink$IPCConnec
> torReadCallback.complete(IPCConnectorInboundLink.java:602)
> >> at
> >>
> com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCall
> back.complete(SSLReadServiceContext.java:1819)
> >> at
> >>
> com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(Aio
> ReadCompletionListener.java:175)
> >> at
> >>
> com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.ja
> va:217)
> >> at
> >>
> com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFut
> ure.java:161)
> >> at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
> >> at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
> >> at
> >>
> com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:7
> 75)
> >> at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
> >> at
> >> com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1702)
> >>
> >> --
> >> Heiko Kopp
> >>
> >>
> >> If you are not the addressee, please inform us immediately that you
> >> have received this e-mail by mistake, and delete it. We thank you for
> >> your support.
> >>
> >>
> >
If you are not the addressee, please inform us immediately that you have
received this e-mail by mistake, and delete it. We thank you for your support.