Logging request and response in one place with JAX-RS
Created 28/07-2016 by Michael Bornholdt Nielsen
Best practice for REST token-based authentication with JAX-RS
Created 28/07-2016 by Michael Bornholdt Nielsen
Web services Handler Chains
Get a handle on the JAX-WS API's handler framework (Page 3 of 3)
Web services Handler Chains tutorial
JAX-WS : SOAP handler in client side
Handler example using JAXWS 2.0
A little bit about Handlers in JAX-WS
Created 15/04-2016 by Michael Bornholdt Nielsen
Java EE - Scheduled
MyManagedScheduledBatchBean.java
Task Scheduling in Java EE 6 on GlassFish using the Timer Service
Tags : Java EE
Created 06/01-2015 by Michael Bornholdt Nielsen
Java EE - CDI and Events
Applying @Alternative Beans and Lifecycle Annotations
Working with Injection and Qualifiers in CDI
Getting Started with JSF 2.0 and CDI part 3 – Events
Java EE 7: EJB publishing CDI Events that are pushed over WebSocket to browser client
Integrating WebSockets and JMS with CDI Events in Java EE 7
Contexts and Dependency Injection for the Java EE platform [http://docs.jboss.org]
Tags : Java EE
Created 06/01-2015 by Michael Bornholdt Nielsen
Java EE and MongoDB
Created 25/11-2014 by Michael Bornholdt Nielsen
How to get module name and application name in Java EE applications
Just works
InitialContext initialContext
= new InitialContext();
String myModuleName =
(String) initialContext.lookup("java:module/ModuleName");
String myApplicationName =
(String) initialContext.lookup("java:app/AppName");
Works sometime
@Resource(lookup="java:module/ModuleName")
private String moduleName;
@Resource(lookup="java:app/AppName")
private String applicationName;
Tags : Java EE
Created 11/11-2014 by Michael Bornholdt Nielsen
How can i config module and application name for JNDI Lookups
Created 30/09-2014 by Michael Bornholdt Nielsen