SlideShare a Scribd company logo
WCF ROUTING


Krunal Trivedi
Corporate Trainer For DotNet,Silverlight,SPS 2010
MCT S For .NET Web Technology
MCTS For SharePoint Server 2010 Development
Co-Founder at Aavid Technologies
Email:krunaltrivedi@live.in
Contact : 09998472789
Client Details
Wcf routing kt
• The Routing Service is a generic SOAP intermediary that acts
  as a message router.



• This router / or the SOAP intermediary act as a client to the
  real Service and it works as a Service to the real client



• System.ServiceModel.Routing namespace.
• One of the challenges in Intermediary scenarios is that the
  internal endpoints may have different transport or SOAP
  version requirements than the endpoint that messages are
  received on.
• To support this scenario , the Routing Service can bridge
  protocols.
Filtering
• The WCF filtering system can use declarative filters to match
  messages and make operational decisions.
• You can use filters to determine what to do with a message
  by examining part of the message.
• A queuing process can use Xpath 1.0 query to check the
  priority element of a known header to determine whether to
  move a message to the front of the queue.
• The filtering system is composed of a set of classes that can
  efficiently determine which of a set of filters are true for a
  particular WCF messages.
• The filtering system is a core component of WCF messaging; it
  is designed to be extremely fast.
• Each filter implementation has been optimized for a
  particular kind of matching against WCF messages.
• Filtering is performed after a message is received and is part
  of dispatching message to the proper application component.
Filters
• The filter engine has two primary components
     filters
     Filters tables
• A filter makes Boolean decisions about a message based on user-
  specified logical condition.
• Filters implement the MessageFilter class.
• The Match methods are used to determine if a message satisfies a
  filter.
• One of the methods tests the message’s header but cannot inspect
  the message body.
• The other method takes a message buffer as an input parameter
  and can inspect the message body.
• The several kinds of filters each specialize in matching on a
  particular kind of Boolean condition. Once you construct a filter,
  you cannot change the criteria that a filter uses; to modify a filter's
  criteria, construct a new one and delete the existing filter.
Filter Tables
• Filter tables are used to store key-value pairs, where a filter is
  the key and some associated data is the value.
• The filter data can be used to indicate what actions to take if
  a message matches the filter and the type of the filter data is
  the generic parameter for the filter table class.
• The filter data can consist of routing rules, session security
  state, listeners on a channel, and so on.
• The data can be used where data flow control is necessary.
• Filter tables implement the generic
  interface IMessageFilterTable.
• Filter tables have several methods that match a message
  against all the filters in the table and return an unordered
  collection of matching filters or data.
• Some of the match methods are multiple-match and return
  all matching items. Others are single-match, returning only
  one item, and throw a MultipleFilterMatchesException if
  more than one filter matches.
• Action Filters:
• The ActionMessageFilter contains a list of action strings.
• If any of the actions in the filter’s list matches the Action
  header in the message or message buffer, the Match method
  returns true.
• If the list is empty, the filter is considered a match-all filter
  and any message or message buffer matches
  and Match returns true.
• If none of the actions in the filter’s list matches the Action
  header in the message or message
  buffer, Match returns false.
• If there is no action in the message and the filter’s list is non-
  empty, then Match returnsfalse.
• XPathMessageFilter (XPath queries against incoming
  messages)
• EndpointAddressMessageFilter and
  PrefixEndpointAddressMessageFilter (match
  against endpoint address)
Protocol Bridging
Stage-1…WCF Configless File
Create a console application “MessageService”
Add an interface…also Add Reference of System.ServiceModel
and import the namespace also
Add the Implementation class and implement interface
ConfigLess Hosting….
Run your server(console application…).copy and paste URI to your
browser….get the following screen..notice that proxy creation is disabled…
Add Reference of System.ServiceModel…Also Import the namespace and copy
and paste interface there…
Create a object of ChannelFactory….using object of interface
create a new channel….
Run your Server First…Run your client…You will get the message on the
Server…..
Change the binding to the WSHttpBinnding on the client…run the server…run the
client…observer the result….RUN TIME ERROR….




