I am trying to make my own configuration logic, and have started with
implementing EngineConfigurationFactory.
I have not found and explanation of how to use the service deployment
functions, this is what I have written so far,
public EngineConfiguration getServerEngineConfig() {
FileProvider provider = (FileProvider)
defaultFactory.getServerEngineConfig();
MixedProvider mixed = new MixedProvider(provider);
SOAPService test_1234 = new SOAPService(new RPCProvider());
mixed.deployService("test_1234",test_1234);
return mixed;
}
It clearly works to the extent that a service named test_1234 does show up
in the list.
What I want is to deploy a lot of services of the same kind, a SOAP RPC
service that is well known.
How would I do that
Thanks for any advice,
Henrik
P.S. MixedProvider is my version of SimpleProvider with a couple of changes.