User Jader Dias - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T08:39:36Zhttp://stackoverflow.com/feeds/user/48465http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/942711/visual-studio-crashes-when-debug-tests-are-run-with-the-test-result-view-in-anoth3Visual Studio crashes when debug tests are run with the Test Result view in another screenJader Dias2009-06-03T01:30:51Z2009-12-05T07:19:10Z
<p>When I try to run unit tests, in debug mode only, on "Microsoft Visual Studio Team System 2008 SP1" and the Test Results view is open in a screen other than the main one (I have 2 monitors), the devenv.exe process crashes. Have you ever encountered a similar error? Have you found a workaround for it?</p>
http://stackoverflow.com/questions/1848790/named-pipe-not-found-when-using-wcf-netnamedpipebinding0Named pipe not found when using WCF netNamedPipeBindingJader Dias2009-12-04T18:25:38Z2009-12-04T20:16:27Z
<p>I am the developer of a WCF service. My test clients work very well with it. But when it comes to real clients (using the same client proxy), it fails. The same WCF service works with netTcpBinding, this error occurs only with netNamedPipeBinding, even with ConcurrencyMode = ConcurrencyMode.Single</p>
<p>Here is the exception</p>
<blockquote>
<p>There was no endpoint listening at
net.pipe://localhost/MyService
that could accept the message. This is
often caused by an incorrect address
or SOAP action. See InnerException, if
present, for more details.</p>
</blockquote>
<p>Server stack trace: at</p>
<blockquote>
<p>System.ServiceModel.Channels.PipeConnectionInitiator.GetPipeName(Uri
uri) at
System.ServiceModel.Channels.NamedPipeConnectionPoolRegistry.NamedPipeConnectionPool.GetPoolKey(EndpointAddress
address, Uri via) at
System.ServiceModel.Channels.CommunicationPool`2.TakeConnection(EndpointAddress
address, Uri via, TimeSpan timeout,
TKey& key) at
System.ServiceModel.Channels.ConnectionPoolHelper.EstablishConnection(TimeSpan
timeout) at
System.ServiceModel.Channels.ClientFramingDuplexSessionChannel.OnOpen(TimeSpan
timeout) at
System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan
timeout) at
System.ServiceModel.Channels.ServiceChannel.OnOpen(TimeSpan
timeout) at
System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan
timeout) at
System.ServiceModel.Channels.ServiceChannel.CallOnceManager.CallOnce(TimeSpan
timeout, CallOnceManager cascade)<br>
at
System.ServiceModel.Channels.ServiceChannel.EnsureOpened(TimeSpan
timeout) at
System.ServiceModel.Channels.ServiceChannel.Call(String
action, Boolean oneway,
ProxyOperationRuntime operation,
Object[] ins, Object[] outs, TimeSpan
timeout) at
System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage
methodCall, ProxyOperationRuntime
operation) at
System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage
message)</p>
<p>Exception rethrown at [0]: at
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage
reqMsg, IMessage retMsg) at
System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData&
msgData, Int32 type) at</p>
</blockquote>
<p>Inner Exception</p>
<blockquote>
<p>PipeException: "The pipe endpoint 'net.pipe://localhost/MyService' could not be found on your local machine. "</p>
</blockquote>
http://stackoverflow.com/questions/1848237/how-to-configure-visual-studio-to-create-all-projects-including-a-reference-to-a1How to configure Visual Studio to create all projects including a reference to a specific dll?Jader Dias2009-12-04T16:49:35Z2009-12-04T17:05:03Z
<p>I am tired of adding a reference to <code>System.ServiceModel</code> in each project I create. Is there any way to automate this?</p>
http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1844389#18443891Answer by Jader Dias for RegEx match open tags except XHTML self-contained tagsJader Dias2009-12-04T01:47:17Z2009-12-04T01:47:17Z<p>If it was not for @bobince answer I would say you should develop your regexes in a Test Driven manner.</p>
<p>Thank God you didn't</p>
<p>But next time use TDD.</p>
http://stackoverflow.com/questions/1827425/how-to-check-programatically-if-a-type-is-a-struct-or-a-class1How to check programatically if a type is a struct or a class?Jader Dias2009-12-01T16:44:42Z2009-12-03T09:23:05Z
<p>I think the question is clear.</p>
http://stackoverflow.com/questions/1828829/how-to-choose-a-wcf-binding0How to choose a WCF binding?Jader Dias2009-12-01T20:51:45Z2009-12-03T00:01:26Z
<p>WCF binding chooser algorithm</p>
<p>I have watched a speak at a TechEd conference that showed a simple algorithm for choosing a WCF binding. I can't find this algorithm but I remember some of the main ideas:</p>
<ol>
<li>If your WCF service will have non-.NET clients choose Http Soap</li>
<li>If your WCF will have .NET clients in other machines choose Net Tcp</li>
<li>If your WCF will have .NET clients in the same machine choose Message Queue</li>
</ol>
<p>Can anyone provide a link to the full version of this algorithm?</p>
http://stackoverflow.com/questions/1828829/how-to-choose-a-wcf-binding/1836732#18367320Answer by Jader Dias for How to choose a WCF binding?Jader Dias2009-12-02T23:53:28Z2009-12-02T23:53:28Z<p>I found another version of the algorithm:</p>
<p><a href="http://mohammedatef.files.wordpress.com/2009/06/wcfbinding.jpg" rel="nofollow">http://mohammedatef.files.wordpress.com/2009/06/wcfbinding.jpg</a>
<img src="http://mohammedatef.files.wordpress.com/2009/06/wcfbinding.jpg" alt="http://mohammedatef.files.wordpress.com/2009/06/wcfbinding.jpg"></p>
http://stackoverflow.com/questions/1835471/is-there-any-way-to-do-custom-serialization-in-wcf0Is there any way to do custom serialization in WCF?Jader Dias2009-12-02T20:11:19Z2009-12-02T20:34:29Z
<p>In my WCF solution, the server doesn't need to know the data type. The client will send a type and receive the same type.</p>
<p>For performance reasons I think I could implement serialization manually in the client proxy, avoiding WCF builtin serialization on the server side, but there is any way to achieve the same goal just configuring WCF properly?</p>
http://stackoverflow.com/questions/1834325/what-wcf-binding-is-most-performant1What WCF binding is most performant?Jader Dias2009-12-02T17:01:38Z2009-12-02T17:32:06Z
<p>I have to get the maximum throughput performance in my WCF service. In one of my tests the service below got only 50k data items per minute using NetTcpBinding. Would a disconnected binding like NetMsmqBinding improve this performance?</p>
<p>Service and client uses WCF and run in the same machine.</p>
<pre><code>[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single,
ConcurrencyMode = ConcurrencyMode.Multiple)]
public class Storage : IStorage
{
protected List<int> _data = new List<int>();
public void Insert(int[] data)
{
lock (_data)
{
_data.AddRange(data);
}
}
public int[] Get()
{
lock (_data)
{
return _data.ToArray();
}
}
}
</code></pre>
<p>The code above is a simplified version of the actual code.</p>
http://stackoverflow.com/questions/1828970/how-to-store-custom-settings-for-a-wcf-service0How to store custom settings for a WCF service?Jader Dias2009-12-01T21:14:05Z2009-12-01T21:52:03Z
<ol>
<li>People says that libraries shouldn't have configuration files.</li>
<li>I can't pass arguments to my WCF service class from its host (but I can from the client). </li>
<li>I don't want to store the configuration on the client.</li>
<li>What should I do?</li>
</ol>
http://stackoverflow.com/questions/1827528/how-to-configure-a-wcf-endpoint-for-a-generic-service-with-a-specified-type0How to configure a WCF endpoint for a generic service with a specified type?Jader Dias2009-12-01T17:00:07Z2009-12-01T17:16:10Z
<p>I have the following WCF service host console application:</p>
<pre><code>static void Main(string[] args)
{
ServiceHost serviceHost =
new ServiceHost(typeof(MyServiceName<int>));
serviceHost.Open();
Console.ReadLine();
}
</code></pre>
<p>I tried to configure an endpoint for it:</p>
<pre><code><services>
<service name="MyNamespace.MyServiceName&lt;int&gt;">
<endpoint
address="net.tcp://localhost:8002/MyServiceName"
binding="netTcpBinding"
contract="MyNamespace.IMyServiceName&lt;int&gt;"/>
</service>
</services>
</code></pre>
<p>But it doesn't work. Is the <code>&lt;</code> and <code>&gt;</code> the problem?</p>
http://stackoverflow.com/questions/1827296/how-to-check-if-a-type-is-marked-with-an-attribute1How to check if a type is marked with an attribute?Jader Dias2009-12-01T16:26:46Z2009-12-01T16:27:57Z
<p>Does it needs reflection?</p>
http://stackoverflow.com/questions/1827247/how-to-specify-a-generic-type-should-be-marked-with-an-attribute1How to specify a generic type should be marked with an attribute?Jader Dias2009-12-01T16:21:08Z2009-12-01T16:23:38Z
<p>I know I can:</p>
<pre><code>public class SampleClass<TSerializable>
where TSerializable : ISerializable
</code></pre>
<p>How can I write a SampleClass that accepts only classes marked with the SerializableAttribute instead?</p>
http://stackoverflow.com/questions/1826317/design-pattern-asking-for-advice-push-model-v-s-pull-model/1826347#18263471Answer by Jader Dias for design pattern asking for advice: push model v.s. pull modelJader Dias2009-12-01T13:57:44Z2009-12-01T15:31:35Z<p>I would certainly use the Pull model as it is simpler to implement.</p>
<p>I can only imagine 2 implementations:</p>
<ol>
<li><p>Pull model = 1 service with the tasks collection plus many worker clients.</p></li>
<li><p>Push model = 1 service with the tasks collection and a list of active subscribers plus many active subscribers (workers).</p></li>
</ol>
<p>As the Pull model doesn't have to implement full duplex service calls neither a subscriber list, it is simpler.</p>
http://stackoverflow.com/questions/1826324/how-to-write-a-wcf-service-with-in-memory-persistent-storage1How to write a WCF service with in-memory persistent storage?Jader Dias2009-12-01T13:53:07Z2009-12-01T15:18:05Z
<p>I wrote a WCF service, but the data stored in the Service implementation doesn't persists between calls, not even if stored in a static variable. What can I do?</p>
<p>The service implementation is as follows:</p>
<pre><code>public class Storage : IStorage
{
protected static object[] _data;
#region IStorage Members
public void Insert(object[] data)
{
lock (_data)
{
_data = _data.Concat(data).ToArray();
}
}
public object[] SelectAll()
{
lock (_data)
{
return (object[])_data.Clone();
}
}
#endregion
}
</code></pre>
<p>The service host is a console application:</p>
<pre><code>static void Main(string[] args)
{
ServiceHost serviceHost =
new ServiceHost(typeof(TimeSpanStorage));
serviceHost.Open();
Console.WriteLine("Service running. Please 'Enter' to exit...");
Console.ReadLine();
}
</code></pre>
http://stackoverflow.com/questions/1821535/net-container-for-two-way-conversion-data/1821607#18216070Answer by Jader Dias for .NET container for two-way conversion data?Jader Dias2009-11-30T18:42:00Z2009-11-30T18:42:00Z<p>I rather use two instances of <code>Dictionary<TKey, TValue></code></p>
<p>It favors code readability</p>
<p>Are you sure this dictionary is a performance bottleneck?</p>
http://stackoverflow.com/questions/1821542/is-it-possible-to-reuse-a-projectinstaller0Is it possible to reuse a ProjectInstaller?Jader Dias2009-11-30T18:31:14Z2009-11-30T18:31:14Z
<p>I have a solution with many Windows services and their ProjectInstallers are very similar. How to make a single Installer class in a library that is used by every WindowsService?</p>
<p>I tried to do it, but it didn't work yet.</p>
<p>The code below contains only part of a Installer</p>
<pre><code>[RunInstaller(true)]
public partial class ProjectInstaller : Installer
{
public ProjectInstaller()
{
InitializeComponent();
}
}
</code></pre>
http://stackoverflow.com/questions/21639/do-you-know-j-language/1557542#15575421Answer by Jader Dias for Do you know J language?Jader Dias2009-10-12T23:44:07Z2009-11-30T13:56:01Z<p>I learned some of it today.
As it is the languages that produces the shortest code for mathematical problems, I used it to solve some of the Euler Project problems.</p>
<p>I created a poll for this: <a href="http://www.misterpoll.com/polls/463304" rel="nofollow">http://www.misterpoll.com/polls/463304</a></p>
http://stackoverflow.com/questions/1777226/does-visualhg-work-with-visual-studio-2010-beta-21Does VisualHG work with Visual Studio 2010 beta 2?Jader Dias2009-11-21T23:57:22Z2009-11-29T18:28:23Z
<p>Since I installed it on my Visual Studio 2010 beta 2 I couldn't make it work. I don't know if it is because it is incompatible or it is because I don't know how to use it.</p>
http://stackoverflow.com/questions/1777226/does-visualhg-work-with-visual-studio-2010-beta-2/1816304#18163040Answer by Jader Dias for Does VisualHG work with Visual Studio 2010 beta 2?Jader Dias2009-11-29T18:28:23Z2009-11-29T18:28:23Z<p>Yes it works. I couldn't make it work on Windows 7 64-bit, but in Windows 7 32-bit it played nice.</p>
http://stackoverflow.com/questions/1743538/should-i-document-my-private-methods15Should I document my private methods?Jader Dias2009-11-16T17:14:23Z2009-11-26T11:43:12Z
<p>Private methods documentation can only be seen by who has access to the source code. Is it worth the effort spent on it?</p>
http://stackoverflow.com/questions/1195478/how-to-make-a-net-windows-service-start-right-after-the-installation8How to make a .NET Windows Service start right after the installation?Jader Dias2009-07-28T17:13:46Z2009-11-24T16:02:28Z
<p>Besides the service.StartType = ServiceStartMode.Automatic my service does not start after installation</p>
<p><strong>Solution</strong></p>
<p>Inserted this code on my ProjectInstaller</p>
<pre><code>protected override void OnAfterInstall(System.Collections.IDictionary savedState)
{
base.OnAfterInstall(savedState);
using (var serviceController = new ServiceController(this.serviceInstaller1.ServiceName, Environment.MachineName))
serviceController.Start();
}
</code></pre>
<p>Thanks to ScottTx and Francis B.</p>
http://stackoverflow.com/questions/489847/which-javascript-minifier-cruncher-does-the-same-things-that-the-one-google-use1Which Javascript minifier (cruncher) does the same things that the one Google uses for its JS APIs?Jader Dias2009-01-28T23:12:07Z2009-11-24T08:31:02Z
<p>I am a Google Maps API (javascript) developer. I have noticed that Google uses a Javascript minifier that has the following features:</p>
<ol>
<li>Shortens variables, properties, arguments, classes, function and method names, obfuscating the code. (eg. function1 -> a, function2 -> b, function3 -> c)</li>
<li>Some variables, classes, properties and methods can be marked to not be crunched, so its name remains the same as documented in the API manual.</li>
<li>It is rerun in each subversion of the API, like a build task, I noticed that because of the crunched names changes from one version to another.</li>
</ol>
<p>I have not found in the whole internet a Javascript minifier with those features. Anyone knows one?</p>
http://stackoverflow.com/questions/1776667/how-to-get-the-maximum-outbound-requests-when-parellellizing-asynchronous-calls1How to get the maximum outbound requests when parellellizing asynchronous calls?Jader Dias2009-11-21T20:24:45Z2009-11-22T17:06:01Z
<p>Analysing the code below in action through Fiddler, I realized that using Parallel Extensions I can get at maximum 2 outbound requests:</p>
<pre><code>new string[]
{
"http://stackoverflow.com",
"http://superuser.com",
"http://serverfault.com",
"http://stackexchange.com"
}
.AsParallel()
.Select(a => HttpWebRequest.Create(a).GetResponse())
.ToArray()
;
</code></pre>
<p>What method should I use to maximize the number of outbound requests?</p>
http://stackoverflow.com/questions/1779220/why-is-linq-to-sql-databinding-to-gridview-much-slower-than-pass-through-sql/1779261#17792611Answer by Jader Dias for Why is Linq To Sql databinding to gridview much slower than pass-through SQL?Jader Dias2009-11-22T17:02:43Z2009-11-22T17:02:43Z<p>Your measure may not be accurate, please use the System.Diagnostics.StopWatch class for time measurement:</p>
<pre><code>static void Main(string[] args)
{
var sw = Stopwatch.StartNew();
Thread.Sleep(100);
Console.WriteLine(sw.Elapsed.ToString());
Console.Read();
}
</code></pre>
http://stackoverflow.com/questions/1776667/how-to-get-the-maximum-outbound-requests-when-parellellizing-asynchronous-calls/1776747#17767470Answer by Jader Dias for How to get the maximum outbound requests when parellellizing asynchronous calls?Jader Dias2009-11-21T20:53:09Z2009-11-22T14:11:42Z<p>Note that in the question I used the sychronous version of the BeginGetResponse method. What I have found so far is that the only way to maximize the outbound request is to use the async version of the method. But this approach yields new problems, namely:</p>
<ol>
<li>You must split your caller logic in two methods</li>
<li>It's difficult to keep track whether all outbound calls were completed.</li>
<li>It's difficult to handle exceptions.</li>
<li><p>If the number of tasks to run surpasses the thread pool size, then god knows what happens</p>
<pre><code>new string[]
{
"http://stackoverflow.com",
"http://superuser.com",
"http://serverfault.com",
"http://stackexchange.com"
}
.Select(a => HttpWebRequest.Create(a).BeginGetResponse(callback, null))
.ToArray();
</code></pre></li>
</ol>
http://stackoverflow.com/questions/1777140/how-to-make-plinq-to-spawn-more-concurrent-threads-in-net-4-0-beta-20How to make PLINQ to spawn more concurrent threads in .NET 4.0 beta 2?Jader Dias2009-11-21T23:30:10Z2009-11-22T00:15:28Z
<p>In former versions of Parallel Extensions you could set the number of threads:</p>
<pre><code>enumerable.AsParallel(numberOfThreads)
</code></pre>
<p>But now that overload is not available anymore. How to do it now?</p>
http://stackoverflow.com/questions/1776011/how-to-synchronize-asynchronous-methods0How to synchronize asynchronous methods?Jader Dias2009-11-21T16:53:10Z2009-11-21T18:09:30Z
<pre><code>var arguments = new double[] { 1d, 2d, 3d };
var result = arguments.Select(arg => Math.Sqrt(arg));
</code></pre>
<p>Now imagine a asynchronous method instead of Math.Sqrt (i'm not sure the method below is a true async method, but it behaves approximately like one)</p>
<pre><code>public void BeginSqrt(Action<double> callback, double argument)
{
Thread.Sleep(100);
callback(Math.Sqrt(argument));
}
</code></pre>
<p>There is no right way of calling such method without splitting the code. So let's synchronize this asynchronous method with AutoResetEvent. I created a helper class:</p>
<pre><code>public class Synchronizer<T, TResult>
{
AutoResetEvent _autoResetEvent = new AutoResetEvent(false);
TResult _result;
public TResult Execute(Action<Action<TResult>,T> beginMethod, T argument)
{
beginMethod(Callback, argument);
_autoResetEvent.WaitOne();
return _result;
}
void Callback(TResult result)
{
_result = result;
_autoResetEvent.Set();
}
}
</code></pre>
<p>With this class we can:</p>
<pre><code>var synchronizer = new Synchronizer<double, double>();
var result = arguments.Select(arg => synchronizer.Execute(BeginSqrt, arg));
</code></pre>
<p>This solution I created in a few minutes while I was thinking about the problem. There is a native alternative to this? I am sure my solutions has bugs, since it misses some locks. There is a more proven library to do that?</p>
http://stackoverflow.com/questions/1776054/does-autoresetevent-waitone-frees-a-slot-in-the-thread-pool0Does AutoResetEvent.WaitOne() frees a slot in the thread pool?Jader Dias2009-11-21T17:07:43Z2009-11-21T18:01:43Z
<p>I am trying to synchronize an asynchronous method. The main advantage of the async version is that it frees a slot in the thread pool. I would like to keep this advantage in my sync version. When I use AutoResetEvent.WaitOne() it is equivalent to a Thread.Sleep() in terms of thread pool usage?</p>
http://stackoverflow.com/questions/1253408/is-it-possible-to-develop-net-framework-4-0-beta-apps-with-visual-studio-200/1772501#17725011Answer by Jader Dias for Is it possible to develop ".NET framework 4.0" [beta] apps with Visual Studio 2008?Jader Dias2009-11-20T18:46:30Z2009-11-20T18:46:30Z<p>I tried myself and it didn't work.
There was a conflict with the new version of old libraries (ie. System.Core).</p>
http://stackoverflow.com/questions/1848790/named-pipe-not-found-when-using-wcf-netnamedpipebinding/1849314#1849314Comment by Jader Dias on Named pipe not found when using WCF netNamedPipeBindingJader Dias2009-12-05T00:29:54Z2009-12-05T00:29:54Zok, thanks.......http://stackoverflow.com/questions/1848790/named-pipe-not-found-when-using-wcf-netnamedpipebinding/1849314#1849314Comment by Jader Dias on Named pipe not found when using WCF netNamedPipeBindingJader Dias2009-12-05T00:18:29Z2009-12-05T00:18:29ZDoes the login matters in this case? If a process owned by a user can access named pipes created by another user?http://stackoverflow.com/questions/1848790/named-pipe-not-found-when-using-wcf-netnamedpipebinding/1849314#1849314Comment by Jader Dias on Named pipe not found when using WCF netNamedPipeBindingJader Dias2009-12-05T00:17:08Z2009-12-05T00:17:08ZThank you for posting this, but this was not my case.http://stackoverflow.com/questions/1848790/named-pipe-not-found-when-using-wcf-netnamedpipebindingComment by Jader Dias on Named pipe not found when using WCF netNamedPipeBindingJader Dias2009-12-04T19:56:36Z2009-12-04T19:56:36Z@Murph, yes they are on the same machine.http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1733489#1733489Comment by Jader Dias on RegEx match open tags except XHTML self-contained tagsJader Dias2009-12-04T01:42:36Z2009-12-04T01:42:36ZI wonder who would not take your comment as humorhttp://stackoverflow.com/questions/1835471/is-there-any-way-to-do-custom-serialization-in-wcf/1835482#1835482Comment by Jader Dias on Is there any way to do custom serialization in WCF?Jader Dias2009-12-02T20:33:23Z2009-12-02T20:33:23ZI don't think I could build anything near as good as the built-in serialization in the available time. But I wonder if the built-in serialization should be configurable as I am asking to be. http://stackoverflow.com/questions/1834325/what-wcf-binding-is-most-performant/1834376#1834376Comment by Jader Dias on What WCF binding is most performant?Jader Dias2009-12-02T19:55:18Z2009-12-02T19:55:18ZI used it but it strangely did not improved the performance of my service.http://stackoverflow.com/questions/1834325/what-wcf-binding-is-most-performant/1834376#1834376Comment by Jader Dias on What WCF binding is most performant?Jader Dias2009-12-02T17:56:58Z2009-12-02T17:56:58Z<a href="http://code.google.com/p/protobuf-net/wiki/Performance" rel="nofollow">code.google.com/p/protobuf-net/…</a>http://stackoverflow.com/questions/1834325/what-wcf-binding-is-most-performant/1834432#1834432Comment by Jader Dias on What WCF binding is most performant?Jader Dias2009-12-02T17:34:06Z2009-12-02T17:34:06ZSo if I understand you well, I would have to ignore this GET method from this service, and transform one of my clients in a service that receives the data, in order to use MSMQ?http://stackoverflow.com/questions/1834325/what-wcf-binding-is-most-performant/1834432#1834432Comment by Jader Dias on What WCF binding is most performant?Jader Dias2009-12-02T17:23:42Z2009-12-02T17:23:42ZIf you look into my code, and if I tell you that each client uses only 1 of the operations (one client Inserts, and another client Gets), I think we will agree that a MSMQ is appropriate to my service. The problem is that I never used it, and I didn't know if it is performant.http://stackoverflow.com/questions/1834325/what-wcf-binding-is-most-performant/1834395#1834395Comment by Jader Dias on What WCF binding is most performant?Jader Dias2009-12-02T17:17:51Z2009-12-02T17:17:51ZYes, I think the actual service would benefit from an advanced lock too.http://stackoverflow.com/questions/1834325/what-wcf-binding-is-most-performant/1834395#1834395Comment by Jader Dias on What WCF binding is most performant?Jader Dias2009-12-02T17:16:16Z2009-12-02T17:16:16ZI just corrected the ConcurrencyMode. Thanks!http://stackoverflow.com/questions/1828970/how-to-store-custom-settings-for-a-wcf-service/1829012#1829012Comment by Jader Dias on How to store custom settings for a WCF service?Jader Dias2009-12-02T13:40:02Z2009-12-02T13:40:02ZMy question wasn't about endpoint configuration, but your answer was useful for me. I just couldn't use the configSource parameter because my Visual Studio tells me: Warning The 'configSource' attribute is not declared.http://stackoverflow.com/questions/1828829/how-to-choose-a-wcf-binding/1829066#1829066Comment by Jader Dias on How to choose a WCF binding?Jader Dias2009-12-02T12:34:51Z2009-12-02T12:34:51ZWhat disconnected communication means in this chart?http://stackoverflow.com/questions/1828829/how-to-choose-a-wcf-binding/1829066#1829066Comment by Jader Dias on How to choose a WCF binding?Jader Dias2009-12-02T12:04:52Z2009-12-02T12:04:52ZExactly =) thanks man!