|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.soap.server.util.ServerUtils
Some server-side utility methods.
Constructor Summary | |
ServerUtils() |
Method Summary | |
static SOAPFaultRouter |
buildFaultRouter(java.lang.String[] listeners, java.lang.ClassLoader cl) Create the fault router from the list of fault listeners. |
static void |
checkSoapConfigRootElement(Element root) |
static ConfigManager |
createConfigManager(Element root, java.lang.String defaultClassname, java.lang.ClassLoader cl, javax.servlet.ServletContext context) Create an instance of a specific configuration manager given the classname. |
static Handler |
createHandler(java.lang.String classname, java.lang.ClassLoader cl) Create an instance of a handler given the classname. |
static java.util.Properties |
createHandlers(Element root, java.lang.ClassLoader cl) Create the list of global handlers for the SOAP server engine. |
static Logger |
createLogger(Element root, ContainerContext context, java.lang.ClassLoader cl) Create the logger for the SOAP server engine, which is defined in the SOAP servlet XML configuration file. |
static java.lang.Object |
createObject(java.lang.String classname, java.lang.ClassLoader classLoader, java.lang.StringBuffer errs) Create a new instance of the given class using the given classLoader. |
static Provider |
createProvider(java.lang.String classname, java.lang.ClassLoader cl) Create an instance of a specific provider given the classname. |
static ProviderManager |
createProviderManager(Element root, java.lang.ClassLoader cl, javax.servlet.ServletContext context) |
static ServiceManager |
createServiceManager(Element root, ProviderManager providerManager, java.lang.ClassLoader cl, javax.servlet.ServletContext context) |
static java.lang.String[] |
getErrorHandlers(Element root) Get the ordered list of error handler names. |
static java.lang.String[] |
getFaultListeners(Element root) Create the list of fault listeners for the SOAP server engine. |
static boolean |
getPathAuth(Element root) |
static java.lang.String[] |
getRequestHandlers(Element root) Get the ordered list of request handler names. |
static java.lang.String[] |
getResponseHandlers(Element root) Get the ordered list of response handler names. |
static java.lang.String |
getStackTrace(java.lang.Throwable t) |
static boolean |
isNull(java.lang.String s) Determine if the given string is null or empty. |
static void |
rethrow(java.lang.String faultCode, java.lang.Throwable t) Rethrow the given exception as a SOAPException. |
static void |
rethrow(java.lang.String faultCode, java.lang.Throwable t, java.lang.String msg) Rethrow the given exception as a SOAPException. |
static void |
rethrow(java.lang.Throwable t) Rethrow the given exception as a server-side SOAPException. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public ServerUtils()
Method Detail |
public static java.lang.Object createObject(java.lang.String classname, java.lang.ClassLoader classLoader, java.lang.StringBuffer errs)
classname
- Name of class to instantiate with no-args constructor. Cannot be nullclassLoader
- class loader that should be used for loading the class. If null
then the default class loader is used.errs
- Contains error if unable to instantiate the class.null
in case of error and the error is in errs
.public static ConfigManager createConfigManager(Element root, java.lang.String defaultClassname, java.lang.ClassLoader cl, javax.servlet.ServletContext context) throws SOAPException
root
- The root element of the document the contains the configuration manager specification.defaultClassname
- The class name of the default configuration manager (implements oracle.soap.server.ConfigManager
).cl
- The class loader to use.context
- The servlet context.SOAPException
- If unable to instantiate the class, or the class is not a ConfigManager.public static Provider createProvider(java.lang.String classname, java.lang.ClassLoader cl) throws SOAPException
classname
- The name of the class that implements oracle.soap.server.Provider
.SOAPException
- If unable to find the class, or the class is not a Provider.public static Handler createHandler(java.lang.String classname, java.lang.ClassLoader cl) throws SOAPException
classname
- The name of the class that implements oracle.soap.server.Handler
.SOAPException
- If unable to find the class, or the class is not a Handler.public static ProviderManager createProviderManager(Element root, java.lang.ClassLoader cl, javax.servlet.ServletContext context) throws SOAPException
SOAPException
public static void checkSoapConfigRootElement(Element root)
public static boolean getPathAuth(Element root)
public static ServiceManager createServiceManager(Element root, ProviderManager providerManager, java.lang.ClassLoader cl, javax.servlet.ServletContext context) throws SOAPException
SOAPException
public static Logger createLogger(Element root, ContainerContext context, java.lang.ClassLoader cl) throws SOAPException
root
- The root element of the document the represents the SOAP configuration information.context
- The SOAP server context.SOAPException
- If unable to initialize the logger.public static java.util.Properties createHandlers(Element root, java.lang.ClassLoader cl) throws SOAPException
root
- The root element of the document the represents the SOAP configuration information.SOAPException
- If error parsing the handlers.public static java.lang.String[] getRequestHandlers(Element root) throws SOAPException
root
- The root element of the document the represents the SOAP configuration information.SOAPException
- If error parsing the request handlers list.public static java.lang.String[] getResponseHandlers(Element root) throws SOAPException
root
- The root element of the document the represents the SOAP configuration information.SOAPException
- If error parsing the response handlers list.public static java.lang.String[] getErrorHandlers(Element root) throws SOAPException
root
- The root element of the document the represents the SOAP configuration information.SOAPException
- If error parsing the error handlers list.public static java.lang.String[] getFaultListeners(Element root) throws SOAPException
root
- The root element of the document the represents the SOAP configuration information.SOAPException
- If error parsing the faultListeners.public static SOAPFaultRouter buildFaultRouter(java.lang.String[] listeners, java.lang.ClassLoader cl)
listeners
- The list of fault listeners.public static void rethrow(java.lang.String faultCode, java.lang.Throwable t, java.lang.String msg) throws SOAPException
faultCode
- The fault code from org.apache.soap.Constants.FAULT_CODE_xxx.t
- The throwable exception that must be rethrown as a org.apache.soap.SOAPException if it is not already.msg
- The message for the new SOAPException
, if the exception is not already a SOAPException
.SOAPException
- Always thrown by definition.public static void rethrow(java.lang.String faultCode, java.lang.Throwable t) throws SOAPException
faultCode
- The fault code from org.apache.soap.Constants.FAULT_CODE_xxx.t
- The throwable exception that must be rethrown as a org.apache.soap.SOAPException if it is not already.SOAPException
- Always thrown by definition.public static void rethrow(java.lang.Throwable t) throws SOAPException
t
- The throwable exception that must be rethrown as a org.apache.soap.SOAPException if it is not already.SOAPException
- Always thrown by definition.public static java.lang.String getStackTrace(java.lang.Throwable t)
public static boolean isNull(java.lang.String s)
s
- The string to check.true
if the string is null or empty, else false
.
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |