User Patrick Szalapski - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T08:39:43Zhttp://stackoverflow.com/feeds/user/7453http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1663535/httpcontext-current-user-is-null-even-though-windows-authentication-is-on0HttpContext.Current.User is null even though Windows Authentication is onPatrick Szalapski2009-11-02T20:37:23Z2009-11-02T20:58:53Z
<p>In IIS7 under Windows Server 2008, I have a virtual directory with anonymous access off and Windows authentication on. In my web.config, I have:</p>
<pre><code><authentication mode="Windows"/>
<authorization>
<allow roles="MYGROUP"/>
<deny users="*"/>
</authorization>
</code></pre>
<p>and</p>
<pre><code><system.webServer>
<!-- IIS7 security settings -->
<security>
<authorization>
<add accessType="Deny" users="*"/>
<add accessType="Allow" roles="MYGROUP"/>
</authorization>
</security>
</system.webServer>
</code></pre>
<p>Yet when I access default.aspx from IE and set a breakpoint in Global.asax.vb Application_AuthenticateRequest(), I get a null HttpContext.Current.User where I am expecting my own identity. It is almost as if Anonymous Access is on?</p>
<p>What can I do to troubleshoot this? Everything seems to work in IIS6.</p>
http://stackoverflow.com/questions/1521520/how-to-use-windows-authentication-in-wpf0How to use Windows Authentication in WPF?Patrick Szalapski2009-10-05T18:04:03Z2009-10-05T20:48:53Z
<p>I'm not finding much documentation on how to use Windows Authentication in a WPF app. I wouldn't have thought that it would be any different than in any non-WPF app, but it seems that it is. I want to go into my project Properties -> Application and ensure that Windows Authentication is on, but that option is not available in a WPF app (as the following document confirms).</p>
<p><a href="http://msdn.microsoft.com/en-us/library/tzdks800.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/tzdks800.aspx</a></p>
<p>If I ignore all that and just look at My.User.Name (VB), it is empty. This tells me that somehow Windows Authentication is not enabled.</p>
<p>Seems like there is a concept I am missing; could someone point me in the right direction?</p>
<p>My plan is to use a PrincipalPermission attribute to restrict access to certain parts of my app (or perhaps the entire app, by applying it to Application_Startup()).</p>
http://stackoverflow.com/questions/1521520/how-to-use-windows-authentication-in-wpf/1522316#15223160Answer by Patrick Szalapski for How to use Windows Authentication in WPF?Patrick Szalapski2009-10-05T20:48:53Z2009-10-05T20:48:53Z<p>Itowlson's answer was correct, but also, in order to use the PrincipalPermissionAttribute on any method, you have to first make the windows principal the current principal by calling:</p>
<pre><code>AppDomain.CurrentDomain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal)
</code></pre>
http://stackoverflow.com/questions/1298428/mvc-mvp-mvvm-what-the-heck/1329810#13298101Answer by Patrick Szalapski for MVC / MVP / MVVM What the Heck?Patrick Szalapski2009-08-25T17:43:58Z2009-08-25T17:43:58Z<p>Here's a list of MVVM links that might also help. </p>
<p><a href="http://karlshifflett.wordpress.com/mvvm/" rel="nofollow">http://karlshifflett.wordpress.com/mvvm/</a></p>
http://stackoverflow.com/questions/1303655/using-generic-dictionary-over-wcf-what-do-i-need-to-look-for0Using generic Dictionary over wcf: what do I need to look for?Patrick Szalapski2009-08-20T02:27:01Z2009-08-20T06:45:53Z
<p>Suppose I have a WCF service and a method in the contract </p>
<pre><code><ServiceContract()> _
Interface IThingService
'...
<OperationContract()> _
Function GetThing(thingId As Guid) As Thing
End Interface
</code></pre>
<p>where Thing is an ordinary class with ordinary properties, except for one member:</p>
<pre><code>Public Class Thing
' ...
Public Property Photos() As Dictionary(Of String, Photo)
' ...
End Class
</code></pre>
<p>where Photo is an ordinary class with ordinary properties. </p>
<p>So I dove into some documentation such as <a href="http://msdn.microsoft.com/en-us/library/aa347850.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa347850.aspx</a> and <a href="http://bit.ly/jA9z3" rel="nofollow">http://bit.ly/jA9z3</a> , and now I am confused if I have to understand a lot about the DataContractSerializer and the particulars of how the service serializes the Photos property. </p>
<p>Do I need to go there, or is there something I can do to let WCF on the server interact with my client automatically? Seems to me all the serialization details should be able to be abstracted away--I just want to end up, in the consuming client app, with:</p>
<pre><code>Dim foo as Thing = ThingServiceClient.GetThing(someGuid)
Dim myPhotos as Dictionary(Of String, Photo) = foo.Photos
</code></pre>
<p>What do I need to do in my definition of Thing to make this work? Anything I need to do elsewhere to get this to work? Do I need to worry about ensuring the service sticks to the DataContractSerializer and doesn't fall back to use the XmlSerializer?</p>
http://stackoverflow.com/questions/1294269/getting-bad-generated-code-from-update-service-reference0Getting bad generated code from "Update Service Reference"Patrick Szalapski2009-08-18T14:30:35Z2009-08-19T17:56:19Z
<p>In VB.NET (using Visual Studio 2008) my WCF service has an interface something like:</p>
<pre><code><ServiceContract()> _
Public Interface IThingService
<OperationContract()> _
Function GetThingByNumber(ByVal thingNumber As MyKeyClass) As Thing
<OperationContract()> _
Function GetThing(ByVal thingId As Guid) As Thing
' ...
End Interface
</code></pre>
<p>I recently changed two projects with similar code to use a basicHttpBinding rather than a wsHttpBinding. Everything compiles well on the service side. Now, in the a client app I choose "Update Service Reference". In one project, my resulting reference.vb seems correct--under 100 lines with simple wrappers for each method. However, in the other, the resulting reference.vb can't seem to understand what the service is. I get a reference.vb of over 1000 lines that looks like:</p>
<pre><code> '------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:2.0.50727.3053
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Imports System.Data
Namespace ThingService
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0"), _
System.ServiceModel.ServiceContractAttribute(ConfigurationName:="GetThingByVersion.IGetThingByVersion")> _
Public Interface IThingService
'CODEGEN: Parameter 'GetThingByNumberResult' requires additional schema information that cannot be captured using the parameter mode. The specific attribute is 'System.Xml.Serialization.XmlElementAttribute'.
<System.ServiceModel.OperationContractAttribute(Action:="http://tempuri.org/ThingService/GetThingByVersion", ReplyAction:="http://tempuri.org/ hingService/GetThingByVersionResponse"), _
System.ServiceModel.XmlSerializerFormatAttribute()> _
Function GetThingByNumber(ByVal request As ThingService.GetThingByVersionRequest) As ThingService.GetThingByVersionResponse
'CODEGEN: Parameter 'GetThingResult' requires additional schema information that cannot be captured using the parameter mode. The specific attribute is 'System.Xml.Serialization.XmlElementAttribute'.
<System.ServiceModel.OperationContractAttribute(Action:="http://tempuri.org/ThingService/GetThing", ReplyAction:="http://tempuri.org/ThingService/GetThingResponse"), _
System.ServiceModel.XmlSerializerFormatAttribute()> _
Function GetThing(ByVal request As ThingService.GetThingRequest) As ThingService.GetThingResponse
'...
End Interface
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3082"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
System.Xml.Serialization.XmlTypeAttribute([Namespace]:="http://schemas.datacontract.org/2004/07/ThingLibraryCore")> _
Partial Public Class MyKeyClass
Inherits Object
Implements System.ComponentModel.INotifyPropertyChanged
Private concatenatedThingNumberField As String
Private ThingNumberField As Integer
Private ThingNumberFieldSpecified As Boolean
'... goes on and on...
</code></pre>
<p>It's as if the code generated knows nothing of my actual service interface. Any idea how to troubleshoot this? Thanks in advance.</p>
<p>EDIT: Looks like I need to make sure that the server can use the DataContractSerializer and not the XmlSerializer: see <a href="http://blogs.msdn.com/sonuarora/archive/2007/06/16/contract-generation-from-wsdl-xml-schema-datacontractserializer-vs-xmlserializer.aspx" rel="nofollow">http://blogs.msdn.com/sonuarora/archive/2007/06/16/contract-generation-from-wsdl-xml-schema-datacontractserializer-vs-xmlserializer.aspx</a> . Does anyone know how I can figure out what in my code (probably in Class Thing) is violating the restrictions on DataContractSerializer?</p>
http://stackoverflow.com/questions/1086932/null-shorthand-in-c/1086976#10869762Answer by Patrick Szalapski for null shorthand in C#?Patrick Szalapski2009-07-06T13:30:28Z2009-07-07T07:17:34Z<p>I would question why you are casting d["k"] to a bool. Either it is already a bool or it should be compared to something to get a bool. This would make things clearer.</p>
<p>Anyway, I suppose this might work:</p>
<pre><code>bool pass = (d != null) && d["k"] ?? false
</code></pre>
http://stackoverflow.com/questions/1088053/vb-net-string-manipulation-or/1088349#10883493Answer by Patrick Szalapski for Vb.Net String Manipulation & or +Patrick Szalapski2009-07-06T17:53:46Z2009-07-06T17:53:46Z<p>Consider if you are better off using String.Format when concatenating strings. Usually, the code ends up making more sense that way. </p>
<p>Also, if you concatenate many times, consider using a StringBuilder rather than a String.</p>
http://stackoverflow.com/questions/175944/favorites-or-macros-in-sql-server-management-studio1"Favorites" or "macros" in SQL Server Management studio?Patrick Szalapski2008-10-06T20:00:45Z2009-03-06T06:26:35Z
<p>I have a few databases that I always use SQL Server Management Studio with. I'd like to be able to create a toolbar button or keyboard shortcut that automatically opens a new query window (in the current SSMS instance) and connects to a given (registered, perhaps) database. That's it. That's all I need. And this ashtray, and the paddle game, and the remote control. That's all I need.</p>
<p>As it is now, I have to expand the Object Explorer, collapse/expand two to eight trees, right-click on my database, and choose "New Query". I see no way to do it, this would probably save me 30-60 seconds a day, which is worth at least one dollar and NINE CENTS.</p>
http://stackoverflow.com/questions/484183/how-much-javascript-is-too-much/484196#4841967Answer by Patrick Szalapski for How much javascript is too muchPatrick Szalapski2009-01-27T16:52:35Z2009-01-27T17:33:43Z<p>It really depends on your needs and the user's expectations. My only suggestion is to think of the places you are doing AJAX when the user instead <strong>really</strong> expects to navigate a new page. Those are the cases where you are doing "too much". </p>
<p>Remember, the user spends 99% percent of his time using other sites, not yours. Make sure your site does what he/she expects from the rest of the web as well as from using computers in general.</p>
<p>By the way, usability testing can be used to figure out "what the user really expects" in any area. Your judgments as a designer are likely completely different than typical users'; see also <a href="http://www.useit.com/alertbox/20000319.html" rel="nofollow">http://www.useit.com/alertbox/20000319.html</a>.</p>
http://stackoverflow.com/questions/484172/do-we-need-a-java/484186#4841861Answer by Patrick Szalapski for Do we need a Java++?Patrick Szalapski2009-01-27T16:50:55Z2009-01-27T16:50:55Z<p>Wouldn't such an effort by Sun simply be called Java 7 (or 1.7 or 2.0)? Wouldn't such an effort by some other person/group be called something other than Java?</p>
http://stackoverflow.com/questions/393946/what-would-be-the-best-programming-guideline-tip/398640#3986400Answer by Patrick Szalapski for What would be the best programming guideline/tipPatrick Szalapski2008-12-29T20:55:57Z2008-12-29T20:55:57Z<p><strong>It is best to start by writing something small that works</strong>. It is almost always easier to start by building a working system according to a good small subset of your requirements, then add functionality later. Do not try to get most of your requirements mostly met; instead, try to get a few of your requirements met and working well and proceed from there.</p>
http://stackoverflow.com/questions/372246/forcing-a-union-on-an-or-for-optimization-in-sql-server-20001Forcing a UNION on an OR for optimization in SQL Server 2000 Patrick Szalapski2008-12-16T18:41:45Z2008-12-18T07:03:16Z
<p>How can I get a query which uses an OR in the WHERE clause to split itself into two queries with a UNION during compilation? If I manually rewrite it, the query using the UNION is 100x faster than the single query, because it can effectively use different indices in each query of the union. Is there any way I can make the optimizer use this approach?</p>
<p>I have a query that looks something like this:</p>
<pre><code>select columnlist
from table1
join table2 on joincond2
join table3 on joincond3
where conditions1
and ((@param1 is null and cond3a) or (cond3b))
</code></pre>
<p>Where columnlist, joincond2, joincond3, and conditions1 are all longer expressions. The kicker is that only one of the conditions in the OR is ever true.</p>
<p>I first thought I could just rewrite it to do the union, but then I am repeating columnlist, joincond2, joincond3, and conditions1, which is 20 or so lines of SQL that might need a lot of maintenance in the future. Is there a hint I can supply or some better way to write the WHERE clause? Thanks in advance.</p>
http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/350669#3506692Answer by Patrick Szalapski for What is hard in Scheme but easy in Java?Patrick Szalapski2008-12-08T19:56:54Z2008-12-08T19:56:54Z<p>Everything you do in Java is hard to read in Scheme. Everything you do in Scheme is simpler than in Java--once you understand it.</p>
http://stackoverflow.com/questions/154735/understanding-iis6-permissions-acl-and-identity-how-can-i-restrict-access0Understanding IIS6 permissions, ACL, and identity--how can I restrict access?Patrick Szalapski2008-09-30T20:04:21Z2008-12-01T12:40:13Z
<p>When an ASP.NET application is running under IIS6.0 in Windows 2003 Server with impersonation, what user account is relevant for deciding file read/write/execute access privileges? I have two scenarios where I am trying to understand what access to grant/revoke. I thought the most relevant user is probably the identity specified in the Application Pool, but that doesn't seem to be the whole story.</p>
<p>The first issue concerns executing a local batch file via System.Diagnostics.Process.Start()--I can't do so when the AppPool is set to IWAM_WIN2K3WEB user, but it works fine if it is set to the Network Service identity. I of course made sure that the IWAM user has execute rights on the file.</p>
<p>The second involves writing to a file on the local hard drive--I'd like to be able to prevent doing so via the access control list via folder properties, but even when I set up <strong>all</strong> users in the folder as "read" (no users/groups with "write" at all), our ASP.NET still writes out the file no problem. How can it if it doesn't have write access?</p>
<p>Google search turns up bits and pieces but never the whole story.</p>
http://stackoverflow.com/questions/290386/has-anyone-else-seen-this-ie6-0-display-problem/290421#2904210Answer by Patrick Szalapski for Has anyone else seen this IE6.0 Display problem?Patrick Szalapski2008-11-14T15:28:18Z2008-11-14T15:28:18Z<p>Nothing there looks like it even <strong>could</strong> cause that under the strangest of IE render bugs.</p>
http://stackoverflow.com/questions/287706/finding-a-career-in-foss/287731#2877315Answer by Patrick Szalapski for Finding a Career in FOSSPatrick Szalapski2008-11-13T18:07:39Z2008-11-13T18:07:39Z<p>Seems to me that the number one thing open-source projects look for in a developer is your portfolio, or the other open-source projects you've worked on. I would think you should start contributing to several open-community projects--the ones closest to the kind of project you want to work on.</p>
http://stackoverflow.com/questions/287333/sql-select-until/287391#2873910Answer by Patrick Szalapski for SQL: Select "until"Patrick Szalapski2008-11-13T16:21:43Z2008-11-13T16:21:43Z<p>You would have to first store the documents in a table variable, sort them in the order you want to retrieve them, then update each row with a cumulative value so that you can select on it. </p>
<pre><code> declare @documents_temp table (
tag_id int,
size int,
cumulative_size int null)
insert into @documents_temp
select tag_id, size, size from documents order by tag_id
update @documents_temp d set d.cumulative_size = d.size +
(select top 1 cumulative_size from @documents_temp
where tag_id < d.tag_id order by tag_id desc)
select tag_id, size from @documents_temp where cumulative_size <= 600
</code></pre>
<p>Don't know if it is worth it.</p>
http://stackoverflow.com/questions/287112/most-amusing-function-method-procedure-names/287128#2871281Answer by Patrick Szalapski for Most amusing function / method / procedure namesPatrick Szalapski2008-11-13T14:49:42Z2008-11-13T14:49:42Z<p>The worst was a SQL Column actually named</p>
<pre><code>NotActive bit
</code></pre>
<p>We immediately made a derived column, "Active".</p>
http://stackoverflow.com/questions/287037/does-the-choice-of-language-affect-who-will-use-the-application-especially-in-te/287061#2870610Answer by Patrick Szalapski for Does the choice of language affect who will use the application, especially in terms of web applications?Patrick Szalapski2008-11-13T14:26:04Z2008-11-13T14:26:04Z<p>No, unless the choice of language has a clear impact on the functionality. Ideally it won't.</p>
<p>Two examples: jEdit is an amazing program, but its Java roots really hold it back. It defaults to the look-and-feel of Java GUI (swing?). It is also very slow (though Java programs need not be slow, this one is).</p>
<p>On the other hand, The Stack Overflow web site is based on .NET--but what does that matter? It has little impact on site functionality.</p>
http://stackoverflow.com/questions/285662/is-lining-up-operators-a-worthy-style/285678#2856781Answer by Patrick Szalapski for Is lining up operators a worthy style?Patrick Szalapski2008-11-12T22:47:36Z2008-11-12T22:47:36Z<p>No, unless there is some vertical relationship between the variables, such as:</p>
<pre><code>some_var[ 1] = "foo";
some_var[100] = "bar";
</code></pre>
<p>But the cases are very rare that I do this, especially when I only have a few variables. This is a bit more common in SQL, where I might have the parameter name, type, and default value (three parts) in one line, but even there I try avoid it--it isn't worth the hassle.</p>
<pre><code>@some_var varchar(25) = NULL
@another_var varchar(1000) = ''
@one_more int = 0
</code></pre>
http://stackoverflow.com/questions/70846/developers-bill-of-rights/191264#1912644Answer by Patrick Szalapski for Developers' Bill Of RightsPatrick Szalapski2008-10-10T13:26:57Z2008-10-21T21:05:34Z<p>We need to avoid thinking of this as "rights"--the company doesn't owe you a job, much less two monitors. Is there a better term than "rights" to express this that might convey work conditions that benefit both the company and the programmer?</p>
<p>It is a good question, Your bold question is better than the headline.</p>
http://stackoverflow.com/questions/219604/converting-a-paragraph-to-hex-notatation-then-back-to-string/223444#2234440Answer by Patrick Szalapski for Converting a paragraph to hex notatation, then back to stringPatrick Szalapski2008-10-21T20:45:17Z2008-10-21T20:45:17Z<p>Perhaps the answer can be more quickly reached if we ask: what are you really trying to do? Converting an ordinary string to a string of a hex representation seems like the wrong approach to anything, unless you are making a hexidecimal/encoding tutorial for the web.</p>
http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/179363#1793630Answer by Patrick Szalapski for Recommended Fonts for Programming?Patrick Szalapski2008-10-07T16:44:13Z2008-10-07T16:44:13Z<p>Lucida Console isn't so good because the bold text takes up more room than the non-bold text. Consolas overcomes this.</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/176231#1762312Answer by Patrick Szalapski for Hidden Features of C#?Patrick Szalapski2008-10-06T21:16:08Z2008-10-06T21:16:08Z<p>Instead of using int.TryParse() or Convert.ToInt32(), I like having a static integer parsing function that returns null when it can't parse. Then I can use ?? and the ternary operator together to more clearly ensure my declaration and initialization are all done on one line in a easy-to-understand way. </p>
<pre><code>public static class Parser {
public static int? ParseInt(string s) {
int result;
bool parsed = int.TryParse(s, out result);
if (parsed) return result;
else return null;
}
// ...
}
</code></pre>
<p>This is also good to avoid duplicating the left side of an assignment, but even better to avoid duplicating long calls on the right side of an assignment, such as a database calls in the following example. Instead of ugly if-then trees (which I run into often):</p>
<pre><code>int x = 0;
YourDatabaseResultSet data = new YourDatabaseResultSet();
if (cond1)
if (int.TryParse(x_input, x)){
data = YourDatabaseAccessMethod("my_proc_name", 2, x);
}
else{
x = -1;
// do something to report "Can't Parse"
}
}
else {
x = y;
data = YourDatabaseAccessMethod("my_proc_name",
new SqlParameter("@param1", 2),
new SqlParameter("@param2", x));
}
</code></pre>
<p>You can do:</p>
<pre><code>int x = cond1 ? (Parser.ParseInt(x_input) ?? -1) : y;
if (x >= 0) data = YourDatabaseAccessMethod("my_proc_name",
new SqlParameter("@param1", 2),
new SqlParameter("@param2", x));
</code></pre>
<p>Much cleaner and easier to understand</p>
http://stackoverflow.com/questions/168672/how-do-i-get-back-a-2-digit-representation-of-a-number-in-sql-2000/168739#1687390Answer by Patrick Szalapski for How do I get back a 2 digit representation of a number in SQL 2000Patrick Szalapski2008-10-03T20:24:54Z2008-10-03T20:24:54Z<p>John's answer works and is generalizable to any number of digits, but I would be more comfortable with</p>
<pre><code>select case when mycolumn between -9 and 9 then '0' + str(mycolumn) else str(mycolumn) end
</code></pre>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168535#16853515Answer by Patrick Szalapski for What's your #1 way to be careful with a live database?Patrick Szalapski2008-10-03T19:35:05Z2008-10-03T19:35:05Z<p>NEVER do an update unless you are in a BEGIN TRAN t1--not in a dev database, not in production, not anywhere. NEVER run a COMMIT TRAN t1 outside a comment--always type</p>
<pre><code>--COMMIT TRAN t1
</code></pre>
<p>and then select the statement in order to run it. (Obviously, this only applies to GUI query clients.) If you do these things, it will become second nature to do them and you won't lose hardly any time.</p>
<p>I actually have a "update" macro that types this. I always paste this in to set up my updates. You can make a similar one for deletes and inserts.</p>
<pre><code>begin tran t1
update
set
where
rollback tran t1
--commit tran t1
</code></pre>
http://stackoverflow.com/questions/165466/avoiding-tsql-data-conversion-errors/168490#1684901Answer by Patrick Szalapski for Avoiding TSQL Data-conversion errorsPatrick Szalapski2008-10-03T19:29:17Z2008-10-03T19:29:17Z<p>This is just speculation, but could it be that the DBMS doesn't look at the dynamic value of your variables but only the potential values? Thus, a six-decimal numeric divided by a six-decimal numeric could result in a twelve-decimal numeric; in the literal division, the DBMS knows there is no overflow. Still not sure why the DBMS would care, though--shouldn't it return the result of two six-decimal divisions as up to a 18-decimal numeric?</p>
http://stackoverflow.com/questions/168455/how-do-you-post-to-an-iframe/168460#1684600Answer by Patrick Szalapski for How do you post to an Iframe?Patrick Szalapski2008-10-03T19:21:08Z2008-10-03T19:21:08Z<p>An iframe is an html element. In common language, we say that you would post to a page, not a iframe. Whatever the source (src) of the iframe is--try putting that URL as the action of your form.</p>
http://stackoverflow.com/questions/154735/understanding-iis6-permissions-acl-and-identity-how-can-i-restrict-access/163011#1630110Answer by Patrick Szalapski for Understanding IIS6 permissions, ACL, and identity--how can I restrict access?Patrick Szalapski2008-10-02T15:27:35Z2008-10-02T15:27:35Z<p>A bit more searching reveals that the IWAM user isn't that well documented and we should stick with NETWORK SERVICE or a manually-supplied identity if we want to specify permissions for that user.</p>
http://stackoverflow.com/questions/1663535/httpcontext-current-user-is-null-even-though-windows-authentication-is-on/1663653#1663653Comment by Patrick Szalapski on HttpContext.Current.User is null even though Windows Authentication is onPatrick Szalapski2009-11-02T21:34:39Z2009-11-02T21:34:39ZClearly I'd like to stay in integrated mode, not classic mode, and then adjust my app to properly using Windows Authentication (or its successor functionality) in integrated mode. I see nothing anywhere on how to do this, do you know of any?http://stackoverflow.com/questions/1663535/httpcontext-current-user-is-null-even-though-windows-authentication-is-on/1663653#1663653Comment by Patrick Szalapski on HttpContext.Current.User is null even though Windows Authentication is onPatrick Szalapski2009-11-02T21:26:58Z2009-11-02T21:26:58ZDoes this new way have a name so that I can search for it? Everything I search for seems to be referring to the old way.http://stackoverflow.com/questions/1663535/httpcontext-current-user-is-null-even-though-windows-authentication-is-on/1663653#1663653Comment by Patrick Szalapski on HttpContext.Current.User is null even though Windows Authentication is onPatrick Szalapski2009-11-02T21:12:42Z2009-11-02T21:12:42ZI didn't think what I am trying to do is "old type"--surely Microsoft isn't phasing out Windows Authentication. Where can I see info on the "new way" of doing authentication?http://stackoverflow.com/questions/1663535/httpcontext-current-user-is-null-even-though-windows-authentication-is-on/1663653#1663653Comment by Patrick Szalapski on HttpContext.Current.User is null even though Windows Authentication is onPatrick Szalapski2009-11-02T21:08:17Z2009-11-02T21:08:17ZI must be missing something--IIS6 had "Integrated Windows Authentication" too. It is the first option under Authenticated Access in Directory Security > Authentication and access control > edit. What am I missing?http://stackoverflow.com/questions/1663535/httpcontext-current-user-is-null-even-though-windows-authentication-is-onComment by Patrick Szalapski on HttpContext.Current.User is null even though Windows Authentication is onPatrick Szalapski2009-11-02T21:07:07Z2009-11-02T21:07:07ZBTW, I looked here: <a href="http://codesnip.net/iis7-integrated-windows-authentication-win-2008" rel="nofollow">codesnip.net/iis7-integrated-windows-authenticati…</a> -- and everything looks good according to that.http://stackoverflow.com/questions/385469/best-practice-for-storing-and-referencing-dll-libraries/385587#385587Comment by Patrick Szalapski on Best practice for storing and referencing DLL libraries?Patrick Szalapski2009-10-30T19:25:32Z2009-10-30T19:25:32ZIs your first sentence written in English? :) Maybe some commas or conjunctions would help me understand it?http://stackoverflow.com/questions/1118496/using-image-control-in-wpf-to-display-system-drawing-bitmap/1118557#1118557Comment by Patrick Szalapski on Using Image control in WPF to display System.Drawing.BitmapPatrick Szalapski2009-10-13T23:23:00Z2009-10-13T23:23:00ZOr a property, for that matter.http://stackoverflow.com/questions/1118496/using-image-control-in-wpf-to-display-system-drawing-bitmap/1118557#1118557Comment by Patrick Szalapski on Using Image control in WPF to display System.Drawing.BitmapPatrick Szalapski2009-10-13T23:22:17Z2009-10-13T23:22:17ZI do not see a BitmapImage.StreamSource method. Prashant, did you type something wrong?http://stackoverflow.com/questions/1303655/using-generic-dictionary-over-wcf-what-do-i-need-to-look-forComment by Patrick Szalapski on Using generic Dictionary over wcf: what do I need to look for?Patrick Szalapski2009-09-11T17:40:12Z2009-09-11T17:40:12ZWhile there is no answer for this yet, we have abandoned this approach for unrelated design reasons, so I no longer need the answer--although I'd like to know...http://stackoverflow.com/questions/1294269/getting-bad-generated-code-from-update-service-reference/1296758#1296758Comment by Patrick Szalapski on Getting bad generated code from "Update Service Reference"Patrick Szalapski2009-09-11T17:38:23Z2009-09-11T17:38:23ZThe video is a good one. I now also recommend avoiding Service References wherever you can ship a new DLL when the service contract changes.http://stackoverflow.com/questions/206286/how-do-you-tell-someone-theyre-writing-bad-code/208560#208560Comment by Patrick Szalapski on How do you tell someone they're writing bad code?Patrick Szalapski2009-09-01T13:27:16Z2009-09-01T13:27:16ZThe problem with the Socratic method is that no one has the patience for it, nor the willingness to follow along.http://stackoverflow.com/questions/1303655/using-generic-dictionary-over-wcf-what-do-i-need-to-look-for/1304063#1304063Comment by Patrick Szalapski on Using generic Dictionary over wcf: what do I need to look for?Patrick Szalapski2009-08-20T17:23:54Z2009-08-20T17:23:54ZbasicHttpBinding, and there's nothing in the server logs.http://stackoverflow.com/questions/1303655/using-generic-dictionary-over-wcf-what-do-i-need-to-look-for/1304063#1304063Comment by Patrick Szalapski on Using generic Dictionary over wcf: what do I need to look for?Patrick Szalapski2009-08-20T16:58:44Z2009-08-20T16:58:44Z
I don't have the DataContract attribute on any of my classes, and as soon as I add it, I get an exception as follows. Any idea what I'm doing wrong? {"An error occurred while receiving the HTTP response to localhost/MyService/MyService.svc/…. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). See server logs for more details."}http://stackoverflow.com/questions/1303655/using-generic-dictionary-over-wcf-what-do-i-need-to-look-forComment by Patrick Szalapski on Using generic Dictionary over wcf: what do I need to look for?Patrick Szalapski2009-08-20T11:39:00Z2009-08-20T11:39:00ZOh, by the way, this question flows out of this earlier one: <a href="http://stackoverflow.com/questions/1294269/getting-bad-generated-code-from-update-service-reference" rel="nofollow" title="getting bad generated code from update service reference">stackoverflow.com/questions/1294269/…</a>http://stackoverflow.com/questions/1294269/getting-bad-generated-code-from-update-service-reference/1296758#1296758Comment by Patrick Szalapski on Getting bad generated code from "Update Service Reference"Patrick Szalapski2009-08-20T02:00:39Z2009-08-20T02:00:39ZThanks, Matt--that video was very helpful. Even if I do the "simple" manual client creation (using the ChannelFactory method), I think we will have issues with the way things serialize when dealing with a Dictionary(Of string, TVal). I plan to start simple and go from there.