C#呼叫webservice

職業驅魔師發表於2013-08-05

首先新增web引用,即將webservice的wsdl引用


using System;

using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace test05
{
    class Program
    {
        static void Main(string[] args)
        {
            xmw.SunLife3 s = new xmw.SunLife3();//xmw是名稱空間 SunLife3是class
            Console.WriteLine(s.excute("101", "aaaaaaaa"));
        }
    }
}

相關文章