DCSIMG
expert,.net - Bnaya Eshet

Bnaya Eshet

Disclaimer

Browse by Tags

All Tags » expert » .net (RSS)
Performance tips
Performance tips recently I was working on the Reactive Queue (which is part of the Rx Contrib ). the requirement for the Reactive Queue was to to achieve the highest throughput possible for each queue provider ( 2,000,000 messages of 500 byte per second using Concurrent Queue provider running on simple quad server ). while working on this project I was encounter the the following performance hits:   1. ManualResetEventSlim there is a big difference between using the old ManualResetEvent Vs...
Calling WCF secured service from Java
Calling WCF secured service from Java   recently I was working on exposing secured WCF service to Java consumers. I was responsible for the .NET side and a java expert named Tsvika responsible for the Java side.   enabling secured conversation between Java and .NET using WCF is not a trivial task, and it does needed some additional steps. you should have certificate install, and having the binding and behaviors configured in a way that the Java proxy can manage.   Certificates the...
Posted: Mar 09 2010, 10:40 PM by bnaya | with 4 comment(s)
תגים:, , ,
Securing the MEF Directory Catalog
Securing the MEF Directory Catalog   during my MEF lecture, on of the attendant (a fellow from check-point) ask the following question: " How can we secure our catalog ?"   this is a really good point, because without securing our catalog, hackers can exploit our extensibility model for injecting malicious code.   so can we defend our MEF gates? the short answer is yes. and the long one is yes but…   Secure techniques I will mention 3 techniques, each defend our code...