在我的 Web 应用程序中,我有一个服务引用(不是 Web 服务引用)。
[DebuggerStepThrough]
[GeneratedCode("System.ServiceModel", "4.0.0.0")]
public partial class LoginClient : ClientBase<Login.LoginClient>, Login.LoginSvc
{
public LoginClient() {
EndpointAddress address = new EndpointAddress(ConfigurationManager.AppSettings["login_svc"]);
this.Endpoint.Binding = new BasicHttpBinding(BasicHttpSecurityMode.Transport);
this.Endpoint.Address = address;
}
}
基本上,我在 AppSettings 中有“login_svc”。但是,它会引发流动异常:
我不想将服务配置添加到 web.config system.servicemodel...。相反,我只想将 appsettings 用于 url。我该怎么做呢?