# This is the port in which client side listener listens. CLIENT_LISTENER_PORT = 9090 # This is the SimpleAxisServerImpl running port. Only for testing purposes. SIMPLE_AXIS_SERVER_PORT = 8080 # Any number of handlers can be included as shown below for the response path of the Sender. responseHandler1 = org.apache.axis.message.addressing.handler.AddressingHandler responseHandler2 = org.apache.sandesha.ws.rm.handlers.RMServerRequestHandler # If there are additional handlers that needs to be included in the Senders request path # then use the following configuration. # requestHandler1 = package.name.DummyHandler # These are the handlers for the Listener's request path. Listener's request path is used to # retrieve asynchronous responses and other RM protocol messages and hence the handlers we put here # should be the RESPONSE handlers with respect to normal invocation. listenerRequestHandler1 = org.apache.axis.message.addressing.handler.AddressingHandler listenerRequestHandler2 = org.apache.sandesha.ws.rm.handlers.RMServerRequestHandler # Define the strategy for executing web service invokes. # This impl uses the apache axis thread pool and configures # it to the given size. invokeStrategy=org.apache.sandesha.server.ThreadPoolInvokeStrategy:threadPoolSize=10 # Define the invoke handler that will execute the web service invokes. # This impl simply delegates to the handler specified by the "invoker" param. invokeHandler=org.apache.sandesha.server.DelegateInvokeHandler:invoker=org.apache.axis.providers.java.RPCProvider