如何将包含List <object>的对象传递给C#?</object>中的Web服务方法

时间:2013-11-14 09:48:53

标签: c# asp.net web-services

我想将一个包含JBSearchRequest的{​​{1}}对象传递给我的asp.net Web服务。我可以从SOAP UI和其他一些工具调用这个Web服务,但是当我尝试从我的C#客户端代码发送请求时会出现问题。

我的Web服务类是

List<JBCredential>

我尝试了以下

    public List<JBCredential> JBCredentials{ get; set; }
    public string codes { get; set; }
    public string db { get; set; }
    public string locale { get; set; }
    public string location { get; set; }
    public string mode { get; set; }
    public string postcode { get; set; }

请在帮助我使用Web服务时如何传递包含列表的对象。

0 个答案:

没有答案