How can I force the .NET ASMX WSDL generation to change a soap:address location from http to https?

Viewed 16

Using VB.NET asmx project, which is hosted behind SSL offload, I need to change the generated WSDL to show https for the soap:address.

from: <soap:address location="http://example.com/example.asmx"/>
to: <soap:address location="https://example.com/example.asmx"/>

preferably outside of code so we can influence in the build process.

0 Answers
Related