Limitation of ConfigLess WCF is..only for BasicHttpBinnding…not for
WSHttpBinding….That means config file is necessary for wsHttpBinding…configless
is not a Permanent solution.
• Stage-2…WCF Routing with Protocol Bridging
• Our objective is change BasicHttpBinding with WSHttpBinding
  on the server[so we have to drop configless setting].
• On server add new app.config file.Try to open it with
  Configuration Editor…but you can’t..so manually write
  configuration.
Wcf routing kt
Add system.servicemodel
Add services tag
Add service tag inside services tag….add the attribute name where
name=MessageService.MessageServiceImpl(Namespace.ClassName)
Add endpoint inside service tag…which specifies address , binding,contract…
contract=MessageService.IProcessMessage(Namespace.Interface)
On the Server..modify main method…
On the Client…Make sure Binding is WSHttp…..
Run The Server…
Run the Client….
Need for Routing
Change address and binding on the server…
Note:We have address http://localhost:9000 and binding WSHttpBinding on the
client….Server side it is changed…so we required Routing…A Protocol Bridging




    Now ,if we run Server as well as Client application we get an error…the
    solution is SOAP Router….
Create a new console application…name it WCFRouter




                                            We want this to
                                            Listen to a certain endpoint
                                            And forward
                                            Over to the listener
Add reference of System.ServiceModel as well as
System.ServiceModel.Routing-----A Required NameSpace for Routing
RoutingService is responsible for routing messages between endpoints based on filter criteria.
ServiceHost provides a host for services….
Add app.config to the RouterProject
IRequestReplyRouter interface is required to process message from
Request-Reply channel

Address and Bindings are the same at the client—so this would be server for
client --Make sure on the server we have change d the address and binding
We are adding a Behavour
Filter tables are used to store key-value pairs, where a filter is the key and some
associated data is the value.
Gets or sets the name of the filter table used by this routing service for routing message




                                                  Behaviour section
Routing Section
Client Zone
Wcf routing kt
Wcf routing kt
Wcf routing kt
Wcf routing kt
Publish-Subscribe Mechanism
Copy-Paste MessageService and Rename it like MessageService2…
Modify app.config…observer address as well as service name
attribute
Open Server 1
Make Changes on the Client
Open WCF Router
Run Server1 , Run Server2, Run Router
        and Run Client Apps…

More Related Content

PPTX
Web api 2 With MVC 5 With TrainerKrunal
PPTX
MVC 3-RAZOR Validation
PPT
ASP.NET Session 10
PPTX
Web Hacking Series Part 1
PPT
SOAP-UI The Web service Testing
PPT
Active server pages
PPTX
Introduction ASP
PPTX
Active server pages
Web api 2 With MVC 5 With TrainerKrunal
MVC 3-RAZOR Validation
ASP.NET Session 10
Web Hacking Series Part 1
SOAP-UI The Web service Testing
Active server pages
Introduction ASP
Active server pages

What's hot (20)

PPTX
Cache control directive
PPTX
Introduce anypoint studio
PPTX
Session And Cookies In Servlets - Java
PPTX
Web Hacking series part 2
PPT
2310 b 17
PPTX
Web Services Testing
PPT
2310 b 06
PPSX
Ajax part i
PPTX
Introduction to asp
PPTX
Ch3 server controls
PPT
Webservices testing using SoapUI
PPTX
Web Hacking Series Part 4
PPT
ASP.NET 03 - Working With Web Server Controls
PPT
Server Controls of ASP.Net
PPTX
Controls
PPTX
Using ajax in mule
PPT
Introduction To Asp.Net Ajax
PPTX
Web services testing
Cache control directive
Introduce anypoint studio
Session And Cookies In Servlets - Java
Web Hacking series part 2
2310 b 17
Web Services Testing
2310 b 06
Ajax part i
Introduction to asp
Ch3 server controls
Webservices testing using SoapUI
Web Hacking Series Part 4
ASP.NET 03 - Working With Web Server Controls
Server Controls of ASP.Net
Controls
Using ajax in mule
Introduction To Asp.Net Ajax
Web services testing
Ad

