Tagged Questions

0
votes
1answer
32 views

Purpose of WCF Client Endpoint?

Hello, I understand the purpose of having WCF endpoint on the service side, but I don't quite understand the purpose of configuring endpoint on the client side. Is this for duplex connection or …
0
votes
2answers
206 views

WCF Consumer Website returning The Address property on ChannelFactory.Endpoint was null. The ChannelFactory’s Endpoint must have a valid Address specified.

I've got a simple WCF service that works great on localhost - consumed by another local website and is returning data. Now I upload my service to our host, changing the appropriate addresses in the …
1
vote
0answers
62 views

When creating a WCF Service with NetTcpBinding, use endpoint “localhost” or machine’s host name?

I have a WCF service that uses the NetTcpBinding and is running within a Windows service. Remote clients connect to this service. So far, I have defined the endpoint to use "localhost". If the host …
0
votes
2answers
67 views

WCF client endpoint certificate reference, how to find when there’s a comma in the distinguished name parts?

We are trying to reference a certificate for a client endpoint configuration in our WCF configuration file. The configuration looks like this: <client> <endpoint …
0
votes
1answer
473 views

The Address property on ChannelFactory.Endpoint was null. The ChannelFactory’s Endpoint must have a valid Address specified.

Hi. I am getting the following error and I am not sure what I am doing wrong. Does anybody see anything obvious? Below are my project's Web.config and my WCF class library's App.config The Address …
0
votes
0answers
28 views

How do I access an incoming request’s endpoint (service/user)principalname?

I've had an issue with security in my WCF server, so now we authenticate each request via ServiceSecurityContext.Current.WindowsIdentity. However now, for other reasons, in case that value is null, …
0
votes
2answers
187 views

WCF endpoints, baseAddressPrefixFilters, host headers

I have two websites on the same machine. The first (client) references a WCF service on the second site(server). How do I set the address for the service reference? When moving from development on …
0
votes
2answers
1k views

Securing WCF service endpoint with custom authentication

Hi, I want to secure some endpoint of a WCF service, i dont know if you can secure some endpoint and some not. Below I have the stripped WCF service (self hosted). The same WCF serves also the CA …
2
votes
3answers
216 views

Has groovy an include mechanism?

We are searching for an include mechanism for groovy scripts to have space for cross-cutting-concerns. In my example we have, web service endpoints as groovy scripts and want to log to our web …
0
votes
7answers
3k views

Could not find default endpoint element

I've added a proxy to a webservice to a VS2008/.NET 3.5 solution. When constructing the client .NET throws this error: Could not find default endpoint element that references contract …
1
vote
1answer
143 views

Generated WCF proxy configuration uses server’s local name

We have a service hosted behind our firewall that receives request forwarded through to it by the external router. The service is working fine, however whenever one of our clients adds a service …
0
votes
2answers
113 views

How can I improve SQL server mirroring

Hello (if the question is more appropriate for RackOverflow please let me know) I've setup SQL server mirroring, using 2 SQL server 2005 standard editions. When the application is being stressed, …
1
vote
1answer
479 views

Why does my WCF service not respond my baseAddress setting in web.config?

I'm trying to learn how to build RESTful services with WCF by recreating the project on this blog post by Anthony Steele. He uses the following XML in his config to setup the endpoint for the service. …