0

我需要帮助才能在 xml 文件中使用以下配置来更改我的 url Web 服务,

`<configuration>
  <appSettings>
    <add key="UserName" value="ova"/>
    <add key="UserPassword" value="ova"/>
    <add key="ServiceName" value="xe"/>
    <add key="ServerName" value="localhost"/>
    <add key="WebService" value="/FDC_Service/FDC_Service.asmx"/>
  </appSettings>
</configuration>`

及其代码我需要在源代码应用程序中调用服务器名称和 Web 服务,如下所示

FDC_Service.FDC_ServiceClass asd = new FDC_Service.FDC_ServiceClass();
retval = asd.FDC_Command(database.UserName, database.UserPassword, database.ServiceName, str);

FDC_Service 是我的网络服务,我需要帮助,谢谢....

4

3 回答 3

1

我希望这回答了你的问题

在你的 .cs 代码中添加

using System.Configuration;

然后在你的方法中添加

var username = ConfigurationManager.AppSettings["UserName"];
            var password = ConfigurationManager.AppSettings["UserPassword"];
            var serviceName = ConfigurationManager.AppSettings["ServerName"];

            FDC_Service.FDC_ServiceClass asd = new FDC_Service.FDC_ServiceClass();
            retval = asd.FDC_Command(username, password, serviceName, str);
于 2013-10-16T08:24:41.953 回答
0

这对我有用。实例化时设置适当的uri:

ws = new wsPedidosWeb.OperacionesTiendaPortTypeClient(
         new wsPedidosWeb.OperacionesTiendaPortTypeClient.EndpointConfiguration(), 
         new uri("http://whatever")
         );
于 2015-03-16T12:57:18.743 回答
0

如果有人正在寻找完整的代码;像我一样:

private static string GetServiceAddressUrlByContractName(string contractFullName)
        {
            var clientSection = WebConfigurationManager
                .GetSection("system.serviceModel/client") as ClientSection;
            var endpointList = clientSection?.Endpoints.Cast<ChannelEndpointElement>().ToList();
            return endpointList?.FirstOrDefault(e => e.Contract== contractFullName)?.Address.ToString();
        }
于 2019-10-11T18:58:55.533 回答