Viewers also liked (20)

PDF
PPT
Web Game Introduction
PDF
Facebook marknadsföring -webbinarium
PPTX
The of Social Media - Women in Management
PDF
2012 q1 vujade_shifthappened
PPT
PDF
Client Side Optimization
POT
Report In C M S C 410( Mac O S System Software 2)
PPT
Local Activity Center (Lac)
PPT
Top Flex 7 Unit One- phrasal verbs
PPT
Pride before the fall – Joshua 7 & 8
PDF
PDF
7jan N As
PPTX
Uniglass lifeguard tower_update
DOC
Bab 7 Perhubungan Luar
PDF
Apresentação conferência citi (somente em inglês)
PDF
Meeting with investors of may 2013
PDF
17jun nas
PDF
Edisi 12 Medan
PDF
Edisi 1 Maret Medan
Web Game Introduction
Facebook marknadsföring -webbinarium
The of Social Media - Women in Management
2012 q1 vujade_shifthappened
Client Side Optimization
Report In C M S C 410( Mac O S System Software 2)
Local Activity Center (Lac)
Top Flex 7 Unit One- phrasal verbs
Pride before the fall – Joshua 7 & 8
7jan N As
Uniglass lifeguard tower_update
Bab 7 Perhubungan Luar
Apresentação conferência citi (somente em inglês)
Meeting with investors of may 2013
17jun nas
Edisi 12 Medan
Edisi 1 Maret Medan
Ad

Similar to Wcf routing kt (20)

PDF
REST, JSON and RSS with WCF 3.5
PPTX
1. WCF Services - Exam 70-487
PPTX
10 Tricks and Tips for WCF
PDF
Building RESTful Services with WCF 4.0
PPTX
A presentation on WCF & REST
PPTX
web programming
PPTX
WCF for begineers
PPT
Dot Net Training Wcf Dot Net35
PPTX
What's new in Wcf4
PPTX
Windows Communication Foundation
PPTX
WCjffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff...
PPT
DOCX
Dealing with Diversity: Understanding WCF Communication Options in ...
DOC
WCF tutorial
PPT
Service Oriented Development With Windows Communication Foundation Tulsa Dnug
PPT
Service Oriented Development With Windows Communication Foundation 2003
PPTX
Birds Of The Same Feather   Biz Talk Server And Wcf
PPT
Session 1 Shanon Richards-Exposing Data Using WCF
PPS
WCF (Windows Communication Foundation_Unit_01)
PPTX
Complete Architecture and Development Guide To Windows Communication Foundati...
REST, JSON and RSS with WCF 3.5
1. WCF Services - Exam 70-487
10 Tricks and Tips for WCF
Building RESTful Services with WCF 4.0
A presentation on WCF & REST
web programming
WCF for begineers
Dot Net Training Wcf Dot Net35
What's new in Wcf4
Windows Communication Foundation
WCjffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff...
Dealing with Diversity: Understanding WCF Communication Options in ...
WCF tutorial
Service Oriented Development With Windows Communication Foundation Tulsa Dnug
Service Oriented Development With Windows Communication Foundation 2003
Birds Of The Same Feather   Biz Talk Server And Wcf
Session 1 Shanon Richards-Exposing Data Using WCF
WCF (Windows Communication Foundation_Unit_01)
Complete Architecture and Development Guide To Windows Communication Foundati...

More from Krunal Trivedi (9)

