A NullpointerException was thrown in
createService() of org.jboss.ha.jndi.HANamingService
because
inside the for loop the uninitialized reference
marshalledInvocationMapping (the naming interface
method map) was populated rather than the initialized
HashMap tmpMap.
Was a one line change from:
tmpMap.put(hash, method);
marshalledInvocationMapping.put(hash, method);
Logged In: YES
user_id=175228
Ok, thanks.