2

我创建了一个调用 web 服务的 vsto 应用程序。一切似乎都很好,但我想扩展功能来调用我的生产服务的测试服务版本。调用我的测试服务的有效代码片段。

  //how do i change here to be dynamic?
 npfunctions.finfunctions service = new npfunctions.finfunctions();
            var Results = service.ValidateFoapal(index.ToArray(), fund.ToArray(), org.ToArray(), prog.ToArray(), acct.ToArray(), row.ToArray());

            /* if their are no error then return a "Y" for success.*/
            if (Results.Count() < 0) { return LocallErrorInd; }
            /*well we have encountered errors lets adjust the spreadsheet to notify the user.*/

            else{
                //REMOVE ANY VISUAL ERRORS
                Microsoft.Office.Interop.Excel.Range delRng = Globals.ThisAddIn.Application.Range["R:S"];
                delRng.Delete(XlDeleteShiftDirection.xlShiftToLeft);
                for (int i = 0; i < Results.Count(); i++)
                {//set the error indicator 
                     LocallErrorInd = "Y";

                    //account error:
                    if (Results[i].FVALJOR_FUND_WARNING == "Y") 
                       {
                           Microsoft.Office.Interop.Excel.Range WrkRng = Globals.ThisAddIn.Application.Range[Results[i].FVALJOR_ROW];
                           WrkRng.Offset[0, 17].Value2 = "Invalid Account"; 
                        }

我看过这篇文章如何在不重新编译的情况下在 .NET 中动态切换 Web 服务地址?但这 需要我更改我的配置文件 正如我现在所看到的,我似乎必须复制代码,但我知道必须有更好的方法。我喜欢它是这样的。

if (TestBtn.Checked == true)
            {
                npfunctions.finfunctions service = new npfunctions.finfunctions();
               Results = service.ValidateFoapal(index.ToArray(), fund.ToArray(), org.ToArray(), prog.ToArray(), acct.ToArray(), row.ToArray());

            }

            if (PrdBtn.Checked == true)
            {
                  prdFunctions.finfunctions service = new prdFunctions.finfunctions();
                 Results = service.ValidateFoapal(index.ToArray(), fund.ToArray(), org.ToArray(), prog.ToArray(), acct.ToArray(), row.ToArray());

            }

            /* if their are no error then return a "Y" for success.*/
            if (Results.Count() < 0) { return LocallErrorInd; }
4

2 回答 2

1

您的服务对象没有 URL 属性吗?

第二个选项,您可以使用配置文件转换,因此您无需手动更改设置(当然是在初始设置之后)。

npfunctions.finfunctions service = new npfunctions.finfunctions();
if (TestBtn.Checked == true)
{
    service.url="<testurl>";
}
else
{
  service.url="<produrl>";
}
    Results = service.ValidateFoapal(index.ToArray(), fund.ToArray(), org.ToArray(), prog.ToArray(), acct.ToArray(), row.ToArray());
于 2013-08-12T18:08:30.890 回答
0

在我们的测试客户端中,我们有一个下拉菜单可以在 dev 或 tst 之间进行选择。我们还有选择代理或 net.tcp 的按钮。(我们有许多不同的人使用不同的方法使用我们的服务)。

在 app.config 中,端点的名称与不同的可选选项相关联。例如。name="BasicHttpBinding_IInterface_PROXY_DEV"

然后,您可以动态构建您想要使用的端点并使用它。

于 2013-08-13T12:10:20.963 回答