读取XML格式的WSDL文件

时间:2011-10-14 00:20:38

标签: c# xml wsdl

我正在尝试读取一个WSDL页面,类似于http://schemas.xmlsoap.org/wsdl/我试图获取操作,数据类型,输入和输出信息,并尝试在C#中完成所有操作。是否像读取XML文件?这里是否有教程,如果有,你可以指出我正确的方向。

4 个答案:

答案 0 :(得分:1)

WSDL确实是一种XML格式。以下是1.1版本的官方定义:

http://www.w3.org/TR/wsdl

答案 1 :(得分:1)

如果您拥有WSDL文件位置的URL,则可以使用浏览器导航到该文件,它将显示(XML)内容。您还应该能够将其添加为Visual Studio项目中的(服务)引用(右键单击引用 - >添加服务引用)。

一旦添加为项目的引用,您应该能够使用对象浏览器来查看所有方法,属性等.WSDL非常老派,因此在Web上有很多关于它的引用。

答案 2 :(得分:0)

您应该通过右键单击References文件夹并使用“添加服务引用”来添加对服务的引用。为它提供WSDL的URL,它将创建一组可以调用的代理类。

请勿使用“添加网络参考”。它已经过时了。

答案 3 :(得分:0)

使用WSDL路径调用 ReturnOperationsParameters ,您将拥有所需的一切

 public static void ReturnOperationsParameters(string fileName)
    {

        var reader = new XmlTextReader(fileName);
        var serviceDescription = ServiceDescription.Read(reader);
        BindingCollection bindColl = serviceDescription.Bindings;
        PortTypeCollection portTypColl = serviceDescription.PortTypes;
        MessageCollection msgColl = serviceDescription.Messages;
        Types typs = serviceDescription.Types;


        foreach (Service service in serviceDescription.Services)
        {
            String webServiceNmae = service.Name.ToString();

            foreach (Port port in service.Ports)
            {
                string portName = port.Name;
                string binding = port.Binding.Name;
                System.Web.Services.Description.Binding bind = bindColl[binding];
                PortType portTyp = portTypColl[bind.Type.Name];
                foreach (Operation op in portTyp.Operations)
                {
                    var operatioList = new SoapData();
                   // _soapdata = new SoapData();
                    OperationMessageCollection opMsgColl = op.Messages;
                    OperationInput opInput = opMsgColl.Input;
                    string inputMsg = opInput.Message.Name;
                    Message msgInput = msgColl[inputMsg];
                    MessagePart part = msgInput.Parts[0];
                    operatioList.OperationName = op.Name;


                    operatioList.NameSpace = part.Element.Namespace;

                    TreeItemSource.Add(operatioList);

                }
            }
        }

    }
}

public class SoapData
{
    public int Id { get; set; }
    public string RequestXml { get; set; }
    public string ResponseXml { get; set; }
    public string NameSpace { get; set; }
    public string OperationName { get; set; }
}