jboss-eap-7

JBoss (EAP 7.0) equivalent classes for Weblogic

陌路散爱 提交于 2021-02-11 13:58:37
问题 I have been trying to migrate from Weblogic to JBoss EAP 7.0. The problem being faced is in code deployment as JBoss does not support anything related to Weblogic specific classes and Java RPC. The code base uses some of the Weblogic specific classes for which I am not able to find JBoss equivalent classes. Classes are below for which I require JBoss equivalent classes: weblogic.wsee.connection.transport.http.HttpTransportInfo weblogic.wsee.jaxrpc.ServiceImpl I was trying to re-write the

RichFaces 4.3.7 in Jboss EAP 7.0.9 : IllegalStateException

孤人 提交于 2021-02-05 09:30:10
问题 We are having issues with application having RichFaces 4.3.7 in Jboss EAP 7.0.9. This application works fine in Weblogic 12c. Now when this application is deployed in jboss eap 7.0.9, we are getting below issues. We were seeing below issues 2018-08-02 10:27:32,356 ERROR [io.undertow.request] (default task-3) UT005023: Exception handling request to /pcc/policysearch: java.lang.IllegalStateException at com.sun.faces.context.FacesContextImpl.assertNotReleased(FacesContextImpl.java:712) at com

RichFaces 4.3.7 in Jboss EAP 7.0.9 : IllegalStateException

匆匆过客 提交于 2021-02-05 09:29:59
问题 We are having issues with application having RichFaces 4.3.7 in Jboss EAP 7.0.9. This application works fine in Weblogic 12c. Now when this application is deployed in jboss eap 7.0.9, we are getting below issues. We were seeing below issues 2018-08-02 10:27:32,356 ERROR [io.undertow.request] (default task-3) UT005023: Exception handling request to /pcc/policysearch: java.lang.IllegalStateException at com.sun.faces.context.FacesContextImpl.assertNotReleased(FacesContextImpl.java:712) at com

JMS connection not connecting to remote JBoss but connects local instance

南楼画角 提交于 2021-01-07 01:09:10
问题 I developed a simple JMS connection tester application to test connectivity of remote JMS queue. It is a jar file. It works perfectly when executing locally on my pc connecting to JBoss instance running on same pc (i.e. localhost). But when I copy same jar file onto the windows test server (Windows Server 2008 R2 Standard) and run it from there, it gives following exception. The JBoss instance (jboss-eap-7.0) in this case is running on another Linux server. Here is my code below. I have

JMS connection not connecting to remote JBoss but connects local instance

♀尐吖头ヾ 提交于 2021-01-07 01:04:27
问题 I developed a simple JMS connection tester application to test connectivity of remote JMS queue. It is a jar file. It works perfectly when executing locally on my pc connecting to JBoss instance running on same pc (i.e. localhost). But when I copy same jar file onto the windows test server (Windows Server 2008 R2 Standard) and run it from there, it gives following exception. The JBoss instance (jboss-eap-7.0) in this case is running on another Linux server. Here is my code below. I have

JBoss EAP 7 exclude webservices subsystem gives NoClassDefFoundError: Failed to link EndpointDefinitionParser$SpringEndpointImpl

廉价感情. 提交于 2021-01-03 07:09:03
问题 In Jboss EAP7 I have added cxf maven dependencies in pom.xml and excluded webservices subsystem in jboss-deployment-structure.xml since want to use my own version of cxf defined in pom.xml. But get below exception during server start up- Caused by: org.springframework.beans.FatalBeanException: Invalid NamespaceHandler class [org.apache.cxf.jaxws.spring.NamespaceHandler] for namespace [http://cxf.apache.org/jaxws]: problem with handler class file or dependent class; nested exception is java

JBoss EAP 7 exclude webservices subsystem gives NoClassDefFoundError: Failed to link EndpointDefinitionParser$SpringEndpointImpl

末鹿安然 提交于 2021-01-03 07:08:25
问题 In Jboss EAP7 I have added cxf maven dependencies in pom.xml and excluded webservices subsystem in jboss-deployment-structure.xml since want to use my own version of cxf defined in pom.xml. But get below exception during server start up- Caused by: org.springframework.beans.FatalBeanException: Invalid NamespaceHandler class [org.apache.cxf.jaxws.spring.NamespaceHandler] for namespace [http://cxf.apache.org/jaxws]: problem with handler class file or dependent class; nested exception is java

JBoss EAP 7 exclude webservices subsystem gives NoClassDefFoundError: Failed to link EndpointDefinitionParser$SpringEndpointImpl

╄→гoц情女王★ 提交于 2021-01-03 07:08:22
问题 In Jboss EAP7 I have added cxf maven dependencies in pom.xml and excluded webservices subsystem in jboss-deployment-structure.xml since want to use my own version of cxf defined in pom.xml. But get below exception during server start up- Caused by: org.springframework.beans.FatalBeanException: Invalid NamespaceHandler class [org.apache.cxf.jaxws.spring.NamespaceHandler] for namespace [http://cxf.apache.org/jaxws]: problem with handler class file or dependent class; nested exception is java

JBoss 7 Embedded ActiveMQ - MDB message listener not working

半世苍凉 提交于 2020-12-14 23:38:43
问题 I have to upgrade an existing app with JBOSS 4.2.2 and embedded activeMQ 5.3.0 To try with jboss 7.3 using an embedded active MQ, i did the following. Following the instructions at https://developer.jboss.org/docs/DOC-18798#jive_content_id_ActiveMQ_as_an_internal_messaging_broker I configured the activemq-rar-5.6.0.rar in JBoss 7.3 resource-adapter Deployed the jboss quick start hello-world-mdb war file in jboss. Tried to send and consume messages using a message driven bean(MDB) The problem