Important: | The axis2.xml file contains important information such as the user name and password to use to log in to the Web Services Stack administration console. Change the default credentials to protect access to the axis2.xml file. |
Parameter | Description |
include WrappedTypes Declaration | Whether to include message-wrapper elements in the WSDL XSD schema. Axis2 processes an RPC-style WSDL definition and automatically creates a wrapper element and type definition for each message. Axis2 then processes internally any request or response as if it is in a document style with an element declaration for each message. Valid values are: false - Axis2 creates a copy of the WSDL definition when processing the message types and modifies the copy instead of the original WSDL document. true (default) - Axis2 creates the web service instance and automatically adds the auto-generated types to the XSD of the original WSDL definition. |
enableWSDL Validation | Whether to validate WSDL documents against external resources. Valid values are false (default) and true. |
enableSoap Validation | Whether to validate SOAP messages. Valid values are: false (default) - when Axis2 client side and server side exchange SOAP messages, the messages are not automatically validated if they comply with the SOAP specification. true - the SOAP validation can be enabled both on the server side and on the client side. On the server side you can enable the SOAP validation at these levels: Globally - set the parameter in the axis2.xml file. For a specific service group - set the parameter inside a ServiceGroup tag in the services.xml file. For a specific service - set the parameter inside a Service tag in the services.xml file. For a specific operation - set the parameter inside an Operation tag in the services.xml file. For a specific request - set the parameter programatically to MessageContext. On the client side you can enable SOAP validation at these levels: Globally - set the parameter in the axis2.xml file. For operations that expect large SOAP messages - call programmatically using Options.setProperty("disableSoapValidation",Boolean.TRUE). |
wsdl4jRegister Default Extension AttributeTypes | Whether to register default extension attribute types in the WSDL4J extension registry. Configuration is done on Input, Output and Fault WSDL elements using String type. Valid values are false (default) and true. |