Merge branch 'master' of https://github.com/SpringSource/spring-net into DocUpdate

This commit is contained in:
Thomas Trageser
2012-10-31 23:08:57 +00:00
65 changed files with 1393 additions and 881 deletions

View File

@@ -243,6 +243,21 @@
<para>The value 'serverAppCalculatorEndpoint' refers to the name of an
enpoints in the &lt;client&gt; section of the standard WCF configuration
inside of App.config.</para>
<para>You can also specify the scope of the created channel (default is singleton)
and use classic DI to configure the ChannelFactory&lt;T&gt; instance.</para>
<programlisting language="myxml">&lt;objects xmlns="http://www.springframework.net"
xmlns:wcf="http://www.springframework.net/wcf"&gt;
&lt;wcf:channelFactory id="serverAppCalculator"
channelType="Spring.WcfQuickStart.ICalculator, Spring.WcfQuickStart.Contracts"
endpointConfigurationName="serverAppCalculatorEndpoint"&gt;
&lt;wcf:property name="IsSingleton" value="false" /&gt;
&lt;wcf:property name="Credentials.Windows.ClientCredential" value="Domain\Login:Password" /&gt;
&lt;/wcf:channelFactory&gt;
&lt;/objects&gt;</programlisting>
</section>
<section>