私のソリューションには3つのプロジェクトがあります。最初のプロジェクトはasp.net mvc
(クライアントアプリとして)と他の1つはWCF service application
と最後の1つはworkflow activity library
。 WCFサービス参照をワークフロープロジェクトに追加し、ワークフロープロジェクト参照をasp.net mvcに追加しました。アクティビティでwcfサービスを使用してasp.net mvcからワークフローを開始すると、次のエラーが発生します。
ServiceModelクライアント構成セクションにBasicHttpBinding_IServiceという名前のエンドポイント要素とコントラクトIServiceが見つかりませんでした。これは、アプリケーションの構成ファイルが見つからなかったか、この名前に一致するエンドポイント要素がクライアント要素で見つからなかったことが原因である可能性があります。
これは私のワークフローアクティビティライブラリapp.config
ファイルの内容:
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IService1" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:30717/Service1.svc" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IService1" contract="Service1.IService1"
name="BasicHttpBinding_IService1" />
</client>
</system.serviceModel>
</configuration>
そして、これは私のwcfプロジェクトのweb.configファイルの内容です:
<configuration>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5"/>
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpBinding" scheme="http" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<directoryBrowse enabled="true"/>
</system.webServer>
</configuration>
そして、これは私のasp.net mvc web.configファイルの内容です:
<configuration>
<appSettings>
<add key="webpages:Version" value="3.0.0.0"/>
<add key="webpages:Enabled" value="false"/>
<add key="ClientValidationEnabled" value="true"/>
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime targetFramework="4.5"/>
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-Microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IService1" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:30717/Service1.svc" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IService1" contract="ServiceTest.IService1"
name="BasicHttpBinding_IService1" />
</client>
</system.serviceModel>
</configuration>
そして、これはasp.net mvcコントローラでワークフローを実行するための私のコードです:
wf.Activity1 mm = new wf.Activity1();//wf is reference added from workflow project
mm.arg1 = "12".ToString() ;
IDictionary<string, object> res = WorkflowInvoker.Invoke(mm);
ViewBag.res = res["arg2"].ToString();
私は1日グーグルで検索しましたが、残念ながら結果は得られませんでした。あなたのガイドをありがとう。
編集:これ は、さらにヘルプを求める私のプロジェクトです。
ワークフロー構成ファイルのコントラクトと名前の両方の属性から「1」を削除します。
VSによって生成されたBasicHttpBinding_IServiceクラスは、インスタンス化されると、2つの条件に一致するいくつかの適切なエンドポイントの構成を検索します。
これ以上のエラーを防ぐには、svcファイルの名前を確認する必要があります。名前も「1」で終わります。バインディング構成は、まったく同じ名前のバインディングセクションに存在するため、問題ありません。
ここに設定の簡易バージョンがあります:
<configuration>
<system.serviceModel>
<client>
<endpoint address="http://localhost:30717/Service.svc" binding="basicHttpBinding" contract="Service1.Service" name="<namespace>.BasicHttpBinding_IService" />
</client>
</system.serviceModel>
また、Visual Studio WFC Service configuration tool
(ツールメニューのショートカット)。クライアントとサービスの構成ファイルを編集します。
エラーメッセージは完全に正しいです。WCFサービスでサービスエンドポイントを構成していませんWeb.config
サービスノードを追加し、エンドポイントを次のように構成します。
....
<system.serviceModel>
<services>
<service name="MyService">
<endpoint address="" binding="basicHttpBinding" contract="Service1.IService1" />
</service>
</services>
<behaviors>
....