I have an Axis 1 web service, deployed using a WSDD file, that is defined and implemented by a Java class. Each method is a service and the method parameters become the service parameters.
What I would like to do is have a service with some static parameters, and some dynamic parameters that change depending on the state of the webapp at the time the web service is called. My implementation that does the work could handle these parameters as a simple Map.
Can this be achieved with Axis 1, or another method?
Unfortunately Java 1.4.2+ compatibility is required.