wildfly-8

CoAP and MQTT support in Wildfly 8.0.0.Final

巧了我就是萌 提交于 2019-12-14 02:35:34
问题 We have an enterprise solution deployed on Wildfly 8.0.0 server, we intend to support CoAP and MQTT also as communication protocol. We explored extensively but we couldn't find even any oblique reference to our problem case. Is it possible to add CoAP and MQTT support without destabilizing Wildfly setup ?? 回答1: I think theoretically it is possible to use a https://www.eclipse.org/californium/ within an EE server for CoAP. The main issue here is that Californium listens to an UDP port (and

WildFly 8.2 configure JMS Bridge for remote servers

浪尽此生 提交于 2019-12-13 19:13:35
问题 I'm trying to configure a jmsbridge on wildfly 8.2 for connect two remote servers. The first server put messages in a local queue JMSBridgeSourceQ then the bridge move the messages to the other queue JMSBridgeTargetQ located on server2. I followed this example http://everything-jboss.blogspot.it/2013/07/remote-jms-messaging-with-hornetq-on.html for setting the standalone-full-ha.xml. on server 1 (source) I have the following messaging section: <subsystem xmlns="urn:jboss:domain:messaging:2.0"

How I can access to my application after a war deployments in wildfly 8

泪湿孤枕 提交于 2019-12-13 16:00:13
问题 I used to work on tomcat I try to deploy my app on wildfly 8 ,there a message said that deployment succes but I dont know how I can access to my app I used to use my app using for example : http://localhost:8080/Gnrqst/Api/enqueteurs on tomcat but now it's not working I ask is there another port to use on wildfly ? Thank you 回答1: Unless you're including a jboss-web.xml given the name of your deployment the context name would be Gnrqst-0.0.1-SNAPSHOT . If you'd like the 0.0.1-SNAPSHOT to be

classloading problems with Wildfly 8.0.0

戏子无情 提交于 2019-12-13 06:54:06
问题 I am trying to deploy a Spring-JPA-Hibernate web application on Wildfly. First, I had problems with Hibernate which seemed to go away with <jboss-deployment-structure> <deployment> <exclusions> <module name="org.hibernate" slot="main" /> </exclusions> <dependencies> <module name="org.hibernate" /> </dependencies> </deployment> </jboss-deployment-structure> then however, my org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean tried to parse its mappingResources (xml file), and I

Can't connect to admin console using Virtualbox

落花浮王杯 提交于 2019-12-13 05:01:03
问题 I have a VirtualBox debian VM with wildfly running. The host is a Windows 8.1. I have forwarded ports 8080 and 9990. I have edited the standalone.xml to include: <interfaces> <interface name="management"> <any-address/> </interface> <interface name="public"> <any-address/> </interface> <interface name="unsecure"> <inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/> </interface> </interfaces> As expected, I can access the webservice(s) on http://localhost:8080/webservice from the

java.lang.IllegalStateException: WELD-000340: A request must be associated with the context in order to load the known conversations

与世无争的帅哥 提交于 2019-12-13 04:43:35
问题 I'm getting the following exception on accessing an XHTML page on WildFly 8.1.0 final. 00:46:41,859 SEVERE [javax.enterprise.resource.webcontainer.jsf.application] (default task-26) Error Rendering View[/Test.xhtml]: java.lang.IllegalStateException: WELD-000340: A request must be associated with the context in order to load the known conversations at org.jboss.weld.context.AbstractConversationContext.checkIsAssociated(AbstractConversationContext.java:416) [weld-core-impl-2.1.2.Final.jar:2014

Arquillian: Attempted to register the same Observer, ServerSetupObserver multiple times

旧街凉风 提交于 2019-12-13 02:16:06
问题 I am trying to configure arquillian with wildfly but am the following Getting error in the process of running test: java.lang.RuntimeException: Could not create new instance of class org.jboss.arquillian.test.impl.EventTestRunnerAdaptor at org.jboss.arquillian.test.spi.SecurityActions.newInstance(SecurityActions.java:165)....... Caused by: java.lang.reflect.InvocationTargetException: null at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ........... Caused by: java.lang

Context Path Wildfly 8.2 Management UI

穿精又带淫゛_ 提交于 2019-12-12 15:13:18
问题 is it possible, and when how, use the Management UI of the Wildfly 8.2 with a path. Default: http://localhost:9990/console How i would like to do it: http://localhost:9990/wildfly/console Is this possible? And if it is, how? Sub-Context: i like to have a AJP Proxy that the URL will be http://host/wildfly and not http://host:9990/ 回答1: mod_proxy can do that if correctly configured. Something like: ProxyPass /wildfy/ http://localhost:9990/ ProxyPassReverse /wildfly/ http://localhost:9990/ 来源:

JBoss AS vs WildFly 8

泄露秘密 提交于 2019-12-12 09:30:02
问题 Can anyone please give me the main difference between JBoss AS 7 and WildFly 8? I'm going to start a very important project and I have to choose between JBoss AS 7 and WildFly 8 (for this project I'm going to use GWT, JPA/Hibernate and jBPM 6). 回答1: WildFly 8 is the next iteration of the JBoss application server after JBoss AS 7 / EAP 6. Basically: JBoss AS 7.x = JEE6 JBoss EAP 6.x = JEE6 WildFly 8.x = JEE7 Red Hat typically backports security fixes from newer versions into older versions,

Edit standalone.xml while running WildFly 8.2

情到浓时终转凉″ 提交于 2019-12-12 03:22:08
问题 I have a WildFly running and an application that allow to edit database connection (ds.xml), that connection use security domain. When WildFly stopped it's work! When WildFly is running , I can write standalone.xml and save it but automatically the standalone.xml reverts to its previous state. Have a way to a external app to edit the standalone.xml with WildFly running? 回答1: WildFly will rewrite the configuration if there are changes to the management model. It's advised not to directly