Bytes getModuleManager().installModule(String, Bytes)

I’d like to know what exactly is needed for the bytes parameter to install a module programmtically. Is this array the number of bytes the module is limited to to run or the number of bytes allocated to it for startup.

public void setup(GatewayContext context) {
try {
this.m_context = context;
} catch (Exception e) {
m_logger.fatal(“Error setting up module.”, e);
}
}

modulesCreatedProviders = m_context.getModuleManager().getModules();
// m_context.getModuleManager().installModule(this.toString(), );
for (Object providerObj : modulesCreatedProviders) {
m_context.getModuleManager().restartModule(providerObj.toString());
m_context.getModuleManager().uninstallModule(providerObj.toString());
byte startup[] = new byte[500];
m_context.getModuleManager().installModule(providerObj.toString(), startup);

It’s neither… it’s the bytes representing the modl file and all its contents.

Why are you doing this?

Our tag provider is not a conventional tag provider so I have to attempt to either one unload the module persisting all of it’s meta data in an object and then reload it it or get the module id and try to reload the tag provider some how.
The simple tag provider method was not use and there is no easy way to obtain the settings meta without recreating the tag provider object in which is impossible without all of the gateway meta.