E
Evgeny M.
We have web.config for .Net 1.1 with section:
<webServices>
<protocols>
<add name="HttpGet" />
<add name="HttpPost" />
<add name="HttpSoap1.2" />
<add name="HttpSoap" />
<add name="HttpPostLocalhost" />
<add name="Documentation" />
</protocols>
</webServices>
If this Web Services is running with .Net 2.0 we got error about
HttpSoap1.2, in .Net 2.0 it should be HttpSoap12 (no point). The Web Service
can run with .Net 1.1 and .Net 2.0, sometimes .Net 2.0 installed, sometimes -
not.
Can we put some syntax that backward compatible?
<webServices>
<protocols>
<add name="HttpGet" />
<add name="HttpPost" />
<add name="HttpSoap1.2" />
<add name="HttpSoap" />
<add name="HttpPostLocalhost" />
<add name="Documentation" />
</protocols>
</webServices>
If this Web Services is running with .Net 2.0 we got error about
HttpSoap1.2, in .Net 2.0 it should be HttpSoap12 (no point). The Web Service
can run with .Net 1.1 and .Net 2.0, sometimes .Net 2.0 installed, sometimes -
not.
Can we put some syntax that backward compatible?