Represents a Parser for reading an XWS-Security configuration and creating an
appropriate XWS-Security configuration object.
The parser expects the root element of an XWS-Security configuration
to be either a xwss:JAXRPCSecurity or a xwss:SecurityConfiguration.
See Also: xwssconfig.xsd See Also: (the XWS-Security configuration schema)
createApplicationSecurityConfiguration(InputStream xmlStream) read an XWS-Security configuration representing an xwss:JAXRPCSecurity element
and return an ApplicationSecurityConfiguration instance.
createDeclarativeConfiguration(InputStream xmlStream) read an XWS-Security configuration representing a xwss:SecurityConfiguration element
and return a DeclarativeSecurityConfiguration instance.
readApplicationSecurityConfigurationString(String sourceXml) read an XWS-Security configuration String representing an xwss:JAXRPCSecurity element
and return an ApplicationSecurityConfiguration instance.
read an XWS-Security configuration representing an xwss:JAXRPCSecurity element
and return an ApplicationSecurityConfiguration instance.
Parameters: xmlStream - the InputStream for the configuration an ApplicationSecurityConfiguration corresponding to the configuration exception: Exception - if there was an error in creating the configuration
read an XWS-Security configuration representing a xwss:SecurityConfiguration element
and return a DeclarativeSecurityConfiguration instance.
Parameters: xmlStream - the InputStream for the configuration a DeclarativeSecurityConfiguration corresponding to the configuration exception: Exception - if there was an error in creating the configuration
read an XWS-Security configuration String representing an xwss:JAXRPCSecurity element
and return an ApplicationSecurityConfiguration instance.
Parameters: sourceXml - the configuration String an ApplicationSecurityConfiguration corresponding to the configuration exception: Exception - if there was an error in creating the configuration
Parse and validate an XWS-Security configuration
Parameters: xmlStream - the InputStream representing the configuration Parameters: out - the PrintStream to which Errors messages should be logged exception: Exception - if there was an error while validating the configuration