.net - Are the method names and parameter names case sensitive in a SOAP message -


if change case of method name , parameters, adversely affect clients making use of asmx or wcf web service?

public string getstring(int input) {     return input.tostring(); } 

to....

public string getstring(int input) {     return input.tostring(); } 

would clients needed regenerate proxy objects make use of changed methods?

yes, parameters names on server side should match (including case) parameter names, defined in operation contracts. method names.

if need control on - can use messageparameterattribute

from msdn:

the value of parameter names in operation signature are part of contract , case sensitive. use attribute when need distinguish between local parameter name , metadata describes operation client applications.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -