Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gautric/mom-application
Application Java EE (EJB,MDB,CDI,WS)
https://github.com/gautric/mom-application
Last synced: 10 days ago
JSON representation
Application Java EE (EJB,MDB,CDI,WS)
- Host: GitHub
- URL: https://github.com/gautric/mom-application
- Owner: gautric
- Created: 2015-03-31T20:32:04.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-04T09:48:36.000Z (almost 9 years ago)
- Last Synced: 2024-10-20T08:58:30.858Z (18 days ago)
- Language: Java
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MoM Application
An MOM application with several JEE 6 Technologies.
* EJB
* MDB
* Websocket
* CDI
* JMSThis application runs inside JBoss EAP 6.3 and Java 7
## Software Architecture
MoM App is an EAR Application and has got four sub-modules.
These sub-module provide specifics features.## Compilation
Maven 3 build MoM Application
```
$> mvn package
```## Configuration
### Websocket transport
MoM Application uses Websocket stuff, JBoss EAP 6 has to setup this feature.
Connect to JBoss instance via the jboss-cli.sh shell```
$> jboss-cli.sh --connect
$# /subsystem=web/connector=http/:write-attribute(name=protocol,value=org.apache.coyote.http11.Http11NioProtocol)
$# :reload
$# exit
$>
```#### Miscellaneous
This work is recompilation from different data sources list below :
* https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Application_Platform/6.3/html/Development_Guide/Create_a_Websocket_Application.html
* http://denistek.blogspot.fr/2008/08/list-jndi-names.html
* http://blog.arungupta.me/websocket-jboss-eap-6-3/
* https://weblogs.java.net/blog/jjviana/archive/2010/04/14/decoupling-event-producers-and-event-consumers-java-ee-6-using-cdi-a
* http://piotrnowicki.com/2013/05/asynchronous-cdi-events/
* http://azure.microsoft.com/en-us/documentation/articles/service-bus-java-how-to-use-jms-api-amqp/
* RH colleague stuffFeel free to send me a feedback.