PPTX
Certifications for Azure Developers
PPTX
Azure Functions - Serverless Computing
PPTX
Azure App Service for Windows Container
PPTX
Chat application with Azure SignalR Service
PPTX
Implementing enterprise cloud scenarios with Microsoft cloud services and pla...
PPTX
High Availability in Microsoft Azure
PPTX
Windows azure active directory
PPTX
Windows Azure Active Directory
PPT
Mef with meta data and lazy loading
Certifications for Azure Developers
Azure Functions - Serverless Computing
Azure App Service for Windows Container
Chat application with Azure SignalR Service
Implementing enterprise cloud scenarios with Microsoft cloud services and pla...
High Availability in Microsoft Azure
Windows azure active directory
Windows Azure Active Directory
Mef with meta data and lazy loading

Recently uploaded (20)

PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
NewMind AI Monthly Chronicles - July 2025
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Cloud computing and distributed systems.
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
KodekX | Application Modernization Development
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPT
Teaching material agriculture food technology
PDF
NewMind AI Weekly Chronicles - August'25 Week I
Diabetes mellitus diagnosis method based random forest with bat algorithm
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Network Security Unit 5.pdf for BCA BBA.
Reach Out and Touch Someone: Haptics and Empathic Computing
Agricultural_Statistics_at_a_Glance_2022_0.pdf
NewMind AI Monthly Chronicles - July 2025
“AI and Expert System Decision Support & Business Intelligence Systems”
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Cloud computing and distributed systems.
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Understanding_Digital_Forensics_Presentation.pptx
Encapsulation_ Review paper, used for researhc scholars
KodekX | Application Modernization Development
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Per capita expenditure prediction using model stacking based on satellite ima...
Teaching material agriculture food technology
NewMind AI Weekly Chronicles - August'25 Week I

