Christopher McCauley wrote:I have a peer whose team uses Axis and we have been unable to make dynamic calls to his services.
Axis 1.x or Axis2 ?
In the case of Axis 1.x it is possible to expose a
SOAP web service through the "rpc/encoded" messaging mode (See
Which style of WSDL should I use?). Neither Axis2 nor JAX-WS (or any SOAP stack in the current generation) support "rpc/encoded" because of the insurmountable SOAP encoding interoperability problems. So it would be impossible to access an Axis 1.x "rpc/encoded" web service with an Axis2 or JAX-WS client. You would have to use the Axis 1.x client libraries and code against them to access the Axis 1.x "rpc/encoded" web service.
Is that what you mean?