Web服务(SOAP) - 如何使用接口中包含的xmlnodes

时间:2015-03-28 13:46:43

标签: asp.net web-services wcf soap

我已经在我的项目的服务引用中添加了一个生成了几个包含在接口中的方法。这是一个例子:

public interface ClientServiceSoap {
    [System.ServiceModel.OperationContractAttribute(Action="https://service.service.com/GetAgentsInGroup", ReplyAction="*")]
    [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
    System.Xml.XmlNode GetAgentsInGroup(string username, string password, int groupId);

    [System.ServiceModel.OperationContractAttribute(Action="https://service.service.com/GetAgentsInGroup", ReplyAction="*")]
    System.Threading.Tasks.Task<System.Xml.XmlNode> GetAgentsInGroupAsync(string username, string password, int groupId);

如何使用这些xmlnodes来使用它们并在Web应用程序中返回信息?在这个例子中,我如何从方法中获取代理?

0 个答案:

没有答案