User Doubt - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:23:14Z http://stackoverflow.com/feeds/user/2564 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1681856/restful-route-customization/1681910#1681910 0 Answer by Doubt for restful route customization Doubt 2009-11-05T16:43:49Z 2009-11-05T16:43:49Z <p>StackOverflow ignores the string second parameter at request processing time. At URL construction time it adds it for humans and (probably) SEO.</p> http://stackoverflow.com/questions/1557710/winhttp-how-to-use-a-temporary-certificate-store/1681864#1681864 0 Answer by Doubt for WinHttp: How to use a temporary certificate store? Doubt 2009-11-05T16:39:10Z 2009-11-05T16:39:10Z <p>Since you don't want other applications to trust this cert, you need to do part of the certificate validation yourself. Disable the CA check with the option SECURITY_FLAG_IGNORE_UNKNOWN_CA and then get the call back for connecting to the server WINHTTP_CALLBACK_STATUS_CONNECTING_TO_SERVER. In that callback fetch the cert with WINHTTP_OPTION_SERVER_CERT_CONTEXT and do your validation. Cancel/Close the request if it's not who you want, continue the request if it's correct.</p> http://stackoverflow.com/questions/1463059/specify-which-network-card-connection-winhttp-must-use/1493921#1493921 0 Answer by Doubt for Specify which Network Card/Connection Winhttp Must Use Doubt 2009-09-29T17:25:51Z 2009-09-29T17:25:51Z <p>There is no publically available option for WinHTTP or WinInet to do Interface Affinity. It appears to be supported in System.Net via the BindIPEndPointDelegate on the Request's ServicePoint.</p> <p>I am curious what the scenario is to force a specific interface since it points to a problem in the rest of the stack to need such a thing.</p> http://stackoverflow.com/questions/1110183/in-the-windows-api-is-there-a-generic-method-which-will-give-you-the-appropriate/1439463#1439463 0 Answer by Doubt for In the windows API, is there a generic method which will give you the appropriate HTTP proxy for a URL? Doubt 2009-09-17T15:06:47Z 2009-09-17T15:06:47Z <p>The INS format is for IE, try <a href="http://msdn.microsoft.com/en-us/library/aa384096%28VS.85%29.aspx" rel="nofollow">WinHttpGetIEProxyConfigForCurrentUser()</a> to get that configuration.</p> http://stackoverflow.com/questions/1265338/how-to-retrieve-cookies-for-a-specific-site-and-path-in-winhttp/1436355#1436355 0 Answer by Doubt for How to retrieve cookies for a specific site and path in winhttp Doubt 2009-09-17T01:47:05Z 2009-09-17T14:51:35Z <p>Use the WINHTTP_CALLBACK_STATUS_SENDING_REQUEST notification as a chance to inspect the cookie headers winhttp put by default on the request and then add the md5 header before returning from the callback.</p> http://stackoverflow.com/questions/26065/model-based-testing-strategies 6 Model Based Testing Strategies Doubt 2008-08-25T13:57:42Z 2009-09-01T16:38:56Z <p>What strategies have you used with Model Based Testing?</p> <ul> <li>Do you use it exclusively for integration testing, or branch it out to other areas (unit/functional/system/spec verification)? </li> <li>Do you build focused "sealed" models or do you evolve complex onibus models over time?</li> <li>When in the product cycle do you invest in creating MBTs?</li> <li>What sort of base test libraries do you exclusively create for MBTs?</li> <li>What difference do you make in your functional base test libraries to better support MBTs?</li> </ul> http://stackoverflow.com/questions/565824/can-someone-give-me-an-example-of-a-unmanaged-c-html-client-with-proxy-support/566553#566553 1 Answer by Doubt for Can someone give me an example of a Unmanaged C++ HTML Client with proxy support? Doubt 2009-02-19T18:27:17Z 2009-02-19T18:27:17Z <p>Call <a href="http://msdn.microsoft.com/en-us/library/aa384096.aspx" rel="nofollow">WinHttpGetIEProxyConfigForCurrentUser</a> to get the proxy configuration and then use the HTTP stack of your choice. I would avoid implementing your own psuedo HTTP stack, getting it right is more work then you probably think.</p> http://stackoverflow.com/questions/57560/how-do-i-check-that-a-windows-qfe-patch-has-been-installed-from-c 1 How do I check that a Windows QFE/patch has been installed from c#? Doubt 2008-09-11T20:38:31Z 2008-10-15T17:04:32Z <p>What's the best way in c# to determine is a given QFE/patch has been installed?</p> http://stackoverflow.com/questions/26072/reconnect-logic-with-connectivity-notifications 0 Reconnect logic with connectivity notifications Doubt 2008-08-25T14:04:49Z 2008-08-25T14:39:11Z <p>Say I have an application that wants a persistant connection to a server. How do I implement connection/reconnection logic so that I'm not wasting resources (power/bandwidth) and I have fast reconnect time when connectivity appears/improves? If I only use connectivity notifications, I can get stuck on problems not related to the local network.</p> <p>Bonus if you could show me the C# version.</p> http://stackoverflow.com/questions/25999/secure-online-highscore-lists-for-non-web-games/26036#26036 1 Answer by Doubt for Secure Online Highscore Lists for Non-Web Games Doubt 2008-08-25T13:36:01Z 2008-08-25T13:36:01Z <p>As the other answer says, you are forced to trust a potentially malicious client, and a simple deterant plus a little human monitoring is going to be enough for a small game.</p> <p>If you want to get fancy, you then have to look for fraud patterns in the score data, simmular to a credit card company looking at charge data. The more state the client communicates onto your server, the potentially easier it is to find a pattern of correct or incorrect behavior via code. For example. say that the client had to upload a time based audit log of the score (which maybe you can also use to let another clients watch the top games), the server can then validate if the score log breaks any of the game rules.</p> <p>In the end, this is still about making it expensive enough to discourage cheating the scoreboard. You would want a system where you can always improve the (easier to update)server code to deal with any new attacks on your validation system.</p> http://stackoverflow.com/questions/24451/goto-usage/24466#24466 2 Answer by Doubt for 'goto' usage Doubt 2008-08-23T18:30:28Z 2008-08-23T18:30:28Z <p>The rule with goto that we use is that goto is okay to for jumping forward to a single exit cleanup point in a function. In really complex functions we relax that rule to allow other jump forwards. In both cases we are avoiding deeply nested if statements that often occur with error code checking, which helps readability and maintance.</p> http://stackoverflow.com/questions/14656/can-a-proxy-server-cache-ssl-gets-if-not-would-response-body-encryption-suffice/23809#23809 1 Answer by Doubt for Can a proxy server cache SSL GETs? If not, would response body encryption suffice? Doubt 2008-08-23T01:01:24Z 2008-08-23T01:01:24Z <p>I think you should just use SSL and rely on an HTTP client library that does caching (Ex: WinInet on windows). It's hard to imagine that the benifits of enterprise wide caching is worth the pain of writing a custom security encryption scheme or certificate fun on the proxy. Worse, on the encyrption scheme you mention, doing asynmetric ciphers on the entity body sounds like a huge perf hit on the server side of your application; there is a reason that SSL uses symmetric ciphers for the actual payload of the connection.</p>