Hi, I have a web service client developed using CXF. What we currently do is specify the address in spring xml configuration. Is there anyway that I could change this at runtime?
Here is how we currently configure the client using spring, is there anyway that I could reconfigure the address at runtime? <jaxws:client id = "cardService" serviceClass="org.tempuri.ServiceSoap" address = "http://localhost/address"> </jaxws:client> for e.g. change to this http://192.168.2.*/address thanks carlo
