我已經使用vs2008中的添加服務引用對話框添加爲wsdl文件。使用soap客戶端時出現InvalidOperationException
MyService serviceproxy = new MyService();
當我實例化服務代理,我得到了下面的文字(德國翻譯)一個InvalidOperationException:
找不到默認端點 元素合同 「ServiceName.ServiceInterface」在 服務模式中指客戶端 配置部分。這可能是 ,因爲:找不到應用程序配置 文件,或找不到客戶端元素項目中的端點 ,該對象與此合同相對應,即 。
其中servicename是我在服務名稱中添加的名稱,當我將它添加到vs2008和ServiceInterface中時,會爲其自動生成接口。這裏
編輯 是什麼在我的app.config:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="MyServiceBinding" 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>
</system.serviceModel>
發表您的配置文件在這裏和你的ServiceContract接口 – albertjan 2010-03-23 10:15:08
我已經更新了我的問題與我的app.config的內容的名稱。但請注意,我計劃在代碼中指定服務url,而不是在配置中,因爲url是用戶輸入。 – codymanix 2010-03-23 10:20:42