0
votes
WCF self-hosted service with transport security (Authentication failed because the remote party has closed the transport stream.)
Certificates can be a pain in the ass some times to get working. First thing you should always do with WCF is turn on tracing:
…
1
vote
How to expose objects through WCF?
Mark up your objects that are being used by the service with [DataContract] attributes and then put [DataMember] on the public properties. This will solve your problem.
…
3
votes
WCF transport security with no authentication
You can have https communication without authentication, but you cannot have https communication without certificates, since https encryption uses certificates.
There are a few things to ch …
0
votes
Timeout when using WCF host on IIS 6
I wrote a few posts that explain why this happens in regard to IDisposable and
…
-1
votes
How can I check WCF address access and avoid AddressAccessDeniedException?
Check out the code here:
http://www.pluralsight.com/community/blogs/keith/archive/200 …
0
votes
WCF client consuming multiple asmx service that uses HTTP Cookies
If you enabled asp.net compatibility mode, you can access the http session from within your WCF service, so you shouldn't need to add any cookies to do this.
…
0
votes
Consuming a WCF service in BizTalk 2006 R2
BizTalk is overkill if you are just using it to orchestrate WCF services. You can use WCF services in .NET 3.5 inside of Windows Workflow Foundation a bit more easily.
That said, here is a …
1
vote
How to turn off certificate revocation for a WCF service’s client?
You can set certificate validation and revocation options in the config file for your application:
…
1
vote
How do I automatically re-establish a duplex channel if it gets faulted?
Nicolas Allen, from the WCF team has suggestions for this:
http://blogs.msdn.com/d …
1
vote
Architecting a Work Item Processing System with Modified FIFO Semantics in Windows
Queues are for FIFO order, not random access order. Even though you are saying that you want FIFO order, you want FIFO order with respect to a random set of variables, which is essentially random o …
0
votes
How well will WCF scale to a large number of client users?
Here are some common gotchas
http://www.iserviceoriented.com/blog/post …
0
votes
ASP.net Web Services versus WCF
ASMX is like remoting, it's still around because it shipped with 1.0, but you shouldn't use it anymore if you are starting a new project. WCF will give you many more features and better tooling sup …
1
vote
Is it true that WCF are either console apps or run under IIS?
There is a class ServiceHost defined in WCF that allows you to host a service in any application like so:
using (ServiceHost host = new ServiceHost(typeof(MyService))
{
host.Open …
1
vote
WCF - NetTcp and basicHttp with SSL in single setup possible without IIS7
Yes, a single service host can expose multiple endpoints with different bindings. However, normal IIS restrictions apply to IIS, so IIS 6 doesn't support NetTcp bindings to begin with.
…
0
votes
WCF Service & Request queueing
WCF service throttling will queue requests internally without any additional code. What are you trying to do?
…
