配置WorkflowServiceHost web.config
我创建了一个WF4 WorkflowServiceHost应用程序。 我需要更改一些绑定属性,但web.config中没有绑定信息。 WCF 3.5应用程序我习惯于在配置文件中自动生成这个应用程序,但我不知道WF4在哪里保存它的设置。 该服务运行良好并公开了一个http端点。 我如何定制绑定信息? 我怎样才能看到使用的默认值是什么? 我只需要调整readerQuotas。自动生成的web.config如下所示:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add name="formContainer" connectionString="metadata=res://*/form.csdl|res://*/form.ssdl|res://*/form.msl;provider=System.Data.SqlClient;provider connection string="Data Source=172.16.40.13;Initial Catalog=TestDB;Integrated Security=True;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true"/>
<sqlWorkflowInstanceStore
connectionString="Data Source=localhost;Initial Catalog=WorkflowInstanceStore;Integrated Security=True;Async=true"
instanceEncodingOption="None"
instanceCompletionAction="DeleteAll"
instanceLockedExceptionAction="NoRetry"
hostLockRenewalPeriod="00:00:30"
runnableInstancesDetectionPeriod="00:00:05"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
WorkflowServices可以使用绑定元素,但通常仅依赖于默认值。 在您的配置中,元素定义了您的工作流服务将使用的默认行为。
如果您想为工作流服务创建标签,我在下半部分描述了如何从服务WSDL中删除tempuri.org的过程
链接地址: http://www.djcxy.com/p/95873.html