Tagged Questions
The wcf-routing tag has no wiki summary.
3
votes
6answers
2k views
How do I make a JavaScript call to a WCF service hosted on a different domain?
We are designing a web application using ASP.NET and AJAX and we want to host our WCF Service Layer on a different website and make JavaScript calls to the Service Layer from our client pages. We ...
2
votes
2answers
291 views
WCF routing — how to correctly add filter table programmatically
I am using the WCF 4 routing service, and need to configure the service programmatically (as opposed to via config). The examples I have seen of doing so, which are rare, create a MessageFilterTable ...
1
vote
0answers
38 views
Two-Way Routing Service
I have the following requirement:
Client can call the router/relay service, which in turn calls a service on the target server. The target server sends back a result to the relay service which will ...
1
vote
1answer
55 views
Web service provider routing
I am looking to implement a service (web/windows, .net) that maintains a list of available services and can provide an endpoint based on the nature or type of request. The requester can then pass the ...
1
vote
0answers
124 views
How can I get WCF Routing to give me a more detailed error message than - No matching MessageFilter?
Is there a way to configure WCF Routing so that if your filters don't match you can get more information about the message that could not be routed?
Currently we're using AppFabric and we only get ...
1
vote
1answer
364 views
WCF service behavior extension throwing null reference exception
So, im trying to write routing service. The idea is that, every time someone calls routing service, endpoint is randomly selected by WCF behavior extension. I used slightly modified example from MSDN ...
1
vote
0answers
143 views
WCF routing backuplists - logging when they are used
Is there anyway to add some logging or a behaviour to the WCF routing list so that I can log when the routing has made use of an endpoint on a backup list?
<filterTables>
...
1
vote
3answers
430 views
WCF 4.0 routing with mex using System.ServiceModel.Routing.RoutingService
I have service with working MEX at:
net.tcp://remotehost:4508
What is the shortest C#/F# code (hard time understanding XML configuration files ^_^") I could write to create a router to it at?:
...
1
vote
1answer
299 views
WCF4 routing with reliable sessions and callbacks
I'll start with an explanation of what I'm trying to do, and the environment / circumstances involved.
I'm working with a pre-existing WCF service (hosted as a windows service) that I've implemented ...
1
vote
1answer
2k views
WCF Routing Message Security
I'm building some routing functionality between services. The original service and the service that does the routing have an identical configuration; both are using netTcpBinding with the following ...
0
votes
1answer
48 views
Autofac and RoutingService
I am trying to build a routing infrastructure and I use Autofac as IoC container. I read the wiki and I know these steps:
ContainerBuilder builder = new ContainerBuilder();
builder.Register(c => ...
0
votes
0answers
18 views
WCF Routing Services only get result from one slave service another get null
I creat two slave services (there are same code but different endpoint) and one router service.
I can use client to send data to them but only can get a result from one of the slave services.
...
0
votes
0answers
51 views
Forwarding webHttpBinding calls like in basicHttpBinding with routing services
I have a WCF application with several endpoints exposed as basicHttpBinding inside a protected domain environment, along with one webHttpBinding endpoint. I have an edge server inside a DMZ that ...
0
votes
1answer
627 views
WCF Routing service error - ContractFilter mismatch at the EndpointDispatcher
The situation is as follows: I have an internal server running some WCF services, and I want them to be accessible from the internet at large. To this end, I have written a routing service that is ...
0
votes
1answer
195 views
Routing calls to legacy ASMX web service through WCF Routing Service
I am working on a legacy application that contains references to two .asmx web services. We want to restructure the service layer to follow more of an Enterprise Service Bus pattern, where the client ...
0
votes
1answer
663 views
WCF routing service IClientMessageInspector --> BeforeSendRequest not calling - URGENT
I need to add the HTTP header for each message in WCF Routing service before sending to back end service.
I have implemented the below class. However when i debug "BeforeSendRequest " is not called ...
0
votes
0answers
137 views
WCF Routing with TLS ( Security) leads to bad performance
I am using the below setup in my WCF routing service with TLS enabled.
Client(SOAP+TCP Binding) <====> Routing Service(SOAP+TCP Binding and HTTP binding to detination server) <====> WebLogic ...
0
votes
1answer
290 views
parameters in service route
Working on a WCF webhttp project and had a question on parameters in route composition.
I have two services - Project service (that allows an user to add and view projects) and an Item service that ...
0
votes
2answers
673 views
How to (pre)start xamlx workflow service
Related to this question.
I have a xamlx workflow service that loads part of its definition from a database when it runs (using ActivityXamlServices.Load). Reason for this is that I need versioning, ...