I generate service code using the command
wsdl2java -uri AuthenticationService.wsdl [params]
then make changes to a few generated files and deploy my war file. But the issue is i have deployed this file to QA environment and it has a soap address (epr - end point reference) which is pointing to QA box.
<!-- Soap Service Endpoint -->
<service name="SforceAuthenticationService">
<documentation>Sforce Authentication Service</documentation>
<port binding="tns:AuthenticationBinding" name="AuthenticationService">
<soap:address location="https:[QA URL]/myapp/services/MyService"/>
</port>
</service>
To push to production it seems that in my wsdl file and i need to change the url and run the wsdl2java command again which will create new files, and then again i have to make changes in couple of java classes. Ideally i would like to push to production when QA signs off without having to build again! Is it possbile to do this by changing the soap address via admin console? I couldn't find anything on it.