"[EMAIL PROTECTED]" wrote : Your container-configuration is totally broken. There are no interceptors. | No pooling => no bean instance => NPE.
Adrian: Thanks for your assistance. I have modified the container to now be as follows: | <container-configuration> | <container-name>HTTPS Message Driven Bean</container-name> | <call-logging>true</call-logging> | <invoker-proxy-binding-name>message-driven-bean-https</invoker-proxy-binding-name> | <container-interceptors> | <interceptor>org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor</interceptor> | <interceptor>org.jboss.ejb.plugins.LogInterceptor</interceptor> | <interceptor>org.jboss.ejb.plugins.RunAsSecurityInterceptor</interceptor> | <!-- CMT --> | <interceptor transaction="Container">org.jboss.ejb.plugins.TxInterceptorCMT</interceptor> | <interceptor transaction="Container" metricsEnabled="true">org.jboss.ejb.plugins.MetricsInterceptor</interceptor> | <interceptor transaction="Container">org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor</interceptor> | <!-- BMT --> | <interceptor transaction="Bean">org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor</interceptor> | <interceptor transaction="Bean">org.jboss.ejb.plugins.MessageDrivenTxInterceptorBMT</interceptor> | <interceptor transaction="Bean" metricsEnabled="true">org.jboss.ejb.plugins.MetricsInterceptor</interceptor> | <interceptor>org.jboss.resource.connectionmanager.CachedConnectionInterceptor</interceptor> | </container-interceptors> | <instance-pool>org.jboss.ejb.plugins.MessageDrivenInstancePool</instance-pool> | <instance-cache></instance-cache> | <persistence-manager></persistence-manager> | <container-pool-conf> | <MaximumSize>100</MaximumSize> | </container-pool-conf> | </container-configuration> The good news is that this has removed the NPE. In fact, I get no exceptions on the client or server side. The bad news is that this does not appear to work either. If I firewall port 8093 (the UIL2) port, I don't get through to the server - the pub client just hangs indefinately. My goal is to have everything go over the HTTPServerILServer port (8443) and firewall all else. What is the correct way to make this container reference the jboss.mq:service=InvocationLayer,type=HTTP invoker MBean? I seem to be missing this critical piece of information in the docs. What else am I missing/do I need to do? Thanks again for your help! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3845953#3845953 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3845953 ------------------------------------------------------- SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33 Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift. http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
