Hi,
I'm not sure if this is the correct forum to place my requirement. If not, I'm sorry.
We have declared many webservice endpoints using spring (wss / ws namespace). To make usage easier, we use a BeanPostProcessor to inject SoapHandlers to all types of SpringService (that all works well).
Now we want to decide via annotation to add handlers or not to SpringServices. Unfortunately, SpringService does not offer a getter method to retrieve implClass. As workaround we solve it with reflection, but it's not a good solution.
Is it possible to add getters to SpringService class in a upcoming version?
Thanks in advance.