Put client-side configuration parameters on the InvokerLocator

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 2829

This topic has not yet been written. The content below is from the topic description.
Again, the most straightforward form of configuration is to put the configuration parameters on the InvokerLocator. For example, the fragment String locatorURI = "socket://test.somedomain.com:8084"; String params = "/?clientMaxPoolSize=10&timeout=360000"; locatorURI += params; InvokerLocator locator = new InvokerLocator(locatorURI); Client client = new Client(locator); client.connect(); creates a Client using the socket transport to connect to a server on host test.somedomain.com, listening on port 8084. It also passes in two parameters, "clientMaxPoolSize" and "timeout", that will be used by the client invoker.