さて、私は次の問題を解決することはできません。
次のものがあります:*いくつかのWebMethodsを使用したC#+ .Net Framework 3.5 + iBatis(VS2010)でのWebサービス開発。* Webサービスは、IIS 5.1(http://localhost/BookService/BookService.asmx)のローカルサーバーで実行されます。*アプリケーションWF+C#+ .Net Framework 3.5(VS2010)。BOレイヤーにはWebサービスへのサービス参照があります。
サービスリファレンスによって生成されるapp.configは次のとおりです。
<?xml version="1.0" encoding="utf-8" ?>´
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BookServiceSoap" 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="http://10.0.2.15/BookService/BooksService.asmx"
binding="basicHttpBinding" bindingConfiguration="BookServiceSoap"
contract="BookService.BookServiceSoap" name="BookServiceSoap" />
</client>
</system.serviceModel>
</configuration>
たとえば、Webサービスに接続しようとしています。
BookService.BookServiceSoapClient query = new BookService.BookServiceSoapClient("BookServiceSoap","http://10.0.2.15/BookService/BookService.asmx");
または、エンドポイント名とURLがない場合BookService.BookServiceSoapClient query = new BookService.BookServiceSoapClient();
しかし、実行時に次のメッセージが表示されます
ServiceModelクライアント構成セクションで、名前が「BookServiceSoap」でコントラクトが「BookService.BookServiceSoap」のエンドポイント要素が見つかりませんでした。これは、アプリケーションの構成ファイルが見つからなかったか、この名前に一致するエンドポイント要素がクライアント要素で見つからなかったことが原因である可能性があります。
誰かが私に、たとえばメソッドHelloWorldを呼び出すための正しくない例を見せてもらえますか。
よろしく!