/ExpressInteropBinding/Microsoft.ServiceModel.Interop.ExtensionUtils/Templates/WebLogic.tt

# · TemplateToolkit · 21 lines · 19 code · 2 blank · 0 comment · 0 complexity · 07e436dd5980a60458e181b600590fdd MD5 · raw file

  1. <#@ template debug="false" hostspecific="false" language="C#" #>
  2. <#@ output extension=".txt" #>
  3. <#@ parameter name="BindingName" type="System.String" #>
  4. <#@ parameter name="ENCODING" type="System.String" #>
  5. <#@ parameter name="SECURITY" type="System.String" #>
  6. <#@ parameter name="SECURE_CONVERSATION" type="System.String" #>
  7. <#@ parameter name="ALGORITHM" type="System.String" #>
  8. <#@ parameter name="RELIABLE_MESSAGING" type="System.String" #>
  9. <binding name='<#= this.BindingName #>' messageEncoding='<#= this.ENCODING #>'>
  10. <security mode='<#= this.SECURITY #>' establishSecurityContext='<#= this.SECURE_CONVERSATION #>' algorithmSuite='<#= this.ALGORITHM #>'/>
  11. <#
  12. if (this.RELIABLE_MESSAGING == "true")
  13. {
  14. #>
  15. <reliableSession enabled='true'/>
  16. <#
  17. }
  18. #>
  19. </binding>