WCF Web服务连接问题

时间:2016-07-10 03:41:43

标签: asp.net-mvc wcf wcf-binding epicorerp

首先让我说这是我第一次使用WCF Web服务,并且我在过去3天一直在与错误作斗争。 Stackoverflow已经多次回答了这些问题,但是,我已经尝试了大多数解决方案并且还没有成功,所以我需要一些帮助才能找到正确的方法。

现在有些背景。我正在创建一个ASP.Net MVC 5项目,我将连接到Epicor提供的WCF Web服务(ERP解决方案)。我的项目,ERP及其Web服务都托管在内部IIS实例上。使用BasicHTTP和NetTCP协议公开这些服务。托管Web服务和ERP的应用程序池使用标识。 其中一个Web服务称为Company.svc,它公开为:

<wsdl:service name="CompanySvcFacade">
    <wsdl:port name="BasicHttpBinding_CompanySvcContract" binding="tns:BasicHttpBinding_CompanySvcContract">
        <soap:address location="http://pilotserver/ERP100700/Ice/BO/Company.svc"/>
    </wsdl:port>
    <wsdl:port name="CustomBinding_CompanySvcContract" binding="tns:CustomBinding_CompanySvcContract">
        <soap12:address location="net.tcp://pilotserver/ERP100700/Ice/BO/Company.svc"/>
        <wsa10:EndpointReference>
            <wsa10:Address>net.tcp://pilotserver/ERP100700/Ice/BO/Company.svc</wsa10:Address>
            <Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity">
                <Upn>pilotserver\Administrator</Upn>
            </Identity>
        </wsa10:EndpointReference>
    </wsdl:port>
</wsdl:service>

在我的项目中,我的web.config具有以下内容:

<system.serviceModel>
<bindings>
  <basicHttpBinding>
    <binding name="BasicHttpBinding_CompanySvcContract" />
  </basicHttpBinding>
  <customBinding>
    <binding name="CustomBinding_CompanySvcContract">
      <security defaultAlgorithmSuite="Default" authenticationMode="UserNameOverTransport"
        requireDerivedKeys="true" includeTimestamp="true" messageSecurityVersion="WSSecurity11WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10">
        <localClientSettings detectReplays="false" />
        <localServiceSettings detectReplays="false" />
      </security>
      <textMessageEncoding />
      <windowsStreamSecurity />
      <tcpTransport />
    </binding>
  </customBinding>
</bindings>
<client>
  <endpoint address="http://pilotserver/ERP100700/Ice/BO/Company.svc"
    binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_CompanySvcContract"
    contract="CompanyService.CompanySvcContract" name="BasicHttpBinding_CompanySvcContract" />
  <endpoint address="net.tcp://pilotserver/ERP100700/Ice/BO/Company.svc"
    binding="customBinding" bindingConfiguration="CustomBinding_CompanySvcContract"
    contract="CompanyService.CompanySvcContract" name="CustomBinding_CompanySvcContract">
    <identity>
      <userPrincipalName value="pilotserver\Administrator" />
    </identity>
  </endpoint>
</client>

我正在尝试使用以下代码在客户端中使用Web服务:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.ServiceModel.Description;
using System.ServiceModel.Dispatcher;
using EpicorTestApp.CompanyService;
using NLog;
namespace EpicorTestApp.Controllers
{
    public class HomeController : Controller
    {
        CompanySvcContractClient CompanyService = new CompanySvcContractClient("CustomBinding_CompanySvcContract");
        //CompanySvcContractClient CompanyService = new CompanySvcContractClient("BasicHttpBinding_CompanySvcContract");
        private Logger logger = LogManager.GetCurrentClassLogger();
        public ActionResult Index()
        {
            ViewBag.Message = "Welcome to ASP.NET MVC!";
            bool morePages = false;

            CompanyService.ClientCredentials.UserName.UserName = "Administrator";
            CompanyService.ClientCredentials.UserName.UserName = "myPassword";
            CompanyListTableset companyList = CompanyService.GetList("", 0, 0, out morePages);
            CompanyListTable companies = companyList.CompanyList;
            foreach (CompanyListRow companyListRow in companies)
            {
                logger.Info("Company: " + companyListRow.Company);
            }           
            return View();
        }
    }
}

对于客户端绑定,我尝试过BasicHttp和NetTCP(作为CustomBinding),都会导致一些错误。当我创建BasicHttp绑定时,我使用以下服务引用配置:

BasicHttpBinding

并且在运行此配置时,我收到“访问被拒绝。错误详细信息:System.ServiceModel.Security.SecurityAccessDeniedException:Access被拒绝”的错误。

BasicHttp Error

对于nettcp绑定,当我尝试创建服务引用时,收到错误消息“无法识别URI前缀。元数据包含无法解析的引用:net.tcp:// localhost / ERP100700 /Ice/BO/Company.svc'。我已尝试在网址中同时使用localhost和pilotserver。

NetTcp Error

我尝试在调试模式(ISS-Express)中运行应用程序并将其发布到IIS,但结果相同。我做错了什么,如何解决这个问题?

2 个答案:

答案 0 :(得分:0)

HomeController中,似乎是这个

CompanyService.ClientCredentials.UserName.UserName = "Administrator";
CompanyService.ClientCredentials.UserName.UserName = "myPassword";

应该是这样的

CompanyService.ClientCredentials.UserName.UserName = "Administrator";
CompanyService.ClientCredentials.UserName.Password = "myPassword

您在呈现时会在代码中传递两次UserName。

答案 1 :(得分:0)

我收到所有这些错误的原因是,在Epicor的Web服务的Web.config中(在IIS内),BasicHTTP的https方案被禁用/注释掉了。我必须添加以下内容才能使我的应用程序正常工作。

  <remove scheme="https" />
  <add scheme="https" binding="basicHttpBinding" bindingConfiguration="BasicHttp"/> 

这是Epicor中的默认行为。