c#处理重复/多个项目的Web服务

时间:2018-06-13 14:12:16

标签: c# xml web-services soap

我是使用Webservice的新手。我向外部公司实施了肥皂邮政行动。工作得很好。我现在想开始创建自己的人与我们互动。我已经创建了基本的添加服务作为所有教程等。

现在我想创建一个您下订单的服务。目前我只是将订单写入文本文件,其中PO nr作为文件名。测试工作只提交1项。但是我希望他们在电话中传递多个项目。这就是我现在所拥有的。

C#

   public struct OrderSystem
    {

        public string ResultMsg;
    }


[WebMethod(MessageName = "Submit Order", Description = "Submit Order")]
public OrderSystem Order(string Custnr,string POnr, string[] Item , int[] qty)
{ 
    using (System.IO.StreamWriter file =
        new System.IO.StreamWriter(@"C:\Users\Public\TestFolder\"+POnr+".txt"))
    {
                file.WriteLine(Custnr);
                file.WriteLine(POnr);

                for (int i =0; i< Item.Length; i++)
                {
                    file.WriteLine("LineItem" + i +Item[i] + " | "+qty[i]);
                }  
    }

    OrderSystem result;

        result.ResultMsg = "Complete";
        return (result);

}

当前的XML方式来调用它。他们设计一个电话给我不友好

POST /Orders.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/Submit Order"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Submit_x0020_Order xmlns="http://tempuri.org/">
      <Custnr>string</Custnr>
      <POnr>string</POnr>
      <Item>
        <string>string</string>
        <string>string</string>
      </Item>
      <qty>
        <int>int</int>
        <int>int</int>
      </qty>
    </Submit_x0020_Order>
  </soap:Body>
</soap:Envelope>

我想如何查看xml调用文件。

POST /Orders.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/Submit Order"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Submit_x0020_Order xmlns="http://tempuri.org/">
      <Custnr>000223</Custnr>
      <POnr>988590</POnr>
      <ItemList>
        <Item>
            <ItemNr>1</Item>
            <Item>ABC123</Item>
            <Qty>2</Qty>
        </Item>
                <Item>
            <ItemNr>2</Item>
            <Item>ASC123</Item>
            <Qty>45</Qty>
        </Item>
                <Item>
            <ItemNr>3</Item>
            <Item>XYZKKF</Item>
            <Qty>4</Qty>
        </Item>
                <Item>
            <ItemNr>4</Item>
            <Item>FGH789</Item>
            <Qty>6</Qty>
        </Item>

      </ItemList>

    </Submit_x0020_Order>
  </soap:Body>
</soap:Envelope>

如何处理和更改我的C#服务来处理该XML文件。

提前谢谢你 此致

1 个答案:

答案 0 :(得分:1)

首先,不要在2018年使用ASMX创建新服务。它已经deprecated for a couple of years already。使用WCF或Web API。

该解决方案适用于所有技术。只需创建一个类:

wp_postmeta

让您的服务接受该课程的列表。