Page History
...
| Code Block |
|---|
#!<studio-project id="20000000-000000" name="lansa"> # # Axis default properties # axis.ClientConfigFile=system/axis-client-config.xml axis.ServerConfigFile=system/axis-server-config.xml # # axis.http.client.maximum.total.connections # axis.http.client.maximum.connections.per.host # axis.http.client.connection.pool.timeout # axis.http.client.connection.default.so.timeout # axis.http.client.connection.default.connection.timeout # axis.socketFactory # axis.socketSecureFactory # axis.ServerFactory # http.proxyHost # http.proxyPort # http.proxyUser # http.proxyPassword # http.nonProxyHosts # https.proxyHost # https.proxyPort # https.proxyUser # https.proxyPassword # https.nonProxyHosts # #!</studio-project> |
Axis Global Configuration
Axis Client and Server Configuration
By default, Axis uses the 'org/apache/axis/client/client-config.wsdd' and 'org/apache/axis/server/server-config.wsdd' files from the jsmaxis.jar file for client and server configuration.
The AxisDefault.properties entries axis.ClientConfigFile and axis.ServerConfigFile direct Axis to use different configuration files.
axis.ClientConfigFile=system/axis-client-config.xml
axis.ServerConfigFile=system/axis-server-config.xml
Axis Client Configuration
| Code Block |
|---|
<?xml version="1.0" encoding="utf-8"?> <deployment name="defaultClientConfiguration" xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <globalConfiguration> <parameter name="disablePrettyXML" value="true"/> <parameter name="addressing.sendReplyTo" value="true"/> <parameter name="enableNamespacePrefixOptimization" value="false"/> </globalConfiguration> <transport name="http" pivot="java:org.apache.axis.transport.http.HTTPSender"/> </deployment> |
Axis Server Configuration
| Code Block |
|---|
<?xml version="1.0" encoding="utf-8"?> <deployment name="defaultServerConfiguration" xmlns="http://xml.apache.org/axis/wsdd/"> <globalConfiguration> <parameter name="sendMultiRefs" value="false"/> <parameter name="dotNetSoapEncFix" value="true"/> <parameter name="disablePrettyXML" value="true"/> <parameter name="enableNamespacePrefixOptimization" value="false"/> </globalConfiguration> </deployment> |
...