In org.apache.axis.client.Service, there's a method called
setEngineConfiguration(). I need something like this, but the problem,
as pointed out in the comments to the method, is that the engine
configuration is already set by all the constructors. How can I get
around this problem without adding more constructors with an extra
config parameter? Is there a solution planned for this?
/Daniel
/**
* Set this Service's engine configuration.
*
* Note that since all of the constructors create the AxisClient right
* now, this is basically a no-op. Putting it in now so that we can
make
* lazy engine instantiation work, and not have to duplicate every
single
* Service constructor with a EngineConfiguration argument.
*
* @param config the EngineConfiguration we want to use.
*/
public void setEngineConfiguration(EngineConfiguration config) {
this.config = config;
}
--
Daniel Elenius <[EMAIL PROTECTED]>