How do I solve this error, “error while trying to deserialize parameter”

后端 未结 8 1803
轻奢々
轻奢々 2020-12-09 02:50

I have a web service that is working fine in one environment but not in another.

The web service gets document meta data from SharePoint, it running on a server wher

8条回答
  •  有刺的猬
    2020-12-09 03:31

    Do you have this namespace setup? You will have to ensure that this namespace matches the message namespace. If you can update your question with the xml input and possibly your data object that would be helpful.

    [DataContract(Namespace = "http://CompanyName.com.au/ProjectName")]
    public class CustomFields
    {
      // ...
    }
    

提交回复
热议问题