文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>WebClient访问webSerivce

WebClient访问webSerivce

时间:2011-03-22  来源:明永成

WebClient访问webService
        static void Main(string[] args)
        {
            string uri = @"http://localhost:2645/Service1.asmx/HelloWorld1";

            WebClient wc = new WebClient();
            StringBuilder postData = new StringBuilder();
            postData.Append("name=" + "mingyongcheng");
            //下?面?是?utf-8编括?码?
            byte[] sendData = Encoding.GetEncoding("utf-8").GetBytes(postData.ToString());
            wc.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
            wc.Headers.Add("ContentLength", sendData.Length.ToString());

            byte[] recData = wc.UploadData(uri, "POST", sendData);

            //显?示?返う?回?值μ注痢?意癮编括?码?
            string s = Encoding.GetEncoding("utf-8").GetString(recData);
        }

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载