C# 不加web引用,动态调用webservice

1.已知webservice路径http://hsappsuat01/sendmail/General.asmx 中有一个方法NTAcount,返回值为string

2.web.config添加以下语句

<appSettings>
  <add key="WSServer1" value="http://hsappsuat01/sendmail/General.asmx“/>
</appSettings>

3.在测试网站里WebServiceFactory.cs,代码如下:

using System;

using System.Data;

using System.Configuration;

using System.Diagnostics;

using System.Xml.Serialization;

using System.Web.Services.Protocols;

using System.ComponentModel;

using System.Web.Services;

 

/// <summary>

/// Summary description for WebServiceFactory

/// </summary>

[System.Diagnostics.DebuggerStepThroughAttribute()]

[System.ComponentModel.DesignerCategoryAttribute("code")]

[System.Web.Services.WebServiceBindingAttribute(Name = "WebServiceFactorySoap", Namespace = "http://tempuri.org/")]

 

public class WebServiceFactory : System.Web.Services.Protocols.SoapHttpClientProtocol

{

    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/NTAccount",

        RequestNamespace = "http://tempuri.org/",

        ResponseNamespace = "http://tempuri.org/",

        Use = System.Web.Services.Description.SoapBindingUse.Literal,

        ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]

    public string NTAccount() //WebService.asmx中有的一个方法NTAccount

    {

        this.Url = ConfigurationManager.AppSettings["WSServer1"];

        object[] result = this.Invoke("NTAccount", new object[0]);

        return ((string)(result[0]));

 

    }

 }

 

4.调用时实例化这个类然后调用方法

WebServiceFactory wsf = new WebServiceFactory();

txtNT.Text = wsf.NTAccount();


源地址:http://hi.baidu.com/chou123dan/item/77961480bff7435326ebd9fc

 

 

 

 

 

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值