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.
…
-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 …
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 …
2
votes
.Net ESB’s out there
Neuron from Nuedesic is the best .NET ESB out there, but it's not cheap.
NServiceBus and MassTransit are both MSMQ based, not WCF based, so keep that in mind if you are expecting a WCF base …
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.
…
3
votes
Has anyone used “DotNetRemoting” (the third-party product, not .NET Remoting) ?
"renowned expert Rockford Lhotka"... depends who you ask I guess. Everyone I know that has used CSLA extensively regrets using his framework.
As for DotNetRemoting, they don't have all the …
1
vote
WCF Security error with VS 2008 Unit Test
When you have securityMode="None" in your binding, you should turn off integrated authentication.
…
1
vote
Single WCF Service to multiple client connections
I talk about the options here:
http://www.iserviceoriented.com/blog/po …
3
votes
ASP.net MVC and WCF
WCF services might make sense in this situation, but don't create services that align with your UI, create services that align with the business processes. ie. you won't have a service that returns …
0
votes
What is the best way to create a Factory Method when using WCF?
You cannot really provide factories unless you provide libraries for each of your consumers in their native languages.
Instead of a factory that returns a grouping object, consider filter adding s …
0
votes
How to avoid File Blocking
This could happen if one thread was attempting to read from the file while another was writing. To avoid this type of situation where you want multiple readers but only one writer at a time, make u …
0
votes
catching exceptions from another thread
Use the BackgroundWorker class in the .NET framework instead. It is the best practice for performing UI work on a different thread.
…
1
vote
.NET - What’s the best way to implement a “catch all exceptions handler”
You can monitor most exceptions in that handler even in multithreaded apps, but .NET (starting with 2.0) won't allow you to cancel unhandled exceptions unless you enable the 1.1 compatibility mode. …
1
vote
How to serialize nullable DateTime in a .net web service?
The way you handle optional properties is to include a boolean XXXSpecified member where XXX is the name of the property. Nullable types are not handled properly by the xml serializer used by ASMX. …
0
votes
Capturing data from a .Net web-service that fails with an HTTP 500 error code
If you want a use a tool, use WireShark.
Otherwise, the easiest way is to capture "everything" (assuming you are using ASMX) is to enable trace on system.net
…
