I use svcutil to generate my wcf proxy that is calling a WSE2 web service.
The problem comes when the web service author changes the order of fields in the proxy.
I examined the generated proxy and sees that the public attributes are adorned with the XmlElementAttribute(Order=0) .. Order=1, etc for each field.
Is there a way to generate WCF proxies that can still function after the web service has changed?
Because right now I will need to regenerate the proxy and recompile.
Thanks in Advance