* @throws Exception
*/
public TransporterServer(InvokerLocator locator, Object target, String subsystem, Map config) throws Exception
{
connector = getConnector(locator, config, null);
ServerInvocationHandler handler = new TransporterHandler(target);
if (subsystem != null)
{
connector.addInvocationHandler(subsystem.toUpperCase(), handler);
}
else