/ExpressInteropBinding/Microsoft.ServiceModel.Interop.ExtensionUtils/Templates/WebLogic.tt
# · TemplateToolkit · 21 lines · 19 code · 2 blank · 0 comment · 0 complexity · 07e436dd5980a60458e181b600590fdd MD5 · raw file
- <#@ template debug="false" hostspecific="false" language="C#" #>
- <#@ output extension=".txt" #>
-
- <#@ parameter name="BindingName" type="System.String" #>
- <#@ parameter name="ENCODING" type="System.String" #>
- <#@ parameter name="SECURITY" type="System.String" #>
- <#@ parameter name="SECURE_CONVERSATION" type="System.String" #>
- <#@ parameter name="ALGORITHM" type="System.String" #>
- <#@ parameter name="RELIABLE_MESSAGING" type="System.String" #>
-
- <binding name='<#= this.BindingName #>' messageEncoding='<#= this.ENCODING #>'>
- <security mode='<#= this.SECURITY #>' establishSecurityContext='<#= this.SECURE_CONVERSATION #>' algorithmSuite='<#= this.ALGORITHM #>'/>
- <#
- if (this.RELIABLE_MESSAGING == "true")
- {
- #>
- <reliableSession enabled='true'/>
- <#
- }
- #>
- </binding>