从CLASSIC ASP中调用C#dll的Web服务

时间:2013-06-03 21:32:33

标签: wcf dll asp-classic wsdl

我是一个Windows开发人员,对Web应用程序和ASP知之甚少。我正在尝试为某人创建一个C#dll(正在进行web服务调用),这是从CLASSIC ASP应用程序调用的。

这一切都是从WinForms测试应用程序开始的,该应用程序成功加载了WSDL并调用了该Web服务。现在的要求是获取测试应用程序功能,将其移动到DLL并从ASP应用程序调用该DLL。我天真地把appconfig文件留在那里,当调用那个dll时,他得到了这个众所周知的错误:

  

找不到引用合同Service1.MyService的默认端点元素    ServiceModel客户端配置部分。这可能是因为找不到配置文件    对于您的应用程序,或者因为没有找到与此合同匹配的端点元素    客户元素。

我知道经典的asp没有配置文件 - 我读了很多关于它的帖子,大多数相关的提到使用BasicHTTPBinding并动态提供端点地址。我怎么做?有什么例子吗?

我看到了这个答案:

  

我需要做的就是创建BasicHTTPBinding并动态提供端点地址。然后使用创建的绑定和端点地址创建Web服务的新实例。

但我不知道该怎么做。

这是适用于winforms app的appconfig:

<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_IMyService">
                <security mode="Transport">
                    <transport clientCredentialType="Certificate" proxyCredentialType="None"
                        realm="" />
                </security>
            </binding>
            <binding name="BasicHttpBinding_ICustomerService" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                useDefaultWebProxy="true">
                <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                <security mode="None">
                    <transport clientCredentialType="None" proxyCredentialType="None"
                        realm="" />
                    <message clientCredentialType="UserName" algorithmSuite="Default" />
                </security>
            </binding>
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="https://MyService.svc"
            behaviorConfiguration="custom" binding="basicHttpBinding"
            bindingConfiguration="BasicHttpBinding_IMyService" contract="MyService.IMyService"
            name="BasicHttpBinding_IMyService" />
    </client>


  <behaviors>
    <endpointBehaviors>
      <behavior name="custom">
        <customInspector />
      </behavior>
    </endpointBehaviors>
  </behaviors>
  <extensions>
    <behaviorExtensions>
      <add name="customInspector" type="CustomBehaviors.CustomBehaviorExtensionElement, CompeteDataServiceTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"/>
    </behaviorExtensions>
  </extensions>


</system.serviceModel>

1 个答案:

答案 0 :(得分:1)

您需要通过代码配置服务,因为在这种情况下没有配置文件。请参阅Configuring WCF Services in Code