User Brann - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T20:00:33Zhttp://stackoverflow.com/feeds/user/47341http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1825336/should-i-revive-clippy-aka-how-can-i-provide-user-friendly-tips-and-help-in-a-d8Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?Brann2009-12-01T10:34:35Z2009-12-18T19:26:19Z
<p>While I've been working hard to keep the WinForms application I'm working on simple and easy to learn, the functional domain I'm working in (finance) is pretty rich, and I feel I should help the user figure out what to do next once the program is launched.</p>
<p>I must add that in the software I'm working on, there's often "something to do next" (ie validating something, answering a message, etc.)</p>
<p>I've been thinking on this quite a lot in the last days, and I feel a lot of things have already been tried in that field :</p>
<ul>
<li><p>Clippy (R.I.P.).</p></li>
<li><p>The <strong>?</strong> button on the upper right corner (a.k.a. "what's this" button), which users have learned to ignore as clicking on "retro-transponder amplitude" with <strong>?</strong> will probably bring a helpful "the retro-transponder amplitude" tooltip, which is not worth the mouse trip to the upper right corner.</p>
<p>There are a few variations to the <strong>?</strong> button, including a contextual help zone in the status bar (which refers to the thing the mouse currently hovers), which solve the problem of having to click on "?", but still don't let the user grasp a whole interface at a glance. Edit : <a href="http://stackoverflow.com/questions/1825336/should-i-revive-clippy-aka-how-can-i-provide-user-friendly-tips-and-help-in-a-d/1825431#1825431">Joe's suggestion</a> of a contextual help window is another example of this.</p></li>
<li><p>Help files are helpful (provided they're well written), but they lack the "immediate feedback" thing - precisely the problem Clippy was trying to address</p></li>
<li><p>"Tip of the day" are usually shot on sight (usually so fast than some users don't even have the time to spot the "Show tip of the day at start-up" ticked checkbox)</p></li>
</ul>
<p><hr></p>
<p>Something I'm considering is using an overlay help screen, ie hitting "F1" would popup a lot of overlay tooltips on the screen explaining what everything does, with possibly a red tooltip (instead of yellow) for the recommended next action. Releasing F1 (or possibly hitting it another time) would hide all the help clutter</p>
<p>This would address the problems with the four approach I mentioned :</p>
<ul>
<li><p>help is only popup on demand (vs clippy)</p></li>
<li><p>you don't have to click <strong>?</strong> then every single label on the screen (vs <strong>?</strong> button)</p></li>
<li><p>you don't have to spend time searching the relevant information in the help file. The documentation is right at your fingertips (vs .chm help file)</p></li>
<li><p>useful tips are displayed at a relevant time (ie you get tips regarding dialog foo when it's displayed, not at program startup - a time when you probably have no idea what the foo dialog looks like)</p></li>
</ul>
<p>As this already been tried in some software? Do you think it's a good idea? do you have other ideas in mind to address my problem ?</p>
<blockquote>
<p>Disclaimer : please don't answer "you
should address your real problem, which
is that you UI is too complex". Please
assume everything has been done to
keep the UI simple.</p>
<p>Think of an airliner cockpit. Ton of
effort has gone into the UI, but it's
still extremely complex. Now imagine
ordinary users should be able to use
it : how would you address the issue?
That's exactly my problem.</p>
</blockquote>
http://stackoverflow.com/questions/1920933/round-to-n-significant-figures-in-sql/1921011#19210112Answer by Brann for Round to n Significant Figures in SQLBrann2009-12-17T11:06:27Z2009-12-17T11:16:35Z<p><code>select round(@number,@sf-1- floor(log10(abs(@number))))</code> should do the trick !</p>
<p>Successfully tested on your two examples.</p>
<p>Edit : Calling this function on @number=0 won't work. You should add a test for this before using this code.</p>
<pre><code>create function sfround(@number float, @sf int) returns float as
begin
declare @r float
select @r = case when @number = 0 then 0 else round(@number ,@sf -1-floor(log10(abs(@number )))) end
return (@r)
end
</code></pre>
http://stackoverflow.com/questions/901320/anti-joel-test/1909942#19099420Answer by Brann for Anti-Joel TestBrann2009-12-15T19:53:51Z2009-12-15T19:53:51Z<ul>
<li><p>Technology</p>
<ul>
<li>They still develop using obsolete languages (vb6, cobol, etc.)</li>
<li>They don't have a migration plan to the latest framework / virtual machine / whatever (example they use .net 1.0 with no plan to update)</li>
<li>They develop in-house stuff they should outsource (eg they reinvent the wheel instead of buying one - usually the internal wheel is less reliable, less power-rich, and very expensive)</li>
</ul></li>
</ul>
<p><hr></p>
<ul>
<li><p>Source control</p>
<ul>
<li>They don't use it</li>
<li>They use on obsolete source control (eg visual source safe)</li>
<li>They don't use branches when needed</li>
<li>They don't tag their checkin with meaningful comments (or better, with workitems ID)</li>
<li>They prevent any checkin without a related workitem ID (this is so annoying for trivial modifications, like a spelling error in a text)</li>
<li>They don't store their db schema (or build scripts, or some other key information) in their source control</li>
</ul></li>
</ul>
<p><hr></p>
<ul>
<li><p>Development methodology</p>
<ul>
<li>They don't have a test server, and a preproduction server, and a development server</li>
<li>They don't have automated builds</li>
<li>They don't have automated tests</li>
</ul></li>
</ul>
<p><hr></p>
<ul>
<li><p>Developer consideration</p>
<ul>
<li>They don't let developers buy hardware when they need it (an extra monitor, an extra dev machine, some RAM, a SSD drive, whatever)</li>
<li>They don't let developers buy books when they need it.</li>
<li>Developers don't have a decent chair to sit on</li>
<li>They don't have internet access, or you use a white-list sytem</li>
</ul></li>
</ul>
<p><hr></p>
<ul>
<li><p>Organization / Management</p>
<ul>
<li>There's a rigid time management / reporting system which costs more than 5mn per day per developer</li>
<li>IT people depends on a non-IT person for IT related decisions</li>
<li>Developers are segregated from users</li>
<li>Creating a user in a database / gaining access to a shared directory / whatever requires more than 2 minutes of paperwork</li>
<li>Developers don't have administration rights on their computer</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/592799/where-can-i-find-a-good-introduction-on-sql-locking-and-transaction-strategies2Where can I find a good introduction on SQL locking and transaction strategiesBrann2009-02-26T22:45:44Z2009-12-10T14:07:02Z
<p>I'm using locks and transactions a bit like a VBA excel programmer trying to write a multithreaded c++ server for the first time...</p>
<p>I've tried to ask my coworkers for advice, but while we're all quite good (or so we think) at designing complex databases, writing fast and efficient queries, using index and constraints when it's needed, and so on, none of us has a good knowledge of this topic.</p>
<p>All the online resources I've found are either syntaxical references, or dummy tutorials explaining that a transaction begins with 'begin tran' and ends with a commit or with a rollback.</p>
<p>I've browsed SO too without success.</p>
<p>What I'm looking for is a list of simple real world problems, along with the right way to solve them.</p>
<p>Example :</p>
<p>Let's say I've got a table with one Active bit column, and that I don't want to have two active rows at the same time. Of course, many processes can try to insert data at the same time.</p>
<ul>
<li>should I lock the whole table ?</li>
<li>or maybe use a data constraint so that an insert of a second "Active" row will fail ?</li>
<li>or use a transaction with the repeatable read isolation level ?</li>
<li><p>or maybe write :</p>
<p>update tbFoo set Active=0
insert into tbFoo (foo, Active) select 'foo',1 where not exists (select * from tbFoo where Active=1)</p></li>
</ul>
<p>Please don't comment/answer on this specific problem and on my silly suggestions. I'm just trying to pinpoint the fact that I don't have a clue :)</p>
<p><strong>Where can I find some good walkthroughs on simple yet relevant locking situations?</strong> If it makes a difference, I'm using SQL Server 2008</p>
<p>I'm also curious of knowing if other people feel the same way I do on this topics.</p>
http://stackoverflow.com/questions/529350/how-would-you-force-the-system-net-socket-connect-method-to-use-a-socks-proxy0How would you force the System.Net.Socket.Connect() method to use a socks proxy (code injection vs external custom proxy)Brann2009-02-09T18:49:06Z2009-11-29T08:34:40Z
<p>I'm using WCF's netTcpBinding, which connects directly to an endpoint and doesn't seems to know anything about socks proxies.</p>
<p>I need to use a proxy because most of my clients won't allow direct outbound connections, and enforce the use of socks proxies at all times.</p>
<ul>
<li><p>My first idea was to configure the .net framework to do that, so I edited the machine.config file as follows, but it seems it only works with http proxies (not socks)</p>
<pre><code><system.net>
<defaultProxy enabled="true">
<proxy usesystemdefault="False" proxyaddress="foo:1080" bypassonlocal="True"/>
<module />
</defaultProxy>
</system.net>
</code></pre></li>
<li><p>My second option was to implement a custom binding inheriting from netTcpBinding, and only overriding the connection logic to add the proxy code.</p>
<p>I've dissasembled the System.ServiceModel assembly, and unfortunately, a lot of classes are marked as internal (including SocketConnectionInitiator, ConnectionPoolHelper, ClientFramingDuplexSessionChannel and FramingDuplexSessionChannel, and probably others aswell)</p>
<p>This makes creating a custom netTcpBinding a huge work, and moreover could cause some problems as new versions of the .net framework are delivered.</p></li>
<li><p>Another idea is to inject some code directly into the Socket.Connect() method. This is quite easy to achieve, but I'm not very confident with modifying the inner code of the .net framework. Also, although the socket class isn't marked as sealed, I'm afraid of breaking something, especially in later relases of the framework.</p></li>
<li><p>Last idea I've got for now: I could create a little proxy tool, running on the same computer as my software, which would automatically connect to the corporate's socks proxy, and issue the good "connect server" command to the real socks proxy. </p></li>
</ul>
<p>The latter option is in my opinion the better, but I'm curious to hear other people opinions.</p>
<p>What do you think?</p>
http://stackoverflow.com/questions/477734/whats-your-opinion-on-ms-cab-composite-application-block4What's your opinion on MS CAB (Composite Application Block)?Brann2009-01-25T14:11:08Z2009-11-20T00:09:31Z
<p>I'm in the process of evaluating the use of CAB for a new .net 3.5 winform project</p>
<p>I plan to use the Infragistics toolset, <a href="http://www.infragistics.com/learn/cab.aspx" rel="nofollow">which is known to be 'CAB compliant'</a></p>
<p>While CAB has the immediate upside of letting me focus on my business instead of coding basic docking/login/etc code, I feel like I would be able to achieve the same level of functionnality quite radpidly by myself (with the added flexibility/reactivity bonus you have when you 'own' the code).</p>
<p>I'm seeking some feedback on Microsoft's CAB from people using it :</p>
<ol>
<li>Have you experienced problems/bugs ?</li>
<li>Do you feel like CAB saved your time ?</li>
<li>Are there extra functionalities I don't know about (beside Docking/Login/WorkerThreads best practices?)</li>
</ol>
http://stackoverflow.com/questions/396930/the-future-direction-of-help-file-formats/1716936#17169361Answer by Brann for The future direction of Help File formatsBrann2009-11-11T17:51:09Z2009-11-11T17:51:09Z<p>What exactly makes you think there's no default .chm viewer on windows Vista ? (There certainly is one on my computer, as well as on my Win7 box)</p>
<p>You might confuse .chm with .hlp (Microsoft indeed dropped .hlp support in vista, then eventually resumed it in a windows update)</p>
<p>Bottom line : .chm files seem to be still supported on all windows version, and the only real alternative to .chm files i know of is .html</p>
http://stackoverflow.com/questions/1608459/why-is-my-wcf-server-returning-empty-responses-using-protobuf-net1Why is my WCF server returning empty responses using protobuf-net ?Brann2009-10-22T16:36:40Z2009-11-11T17:43:53Z
<p>I've updated an existing WCF application to add protobuf-net support.
Basically, I've :</p>
<ul>
<li><p>added protobuf-net.dll (.net 3.0) as a reference in the assembly containing all my data objects. This assembly is referenced by both my server and my client</p></li>
<li><p>replaced [DataMember] by [DataMember(Order = x)] (using increasing ints as x)</p></li>
<li><p>Updated all my OperationContracts with the ProtoBehavior attribute</p></li>
<li><p>Updated my service reference</p></li>
</ul>
<p>From the client, I call this method on the server :</p>
<pre><code>[OperationContract(IsOneWay = false), ProtoBehavior]
ConnectionData Join(string userId, string Password);
</code></pre>
<p>with ConnectionData being defined like this :</p>
<pre><code>[DataContract]
public class ConnectionData
{
[DataMember(Order = 1)]
public ConnectionStatusEnum ConnectionStatus; // this is a normal enum with five elements
// .....
[DataMember(Order = 5)]
public bool MustChangePassword;
}
</code></pre>
<p>Now, here's what's going on :</p>
<ul>
<li><p>If I debug the server, I see that a ConnectionData object is correctly initialized and returned in the Join method</p></li>
<li><p>If I debug the client, I see a null object being returned from my Join call</p></li>
<li><p>I've enabled WCF tracing to the maximum verbosity, nothing caught my eye in the Server's log, but in the Client log file I've seen this warning message :</p></li>
</ul>
<blockquote>
<p>System.Runtime.Serialization.ElementIgnored<br />
An unrecognized element was
encountered in the XML during
deserialization which was ignored.<br />
Element <a href="http://tempuri.org/%3Aproto" rel="nofollow">http://tempuri.org/%3Aproto</a></p>
</blockquote>
<p>I've sniffed my network trafic, and I don't blame protobuf-net for not being able to deserialize this :</p>
<pre><code><s:Body><JoinResponse xmlns="http://tempuri.org/"><proto/></JoinResponse></s:Body>
</code></pre>
<p>How can I further troubleshoot the problem and get protobuf-net to serialize my messages correctly?</p>
<p><hr /></p>
<p>I'm using protobuf-net r275</p>
http://stackoverflow.com/questions/422237/which-free-tools-can-i-use-to-transfer-files-over-a-terminal-services-session-w1Which free tools can I use to transfer files over a terminal services session? (win 2003)Brann2009-01-07T21:46:43Z2009-11-05T15:28:38Z
<p>Is there a free (as in free beer) software to send files over a terminal services session ?</p>
<p>I'm already aware of non-free tools like <a href="http://www.wtssoft.com/tsftp.htm" rel="nofollow">TSFTP</a> for example</p>
<p>I'm using windows server 2003 R2.</p>
http://stackoverflow.com/questions/1486420/how-can-i-enhance-the-aesthetics-of-an-ugly-windows-form-packed-with-too-many-ne13How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features?Brann2009-09-28T10:47:57Z2009-11-04T11:43:57Z
<p>One of the window dialog of a software I'm working on looks a bit like this : (original screen-shot copied from <a href="http://www.codinghorror.com/blog/archives/000734.html" rel="nofollow">this coding horror post</a>, other examples available on <a href="http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used">this SO question</a>)</p>
<p><img src="http://www.codinghorror.com/blog/images/wgetgui-screenshot.png" alt="alt text" /></p>
<p>The thing is that none of the options can be removed (those who can have already been), and that they must all be visible at a glance (i.e. <strong>no tabs allowed</strong>) Edit : I've added a comment explaining why tabs are not an option in my specific project.</p>
<p>I've tried to use colors, to add icons, but it just added to the overall feeling that someone had just dropped controls randomly using Visual Studio Form designer during a summer internship.</p>
<p>How can I make this dialog <strike>more user-friendly</strike> less horrifying without deleting features ?</p>
<p><hr /></p>
<p>Edit :
The GUI example I took has a lot of obvious design flaws (see those answers <a href="http://stackoverflow.com/questions/1486420/how-can-i-enhance-the-aesthetics-of-an-ugly-windows-form-packed-with-too-many-ne/1486470#1486470">1</a> <a href="http://stackoverflow.com/questions/1486420/how-can-i-enhance-the-aesthetics-of-an-ugly-windows-form-packed-with-too-many-ne/1486506#1486506">2</a>), but even after fixing those (which I've done on the software I'm working on), the dialog still looks pretty ugly.</p>
<p>Below is another example (<a href="http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238874#238874">credit</a>). Controls are (almost) lined up correctly, appropriate controls are used, etc, but the overall result still looks terrible :</p>
<p><img src="http://judahhimango.com/images/cybrid.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/1486420/how-can-i-enhance-the-aesthetics-of-an-ugly-windows-form-packed-with-too-many-ne/1487499#14874991Answer by Brann for How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features?Brann2009-09-28T14:53:40Z2009-11-04T11:43:57Z<p>Aside from other much-needed changed, adding a banner (displaying the company logo or something like that) seems to improve the overall appearance of the dialog.</p>
<p>I know it's a pure waste of space but it seems to improve the global feeling about the window.</p>
<p><img src="http://img24.imageshack.us/img24/3423/wget.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/629455/how-should-i-optimize-multiple-calls-in-my-net-code-to-a-trivial-stored-procedur2How should I optimize multiple calls in my .net code to a trivial stored procedure ?Brann2009-03-10T09:40:38Z2009-11-02T19:24:10Z
<p>I've got a very simple stored procedure :</p>
<pre><code>create procedure spFoo(v varchar(50))
as
insert into tbFoo select v
</code></pre>
<p>I've got 50 values to insert into tbFoo, which means in my c# code I call spFoo 50 times. This is a pretty inefficient way of doing this, especially if there's some lag between my program and the database.</p>
<p>What do you usually do in this situation ?</p>
<p>I'm using SQL Server 2008 but it's probably unrelated.</p>
http://stackoverflow.com/questions/1644414/why-is-the-winforms-designer-ignoring-attributes-on-overriden-properties0Why is the winforms designer ignoring attributes on overriden properties ?Brann2009-10-29T15:10:51Z2009-10-29T15:10:51Z
<p>I've got a user control defined like this :</p>
<pre><code> public partial class FooControl : UserControl
{
private System.Windows.Forms.GroupBox groupBox1;
...
</code></pre>
<p>I wanted to make groupBox1.Text accessible directly from the designer so I went for the obvious solution and created the following property in my FooControl :</p>
<pre><code> [CategoryAttribute("Appearance"), DescriptionAttribute("The text associated with this control.")]
public string Text
{
get { return groupBox1.Text; }
set { groupBox1.Text = value;}
}
</code></pre>
<p>This doesn't work because Text is already defined in my super class (in fact, it's a bit in the dark because of the browseable=false attribute, but I eventually found it) :</p>
<pre><code> public class UserControl : ContainerControl
{
[Bindable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override string Text { get; set; }
</code></pre>
<p>An easy workaround is to use "Text2" instead of "Text" as the property name, and in this case everything works fine.</p>
<p>However, if I use override or new, my code compile (and works) but my Text property is not visible in the designer. </p>
<p>What's the reason for this behavior ? Is there a workaround (other than using another property name) ?</p>
http://stackoverflow.com/questions/1630968/how-can-i-use-a-ssl-wildcard-certificate-to-mutually-authenticate-several-wcf-ser1How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?Brann2009-10-27T13:54:54Z2009-10-28T15:55:43Z
<p>I've got two WCF servers, both on the domain mydomain.com (fictional example, as are IP below !), respectively named server1 and server2.</p>
<p>They are both accessible through their public IP addresses (foo.1 and 2), but also from the private LAN they are on (ie 192.168.0.1 and 192.168.0.2)</p>
<p>I own a wildcard ssl certificate for *.mydomain.com. It's installed correctly in the relevant stores (ie Personal for encryption and Trusted Clients for Authentication)</p>
<p>I'd like both my servers to connect with one another on their local network addresses using my wildcard certificate for authentication purposes.</p>
<p>I've updated the C:\Windows\System32\drivers\etc\hosts file to make it look like this :</p>
<pre><code>192.168.0.1 Server1.mydomain.com
192.186.0.2 Server2.mydomain.com
</code></pre>
<p>Those are not the IP addresses I get if I resolve Server1.mydomain.com (I would rather get foo.1 - 2)</p>
<p>I've also edited the Connection-specific DNS suffix for my IPV4 local interfaces to "mydomain.com"</p>
<p>My certificate is referred to like this in my Server.config files (I've stripped all the parts not related to authentication)</p>
<pre><code> <behavior name="ServerToServerBehavior" >
<serviceCredentials>
<clientCertificate>
<authentication certificateValidationMode="PeerOrChainTrust" revocationMode="Online"/>
</clientCertificate>
<serviceCertificate x509FindType="FindByThumbprint" findValue="13a41b3456e431131cd461de"/>
</serviceCredentials>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="myServerAsClientBehaviorConfiguration">
<clientCredentials>
<clientCertificate x509FindType="FindByThumbprint" findValue="13a41b3456e431131cd461de" storeLocation="LocalMachine"/>
<serviceCertificate>
<authentication certificateValidationMode="PeerOrChainTrust" revocationMode="Online" trustedStoreLocation="LocalMachine"/>
</serviceCertificate>
</clientCredentials>
</behavior>
</endpointBehaviors>
</code></pre>
<p>This works perfectly fine on my own dev computer with locally generated X509 certificates, but in my production environment, here's what I get :</p>
<blockquote>
<p>Server.Connect : Failed to connect to
server Server2 :
System.ServiceModel.Security.MessageSecurityException:
Identity check failed for outgoing
message. The expected DNS identity of
the remote endpoint was
'server2.mydomain.com' but the remote
endpoint provided DNS claim
'mydomain.com'. If this is a
legitimate remote endpoint, you can
fix the problem by explicitly
specifying DNS identity 'mydomain.com'
as the Identity property of
EndpointAddress when creating channel
proxy.</p>
</blockquote>
<p>I've tried to get the server to answer Server2.mydomain.com instead of just mydomain.com, without success. Any hint on how to do this?</p>
<p>I've also tried the solution suggested in the error message, but this seems to have no effect at all (other users seem to have <a href="http://social.msdn.microsoft.com/forums/en-US/wcf/thread/cee66e78-9ee4-49fb-bf8c-cd1e14237e95/" rel="nofollow">the same problem</a> and I've yet to find a solution). Any idea on how to fix this ?</p>
<p>Edit :
I've check with my certificate provider that I can indeed use it for X509 authentication.</p>
http://stackoverflow.com/questions/1630968/how-can-i-use-a-ssl-wildcard-certificate-to-mutually-authenticate-several-wcf-ser/1638187#16381870Answer by Brann for How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?Brann2009-10-28T15:55:43Z2009-10-28T15:55:43Z<p>I eventually understood why my Identity field was being ignored.</p>
<p>My endpoint was constructed like this :</p>
<pre><code>DistantServer = new ServiceReferenceServerToServer.ServerToServerClient("myServerBinding", "net.tcp://server.mydomain.com/Server");
</code></pre>
<p>when the uri parameter is provided, the DNS identity field (defined in the app.config), is overridden as well (even if it's empty, which is the case when we use a string instead of a real URI object).</p>
<p>the solution is to set it programatically using the following code :</p>
<pre><code> System.ServiceModel.EndpointAddress uri = new System.ServiceModel.EndpointAddress(new Uri("net.tcp://server.mydomain.com/Server"),new System.ServiceModel.DnsEndpointIdentity("mydomain.com"),new System.ServiceModel.Channels.AddressHeader[0]);
DistantServer = new ServiceReferenceServerToServer.ServerToServerClient("myServerBinding", uri );
</code></pre>
http://stackoverflow.com/questions/1636189/whats-the-key-to-the-field-this-certificate-is-encoded-for-the-following-purpos0What's the key to the field "this certificate is encoded for the following purpose(s)" in ssl certificates ?Brann2009-10-28T09:51:24Z2009-10-28T09:59:13Z
<p>In the property page of an SSL certificate (accessible in windows using mmc/certificates), each certificate is associated with a set of intended purposes looking either like this :</p>
<blockquote>
<p>Protects e-mail messages</p>
<p>Proves your identity to a remote computer</p>
<p>Ensures the identity of a remote computer</p>
<p>Ensures software came from software publisher</p>
<p>Protects software from alteration after publication</p>
<p>All issuance policies</p>
</blockquote>
<p>Or like this : </p>
<blockquote>
<p>1.3.6.1.4.1.6449.1.2.1.3.4</p>
</blockquote>
<p>How can I get the correspondance between those strings and a human-readable format ?</p>
http://stackoverflow.com/questions/1636189/whats-the-key-to-the-field-this-certificate-is-encoded-for-the-following-purpos/1636205#16362050Answer by Brann for What's the key to the field "this certificate is encoded for the following purpose(s)" in ssl certificates ?Brann2009-10-28T09:54:10Z2009-10-28T09:54:10Z<p>Those numbers are Object Identifier strings (aka OID)</p>
<p>There are several public repositories for OIDs (<a href="http://www.oid-info.com" rel="nofollow">example</a>)</p>
<p>For this string :</p>
<blockquote>
<p>1.3.6.1.4.1.6449.1.2.1.3.4</p>
</blockquote>
<p>the first part of the OID <a href="http://www.oid-info.com/cgi-bin/display?oid=1.3.6.1.4.1.6449&submit=Display&action=display" rel="nofollow">refers to Comodo</a>, but the last part of the identifier is not available. It seems the only solution in this case is to ask Comodo directly.</p>
http://stackoverflow.com/questions/1525591/do-you-put-your-database-static-data-into-source-control-how8Do you put your database static data into source-control ? How ?Brann2009-10-06T13:27:24Z2009-10-24T17:43:23Z
<p>I'm using SQL-Server 2008 with Visual Studio Database Edition.</p>
<p>With this setup, keeping your schema in sync is very easy. Basically, there's a 'compare schema' tool that allow me to sync the schema of two databases and/or a database schema with a source-controlled creation script folder.</p>
<p>However, the situation is less clear when it comes to data, which can be of three different kind :</p>
<ul>
<li><p><strong>static data referenced in the code</strong>. typical example : my users can change their setting, and their configuration is stored on the server. However, there's a system-wide default value for each setting that is used in case the user didn't override it. The table containing those default settings grows as more options are added to the program. This means that when a new feature/option is checked in, the system-wide default setting is usually created in the database as well.</p></li>
<li><p><strong>static data</strong>. eg. a product list populating a dropdown list. The program doesn't rely on the existence of a specific product in the list to work. This can be for example a list of unicode-encoded products that should be deployed in production when the new "unicode version" of the program is deployed.</p></li>
<li><p><strong>other data</strong>, ie everything else (logs, user accounts, user data, etc.)</p></li>
</ul>
<p>It seems obvious to me that my third item shouldn't be source-controlled (of course, it should be backuped on a regular basis)</p>
<p>But regarding the static data, I'm wondering what to do.</p>
<ul>
<li><p>Should I append the insert scripts to the creation scripts? or maybe use separate scripts?</p></li>
<li><p>How do I (as a developer) warn the people doing the deployment that they should execute an insert statement ?</p></li>
<li><p>Should I differentiate my two kind of data? (the first one being usually created by a dev, while the second one is usually created by a non-dev)</p></li>
</ul>
<p>How do you manage your DB static data ? </p>
http://stackoverflow.com/questions/472351/race-conditions-in-wcf-with-non-oneway-methods1race conditions in WCF with non-oneway methodsBrann2009-01-23T09:28:07Z2009-10-19T02:12:55Z
<p>I'm designing a client-server chat application (in fact I'm not, but let's pretend I am:)), and I'm a bit puzzled by some race conditions I've experienced.</p>
<p>Let's say I've got the following code:</p>
<pre><code>public interface IServer
{
[OperationContract(IsOneWay = false)]
[FaultContract(typeof(ChatException))]
void BroadcastMessage(string msg);
}
public class Server : IServer
{
void BroadcastMessage(string msg) // I'm not mentionning the try/catch/throw FaultException here for readability purposes
{
foreach (IClientCallback c in callbacks){
c.ReceiveMessage(msg);
}
}
}
public interface IClientCallback
{
[OperationContract(IsOneWay = true)]
void ReceiveMessage(string s);
}
</code></pre>
<p>And here is an excerpt of the binding configuration :</p>
<pre><code><endpoint address=""
binding="netTcpBinding"
bindingConfiguration="DuplexBinding"
contract="IServer" />
<binding name="DuplexBinding" sendTimeout="00:01:00">
<reliableSession ordered="true" inactivityTimeout="00:05:00" enabled="true"/>
<security mode="None">
<transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
<message clientCredentialType="Windows" />
</security>
</binding>
</code></pre>
<p>This is of course some sort of pseudo c#, I've removed a lot of non-relevant code for clarity sake.</p>
<p>Now to the point :
This code won't work. When I call BroadcastMessage, the method never returns, and I eventually get a timeout on the client side. If I debug on the server side, everything seems fine (I return from the BroadcastMessage method exactly as one would expect, and I'm not blocking on any ReceiveMessage one way calls)</p>
<p>Here are two ways to fix this code :</p>
<ol>
<li>remove the FaultContract and declare the BroadcastMessage method as oneway=true</li>
<li>Broadcast the message to everybody BUT the initial sender</li>
</ol>
<p>My first guess was that the client side was waiting for the server to return, and thus wasn't available for handling the incoming ReceiveMessage call from the server, thus blocking the server, BUT ReceiveMessage is declared as oneway, and debugging the server shows that it doesn't block on any call to ReceiveMessage</p>
<p>Now, my questions :</p>
<ul>
<li><p>What's going on?</p></li>
<li><p>Are there other ways to fix this? (maybe by tuning the binding configuration ?)</p></li>
<li><p>Let's say I choose fix 2 (ie don't broadcast back to the sender), what happens if the server calls my ReceiveMessage callback (because someone else sent me a message) while I'm waiting for my own BroadcastMessage call to finish?</p></li>
<li><p>I've read that OneWay calls are not totally oneway, and that the server still waits for an HTTP response from the other side. Any details on this? specifically, is the client able to respond suche http responses when it's blocked in a distant call? </p></li>
</ul>
<p>Edit: Console .net 3.5 on the server side, Winforms .net 3.5 on the client side</p>
http://stackoverflow.com/questions/1571412/what-are-ssis-packages-deployment-and-change-tracking-best-practices1What are SSIS packages deployment and change-tracking best practices ?Brann2009-10-15T10:05:24Z2009-10-17T12:09:15Z
<p>I've got quite a robust development environment regarding my SQL database Schema and Data (everything is source controlled, deployment is automated, etc), but when it comes to SSIS packages, the process is quite tedious and totally manual.</p>
<ul>
<li><p>How can I automate the SSIS package upgrade process (right now, I copy my packages manually to each server, and then I use Management Studio's "SSIS Package Upgrade Wizard")</p></li>
<li><p>How can I deploy my Schedules (right now, I'm doing it manually)</p></li>
<li><p>How can I deploy my SQL Agent Jobs (right now, I'm doing it manually)</p></li>
<li><p>How can I get my Schedules and Jobs int my TeamSystem repository (right now, I use no source-control for this)</p></li>
<li><p>Are there other things I can/should do to enhance the way I work regarding SSIS packages ? </p></li>
</ul>
<p>I'm using MS SQL Server 2008 SP1, but I imagine some advices could be useful on other versions as well.</p>
http://stackoverflow.com/questions/1562615/save-visual-studio-2008-toolbox-settings/1562682#15626820Answer by Brann for Save Visual Studio 2008 Toolbox SettingsBrann2009-10-13T20:18:48Z2009-10-13T20:18:48Z<p>Toolbox settings are stored into C:\Documents and Settings\YOUR_USER_NAME\Application Data\Microsoft\VisualStudio\7.1\toolbox.tbd</p>
<p>This should be shared across all your solutions.</p>
<p>More information available <a href="http://stevenharman.net/blog/archive/2006/02/19/ImportExportVS2003Settings.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1559162/windows-forms-designer-destroys-form-layout/1559764#15597641Answer by Brann for Windows Forms Designer destroys form layoutBrann2009-10-13T11:57:55Z2009-10-13T14:38:56Z<p>Have you tried to clean your project ? (I'm afraid it won't solve anything, but it's an easy step worth trying)</p>
<p><hr /></p>
<p>Also, could you clean your Visual Studio cache ? It worked numerous times for me in similar situations.</p>
<p>Here are some links regarding the VS Cache Hell : <a href="http://www.codeproject.com/KB/cs/VSDesignerCache.aspx" rel="nofollow">1</a> <a href="http://zachsaw.blogspot.com/2008/07/application-data-winforms-cookies.html" rel="nofollow">2</a> . Please feel free to edit my post if you find some other useful information regarding this.</p>
http://stackoverflow.com/questions/1559162/windows-forms-designer-destroys-form-layout/1559177#15591770Answer by Brann for Windows Forms Designer destroys form layoutBrann2009-10-13T09:42:09Z2009-10-13T09:42:09Z<p>It's possible to do that in one click in the designer using the "make same width" tool.</p>
<p>In my experience, if Visual is freezed during a build, it's pretty common to click at a random location on the screen to test whether VS is done with the current task)</p>
<p>Just an idea, though.</p>
http://stackoverflow.com/questions/1542784/what-is-the-optimum-number-of-sqls-run-in-batch/1542801#15428011Answer by Brann for What is the optimum number of sqls run in batch?Brann2009-10-09T09:32:09Z2009-10-09T09:37:55Z<p>Quoted from <a href="http://www.oracle.com/technology/products/ias/toplink/doc/1013/main/%5Fhtml/optimiz010.htm" rel="nofollow">oracle documentation</a> </p>
<blockquote>
<ul>
<li><p>If you are using parameterized SQL (you configure your Login by calling
Login method bindAllParameters), the
maximum batch writing size is the
number of statements to batch
(default: 100).</p></li>
<li><p>If you are using dynamic SQL, the maximum batch writing size is the size
of the SQL string buffer in characters
(default: 32000).</p></li>
</ul>
</blockquote>
<p>There's no such thing as an "universal optimal value".</p>
<p>Each situation has its optimal value, which depends on a lot of things (including the probability a statement might fall, the average time taken per statement, the importance of the timing in your specific business situation, etc.)</p>
http://stackoverflow.com/questions/1530790/net-inherit-from-mycontrol-for-windows-forms/1530820#15308202Answer by Brann for .NET: Inherit from MyControl for Windows.FormsBrann2009-10-07T10:39:27Z2009-10-07T16:28:36Z<p>What you're looking for is either multiple inheritance (which doesn't exist in .net, <a href="http://blogs.msdn.com/csharpfaq/archive/2004/03/07/85562.aspx" rel="nofollow">with no plans to change that</a>), or Default Interface Implementation, aka DII (which might exist in a future version of .net)</p>
<p>As of today, there's unfortunately no clean solution to this problem, and you best bet is to create two base classes. You can share the code in a third helper class, though, so that only the glue code is duplicated, not the actual implementation.</p>
<p>Depending on what functionality you're trying to achieve, another useful technique is to create a single class getting passed an object (either a Form or a Control) in its constructor, and adding the extra functionality you're wanting. However, you won't be able to access the control/form protected members in that way. </p>
<p><a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=91736" rel="nofollow">Here</a> is a link discussing your issue.</p>
http://stackoverflow.com/questions/1524057/computing-to-infinite-binary-precision-in-c/1524170#15241701Answer by Brann for Computing π to "infinite" binary precision in C#Brann2009-10-06T07:58:22Z2009-10-06T17:37:52Z<p>Wikipedia details a lot of ways to get numerical approximations of pi <a href="http://en.wikipedia.org/wiki/Numerical%5Fapproximations%5Fof%5F%CF%80" rel="nofollow">here</a>. They also give some sample pseudo-code</p>
<p>Edit : If you're interested in this kind of mathematical problems without having any related real-world problem to solve (which is definitely a good attitude to have, IMHO), you could visit the <a href="http://projecteuler.net/" rel="nofollow">Euler Project page</a></p>
http://stackoverflow.com/questions/423687/which-plugin-do-you-use-for-svn-in-visual-studio18Which plugin do you use for SVN in Visual Studio?Brann2009-01-08T09:32:14Z2009-10-06T12:52:16Z
<p>I'm considering using SVN for my .net projects, and I'd like to know what plugins are available for integrating the source control capabilities directly into the IDE.</p>
<p>I already know about :</p>
<ol>
<li><p><a href="http://www.visualsvn.com/" rel="nofollow">Visual SVN</a>, which seems great but is not free. Is anyone using it?</p></li>
<li><p><a href="http://ankhsvn.open.collab.net/" rel="nofollow">AnkhSVN</a>, which is free but I've heard it's a bit buggy. Is anyone using it? are you experiencing problems? <strong>Edit:</strong> The 2.0 version is a complete rewrite and seems to solve the problem I've heard about (which were related to the 1.x versions)</p></li>
<li><p><strong>Edit</strong> : <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a> + <a href="http://www.mindscape.co.nz/Products/vsfileexplorer/default.aspx" rel="nofollow">Mindscape's FileExplorer VS Extension</a>, which is not a real IDE integration but somewhat eases the use of TortoiseSVN from Visual studio</p></li>
</ol>
<p><strong>Edit</strong> : I've found a few comparison posts between AnkhSVN and VisualSVN <a href="http://stackoverflow.com/questions/18010/is-ankhsvn-any-good">here</a>, <a href="http://stackoverflow.com/questions/283311/source-control-with-visual-studio-switch-from-visualsvn-to-ankh">here</a> and <a href="http://stackoverflow.com/questions/24045/ankhsvn-versus-visualsvn">here</a>.</p>
http://stackoverflow.com/questions/1520789/how-can-i-select-the-first-day-of-a-month-in-sql3How can I select the first day of a month in SQL ?Brann2009-10-05T15:30:06Z2009-10-05T18:51:43Z
<p>I just need to select the first day of the month of a given datetime variable.</p>
<p>I know it's quite easy to do using this kind of code :</p>
<pre><code>select CAST(CAST(YEAR(@mydate) AS VARCHAR(4))
+ '/' + CAST(MONTH(@mydate) AS VARCHAR(2)) + '/01' AS DATETIME)
</code></pre>
<p>but this is not very elegant, and probably not very fast either.</p>
<p>Is there a 'better way to do this ? (I'm using SQL Server 2008)</p>
http://stackoverflow.com/questions/1504087/how-shoud-i-implement-an-application-wide-color-code-in-a-winform-application4How shoud I implement an application-wide color-code in a WinForm application ?Brann2009-10-01T13:51:04Z2009-10-02T15:44:27Z
<p>I'm building a WinForms application, and I'm using specific colors on most controls. I do that sometimes from the WinForms designer, and sometimes directly into my code.</p>
<p>I got a static class somewhere looking like that :</p>
<pre><code> public static class MyColors
{
public static Color DarkGreen = Color.FromArgb(0, 70, 62);
...
public static Color Orange = Color.FromArgb(239, 132, 16);
}
</code></pre>
<p>I can use those colors in my code quite easily, but it's impossible to do from the designer, which raises this error :</p>
<blockquote>
<p>MyColors.DarkGreen is not a valid
value for Int32.</p>
</blockquote>
<p>(I've tried to store the Int32 representation of those colors, but this fails with the same error)</p>
<p>The solution I'm using right now is to use the rgb color code in the designer, the MyColors class values in my code, and I'm doing changes using the replace all functionality of Visual Studio. This isn't a nice solution, but I haven't been able to find a better idea so far.</p>
<p>Any ideas ?</p>
<p><hr /></p>
<p>Note : I know about <a href="http://stackoverflow.com/questions/806564/c-application-wide-color-management">this question</a>, which is slightly different from mine, as I'm not looking at changing the "KnownColors".</p>
http://stackoverflow.com/questions/1419800/auto-update-is-this-secure/1498173#14981734Answer by Brann for Auto update: Is this secure?Brann2009-09-30T13:35:45Z2009-10-01T08:54:42Z<p>Having build my own deployer in a corporate environment, here are a few use case I needed to address :</p>
<ul>
<li><p>support for digital signature</p></li>
<li><p>support for all kind of proxy. Some big corps have complex proxy configurations (through the use of proxy configuration scripts for example). You should support all of those.</p></li>
<li><p>encryption support. Your customers will probably want to have the deployed binaries available on a web-server, and they won't want to manage some sort of authentication or access control ; but they won't want unauthorized users to download the binaries either. An easy solution is to encrypt the binaries and have your tool deploy it</p></li>
<li><p>support for pluggable additional steps. Corporate clients are usually not very comfortable using automatically deployed tools. They will want more control. Typically, allowing them to run customizable steps (like anti-virus checks, etc) will help</p></li>
<li><p>support for different versions of the software based on the consumer identity. This is often needed in corporate environments, when you want to update the copies of a specific consumer (to fix a bug or add an extra-feature) very fast without running all your Q&A process (in this situation, you want to limit the update to this specific consumer)</p></li>
<li><p>support limited privilege situations. Aside from the fact that your users may lack Administrator access to their computer, big corporations often use specific tools to limit what you can do. Be ready to deploy in a user-owned folder (or even a temporary folder) rather than the classic "program files".</p></li>
<li><p><em>your</em> tool should be signed by a strong certification authority.</p></li>
</ul>
<p>Regarding the MITM attack you mentionned, it's easily solved through the use of public cryptography (as noted by <a href="http://stackoverflow.com/questions/1419800/auto-update-is-this-secure/1496062#1496062">unknown</a>)</p>
http://stackoverflow.com/questions/1920933/round-to-n-significant-figures-in-sql/1921011#1921011Comment by Brann on Round to n Significant Figures in SQLBrann2009-12-17T11:22:03Z2009-12-17T11:22:03Zindeed ; updated accordingly.http://stackoverflow.com/questions/1825336/should-i-revive-clippy-aka-how-can-i-provide-user-friendly-tips-and-help-in-a-d/1906068#1906068Comment by Brann on Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?Brann2009-12-15T09:13:10Z2009-12-15T09:13:10ZMost of my users use the software on a daily basis (but some use it once in a while), among dozens of other software doing more or less the same thing with some slight variations in features, UI, etc. Most users are knowledgeable (but a few don't have a clue, and some of them have a strong bias against technology).http://stackoverflow.com/questions/729379/why-not-use-exceptions-as-regular-flow-of-control/729412#729412Comment by Brann on Why not use exceptions as regular flow of control?Brann2009-12-13T09:50:18Z2009-12-13T09:50:18Z@Ken: Unfortunately, most people relying on exceptions are re-using standard exceptions. Or, to be more specific, they let the CLR raise those exceptions (eg they don't test a variable for nullity, and handle the nullref if needed). That being said, even with user exceptions, my point still stands, unless you rely on a different exception type each time you need to raise one, which doesn't seem very convenient either ... http://stackoverflow.com/questions/729379/why-not-use-exceptions-as-regular-flow-of-control/729412#729412Comment by Brann on Why not use exceptions as regular flow of control?Brann2009-12-11T10:53:02Z2009-12-11T10:53:02Z@Ken : let's say I rely here and there on NullReferenceException to handle my control flow. Do you advocate disabling nullref exception catching in your environment development? If you do so, what if an unexpected (ie, not used for regular control flow ) nullref exception is raised? You simply don't have any way to locate it easily (since if you catch nullref exceptions, you'll be stuck in endless loops raising nullref exceptions every few milliseconds for 'regular control flow reasons' ...http://stackoverflow.com/questions/1825336/should-i-revive-clippy-aka-how-can-i-provide-user-friendly-tips-and-help-in-a-d/1857393#1857393Comment by Brann on Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?Brann2009-12-07T08:59:20Z2009-12-07T08:59:20ZUnfortunately, I'm afraid the users I'm targetting are not going to watch any screencats, nor read any manual for that matter... That's why I want to provide inline contextual helphttp://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1011523#1011523Comment by Brann on What are common UI misconceptions and annoyances?Brann2009-12-03T09:57:15Z2009-12-03T09:57:15Z@Sam : Some programs will ask you "Do you want to save before exiting?" while others will ask "Are you sure you want to exit without saving?". Closing dialogs without reading them (which is what you do in your autopilot mode) is common among users, and often result in catastrophes. Are you going to tell me you never witnessed this ??http://stackoverflow.com/questions/1825336/should-i-revive-clippy-aka-how-can-i-provide-user-friendly-tips-and-help-in-a-d/1825673#1825673Comment by Brann on Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?Brann2009-12-01T12:56:20Z2009-12-01T12:56:20ZFixing Clippy might be possible, but it would require a huge amount of work. I'd like to focus on my business, not on AI algorithms and 3D rendering ...http://stackoverflow.com/questions/1825336/should-i-revive-clippy-aka-how-can-i-provide-user-friendly-tips-and-help-in-a-dComment by Brann on Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?Brann2009-12-01T11:30:46Z2009-12-01T11:30:46Z@Mark : and to answer your initial question : I don't imply my UI is perfect (it is certainly not!). But once all the relevant things have been done to improve it, there can be a remaining complexity that can't be addressed by "rethinking the UI". Thus my search for other ways to tackle the issue, including help/tooltips/clippy/etc. Think as an airliner cockpit for example. http://stackoverflow.com/questions/1825336/should-i-revive-clippy-aka-how-can-i-provide-user-friendly-tips-and-help-in-a-d/1825431#1825431Comment by Brann on Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?Brann2009-12-01T11:27:30Z2009-12-01T11:27:30ZI like this solution, which is an improved "?" button. But it doesn't address some of the problem of an efficient help, including answers to the "where do I start? what do I do next" problem. It also doesn't help you grasp a whole interface in an eye glance.http://stackoverflow.com/questions/1825336/should-i-revive-clippy-aka-how-can-i-provide-user-friendly-tips-and-help-in-a-dComment by Brann on Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?Brann2009-12-01T11:23:54Z2009-12-01T11:23:54Z@Mark : what about Word - or other text editors? It's obvious MS has put <i>a lot</i> of effort into polishing the UI, but still it's very confusing to new users. I consider myself as a power-user, but still there are some things here and there I don't understand immediately. Take word 2007 and show the rulers for example. Do you see the "left tab" button on the left? What is it for? Is it obvious ?http://stackoverflow.com/questions/1608459/why-is-my-wcf-server-returning-empty-responses-using-protobuf-net/1716875#1716875Comment by Brann on Why is my WCF server returning empty responses using protobuf-net ?Brann2009-11-12T09:18:05Z2009-11-12T09:18:05Z@Marc: Thanks for your support and time. I'll try the .config thing and hopefully confirm you it solved the problem :)http://stackoverflow.com/questions/20564/what-constitutes-beautiful-code/20570#20570Comment by Brann on What constitutes beautiful code?Brann2009-11-07T16:49:48Z2009-11-07T16:49:48ZArt is maybe partially objective, but "good art" is definitely subjective. Regarding blue canvas, see : "Suprematist Composition : White on White" by Kazimir Malevich <a href="http://www.moma.org/collection/browse_results.php?object_id=80385" rel="nofollow">moma.org/collection/…</a>, worth thousands of dollar ...http://stackoverflow.com/questions/1644414/why-is-the-winforms-designer-ignoring-attributes-on-overriden-propertiesComment by Brann on Why is the winforms designer ignoring attributes on overriden properties ?Brann2009-10-30T10:14:49Z2009-10-30T10:14:49Zvs2008 v9.0.30729.1 SPhttp://stackoverflow.com/questions/1630968/how-can-i-use-a-ssl-wildcard-certificate-to-mutually-authenticate-several-wcf-ser/1634749#1634749Comment by Brann on How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?Brann2009-10-28T11:02:26Z2009-10-28T11:02:26ZI am using transport security. This id defined in the binding section like this :
<security mode="Transport">
<transport clientCredentialType="Certificate" protectionLevel="EncryptAndSign">
</transport>http://stackoverflow.com/questions/1630968/how-can-i-use-a-ssl-wildcard-certificate-to-mutually-authenticate-several-wcf-ser/1634749#1634749Comment by Brann on How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?Brann2009-10-28T10:43:34Z2009-10-28T10:43:34ZYes, my certificate can be used as an X509 certificate (Just asked Comodo)