Using different WCF Bindings with Enterprise Core Objects – ECO – the model driven framework

This article was moved to MDriven Wiki Using different WCF Bindings with Enterprise Core Objects – ECO – MDriven framework

There are already numerous ways to set up an Eco-based system. Besides having a multitude of PersistenceMappers that enables Object-relational mapping for the most popular databases – Eco also provides a Bridged communication between an Eco-client and an Eco-server. Since Eco6 this is performed by the EcoPersistenceClientWCF (client) and the EcoPersistenceMapperProviderWCF (server).

What this bridge actually does is to handle all server communication in terms of queries, fetches, lazy loading, updating and refreshing over an xml based format we call DataBlock. Several advantages come from using this client server bridge rather than having the clients hook up with the server based database by itself:

The client does not need to know anything about the database being used – hence no  distribution of Client-db-communication-setups.

The server does not need to expose the database for client calls and thus invite attacks from all the suckers out there.

The Server is able to provide you with an efficient Refresh mechanism that easily can be set up to synchronize all the clients.

Since Eco6 the bridge is implemented with WCF – before Eco6 this was implemented with .net Remoting – but WCF is much more flexible and configurable and better in everyway.

Eco creates a BasicHttpBinding if nothing else is configured. This is a quick way to get things going – but of course many situations call for better security, less overhead and/or authentication that is easily achieved with WCF. Maybe you want to create your own binding implementation to solve some business requirement and WCF is good for that too.

I added a sample, EcoProjectWCF_NET_TCP_Binding to show how to configure different bindings than the standard BasicHttpBinding.

image

The client’s – WCF Settings

The client has an App.Config that can be left empty – but in this sample it looks like this:

Code Snippet
  1. <?xml version=“1.0” encoding=“utf-8” ?>
  2. <configuration>
  3.   <system.serviceModel>
  4.     <client>
  5.       <endpoint name=“TheEndPoint”
  6.                 address=“net.tcp://localhost:8001/EcoProject33WinFormServer”
  7.                 binding=“netTcpBinding”
  8.                 contract=“Eco.Wcf.Common.IPersistenceMapperWCF”>
  9.         <!–Include the identity element when running cross-machine in a domain.–>
  10.         <!–
  11.         <identity>
  12.           <userPrincipalName value = “user_name@service_domain”/>
  13.         </identity>
  14.         –>
  15.       </endpoint>
  16.       <endpoint name=“SomeOtherEndPoint”
  17.             address=“http://localhost:8001/EcoProject33WinFormServer”
  18.             binding=“basicHttpBinding”
  19.             contract=“Eco.Wcf.Common.IPersistenceMapperWCF”></endpoint>
  20.       </client>
  21.   </system.serviceModel>
  22. </configuration>

It defines a named EndPoint “TheEndPoint”, it defines the binding as netTcpBinding and it has the IPersistenceMapperWCF contract. This Contract is the same for every Eco client server bridge.

Also note the Address that points out the server – we need to make sure that the server is available at that address – server configuration is explained in the next section.

In the EcoSpace, that is shared by the client and the server but nevertheless the place to define the client persistence mapper, we have added the PersistenceMapperWCFClient. In order to use the setting from the App.Config we set the EndpointConfigurationName to the one used in the config : “TheEndPoint”. Done. Client is all set.

image

When the EndpointConfigurationName is set, the PersistenceMapperWCFClient component ignores the Uri setting. The Uri setting is only there to give an address to the server for the default BasicHttpBinding, also the MaxReceivedMessageSize setting is ignored since this is better defined on the binding in the App/Web.Config.

The server’s – WCF Settings

Also the server has an App.Config – if your server is hosted by IIS then it is a web.config but the content is the same:

Code Snippet
  1. <?xml version=“1.0” encoding=“utf-8”?>
  2. <configuration>
  3.   <system.serviceModel>
  4.     <services>
  5.       <service name=“EcoProject33.EcoProject33PMPWCF”
  6.                behaviorConfiguration=“ServiceBehavior”>
  7.         <endpoint address=“”
  8.                   behaviorConfiguration=“”
  9.                   binding=“netTcpBinding”
  10.                   bindingConfiguration=“TheTCPBinding”
  11.                   contract=“Eco.Wcf.Common.IPersistenceMapperWCF”>
  12.         </endpoint>
  13.       </service>
  14.     </services>
  15.     <bindings>
  16.       <!–  Following is the expanded configuration section for a NetTcpBinding.
  17.             Each property is configured with the default values.
  18.             See the Message Security, and Transport Security samples in the WS binding samples
  19.             to learn how to configure these features.  –>
  20.       <netTcpBinding >
  21.         <binding name=“TheTCPBinding”
  22.                  closeTimeout=“00:01:00”
  23.                  openTimeout=“00:01:00”
  24.                  receiveTimeout=“00:10:00”
  25.                  sendTimeout=“00:01:00”
  26.                  transactionFlow=“false”
  27.                  transferMode=“Buffered”
  28.                  transactionProtocol=“OleTransactions”
  29.                  hostNameComparisonMode=“StrongWildcard”
  30.                  listenBacklog=“10”
  31.                  maxBufferPoolSize=“524288”
  32.                  maxBufferSize=“65536”
  33.                  maxConnections=“10”
  34.                  maxReceivedMessageSize=“65536”>
  35.           <readerQuotas
  36.             maxDepth=“32”
  37.             maxStringContentLength=“8192”
  38.             maxArrayLength=“16384”
  39.             maxBytesPerRead=“4096”
  40.             maxNameTableCharCount=“16384”/>
  41.           <reliableSession ordered=“true” inactivityTimeout=“00:10:00” enabled=“false”/>
  42.           <security mode=“Transport”>
  43.             <transport clientCredentialType=“Windows” protectionLevel=“EncryptAndSign”/>
  44.           </security>
  45.         </binding>
  46.       </netTcpBinding>
  47.     </bindings>
  48.     <!–For debugging purposes set the includeExceptionDetailInFaults attribute to true–>
  49.     <behaviors>
  50.       <serviceBehaviors>
  51.         <behavior name=“ServiceBehavior”>
  52.           <serviceDebug includeExceptionDetailInFaults=“false” />
  53.         </behavior>
  54.       </serviceBehaviors>
  55.     </behaviors>
  56.   </system.serviceModel>
  57. </configuration>

This config file defines the Service. The name is important and is unique for each ECO project you create – it is the class of the WCF stub that you will find in the <projectname>PMP.cs file:

Code Snippet
  1. /// <summary>
  2. /// This class is used to register the WCF server portion of a PersistenceMapperProvider
  3. /// </summary>
  4. public class EcoProject33PMPWCF : PersistenceMapperProviderWCF<EcoProject33PMP>
  5. {

The contract in the config endpoint will always be the same: Eco.Wcf.Common.IPersistenceMapperWCF

A good feature is that you can add several endpoints to your service – so that you can have multiple types of clients that communicate in different ways. Silverlight does not support all that many Bindings (not our fault) so Silverlight clients need to talk over http. But if you have in-house clients or ASP.NET servers on the safe side of the firewall you will want something more efficient most likely.

The last thing to configure for the server in this sample is to call Register with an Address:

Code Snippet
  1. public void RegisterServer()
  2. {
  3.     lblStatus.Text = “Server status: Started “ + DateTime.Now.ToString();
  4.     host = EcoProject33.EcoProject33PMPWCF.Register(“net.tcp://localhost:8001/EcoProject33WinFormServer”);
  5. }
This entry was posted in WCF. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.