Wcf routing kt

  • 1. WCF ROUTING Krunal Trivedi Corporate Trainer For DotNet,Silverlight,SPS 2010 MCT S For .NET Web Technology MCTS For SharePoint Server 2010 Development Co-Founder at Aavid Technologies Email:krunaltrivedi@live.in Contact : 09998472789
  • 4. • The Routing Service is a generic SOAP intermediary that acts as a message router. • This router / or the SOAP intermediary act as a client to the real Service and it works as a Service to the real client • System.ServiceModel.Routing namespace.
  • 5. • One of the challenges in Intermediary scenarios is that the internal endpoints may have different transport or SOAP version requirements than the endpoint that messages are received on. • To support this scenario , the Routing Service can bridge protocols.
  • 6. Filtering • The WCF filtering system can use declarative filters to match messages and make operational decisions. • You can use filters to determine what to do with a message by examining part of the message. • A queuing process can use Xpath 1.0 query to check the priority element of a known header to determine whether to move a message to the front of the queue. • The filtering system is composed of a set of classes that can efficiently determine which of a set of filters are true for a particular WCF messages.
  • 7. • The filtering system is a core component of WCF messaging; it is designed to be extremely fast. • Each filter implementation has been optimized for a particular kind of matching against WCF messages. • Filtering is performed after a message is received and is part of dispatching message to the proper application component.
  • 8. Filters • The filter engine has two primary components filters Filters tables
  • 9. • A filter makes Boolean decisions about a message based on user- specified logical condition. • Filters implement the MessageFilter class. • The Match methods are used to determine if a message satisfies a filter. • One of the methods tests the message’s header but cannot inspect the message body. • The other method takes a message buffer as an input parameter and can inspect the message body. • The several kinds of filters each specialize in matching on a particular kind of Boolean condition. Once you construct a filter, you cannot change the criteria that a filter uses; to modify a filter's criteria, construct a new one and delete the existing filter.
  • 10. Filter Tables • Filter tables are used to store key-value pairs, where a filter is the key and some associated data is the value. • The filter data can be used to indicate what actions to take if a message matches the filter and the type of the filter data is the generic parameter for the filter table class. • The filter data can consist of routing rules, session security state, listeners on a channel, and so on. • The data can be used where data flow control is necessary. • Filter tables implement the generic interface IMessageFilterTable.
  • 11. • Filter tables have several methods that match a message against all the filters in the table and return an unordered collection of matching filters or data. • Some of the match methods are multiple-match and return all matching items. Others are single-match, returning only one item, and throw a MultipleFilterMatchesException if more than one filter matches.
  • 12. • Action Filters: • The ActionMessageFilter contains a list of action strings. • If any of the actions in the filter’s list matches the Action header in the message or message buffer, the Match method returns true. • If the list is empty, the filter is considered a match-all filter and any message or message buffer matches and Match returns true. • If none of the actions in the filter’s list matches the Action header in the message or message buffer, Match returns false. • If there is no action in the message and the filter’s list is non- empty, then Match returnsfalse.
  • 13. • XPathMessageFilter (XPath queries against incoming messages) • EndpointAddressMessageFilter and PrefixEndpointAddressMessageFilter (match against endpoint address)
  • 16. Create a console application “MessageService”
  • 17. Add an interface…also Add Reference of System.ServiceModel and import the namespace also
  • 18. Add the Implementation class and implement interface
  • 20. Run your server(console application…).copy and paste URI to your browser….get the following screen..notice that proxy creation is disabled…
  • 21. Add Reference of System.ServiceModel…Also Import the namespace and copy and paste interface there…
  • 22. Create a object of ChannelFactory….using object of interface create a new channel….
  • 23. Run your Server First…Run your client…You will get the message on the Server…..
  • 24. Change the binding to the WSHttpBinnding on the client…run the server…run the client…observer the result….RUN TIME ERROR…. Limitation of ConfigLess WCF is..only for BasicHttpBinnding…not for WSHttpBinding….That means config file is necessary for wsHttpBinding…configless is not a Permanent solution.
  • 25. • Stage-2…WCF Routing with Protocol Bridging
  • 26. • Our objective is change BasicHttpBinding with WSHttpBinding on the server[so we have to drop configless setting]. • On server add new app.config file.Try to open it with Configuration Editor…but you can’t..so manually write configuration.
  • 30. Add service tag inside services tag….add the attribute name where name=MessageService.MessageServiceImpl(Namespace.ClassName)
  • 31. Add endpoint inside service tag…which specifies address , binding,contract… contract=MessageService.IProcessMessage(Namespace.Interface)
  • 32. On the Server..modify main method…
  • 33. On the Client…Make sure Binding is WSHttp…..
  • 34. Run The Server… Run the Client….
  • 35. Need for Routing Change address and binding on the server… Note:We have address http://localhost:9000 and binding WSHttpBinding on the client….Server side it is changed…so we required Routing…A Protocol Bridging Now ,if we run Server as well as Client application we get an error…the solution is SOAP Router….
  • 36. Create a new console application…name it WCFRouter We want this to Listen to a certain endpoint And forward Over to the listener
  • 37. Add reference of System.ServiceModel as well as System.ServiceModel.Routing-----A Required NameSpace for Routing
  • 38. RoutingService is responsible for routing messages between endpoints based on filter criteria. ServiceHost provides a host for services….
  • 39. Add app.config to the RouterProject
  • 40. IRequestReplyRouter interface is required to process message from Request-Reply channel Address and Bindings are the same at the client—so this would be server for client --Make sure on the server we have change d the address and binding
  • 41. We are adding a Behavour
  • 42. Filter tables are used to store key-value pairs, where a filter is the key and some associated data is the value. Gets or sets the name of the filter table used by this routing service for routing message Behaviour section
  • 49. Publish-Subscribe Mechanism Copy-Paste MessageService and Rename it like MessageService2…
  • 50. Modify app.config…observer address as well as service name attribute
  • 52. Make Changes on the Client
  • 54. Run Server1 , Run Server2, Run Router and Run Client Apps…