代码之家  ›  专栏  ›  技术社区  ›  EvilDr

无法从WSDL中找到类型

  •  1
  • EvilDr  · 技术社区  · 9 年前

    我正在尝试使用以下web服务以获取在线测验结果列表。不幸的是,提供商没有提供帮助。他们的其他网络服务对我们很好;就这一个我们正在苦苦挣扎。

    https://opendoor.lg.lumesse.com/webservices/services/LearningStatusRecords?wsdl

    本手册规定了以下内容:

    LearningStatusRecords服务包括两种方法:

    1. 获取学习状态记录
    2. 确认学习状态记录主要功能由FetchLearningStatusRecords方法处理。

    响应返回:

    1. 多达1000条记录,包括用户信息、活动信息、结果和相关日期,

    2. 标记是否有更多记录要检索,

    3. 检索到的记录的唯一标记(如果未检索到任何记录,则无标记)

    如果我正确地遵循WSDL文件,应该有一个可以实例化的对象 LearningStatusRecords ,但IntelliSense没有显示这一点:

    enter image description here

    我可以实例化 FetchLearningStatusRecordsRequest ,并访问手册描述的属性,但无法找到任何方法将该请求与响应相关联。

    我对WSDL文件的了解越多,这就越令人困惑。我也在网上看到条目。config表示存在一些问题,但不确定这些问题是否导致了此问题。

    1 回复  |  直到 4 年前
        1
  •  2
  •   blogprogramisty.net    9 年前

    好的,我明白了:

    尝试此操作已测试并通过:

    using ServiceReference1;
    
    public class ServiceTestClass
    {
        public ServiceTestClass()
        {
            using (var client = new LearningStatusRecordsPortTypeClient())
            {
                 LearningStatusRecordsFetchResponse result1 = client.FetchLearningStatusRecords(
               new LearningStatusRecordsFetchRequest());
    
                   foreach (LearningStatusRecord lsr in result1.LearningStatusRecordsList)
                    {
                        Console.WriteLine(lsr.RecordStatus);
                    }
    
               LearningStatusRecordsAcknowledgeResponse result2 =  client.AcknowledgeLearningStatusRecords(
                    new LearningStatusRecordsAcknowledgeRequest());
            }
        }
    }
    

    当您将wsdl添加到ServiceReference时,您可以看到这个示例中的cilent类的类型是什么 LearningStatusRecordsPortTypeClient

    enter image description here