Guest User

Untitled

a guest
Jul 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <connectionStrings>
  4. <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" />
  5. </connectionStrings>
  6. <system.web>
  7. <compilation debug="true" targetFramework="4.0" />
  8. </system.web>
  9. <system.serviceModel>
  10. <behaviors>
  11. <serviceBehaviors>
  12. <behavior>
  13. <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
  14. <serviceMetadata httpGetEnabled="true"/>
  15. <!-- 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 -->
  16. <serviceDebug includeExceptionDetailInFaults="true"/>
  17.  
  18. <sqlWorkflowInstanceStore
  19. connectionString="Data Source=localhost;Initial Catalog=WorkflowInstanceStore;Integrated Security=True;Async=true"
  20. instanceEncodingOption="None"
  21. instanceCompletionAction="DeleteAll"
  22. instanceLockedExceptionAction="NoRetry"
  23. hostLockRenewalPeriod="00:00:30"
  24. runnableInstancesDetectionPeriod="00:00:05"/>
  25. </behavior>
  26. </serviceBehaviors>
  27. </behaviors>
  28. <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  29. </system.serviceModel>
  30. <system.webServer>
  31. <modules runAllManagedModulesForAllRequests="true"/>
  32. </system.webServer>
  33. </configuration>
Add Comment
Please, Sign In to add comment