Handle <createCoordinationContext> message.
This method will process the request and construct a new
{@link com.sun.xml.ws.tx.coordinator.Coordinator} to cache it in the
{@link com.sun.xml.ws.tx.coordinator.CoordinationManager}.
This method will only be used for interop with other coordinators. Java clients
will typically contact their local coordinator via more performant paths.
<CreateCoordinationContext ...>
<Expires> ... </Expires>?
<CurrentContext> ... </CurrentContext>?
<CoordinationType> ... </CoordinationType>
...
</CreateCoordinationContext>
if (logger.isLogging(Level.FINER)) {
logger.entering("wscoor:createCoordinationContext", parameters);
}
CoordinationManager coordMgr = CoordinationManager.getInstance();
coordMgr.lookupOrCreateCoordinator(parameters);
if (logger.isLogging(Level.FINER)) {
logger.exiting("wscoor:createCoordinationContext");
}