How to make below variables as configurable,I generated webservice java classes using WS IMPORT.But problem is eventhough wsdl is same for each environemnt SIT,UAT and PROD.But below properties will be different.
wsdlLocation
targetNamespace
url
So how to configure these from properties file?
Suppose take below code that is generated from ws import using JAXWS.How below fields to be configurable without generating the code by environment level.
@WebServiceClient(name = "empLookup", targetNamespace = "https://caitest/empLookup", wsdlLocation = "http://caitest.net:10001/empLookup/empLookup?WSDL")
Regards, Raj