Uses of Class
org.ow2.jonas.web.JWebContainerServiceException

Packages that use JWebContainerServiceException
org.ow2.jonas.web   
org.ow2.jonas.web.base   
org.ow2.jonas.web.base.proxy   
org.ow2.jonas.web.jetty6   
org.ow2.jonas.web.tomcat6   
 

Uses of JWebContainerServiceException in org.ow2.jonas.web
 

Methods in org.ow2.jonas.web that throw JWebContainerServiceException
 void JWebContainerService.deployWars(Context ctx)
          Deploy the given wars of an ear file with the specified parent classloader (ejb classloader or ear classloader).
 URLClassLoader JWebContainerService.getClassLoader(URL warURL, org.ow2.util.ee.deploy.api.deployable.EARDeployable earDeployable, ClassLoader ejbClassLoader)
          Return the class loader of the given warURL.
 String JWebContainerService.getDefaultHost()
          Return the Default host name of the web container.
 String JWebContainerService.getDefaultHttpPort()
          Return the Default HTTP port number of the web container (can be null if multiple HTTP connector has been set).
 String JWebContainerService.getDefaultHttpsPort()
          Return the Default HTTPS port number of the web container (can be null if multiple HTTPS connector has been set).
 void JWebContainerService.registerWar(String fileName)
          Register a WAR by delegating the operation to the registerWar() method.
 void JWebContainerService.unRegisterWar(String fileName)
          Unregister a WAR by delegating the operation to the unRegisterWar() method.
 

Uses of JWebContainerServiceException in org.ow2.jonas.web.base
 

Methods in org.ow2.jonas.web.base that throw JWebContainerServiceException
protected  URL BaseWebContainerService.checkWarDeployed(String fileName)
          Check if the specified file is already deployed in the JOnAS server and return the URL of this deployed war file.
protected  URL BaseWebContainerService.checkWarFile(String fileName)
          Check if the specified file name correspond to a file which is located relatively to where the JOnAS server is launched or in the $JONAS_BASE/web-apps.
 void BaseWebContainerService.deployWars(Context ctx)
          Deploy the given wars of an ear file with the specified parent classloader (ejb classloader or ear classloader).
protected abstract  void BaseWebContainerService.doRegisterWar(Context ctx)
          Create the environment and delegate the operation to the implementation of the web container.
protected abstract  void BaseWebContainerService.doUnRegisterWar(Context ctx)
          Delegate the unregistration to the implementation of the web container.
 WebappClassLoader BaseWebContainerService.getClassLoader(URL warURL, org.ow2.util.ee.deploy.api.deployable.EARDeployable earDeployable, ClassLoader parentLoader)
          Return the class loader of the given warURL.
abstract  String BaseWebContainerService.getDefaultHost()
          Return the Default host name of the web container.
abstract  String BaseWebContainerService.getDefaultHttpPort()
          Return the Default HTTP port number of the web container (can be null if multiple HTTP connector has been set).
abstract  String BaseWebContainerService.getDefaultHttpsPort()
          Return the Default HTTPS port number of the web container (can be null if multiple HTTPS connector has been set).
protected  URL BaseWebContainerService.getUnpackedURL(URL warURL, org.ow2.util.ee.deploy.api.deployable.EARDeployable earDeployable)
          Return the URL where warURL has been unpacked.
protected  void BaseWebContainerService.registerWar(Context ctx)
          Create the environment and delegate the operation to the implementation of the web container.
 void BaseWebContainerService.registerWar(String fileName)
          Register a WAR by delegating the operation to the registerWar() method.
protected  void BaseWebContainerService.setWebEnvironment(Context ctxParam, org.ow2.easybeans.deployment.api.EZBInjectionHolder ezbInjectionHolder, ClassLoader webAppClassLoader)
          Set the environment of the web container inside the given context.
abstract  void BaseWebContainerService.startInternalWebContainer()
          Starts the specific code for the web container implementation.
protected  void BaseWebContainerService.unRegisterWar(Context ctx)
          Delegate the unregistration to the implementation of the web container and delete the environment associated to the WAR file.
 void BaseWebContainerService.unRegisterWar(String fileName)
          Unregister a WAR by delegating the operation to the unRegisterWar() method.
 

Uses of JWebContainerServiceException in org.ow2.jonas.web.base.proxy
 

Methods in org.ow2.jonas.web.base.proxy that throw JWebContainerServiceException
 void HttpOnDemandProxy.startWebContainer()
          Starts the web container.
 

Uses of JWebContainerServiceException in org.ow2.jonas.web.jetty6
 

Methods in org.ow2.jonas.web.jetty6 that throw JWebContainerServiceException
protected  void Jetty6Service.doRegisterWar(Context ctx)
          Create the environment and delegate the operation to the implementation of the web container.
protected  void Jetty6Service.doUnRegisterWar(Context ctx)
          Delegate the unregistration to the implementation of the web container.
 String Jetty6Service.getDefaultHost()
          Return the Default host name of the web container.
 String Jetty6Service.getDefaultHttpPort()
          Return the Default HTTP port number of the web container (can be null if multiple HTTP connector has been set).
 String Jetty6Service.getDefaultHttpsPort()
          Return the Default HTTPS port number of the web container (can be null if multiple HTTPS connector has been set).
 void Jetty6Service.startInternalWebContainer()
          Starts the specific code for the web container implementation.
 

Uses of JWebContainerServiceException in org.ow2.jonas.web.tomcat6
 

Methods in org.ow2.jonas.web.tomcat6 that throw JWebContainerServiceException
protected  void Tomcat6Service.checkStartedContext(org.apache.catalina.Context context, PermissionManager permissionManager)
          Check that the context that was started was right configured.
protected  void Tomcat6Service.doRegisterWar(Context ctx)
          Deploy a specific WAR file specified in the context.
protected  void Tomcat6Service.doUnRegisterWar(Context ctx)
          Undeploy a specific WAR file specified in the context.
 org.apache.catalina.Host Tomcat6Service.findHost(String hostName)
          Find the specified host.
protected  List<org.apache.catalina.Context> Tomcat6Service.getContexts()
          Gets all the contexts of the current Tomcat server.
 String Tomcat6Service.getDefaultHost()
          Return the Default host name of the web container.
 String Tomcat6Service.getDefaultHttpPort()
          Return the Default HTTP port number of the web container.
 String Tomcat6Service.getDefaultHttpsPort()
          Return the Default HTTPS port number of the web container (can be null if multiple HTTPS connector has been set).
protected  List<org.apache.catalina.core.StandardEngine> Tomcat6Service.getEngines()
          Gets all the engines of the current Tomcat server.
protected  int Tomcat6Service.getPort(String scheme)
          Finds the first connector supporting the given URL scheme and return its listening port.
 void Tomcat6Service.registerWar(String fileName)
          Register a WAR by delegating the operation to the registerWar() method.
 void Tomcat6Service.removeContext(org.apache.catalina.Context context)
          Remove the specified Context from the set of defined Contexts for its associated Host.
protected  void Tomcat6Service.setWebEnvironment(Context ctxParam, org.ow2.easybeans.deployment.api.EZBInjectionHolder ezbInjectionHolder, ClassLoader webAppClassLoader)
          Set the environment of the web container inside the given context.
 void Tomcat6Service.startInternalWebContainer()
          Starts the specific code for the web container implementation.
 void Tomcat6Service.unRegisterWar(String fileName)
          Unregister a WAR by delegating the operation to the unRegisterWar() method.
 



Copyright © 2010 OW2 Consortium. All Rights Reserved.