FileDocCategorySizeDatePackage
BasicServerConfig.javaAPI DocApache Axis 1.41466Sat Apr 22 18:57:28 BST 2006org.apache.axis.configuration

BasicServerConfig

public class BasicServerConfig extends SimpleProvider
A SimpleProvider set up with hardcoded basic configuration for a server (i.e. local transport). Mostly handy for testing.
author
Glen Daniels (gdaniels@apache.org)

Fields Summary
Constructors Summary
public BasicServerConfig()
Constructor - deploy a hardcoded basic server-side configuration.

        Handler h = new LocalResponder();
        SimpleTargetedChain transport = new SimpleTargetedChain(null, null, h);
        deployTransport("local", transport);
        deployTransport("java", new SimpleTargetedChain(new LocalSender()));
    
Methods Summary