* @return the web socket config object with all the configuration
* @throws WebSocketException
* if there's any while loading configuration
*/
private JWebSocketConfig loadConfiguration(final String aConfigFilePath) throws WebSocketException {
JWebSocketConfig lConfig = null;
File lFile = new File(aConfigFilePath);
String lMsg;
try {
FileInputStream lFIS = new FileInputStream(lFile);
XMLInputFactory lFactory = XMLInputFactory.newInstance();