I have a separate WSDL URL for each environment, like
DEV URL-1 , SIT URL-2, PROD URL-3
I want to create a soap client in such a way that if we are deploying the application using this soap client on DEV then soap should point URL-1, if we deploy in SIT it should point URL-2 for PROD it should point URL-3. I am using MAVEN for generating soap client.
I don't want to change soap URL in pom.xml each time when I am deploying the application in a different environment.
We are using Jenkins to build the application and deploy in different environment
Can you help me on this?