实例化WCF服务奇怪的错误

时间:2013-12-12 11:32:27

标签: c# wcf

我正在尝试从我的C#Desktop应用程序添加对WCF服务的引用。

我可以添加服务引用确定但是当我尝试在此桌面应用程序中打开表单时,我收到此错误:

NB。我有一个UserControl实例化我的WCF服务的引用和我的GUI窗体类中的控件。

  

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

这是在我的app.config文件中:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="BasicHttpBinding_IMotionUpdater" messageEncoding="Mtom" />
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://a url/MotionUpdater.svc/MotionUpdater.svc"
                binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IMotionUpdater"
                contract="wsCloudFeeder.IMotionUpdater" name="BasicHttpBinding_IMotionUpdater" />
        </client>
    </system.serviceModel>
</configuration>

这是在我的web.config文件中:

  <system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="basicHttpBindingEndPoint" maxReceivedMessageSize="10485760"   messageEncoding="Mtom" closeTimeout="00:00:10" openTimeout="00:00:10" >
          <readerQuotas maxArrayLength="32768"/>
        </binding>
      </basicHttpBinding>
    </bindings>
    <services>
      <service name="MotionUpdater" behaviorConfiguration="ThrottledBehavior">
        <endpoint address="MotionUpdater.svc" binding="basicHttpBinding" bindingConfiguration="basicHttpBindingEndPoint" contract="IMotionUpdater"></endpoint>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="ThrottledBehavior">
          <serviceTimeouts transactionTimeout="1"/>
          <serviceThrottling maxConcurrentCalls="64" maxConcurrentInstances="1" maxConcurrentSessions="50"
             ></serviceThrottling>/>
          <serviceMetadata httpGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="false" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>

如果我从浏览器窗口调用此引用,则显示全部OK。

只有在我的表单类中有变量的地方才会出现错误:

UserControl.Class:

 private static wsCloudFeeder.MotionUpdaterClient wsFeeder = new wsCloudFeeder.MotionUpdaterClient();

服务器类:

[ServiceContract]
public interface IMotionUpdater
{
    [OperationContract]
    void UploadMotion(byte[] jpegStream, string alias, Int16 camIndex);
}

更奇怪的是,当我运行我的应用程序时,一切都没有问题。

另外,我在我的控件类中尝试过这样做但仍然无法打开我的GUI表单..

 private static wsCloudFeeder.MotionUpdaterClient wsFeeder = null;

...谢谢

新错误:

enter image description here

0 个答案:

没有答案