User rally25rs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T13:34:48Z http://stackoverflow.com/feeds/user/28278 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1752646/unable-to-connect-to-the-remote-server/1756595#1756595 0 Answer by rally25rs for "Unable to connect to the remote server" rally25rs 2009-11-18T15:00:07Z 2009-11-18T15:00:07Z <p>See my comments on other people's posts too, but in addition, related to your diagnostic log, this is the XML that I have in my config to dump a WCF trace log:</p> <pre><code>&lt;configuration&gt; &lt;system.diagnostics&gt; &lt;sources&gt; &lt;source name="System.ServiceModel" switchValue="Information, ActivityTracing" propagateActivity="true"&gt; &lt;listeners&gt; &lt;add name="traceListener" type="System.Diagnostics.XmlWriterTraceListener" initializeData= "MyService.svclog" /&gt; &lt;/listeners&gt; &lt;/source&gt; &lt;/sources&gt; &lt;/system.diagnostics&gt; &lt;/configuration&gt; </code></pre> http://stackoverflow.com/questions/1750214/can-i-use-js-encryption-instead-of-ssl-for-credit-card-payments/1750471#1750471 6 Answer by rally25rs for Can I use JS encryption instead of SSL for credit card payments? rally25rs 2009-11-17T17:32:09Z 2009-11-17T20:45:20Z <p>While technically the data encrypted in JS would be similar to encrypting it with a real cert, I think you are missing a key element here; TRUST. When using a real SSL cert from a trusted provider, you are making a circle of trust:</p> <ul> <li>Customer trusts Microsoft</li> <li>Microsoft trusts GoDaddy/Verisign/whoever (by virtue of Windows or any other web browser shipping with the root certificates)</li> <li>GoDaddy/Verisign/whoever trusts You (by virtue of you having bought a cert from them, and they verify your identity)</li> <li>Green lights and locks appear in web browser, and user can inspect the certs themselves if they want, Which in turn means Customer trusts You.</li> </ul> <p>When you just have an unsecured web site, with the words "your data is secure, just ignore what your web browser is telling you", then the customer does not trust you.</p> <p>(and if they do, then forward me their info, I have a bridge to sell them...)</p> <p>Also, for what it's worth, there are standards from the major CC companies on how to handle and store credit card info. Google "PCI DSS" for details, or: <a href="https://www.pcisecuritystandards.org/security%5Fstandards/pci%5Fdss.shtml" rel="nofollow">https://www.pcisecuritystandards.org/security_standards/pci_dss.shtml</a></p> http://stackoverflow.com/questions/1334574/c-datatypes-oracle-datatypes/1751349#1751349 0 Answer by rally25rs for c# datatypes -> oracle datatypes rally25rs 2009-11-17T19:57:08Z 2009-11-17T19:57:08Z <p>I'm not sure if this helps or not, but this was taken from the ODP.NET assembly using .NET Reflector:</p> <pre><code>internal static void InsertTableEntries() { s_table.Add(typeof(byte), OracleDbType.Byte); s_table.Add(typeof(byte[]), OracleDbType.Raw); s_table.Add(typeof(char), OracleDbType.Varchar2); s_table.Add(typeof(char[]), OracleDbType.Varchar2); s_table.Add(typeof(DateTime), OracleDbType.TimeStamp); s_table.Add(typeof(short), OracleDbType.Int16); s_table.Add(typeof(int), OracleDbType.Int32); s_table.Add(typeof(long), OracleDbType.Int64); s_table.Add(typeof(float), OracleDbType.Single); s_table.Add(typeof(double), OracleDbType.Double); s_table.Add(typeof(decimal), OracleDbType.Decimal); s_table.Add(typeof(string), OracleDbType.Varchar2); s_table.Add(typeof(TimeSpan), OracleDbType.IntervalDS); s_table.Add(typeof(OracleBFile), OracleDbType.BFile); s_table.Add(typeof(OracleBinary), OracleDbType.Raw); s_table.Add(typeof(OracleBlob), OracleDbType.Blob); s_table.Add(typeof(OracleClob), OracleDbType.Clob); s_table.Add(typeof(OracleDate), OracleDbType.Date); s_table.Add(typeof(OracleDecimal), OracleDbType.Decimal); s_table.Add(typeof(OracleIntervalDS), OracleDbType.IntervalDS); s_table.Add(typeof(OracleIntervalYM), OracleDbType.IntervalYM); s_table.Add(typeof(OracleRefCursor), OracleDbType.RefCursor); s_table.Add(typeof(OracleString), OracleDbType.Varchar2); s_table.Add(typeof(OracleTimeStamp), OracleDbType.TimeStamp); s_table.Add(typeof(OracleTimeStampLTZ), OracleDbType.TimeStampLTZ); s_table.Add(typeof(OracleTimeStampTZ), OracleDbType.TimeStampTZ); s_table.Add(typeof(OracleXmlType), OracleDbType.XmlType); s_table.Add(typeof(OracleRef), OracleDbType.Ref); } </code></pre> <p>Internally it looks like ODP.NET uses this (and a few other maps) to determine data types. Also, to handle the NUMBER data type:</p> <pre><code>internal static OracleDbType ConvertNumberToOraDbType(int precision, int scale) { OracleDbType @decimal = OracleDbType.Decimal; if ((scale &lt;= 0) &amp;&amp; ((precision - scale) &lt; 5)) { return OracleDbType.Int16; } if ((scale &lt;= 0) &amp;&amp; ((precision - scale) &lt; 10)) { return OracleDbType.Int32; } if ((scale &lt;= 0) &amp;&amp; ((precision - scale) &lt; 0x13)) { return OracleDbType.Int64; } if ((precision &lt; 8) &amp;&amp; (((scale &lt;= 0) &amp;&amp; ((precision - scale) &lt;= 0x26)) || ((scale &gt; 0) &amp;&amp; (scale &lt;= 0x2c)))) { return OracleDbType.Single; } if (precision &lt; 0x10) { @decimal = OracleDbType.Double; } return @decimal; } </code></pre> http://stackoverflow.com/questions/521999/what-good-code-programmer-geek-tattoos-have-you-seen 22 What good code / programmer / geek tattoos have you seen? [closed] rally25rs 2009-02-06T20:15:17Z 2009-11-15T16:21:34Z <p>My wife and I want to get tattoos. I've always wanted one, but always struggled with what to get.</p> <p>I almost got a bicycle sprocket/chainring bent into an infinity symbol back when I was racing mountain bikes a lot. I've since got out of the sport, so the 'infinity' wouldn't be too appropriate any more :)</p> <p>Anyway, what good coder / programmer / general geek tattoos do you have, or have you seen? Give me some inspiration here!</p> http://stackoverflow.com/questions/1724589/download-a-directory-over-http-in-java/1724908#1724908 1 Answer by rally25rs for Download a directory over HTTP in Java rally25rs 2009-11-12T19:50:29Z 2009-11-13T15:19:13Z <p>Assuming you have control over both the server and client, I would write a page (in your favorite technology of your choice; ASP, JSP, PHP, etc) that reads the server directory structure, and dynamically returns a page that consists of a bunch of links to each file to be downloaded.</p> <p>Then client side you can trigger a download of each link.</p> <p>What is the client side technology? is the thing doing the downloading an application of some sort, or a web browser? Does it have to have a client interface?</p> <p><hr></p> <p>If this is some sort of in-house utility program, maybe you can just FTP instead? Having FTP access open on a server and downloading a directory would be easy...</p> <p><hr></p> <p><strong>Adding another possible answer:</strong></p> <p>If the server does not have directory listings turned on, then you basically have to make a modification server side. The easiest thing would be to just make a page that returns the dir structure to the client in a known format (see my 1st answer above).</p> <p>If you control the server and have directory listings on, <em>and</em> you are always using the same server program (IIS, Tomcat, JBoss, etc) then you might be able to just make the client webcrawl the directory listings. For example, in a directory listing from IIS, you can tell which links are directories and which are files because it always puts a '/' at the end of a directory link, and shows 'dir' instead of a file size:</p> <pre><code> Friday, October 16, 2009 03:55 PM &amp;lt;dir&amp;gt; &lt;A href="Unity/"&gt;Unity&lt;/A&gt; Thursday, July 02, 2009 10:42 AM 95 &lt;A href="Global.asax"&gt;Global.asax&lt;/A&gt; </code></pre> <p>You can tell here that the 1st link is a directory, and the 2nd is an actual file.</p> <p>So if you are using a consistent server app, just take a look at how the directory listing is returned. Maybe you'll get lucky.</p> http://stackoverflow.com/questions/1717702/which-addin-is-recommended-for-visual-studio-2008-c/1717811#1717811 1 Answer by rally25rs for Which addin is recommended for Visual Studio 2008 (C#) ? rally25rs 2009-11-11T20:22:07Z 2009-11-11T20:22:07Z <p><strong><em>Seriously?</em></strong> Try the search. Just on the 1st page of results:</p> <p><a href="http://stackoverflow.com/questions/969225/suggest-good-addins-tools-for-visual-studio-netall-the-versions-2005-2008-etc">http://stackoverflow.com/questions/969225/suggest-good-addins-tools-for-visual-studio-netall-the-versions-2005-2008-etc</a></p> <p><a href="http://stackoverflow.com/questions/49080/what-are-the-best-visual-studio-addins">http://stackoverflow.com/questions/49080/what-are-the-best-visual-studio-addins</a></p> <p><a href="http://stackoverflow.com/questions/2767/do-you-have-any-recommended-add-ons-plugins-for-microsoft-visual-studio">http://stackoverflow.com/questions/2767/do-you-have-any-recommended-add-ons-plugins-for-microsoft-visual-studio</a></p> <p><a href="http://stackoverflow.com/questions/106340/what-is-your-favorite-visual-studio-add-in-setting">http://stackoverflow.com/questions/106340/what-is-your-favorite-visual-studio-add-in-setting</a></p> <p>I'd vote to close as a duplicate, but aparently I can't...</p> http://stackoverflow.com/questions/1395498/stop-iis-7-application-pool-from-build-script/1676329#1676329 0 Answer by rally25rs for Stop IIS 7 Application Pool from build script rally25rs 2009-11-04T20:16:30Z 2009-11-05T14:24:53Z <p>this is the fairly hackey workaround I ended up using:</p> <p>1) Set up a limited-access account for your service to run as. Since I'm running a CruiseControl.NET service, I'll call my user 'ccnet'. He does NOT have admin rights.</p> <p>2) Make a new local user account, and assign to the Administrators group (I'll call him 'iis_helper' for this example). Give him some password, and set it to never expire.</p> <p>3) Change iis_helper's access permissions to NOT allow local login or remote desktop login, and anything else you might want to do to lock down this account.</p> <p>4) Log in (either locally or through remote desktop) as your non-admin user, 'ccnet' in this example.</p> <p>5) Open a command terminal, and use the 'runas' command to execute whatever it is that needs to be run escalated. Use the /savecred option. Specify your new administrative user.</p> <pre><code>runas /savecred /user:MYMACHINE\iis_helper "C:\Windows\System32\inetsrv\appcmd.exe" </code></pre> <p>The first time it will prompt you for 'iis_helper's password. After that, it will be stored thanks to the /savecred option (this is why we're running it once from a real command prompt, so we can enter the password once).</p> <p>6) Assuming that command executed OK, you can now log out. I then logged back in as a local admin and turned off the 'ccnet' user for local interactive login, and remote desktop. The account is only used to run a service, but no real logins. This isnt a mandatory step.</p> <p>7) Set up your service to run as your user account ('ccnet').</p> <p>8) Configure whatever service is running (CruiseControl.NET in my case) to execute the 'runas' command instead of 'appcmd.exe' directly, the same as before:</p> <p>replace:</p> <pre><code>"C:\Windows\System32\inetsrv\appcmd.exe" start site "My Super Site" </code></pre> <p>with:</p> <pre><code>runas /savecred /user:MYMACHINE\iis_helper "\"C:\Windows\System32\inetsrv\appcmd.exe\" start site \"My Super Site\"" </code></pre> <p>The thing to note there is that the command should be in one set of quotes, with all the inner quotes escaped (slash-quote).</p> <p>9) Test, call it a day, hit the local pub.</p> <p><hr></p> <p><strong>Edit</strong>: I apparently did #9 in the wrong order and had a few too many before testing...</p> <p>This method also doesn't completely work. It <em>does</em> attempt to run as the administrative account, however it still runs as a non-escalated process under the administrative user, so still no admin permissions. I didn't initially catch the failure because the 'runas' command spawns a separate cmd window then closes right away, so I wasn't seeing the failure output.</p> <p>Its starting to seem like the only real possibility might be writing a windows service that will run as admin, and its only purpose is to run appcmd.exe, then somehow call that service to start/stop IIS.</p> <p>Isn't it great how UAC is there to secure things, but in actuality just unsecures more servers, because anything you want to do you have to do as admin, so its easier to just always run everything as admin and forget it?</p> http://stackoverflow.com/questions/1669124/ie-6-and-ie-7-on-same-computer-for-debugging/1669289#1669289 0 Answer by rally25rs for IE 6 and IE 7 on same computer for debugging rally25rs 2009-11-03T18:33:21Z 2009-11-03T18:33:21Z <p>You can also use Microsoft's own <em>Expression Web SuperPreview</em></p> <p>Download page: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8e6ac106-525d-45d0-84db-dccff3fae677&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=8e6ac106-525d-45d0-84db-dccff3fae677&amp;displaylang=en</a></p> <p>Further info: <a href="http://expression.microsoft.com/en-us/dd565874.aspx" rel="nofollow">http://expression.microsoft.com/en-us/dd565874.aspx</a></p> <p>Edit:</p> <p>Sorry I didn't notice your "...and debug it..." statement in the original post. I think SuperPreview will just show a side-by-side visual comparison. If you need to debug javascript or anything like that, then I would use the virtualization methods mentioned above. (In practice I actually use virtualization for testing, but I figured I'd suggest something different.)</p> http://stackoverflow.com/questions/1614003/restricting-an-ip-if-it-is-between-an-ip-range/1614153#1614153 1 Answer by rally25rs for Restricting an IP if it is between an IP Range. rally25rs 2009-10-23T15:16:04Z 2009-10-23T15:16:04Z <p>I would write my IPRange class so that the getter/setters internally convert the IP string to a number:</p> <pre><code>new IPRange { From = "145.36.0.0", To = "145.36.255.255" } </code></pre> <p>Would internally set:</p> <pre><code>int from = 145036000000; int to = 145036255255; </code></pre> <p>Then add a .IsInRange(string ip) method that converts the incoming IP to the name int form and does a plain comparison.</p> <pre><code>public bool IsInRange(string ipStr) { int ip = ConvertIPStringToInt(ipStr); return (from &lt;= ip &amp;&amp; ip &lt;= to); } </code></pre> <p>That way you dont have to split the IPs in the range by periods each time its checked.</p> http://stackoverflow.com/questions/1613964/how-can-i-reference-a-method-from-another-class-without-instantiating-it/1614024#1614024 0 Answer by rally25rs for How can I reference a method from another class without instantiating it? rally25rs 2009-10-23T14:57:13Z 2009-10-23T14:57:13Z <p>I would usually either pass a reference of my form ('foo' in this case) to the other class. Or I would store off a copy of 'foo' to some static location. If you know that there will only ever be 1 instance of 'foo' you could do something like:</p> <pre><code>public class foo { public static foo Current { get; private set; } public foo() { foo.Current = this; } public void SetString(string foo) { label1.Text = foo; } } </code></pre> <p>...and...</p> <pre><code>foo.Current.SetString("testlololol"); </code></pre> <p>Though thats a bit hacky IMO, and doesnt support multiple instances of 'foo'.</p> http://stackoverflow.com/questions/1613883/c-listt-orderby-always-returning-null/1613938#1613938 0 Answer by rally25rs for C# List<T> OrderBy always returning null... rally25rs 2009-10-23T14:43:45Z 2009-10-23T14:43:45Z <p>I think your issue is the " as ItemList".</p> http://stackoverflow.com/questions/363591/why-do-programmers-have-such-ridiculously-prickly-personalities/363816#363816 7 Answer by rally25rs for Why do programmers have such ridiculously prickly personalities? rally25rs 2008-12-12T19:05:09Z 2009-10-16T10:04:03Z <p>For me personally, I find two major reasons:</p> <ol> <li><p>I'm very <a href="http://en.wikipedia.org/wiki/ADD" rel="nofollow">A.D.D.</a> I get totally focused on one action for a while, and I don't want to be interrupted, or I will loose focus for days.</p></li> <li><p>When I get home from work, I've usually been thinking intensely for hours on end. My brain is tired. I don't want to have to think about what's for dinner, or what I want to do tonight. I just want to veg-out for a while. Now physically, I'm ready to go. I'll work on the house or on my car without complaint. Just don't try to make me think!</p></li> </ol> http://stackoverflow.com/questions/1540163/c-windows-mobile-standard-back-button-wont-close-the-app/1540199#1540199 0 Answer by rally25rs for c# windows mobile standard - Back button won't close the app rally25rs 2009-10-08T20:25:29Z 2009-10-08T20:25:29Z <p>I'm not sure exactly what you mean by the 'back button', but the default behavior in windows mobile for all apps is that the "X" button on the app that would be the "close" button in standard Windows, actually behaves like "minimize" and moves the app to the background.</p> <p>To really "close" the application, you would normally go into the windows mobile task manager and end the application.</p> http://stackoverflow.com/questions/1540103/data-bind-enum-properties-to-grid-and-display-description/1540155#1540155 1 Answer by rally25rs for Data bind enum properties to grid and display description rally25rs 2009-10-08T20:17:33Z 2009-10-08T20:17:33Z <p>I'm not sure how much this helps, but I use an extension method on Enum that looks like this:</p> <pre><code> /// &lt;summary&gt; /// Returns the value of the description attribute attached to an enum value. /// &lt;/summary&gt; /// &lt;param name="en"&gt;&lt;/param&gt; /// &lt;returns&gt;The text from the System.ComponentModel.DescriptionAttribute associated with the enumeration value.&lt;/returns&gt; /// &lt;remarks&gt; /// To use this, create an enum and mark its members with a [Description("My Descr")] attribute. /// Then when you call this extension method, you will receive "My Descr". /// &lt;/remarks&gt; /// &lt;example&gt;&lt;code&gt; /// enum MyEnum { /// [Description("Some Descriptive Text")] /// EnumVal1, /// /// [Description("Some More Descriptive Text")] /// EnumVal2 /// } /// /// static void Main(string[] args) { /// Console.PrintLine( MyEnum.EnumVal1.GetDescription() ); /// } /// &lt;/code&gt; /// /// This will result in the output "Some Descriptive Text". /// &lt;/example&gt; public static string GetDescription(this Enum en) { var type = en.GetType(); var memInfo = type.GetMember(en.ToString()); if (memInfo != null &amp;&amp; memInfo.Length &gt; 0) { var attrs = memInfo[0].GetCustomAttributes(typeof(DescriptionAttribute), false); if (attrs != null &amp;&amp; attrs.Length &gt; 0) return ((DescriptionAttribute)attrs[0]).Description; } return en.ToString(); } </code></pre> <p>You could use a custom property getter on your object to return the name:</p> <pre><code>public class TestResult { public string TestDescription { get; set; } public ExpectationResult RequiredExpectationResult { get; set; } public ExpectationResult NonRequiredExpectationResult { get; set; } /* *** added these new property getters *** */ public string RequiredExpectationResultDescr { get { return this.RequiredExpectationResult.GetDescription(); } } public string NonRequiredExpectationResultDescr { get { return this.NonRequiredExpectationResult.GetDescription(); } } } </code></pre> <p>Then bind your grid to the "RequiredExpectationResultDescr" and "NonRequiredExpectationResultDescr" properties.</p> <p>That might be a little over-complicated, but its the 1st thing I came up with :)</p> http://stackoverflow.com/questions/1535759/success-stories-for-javafx/1540119#1540119 0 Answer by rally25rs for Success stories for JavaFX rally25rs 2009-10-08T20:08:56Z 2009-10-08T20:08:56Z <p>I haven't seen or heard much real, large-scale use myself.</p> <p>I tried to do a simple little project with it, and it initially seemed awesome, but then I hit a bunch of bugs. This was back when it was still beta though.</p> http://stackoverflow.com/questions/1520060/can-net-apps-run-side-by-side-a-wcf-service-site/1520135#1520135 1 Answer by rally25rs for Can .net apps run side by side a WCF service site? rally25rs 2009-10-05T13:39:04Z 2009-10-05T13:39:04Z <p>Yes it is. IIS treats the svc files just like an aspx page and hands processing off to another module. I have a few sites running this way.</p> http://stackoverflow.com/questions/1520016/chain-overloading-constructors/1520099#1520099 0 Answer by rally25rs for Chain-overloading constructors? rally25rs 2009-10-05T13:32:33Z 2009-10-05T13:32:33Z <p>I prefer #1, the chaining constructors, from a maintenance perspective. When someone comes back to edit the code later on, you wouldn't want them to edit the initialise() method and not realize that it is being called from a constructor. I think it is more intuitive to have all the functional parts in a constructor of some kind.</p> <p>Personally, I use constructor chaining like that all the time.</p> http://stackoverflow.com/questions/1356565/how-to-start-a-single-project-without-debugging-in-visual-studio/1499403#1499403 0 Answer by rally25rs for How to start a single project without debugging in Visual Studio? rally25rs 2009-09-30T16:56:31Z 2009-09-30T16:56:31Z <p>I've been trying to do the same thing. It seems like an oversight by the VS team that you can start with or without debug at the solution level, but only with debug at the project level.</p> <p>One thing that I've noticed is that if you right-click on a toolbar and choose "Customize", in the popup window of actions, go to Category "Project". In there, there is a command for "Run" and "Run Selected". Interesting, I added both to my project context menu, and to the main button bar, and the items seem to <em>always</em> be disabled.</p> <p>Also interesting, the project context menu's "Debug | Start New Instance" command is nowhere to be found in the list of customizable commands. I looked through almost every category and couldn't find it.</p> <p>Hopefully someone comes up with a good way to do this... it would be really handy!</p> http://stackoverflow.com/questions/1092817/net-declarative-security-why-is-securityaction-deny-impossible-to-work-with 0 .NET Declarative Security: Why is SecurityAction.Deny impossible to work with? rally25rs 2009-07-07T14:54:38Z 2009-09-27T07:00:03Z <p>I've been messing with this for about a day and a half now sifting through .NET reflector and MSDN docs, and can't figure anything out...</p> <p>As it stands in the .NET framework, you can demand that the current Principal belong to a role to be able to execute a method by marking a method like this:</p> <pre><code>[PrincipalPermission(SecurityAction.Demand, Role = "CanEdit")] public void Save() { ... } </code></pre> <p>I am working with an existing security model that already has a "ReadOnly" role defined, so I need to do exactly the opposite of above... block the Save() method if a user is in the "ReadOnly" role. No problem, right? just flip the SecurityAction to .Deny:</p> <pre><code>[PrincipalPermission(SecurityAction.Deny, Role = "ReadOnly")] public void Save() { ... } </code></pre> <p>Well, it turns out that this does nothing at all. The method still runs fine. It seems that the PrincipalPermissionAttribute defines:</p> <pre><code>public override IPermission CreatePermission() </code></pre> <p>But when the attribute is set to SecurityAction.Deny, this method is never called, so no IPermission object is ever created. Does anyone know of a way to get .Deny to work? I've been trying to make a custom secutiry attribute, but even that doesn't work. I tried to get tricky and do:</p> <pre><code>public class MyPermissionAttribute : CodeAccessSecurityAttribute { private SecurityAction securityAction; public MyPermissionAttribute(SecurityAction action) : base(SecurityAction.Demand) { if (action != SecurityAction.Demand &amp;&amp; action != SecurityAction.Deny) throw new ArgumentException("Unsupported SecurityAction. Only Demand and Deny are supported."); this.securityAction = action; } public override IPermission CreatePermission() { // do something based on the SecurityAction... } } </code></pre> <p>Notice my attribute constructor always passes SecurityAction.Demand, which is the one action that would work previously. However, even in this case, the CreatePermission() method is still only called when the attribute is set to .Demand, and not .Deny! Maybe the runtime is actually checking the attribute instead of the SecurityAction passed to the CodeAccessSecurityAttribute constructor?</p> <p>I'm not sure what else to try here... anyone have any ideas? You wouldn't think it would be that hard to deny method access based on a role, instead of only demanding it. It really disturbed me that the default PrincipalPermission appears from within an IDE like it would be just fine doing a .Deny, and there is like a 1-liner in the MSDN docs that hint that it won't work. You would think the PrincipalPermissionAttribute constructor would throw an exception immediately if anything other that .Demand is specified, since that could create a big security hole! I never would have realized that .Deny does nothing at all if I hadn't been unit testing!</p> <p>Again, all this stems from having to deal with an existing security model that has a "ReadOnly" role that needs to be denied access, instead of doing it the other way around, where I cna just grant access to a role.</p> <p>Thanks for any help!</p> <p><hr /></p> <p>Quick followup:</p> <p>I can actually make my custom attribute work by doing this:</p> <pre><code>public class MyPermissionAttribute : CodeAccessSecurityAttribute { public SecurityAction SecurityAction { get; set; } public MyPermissionAttribute(SecurityAction action) : base(action) { } public override IPermission CreatePermission() { switch(this.SecurityAction) { ... } // check Demand or Deny } } </code></pre> <p>And decorating the method:</p> <pre><code>[MyPermission(SecurityAction.Demand, SecurityAction = SecurityAction.Deny, Role = "ReadOnly")] public void Save() { ... } </code></pre> <p>But that is terribly ugly, since I'm specifying both Demand and Deny in the same attribute. But it does work... </p> <p>Another interesting note: My custom class extends CodeAccessSecurityAttribute, which in turn only extends SecurityAttribute. If I cnage my custom class to directly extend SecurityAttribute, then nothing at all works. So it seems the runtime is definately looking for only CodeAccessSecurityAttribute instances in the metadata, and does something funny with the SecurityAction specified, even if a custom constructor overrides it.</p> http://stackoverflow.com/questions/563037/wcf-authentication-with-custom-clientcredentials-what-is-the-clientcredentialtyp 4 WCF Authentication with custom ClientCredentials: What is the clientCredentialType to use? rally25rs 2009-02-18T22:02:03Z 2009-09-17T15:53:07Z <p>I had to ditch the basic WCF UserName/Pwd security and implement my own custom client credentials to hold some more info beyond what is provided by default.</p> <p>I worked through<a href="http://msdn.microsoft.com/en-us/library/ms730868.aspx" rel="nofollow">this MSDN article</a>, but I'm missing something because it doesn't work.</p> <p>First, I have some custom ClientCredentials that provide a custom ClientCredentialsSecurityTokenManager:</p> <pre><code>public class CentralAuthCredentials : ClientCredentials { public override System.IdentityModel.Selectors.SecurityTokenManager CreateSecurityTokenManager() { return new CentralAuthTokenManager(this); } } public class CentralAuthTokenManager : ClientCredentialsSecurityTokenManager { private CentralAuthCredentials credentials; public CentralAuthTokenManager(CentralAuthCredentials creds) : base(creds) { this.credentials = creds; } public override SecurityTokenProvider CreateSecurityTokenProvider(SecurityTokenRequirement tokenRequirement) { if (this.IsIssuedSecurityTokenRequirement(tokenRequirement) || tokenRequirement.TokenType == CentralAuthToken.TOKEN_TYPE) return new CentralAuthTokenProvider(credentials.UserId, credentials.UserPassword, credentials.ImpersonateId, credentials.LoginType); else return base.CreateSecurityTokenProvider(tokenRequirement); } public override SecurityTokenAuthenticator CreateSecurityTokenAuthenticator(SecurityTokenRequirement tokenRequirement, out SecurityTokenResolver outOfBandTokenResolver) { outOfBandTokenResolver = null; if (this.IsIssuedSecurityTokenRequirement(tokenRequirement) || tokenRequirement.TokenType == CentralAuthToken.TOKEN_TYPE) return new CentralAuthTokenAuthenticator(); else return base.CreateSecurityTokenAuthenticator(tokenRequirement, out outOfBandTokenResolver); } public override SecurityTokenSerializer CreateSecurityTokenSerializer(SecurityTokenVersion version) { return new CentralAuthTokenSerializer(); } } </code></pre> <p>Now when I run the app, my custom credentials and token manager do get created. However, in the method:</p> <pre><code>CreateSecurityTokenProvider(SecurityTokenRequirement tokenRequirement) { ... } </code></pre> <p>The tokenRequirement.TokenType comes across as something other than my custom token. That brings up my <strong>1st question</strong>: How the heck does WCF know what the token requirements are?</p> <p>Also, the method:</p> <pre><code>public override SecurityTokenSerializer CreateSecurityTokenSerializer(SecurityTokenVersion version) { return new CentralAuthTokenSerializer(); } </code></pre> <p>Does get called once by the client, but none of the methods on the returned token serializer are ever called. This indicates to me that the custom token is never being sent across the wire. I assume this is because the call to CreateSecurityTokenProvider() never returned my custom token provider, since the SecurityTokenRequirement is never passed in indicating my custom token is needed.</p> <p>On the client side, I have:</p> <pre><code>public class CentralAuthorizationManagerClient : ClientBase&lt;ICentralAuthorizationManager&gt;, ICentralAuthorizationManager, IDisposable { public PFPrincipal GenerateToken() { if (!this.ChannelFactory.Endpoint.Behaviors.Contains(typeof(CentralAuthCredentials))) throw new ArgumentException("Must set CentralAuthCredentials before calling this method."); return base.Channel.GenerateToken(); } public PFPrincipal GenerateToken(CentralAuthToken token) { this.ChannelFactory.Endpoint.Behaviors.Remove&lt;ClientCredentials&gt;(); this.ChannelFactory.Endpoint.Behaviors.Add(new CentralAuthCredentials(token)); return this.GenerateToken(); } </code></pre> <p>These methods are basically supposed to remove the default credentials from the endpoint and attach a new instance of my custom CentralAuthCredentials. (I grabbed this Remove/Add combo from an MSDN article somewhere).</p> <p>In the configuration:</p> <pre><code> &lt;behaviors&gt; &lt;endpointBehaviors&gt; &lt;behavior name="Server2ServerEndpointBehavior"&gt; &lt;clientCredentials type="MyApp.Security.CentralAuthCredentials, MyApp"&gt; &lt;clientCertificate findValue="localhost" x509FindType="FindBySubjectName" storeLocation="CurrentUser" storeName="My" /&gt; &lt;serviceCertificate&gt; &lt;authentication certificateValidationMode="None" revocationMode="NoCheck" /&gt; &lt;/serviceCertificate&gt; &lt;/clientCredentials&gt; &lt;/behavior&gt; &lt;/endpointBehaviors&gt; &lt;/behaviors&gt; &lt;bindings&gt; &lt;wsHttpBinding&gt; &lt;binding name="wsHttpServer2Server"&gt; &lt;security mode="Message"&gt; &lt;message clientCredentialType="UserName" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/wsHttpBinding&gt; &lt;/bindings&gt; </code></pre> <p>Note that the behavior's clientCredentials type is set to my custom client credentials. However, at the moment I still have the binding's clientCredentialType set to "UserName". This brings up my <strong>2nd question</strong>: What the heck should clientCredentialType="?" be set to if I'm using custom credentials? According to MSDN, the available values for <em>Message</em> security are: <em>None</em>, <em>Windows</em>, <em>UserName</em>, <em>Certificate</em>, and <em>IssuedToken</em>.</p> <p>Any ideas? Hopefully I'm just missing something simple? There are like 6 more classes to the entire implementation, but I tried to only include the bits needed to understand the situation...</p> <p><hr /></p> <p><strong>UPDATE #1:</strong></p> <p>I've been working on this all day, and thanks to a few sources, I realized that part of what I was missing was the very last step on <a href="http://msdn.microsoft.com/en-us/library/ms731872.aspx" rel="nofollow">this page</a>, which is adding the TokenParameters to the binding, so that the binding knows what the token looks like. That is the answer to my original 1st question; "what the heck sets up the token requirements?" Answer: the TokenParameters assigned to the binding.</p> <p>So now I added the following extension which sets the TokenParameters on the binding:</p> <pre><code>public sealed class CentralAuthTokenBindingExtension : BindingElementExtensionElement { public CentralAuthTokenBindingExtension() : base() { } public override Type BindingElementType { get { return typeof(SymmetricSecurityBindingElement); } } protected override System.ServiceModel.Channels.BindingElement CreateBindingElement() { X509SecurityTokenParameters protectionParams = new X509SecurityTokenParameters(); protectionParams.InclusionMode = SecurityTokenInclusionMode.Never; SymmetricSecurityBindingElement innerBindingElement = new SymmetricSecurityBindingElement(); innerBindingElement.EndpointSupportingTokenParameters.SignedEncrypted.Add(new CentralAuthTokenParameters()); //innerBindingElement.MessageProtectionOrder = MessageProtectionOrder.SignBeforeEncrypt; innerBindingElement.ProtectionTokenParameters = protectionParams; return innerBindingElement; } } &lt;extensions&gt; &lt;bindingElementExtensions&gt; &lt;add name="CentralAuthCreds" type="MyApp.Security.Configuration.CentralAuthTokenBindingExtension, MyApp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /&gt; &lt;/bindingElementExtensions&gt; &lt;/extensions&gt; &lt;bindings&gt; &lt;customBinding&gt; &lt;binding name="wsHttpServer2Server"&gt; &lt;CentralAuthCreds /&gt; &lt;binaryMessageEncoding /&gt; &lt;httpTransport /&gt; &lt;/binding&gt; &lt;/customBinding&gt; &lt;/bindings&gt; </code></pre> <p>Well that gets me a step further. Now I get a new exception on the server: </p> <pre><code>"The security token manager cannot create a token authenticator for requirement ..." </code></pre> <p>It looks like WCF is using some default token manager to try to deal with my custom token, instead of my custom token handler (my custom token handler's constructor is never called). I <em>think</em> this is happening because for the <em>client</em>, I have this config:</p> <pre><code>&lt;endpointBehaviors&gt; &lt;behavior name="Server2ServerEndpointBehavior"&gt; &lt;clientCredentials type="MyApp.Security.CentralAuthCredentials, MyApp"&gt; </code></pre> <p>But on the <em>server</em> I don't have any equivalent to let it know about the custom client credentials. So, <strong>new question</strong>: Where in the config for the server do I tell it what the custom ClientCredentials are?</p> <p><hr /></p> <p><strong>Update #2:</strong></p> <p>Well, I finally figured out a bit more of the puzzle. I had only implemented a ClientCredentials implementation, thinking that the client sends creds, and thats it. The client doesnt authenticate the service, so I don't need custom ServiceCredentials. Well, I was wrong. The specified ServiceCredentials authenticates the token from the ClientCredentials, and vice-versa. So I just had to add a custom ServiceCredentials implementation that passed the same TokenSerializer and TokenAuthenticator classes.</p> <p>On to the next issue: WCF is now ignoring my x509 certs specified in config that were working fine with UserName auth. I'm going to open a whole new question for this one!</p> http://stackoverflow.com/questions/1297482/oracle-sql-what-is-the-point-of-this-decode-statement 2 Oracle SQL: What is the point of this DECODE statement? rally25rs 2009-08-19T02:07:48Z 2009-08-19T02:09:26Z <p>I'm working on maintaining some Oracle sql statements written by someone else, and all over the place I keep seeing this same pattern repeated in lots of statements and pl/sql blocks:</p> <pre><code>select DECODE(NVL(t1.some_column,'~'),'~',t2.some_column,t1.some_column) some_column from t1, t2 where ... </code></pre> <p>Now, isn't this identical to this much simpler statement?</p> <pre><code>select NVL(t1.some_column,t2.some_column) from t1, t2 where... </code></pre> <p>I'm not sure why the decode and nvl are being chained in the original query. It seems like a less efficient way of just doing nvl alone. Can someone explain this to me?</p> <p>Thanks for any insight!</p> http://stackoverflow.com/questions/1296073/in-wcf-is-there-a-way-to-set-servicecontract-namespace-assembly-wide 0 In WCF is there a way to set ServiceContract Namespace assembly-wide? rally25rs 2009-08-18T19:45:44Z 2009-08-18T19:47:33Z <p>In WCF land, you can specify a Namespace prefix for anything that has a [DataContract] like so:</p> <pre><code>[DataContract(Namespace="MyApp")] public class whatever... </code></pre> <p>However if you wanted to apply a common namespace to ALL data contracts assembly-wide, you can use the <a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.contractnamespaceattribute%28VS.95%29.aspx" rel="nofollow">ContractNamespaceAttribute</a>:</p> <pre><code>/* in AssemblyInfo.cs */ [assembly: ContractNamespace("MyApp", ClrNamespace = "MyApp")] /* in whatever.cs */ [DataContract] public class whatever... </code></pre> <p>Thats great, works fine. Now over on the ServiceContract side, I can do the same Namespace setup on the service interface:</p> <pre><code>[ServiceContract(Namespace="MyApp")] public interface whateverService... </code></pre> <p>But is there something comparable to [assembly: ContractNamespace] that can be used to set the Namespace for all [ServiceContract]s? I'd really like to avoid having to set it manually for however many services, its nice having it in 1 place for the data contracts. Since there is an assembly level namespace attribute for the data contracts, i'd hope there is one for the service contracts too...</p> http://stackoverflow.com/questions/1255148/how-can-i-make-my-web-page-not-be-copied/1255211#1255211 6 Answer by rally25rs for How can I make my web page not be copied? rally25rs 2009-08-10T14:27:54Z 2009-08-10T14:27:54Z <p>You can't. Especially once you throw in not wanting someone to be able to capture it with PrintScreen. If its a bunch of text, you could put it into an image, and that would prevent an easy copy/paste or just viewing source, but still someone could just retype it from the image. And if all else fails and the data is that sensitive, someone could take a picture of the computer screen with a camera-phone. You can't stop that.</p> <p>The real issue is that no data that is that sensitive should be available over the internet in the first place.</p> http://stackoverflow.com/questions/1214922/is-there-a-way-to-create-an-ado-net-connection-and-ignore-the-ambient-transaction 1 Is there a way to create an ADO.NET connection and ignore the ambient Transaction? rally25rs 2009-07-31T21:10:10Z 2009-08-02T14:52:13Z <p>I have a situation where I am running in a WCF service that has TransactionScopeRequired=true, which means there will always be an ambient transaction.</p> <p>However, I need to start a new connection that will be around for the lifetime of the application, which means I can't have it use the abmbient transaction.</p> <p>Any ideas on how to do this? Just doing this will automatically use the ambient transaction:</p> <pre><code>Assert.IsNotNull(System.Transactions.Transaction.Current); var conn = new OracleConnection("my connection string"); conn.Open(); // &lt;-- picks up ambient transaction, but I don't want that </code></pre> <p>Actually the example could be made simpler by saying this:</p> <pre><code>OracleConnection conn; // &lt;-- this is actually held around in another object that has a very long lifetime, well past the TransactionScope. using(var tx = new TransactionScope()) { conn = new OracleConnection("my connection string"); conn.Open(); // &lt;-- picks up ambient transaction, but I don't want that // ... do stuff } </code></pre> <p>I don't want my connection to actually pick up the TransactionScope. In the actual code there is a lot more going on that does do DB actions within the scope, I just have 1 that I need to keep around past the lifetime of the transaction scope.</p> <p><hr /></p> <p>I guess the real situation is worth mentioning. What actually happens here is that during a WCF service call, I add an object to a cache using the Enterprise Library Caching block. This object is a data table, but also holds on to an open connection to Oracle that has Continuous Notification set up. This gives me the ability to automatically refresh my cached dataset when the underlying Oracle tables change.</p> <p>The data cache item can be accessed by any number of WCF initialized threads, all of which run in their own transaction scope. I guess you could think of it as putting an OracleConnection object in a cache. A better block of text/exampe code would be like:</p> <pre><code>//beginning of a WCF service call using (var tx = new TransactionScope()) { var conn = new OracleConnection(); var cmd = new OracleCommand(); // set up OCN on the cmd and connection var reader = cmd.ExecuteReader(); cache.Add("conn", conn); cache.Add("cmd", cmd); } //beginning of a second wcf service call using (var tx = new TransactionScope()) { var conn = cache.Get("conn"); var cmd = cache.Get("cmd"); var reader = cmd.ExecuteReader(); // user reader to reload some data } </code></pre> <p>Point being I have a connection that has a long lifetime across multiple threads and transaction scopes.</p> http://stackoverflow.com/questions/1208560/how-to-wait-on-events-on-a-second-thread/1208610#1208610 0 Answer by rally25rs for How to wait on events on a second thread rally25rs 2009-07-30T18:57:00Z 2009-07-30T18:57:00Z <p>Could you just not let the Run() method end until the app is ready to close? Maybe more like: (sorry but I'm tying this by memory not in IDE, so it may not be perfect):</p> <pre><code>public void Run() { watcher.Path = @"C:\queue"; watcher.Created += new FileSystemEventHandler(watcher_Created); watcher.EnableRaisingEvents = true; try { while(true) Thread.Sleep(); } catch(ThreadAbortedException) { return; } } </code></pre> <p>and the runner:</p> <pre><code>Worker worker = new Worker(); Thread thread = new Thread(worker.Run); thread.Start(); Console.ReadLine(); // something else more interesting would go here. thread.Abort(); // do when ready to close the app. </code></pre> <p><hr /></p> <p>On second thought, why are you starting a new thread to do this? Why not just:</p> <pre><code>watcher.Path = @"C:\queue"; watcher.Created += new FileSystemEventHandler(watcher_Created); watcher.EnableRaisingEvents = true; Console.ReadLine(); // something else more interesting would go here. </code></pre> <p>Or stick your FileSystemWatcher in a variable somewhere that won't go out of scope (on the main form if a WinForms app, or whatever class has the Main() method if a console app).</p> <p>Or is there other stuff going on here that isn't shown?</p> http://stackoverflow.com/questions/1203758/dbunit-how-to-guard-against-multiple-tests-running-at-the-same-time 0 DbUnit how to guard against multiple tests running at the same time? rally25rs 2009-07-30T00:07:36Z 2009-07-30T00:46:24Z <p>I am working on a test environment for a project, and am looking into using DbUnit.NET to do a lot of the database interaction testing. I do have one very big question though:</p> <p>We are running against Oracle, and setting up a seperate test DB instance for every developer really isn't feasible (especially since we only have 1 DBA who is already strapped for time). This means that all developers and out Continuous Integration server all need to use the same DB schema.</p> <p>So, on to the question: is there a good way to prevent more than 1 person from testing at the same time? It would be easy to put a record in a db table that indicates that a test is running, then remove it after tests are finished, but NUnit doesn't have any way to run something at test session start and end.</p> <p>Any other thoughts? It seems like it should be a pretty common issue... or does everyone actually run separate DB instances for every developer/tester that might run the tests?</p> http://stackoverflow.com/questions/1195855/howto-merge-into-a-database/1196458#1196458 0 Answer by rally25rs for Howto merge into a database rally25rs 2009-07-28T20:10:49Z 2009-07-28T20:10:49Z <p>You didn't mention what programming language or database you are dealing with, but I would look into the availability of an "<strong>UPSERT</strong>" command for your chosen database.</p> <p>For Oracle, this would be the MERGE INTO statement: <a href="http://www.psoug.org/reference/merge.html" rel="nofollow">http://www.psoug.org/reference/merge.html</a> I think SQLServer has an "IF FOUND" statement or something like that (I dont use SQLServer often, sorry).</p> <p>Basically an "upsert" is an "insert or update", so instead of having to decide whether or not the row with a given ID already exists, you can just say "here is my data, if this id doesn't exist, insert it, if it does already exist, then update it."</p> http://stackoverflow.com/questions/1191742/server-writefile-opens-the-file-within-browser-rather-than-showing-a-save-as-dial/1191772#1191772 1 Answer by rally25rs for Server.WriteFile opens the file within browser rather than showing a Save As dialog rally25rs 2009-07-28T03:18:59Z 2009-07-28T03:18:59Z <p>What you described there should be the default behavior. The browser will decide what it can and can't render based on the MIME / content type. In your ASP.NET code, set Response.ContentType to the appropriate MIME type, and use the Response's output stream to send the file contents back tot he browser.</p> <p>Available MIME types for IE are discussed <a href="http://msdn.microsoft.com/en-us/library/ms775147%28VS.85%29.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1189818/wcf-authorizationcontext-not-cleared-between-calls-from-different-clients-was 2 WCF AuthorizationContext not cleared between calls from different clients. (was: When does a WCF service session actually end?) rally25rs 2009-07-27T18:30:36Z 2009-07-27T20:52:14Z <p>I was doing some unit testing, and ran into an interesting problem in WCF. I have a service using the wsHttpBinding, configured as such:</p> <pre><code>&lt;bindings&gt; &lt;wsHttpBinding&gt; &lt;binding name="wsHttpUnsecured"&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="None" /&gt; &lt;message clientCredentialType="None" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/wsHttpBinding&gt; </code></pre> <p>The implementation of the service is:</p> <pre><code>public void DoWork() { OperationContext o = OperationContext.Current; if (o == null) return; if (o.ServiceSecurityContext.AuthorizationContext.Properties.ContainsKey("x")) throw new ApplicationException(); o.ServiceSecurityContext.AuthorizationContext.Properties.Add("x", "x"); } </code></pre> <p>All it is doing here is checking the operation context, and if there is not an "X" in the AuthorizationContext, then add one. If there was already an "X", then exception out. (this is set up strictly as a simple test. in normal use, this would be happening in a custom AuthorizationManager and Token Authenticator).</p> <p>So basically, if we call the method more than once within the same operationContext and AuthorizationContext, then we will see an exception.</p> <p>Now, here is my test fixture.</p> <pre><code> [Test] public void CallTwice() { using (var cli1 = new TestBusinessClient()) { cli1.DoWork(); cli1.Close(); } using (var cli2 = new TestBusinessClient()) { cli2.DoWork(); cli2.Close(); } } </code></pre> <p>So walking through what happens at runtime:</p> <ol> <li>A new TestBusinessClient is created.</li> <li>It makes a call to DoWork().</li> <li>DoWork() does not find "X" in the AuthorizationContext.Properties.</li> <li>DoWork() adds "X" to the AuthorizationContext.Properties.</li> <li>The test method disposes of the first client.</li> <li>A new second TestBusinessClient is created.</li> <li>It makes a call to DoWork().</li> <li>DoWork() <strong>does</strong> find "X" still in the properties from the last call.</li> <li>DoWork() throws an exception.</li> </ol> <p>So my question is; why is the OperationContext and AuthorizationContext not killed off when a new client connects to the same service? I do understand that wsHttpBinding by default uses a session context between the calls, but I would think that session would be per client. I expected the wcf session,a nd therefore its contexts, to all renew when I connect with a new instance of a client.</p> <p>Anyone have any thoughts or ideas? The desired result here is for AuthorizationContext.Properties to be reset between the two calls to DoWork() by the two separate clients.</p> <p><hr /></p> <p><em>Update 1</em></p> <p>I tried setting the service PerCall and PerSession, and neither made a difference.</p> <p>I also tried the service with reliable messaging on and off, and neither changed anything.</p> <p>I also saved off my operationContext at the first call and the second call, and compared the two:</p> <pre><code>OperationContext first; // context from first call to DoWork() OperationContext second; // context from second call to DoWork() (first == second) = false (first.ServiceSecurityContext == second.ServiceSecurityContext) = false (first.ServiceSecurityContext.AuthorizationContext == second.ServiceSecurityContext.AuthorizationContext) = true </code></pre> <p>So it kind of looks like the operation context is changed / recreated, but something is setting the same AuthorizationContext on each subsequent service call.</p> <p><hr /></p> <p><em>Update 2</em></p> <p>Here is all the server-side stuff:</p> <pre><code>[ServiceContract] public interface ITestBusiness { [OperationContract(Action = "*", ReplyAction = "*")] string DoWork(); } public class TestBusiness : ITestBusiness { public string DoWork() { System.ServiceModel.OperationContext o = System.ServiceModel.OperationContext.Current; if (o != null) { if (o.ServiceSecurityContext.AuthorizationContext.Properties.ContainsKey("x")) throw new ApplicationException(); else o.ServiceSecurityContext.AuthorizationContext.Properties.Add("x", "x"); } } return ""; } </code></pre> <p>As a sanity check, I did the following:</p> <ol> <li>Start an instance of the wcf server (using Cassini / integrated VS 2008 server).</li> <li>Reduce teh test fixture to only 1 call to DoWork().</li> <li>Run the test from TestDriven.NET winthin VS 2008.</li> <li>Open the same test .dll from NUnit's standalone GUI tool, and run it.</li> </ol> <p>The first test run passes, and the second fails. So it seems this is purely server side, as running the same service call from 2 different processes ends up with the same AuthorizationContext.</p> <p>I'm starting to wonder if maybe something internal to WCF is still stuck on WindowsAuthentication and reusing the same Auth Context since I'm logged into the same domain with the same user name? My service is set to use a custom AuthorizationManager:</p> <pre><code> &lt;serviceBehaviors&gt; &lt;behavior name="myBehavior"&gt; &lt;serviceMetadata httpGetEnabled="false" /&gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;serviceAuthorization principalPermissionMode="Custom" serviceAuthorizationManagerType="My.Namespace.CustomAuthMgr" /&gt; &lt;/behavior&gt; </code></pre> <p>Where My.Namespace.CustomAuthMgr extends ServiceAuthorizationManager. If I set a breakpoint in CustomAuthMgr.CheckAccess(), then on the first call, operationContext.ServiceSecurityContext.AuthorizationContext is clear, and ont he second call, it contains whatever I put in it from the previous call. This is the 1st method of my own code that is executed by WCF, so something before the Authorization phase is reloading my AuthorizationContext.</p> <p><hr /></p> <p><em>Update 3</em></p> <p>Some added info: In order to validate some things, I changes my service implementation to no longer throw an exception, and instead return a counter of the # of times called, plus the current thread ID:</p> <pre><code> public string DoWork() { var o = System.ServiceModel.OperationContext.Current.ServiceSecurityContext.AuthorizationContext; if (o != null) { if (o.Properties.ContainsKey("x")) o.Properties["x"] = (int)o.Properties["x"] + 1; else o.Properties.Add("x", 1); } return o.Properties["x"].ToString() + " | " + System.AppDomain.GetCurrentThreadId().ToString(); } </code></pre> <p>Then running the test once from NUnit GUI results in: 1 | 3816</p> <p>I then close the NUnit GUI, restart it, and run the test again: 2 | 3816</p> <p>I then close the NUnit GUI again,a nd run the test from TestDriven.NET within Visual Studio: 3 | 3816</p> <p>So its definately persisting my AuthorizationContext between client processes, but the same thread handles each service call, so maybe AuthorizationContext is just Thread-static or something?</p> <p>Nope, it has nothing to do with the thread. I added a Thread.Sleep(10000); to the service implementation, then ran 2 NUnit GUIs at once, and each one printed out "2" but with different thread IDs:</p> <pre><code>2 | 5500 2 | 5764 </code></pre> <p>So AuthorizationContext is being persisted across threads too. Nifty.</p> http://stackoverflow.com/questions/254461/net-how-do-you-get-the-type-of-a-null-object 8 .NET : How do you get the Type of a null object? rally25rs 2008-10-31T18:33:18Z 2009-07-27T08:48:40Z <p>I have a method with an out parameter that tries to do a type conversion. Basically:</p> <pre><code> public void GetParameterValue(out object destination) { object paramVal = "I want to return this. could be any type, not just string."; destination = null; // default out param to null destination = Convert.ChangeType(paramVal, destination.GetType()); } </code></pre> <p>The problem is that usually someone would call this like:</p> <pre><code> string output; GetParameterValue(output); </code></pre> <p>This will fail because of:</p> <pre><code> destination.GetType() </code></pre> <p>destination is null, so we can't call .GetType() on it. We also can not call:</p> <pre><code> typeof(destination) </code></pre> <p>because destination is a variable name not a type name.</p> <p>So is there any way to get the type of an object that is set to null? I would think there would have to be a way to know what type a storage location is without it being assigned anything.</p> <p><em>edit</em>: <strong>Please see my additional comments posted further down...</strong></p> http://stackoverflow.com/questions/1756589/relative-path-of-a-given-file-from-a-service-application-in-delphi Comment by rally25rs on Relative path of a given file from a service application in Delphi rally25rs 2009-11-18T15:03:26Z 2009-11-18T15:03:26Z en ingl&#233;s por favor. http://stackoverflow.com/questions/1752646/unable-to-connect-to-the-remote-server/1752680#1752680 Comment by rally25rs on "Unable to connect to the remote server" rally25rs 2009-11-18T14:49:41Z 2009-11-18T14:49:41Z If you can connect via telnet, as @Wim suggested, then I would run a Wireshark session for both the 'old' WinForms app, and your WCF app, and compare the contents of the packets. The client may be connecting, but the server may not be providing a response. Perhaps the structure of the data is slightly different and the server is failing to process the request. http://stackoverflow.com/questions/1752646/unable-to-connect-to-the-remote-server/1752664#1752664 Comment by rally25rs on "Unable to connect to the remote server" rally25rs 2009-11-18T14:45:18Z 2009-11-18T14:45:18Z +1, this was going to be my answer too. http://stackoverflow.com/questions/1750214/can-i-use-js-encryption-instead-of-ssl-for-credit-card-payments Comment by rally25rs on Can I use JS encryption instead of SSL for credit card payments? rally25rs 2009-11-17T17:37:21Z 2009-11-17T17:37:21Z @Ggolo, just please let us know your web site URL when you have this implemented. Christmas is coming up, and my wife would like a new car. For that matter, I'd like a BMW M3, so please attract customers with good credit! http://stackoverflow.com/questions/1724589/download-a-directory-over-http-in-java/1724908#1724908 Comment by rally25rs on Download a directory over HTTP in Java rally25rs 2009-11-13T15:09:43Z 2009-11-13T15:09:43Z is there something wrong with my 1st suggestion? or are you just trying to avoid writing any code? Making an ASP or JSP or PHP page that returns the file system structure in a known format would probably take less time than it took to post this question and monitor the responses... What is the web server? is it ALWAYS the same? or are you trying to just connect to any random server that might be out there whatever it is? (are you in control of the server) http://stackoverflow.com/questions/1681787/wcf-client-proxy-initialization/1682038#1682038 Comment by rally25rs on WCF client proxy initialization rally25rs 2009-11-05T17:05:03Z 2009-11-05T17:05:03Z I agree with the approach of making a single factory instance, and not having singleton channel instances. For channels, use em and loose em, and be sure to close them properly, checking the faulted state. http://stackoverflow.com/questions/1395498/stop-iis-7-application-pool-from-build-script/1676329#1676329 Comment by rally25rs on Stop IIS 7 Application Pool from build script rally25rs 2009-11-04T20:21:32Z 2009-11-04T20:21:32Z just to elaborate one step further, the 'nice' think about using 2 accounts here is that my CruiseControl.net service is not running as admin, the build process is not running as admin, the unit tests are not running as admin, etc... only the start / stop of IIS is being run as admin, and you can't log in to the box locally or via remote desktop from either account. I find this fairly secure... and way better than disabling UAC or running the entire process as admin. http://stackoverflow.com/questions/1395498/stop-iis-7-application-pool-from-build-script Comment by rally25rs on Stop IIS 7 Application Pool from build script rally25rs 2009-11-04T17:00:39Z 2009-11-04T17:00:39Z I have the same issue with CruiseControl.NET. I have a project that I need to have stop/start IIS, but NOT run the entire CruiseControl service as an elevated account. http://stackoverflow.com/questions/1669259/is-there-a-java-equivalent-to-cs-checked-keyword Comment by rally25rs on Is there a Java equivalent to C#'s 'checked' keyword? rally25rs 2009-11-03T18:45:55Z 2009-11-03T18:45:55Z +1 because i've never actually need the 'checked' keyword before. Here is the MSDN ref incase anyone else is interested: <a href="http://msdn.microsoft.com/en-us/library/74b4xzyw(VS.71).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1622157/continuous-integration-and-database-management/1627994#1627994 Comment by rally25rs on Continuous Integration and Database Management rally25rs 2009-10-28T18:20:43Z 2009-10-28T18:20:43Z Thanks for the link. Do wish item #1 in the 3 rules had further detail. Its something we're struggling with now. Definitely easier said than done. http://stackoverflow.com/questions/1614003/restricting-an-ip-if-it-is-between-an-ip-range/1614047#1614047 Comment by rally25rs on Restricting an IP if it is between an IP Range. rally25rs 2009-10-23T15:20:16Z 2009-10-23T15:20:16Z copy/paste the good parts for those of us who aren't or don't want to register? http://stackoverflow.com/questions/1614003/restricting-an-ip-if-it-is-between-an-ip-range/1614153#1614153 Comment by rally25rs on Restricting an IP if it is between an IP Range. rally25rs 2009-10-23T15:17:25Z 2009-10-23T15:17:25Z and you can replace my &quot;ConvertIPStringToInt()&quot; with Espo's &quot;Dot2LongIP()&quot;, since I was too lazy to write the conversion method :) http://stackoverflow.com/questions/1613883/c-listt-orderby-always-returning-null/1613938#1613938 Comment by rally25rs on C# List<T> OrderBy always returning null... rally25rs 2009-10-23T14:48:07Z 2009-10-23T14:48:07Z Good point. I wasnt taking into account the need to upcast the list back to the ItemList type. http://stackoverflow.com/questions/1556136/svn-how-to-take-a-file-off-the-version-control/1556162#1556162 Comment by rally25rs on SVN - how to take a file off the version control rally25rs 2009-10-12T18:36:23Z 2009-10-12T18:36:23Z this is what I typically do too, plus I will set svn to ignore settings.py http://stackoverflow.com/questions/1540163/c-windows-mobile-standard-back-button-wont-close-the-app/1540199#1540199 Comment by rally25rs on c# windows mobile standard - Back button won't close the app rally25rs 2009-10-09T17:41:44Z 2009-10-09T17:41:44Z ooooh, a 'back' hardware button... that makes more sense. Have a Samsung Omnia (touch screen) myself, so I wasn't thinking about any hardware buttons. Sorry!