Patrick Szalapski

465
reputation
50 views

Registered User

name Patrick Szalapski
member for 1 year
seen yesterday
website
location St. Paul, MN
age 29
I am a wretched sinner who is only able to have any righteousness because of the person and work of Jesus Christ.
1d
comment Binding to a property defined by binding on another property
Could you post a simplified version of your sample code?
Dec
16
comment How to display placeholder value in WPF Visual Studio Designer until real value can be loaded
FallbackValue seems to work. Do you know why?
Nov
2
comment HttpContext.Current.User is null even though Windows Authentication is on
Clearly 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?
Nov
2
comment HttpContext.Current.User is null even though Windows Authentication is on
Does 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.
Nov
2
comment HttpContext.Current.User is null even though Windows Authentication is on
I 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?
Nov
2
comment HttpContext.Current.User is null even though Windows Authentication is on
I 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?
Nov
2
comment HttpContext.Current.User is null even though Windows Authentication is on
BTW, I looked here: codesnip.net/iis7-integrated-windows-authenticati… -- and everything looks good according to that.
Nov
2
revised HttpContext.Current.User is null even though Windows Authentication is on
deleted 64 characters in body
Nov
2
asked HttpContext.Current.User is null even though Windows Authentication is on
Oct
30
comment Best practice for storing and referencing DLL libraries?
Is your first sentence written in English? :) Maybe some commas or conjunctions would help me understand it?
Oct
13
comment Using Image control in WPF to display System.Drawing.Bitmap
Or a property, for that matter.
Oct
13
comment Using Image control in WPF to display System.Drawing.Bitmap
I do not see a BitmapImage.StreamSource method. Prashant, did you type something wrong?
Oct
9
accepted How to use Windows Authentication in WPF?
Oct
5
answered How to use Windows Authentication in WPF?
Oct
5
revised How to use Windows Authentication in WPF?
edited body
Oct
5
asked How to use Windows Authentication in WPF?
Sep
16
awarded  Yearling
Sep
11
comment Using generic Dictionary over wcf: what do I need to look for?
While 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...
Sep
11
comment Getting bad generated code from “Update Service Reference”
The video is a good one. I now also recommend avoiding Service References wherever you can ship a new DLL when the service contract changes.
Sep
1
awarded  Peer Pressure
Sep
1
comment How do you tell someone they’re writing bad code?
The problem with the Socratic method is that no one has the patience for it, nor the willingness to follow along.
Aug
25
answered MVC / MVP / MVVM What the Heck?
Aug
20
comment Using generic Dictionary over wcf: what do I need to look for?
basicHttpBinding, and there's nothing in the server logs.
Aug
20
comment Using generic Dictionary over wcf: what do I need to look for?
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."}
Aug
20
comment Using generic Dictionary over wcf: what do I need to look for?
Oh, by the way, this question flows out of this earlier one: stackoverflow.com/questions/1294269/…
Aug
20
asked Using generic Dictionary over wcf: what do I need to look for?
Aug
20
comment Getting bad generated code from “Update Service Reference”
Thanks, 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.
Aug
19
revised Getting bad generated code from “Update Service Reference”
edited tags; edited tags
Aug
19
comment Getting bad generated code from “Update Service Reference”
The wrapper didn't seem to coax the DataContractSerializer into kicking in.
Aug
18
comment Getting bad generated code from “Update Service Reference”
I was right: there was a property in Thing that the DataContractSerializer couldn't handle, so it fell back to using the XmlSerializer, which generated unusable schema/client code. The property in question inherited from the generic Dictionary(Of string, OtherClass). I would use the KnownTypeAttribute to overcome this, but I can't because it attributes don't seem to work with generics. I am going to create a wrapper for Dictionary(Of string, OtherClass) rather than inherit from it.
Aug
18
comment Getting bad generated code from “Update Service Reference”
Does anyone know how I can figure out what in my code (probably in Class Thing) is violating the restrictions on DataContractSerializer?
Aug
18
revised Getting bad generated code from “Update Service Reference”
added 399 characters in body
Aug
18
comment Getting bad generated code from “Update Service Reference”
Notice, for example, that GetThing(Guid) is in the interface, but the generated client has GetThing(String). I can't figure that part out either.
Aug
18
comment Getting bad generated code from “Update Service Reference”
I don't understand them. What is "parameter mode"? Where is it supposed to be getting the schema information? What is XmlElementAttribute supposed to tell me? I'm googling around to no avail.
Aug
18
asked Getting bad generated code from “Update Service Reference”
Aug
7
comment Copy-paste code from Visual Studio, but paste UNFORMATTED code
Unfortunately, that isn't true about Microsoft Office Communicator, which I paste into all the time.
Aug
6
comment Copy-paste code from Visual Studio, but paste UNFORMATTED code
Or PureText, as another answer suggested.
Aug
6
comment Copy-paste code from Visual Studio, but paste UNFORMATTED code
Paste Special is not present in many apps.
Aug
6
comment Copy-paste code from Visual Studio, but paste UNFORMATTED code
I've seen this called a "clipboard scrubber". A similar program is ClipboardFusion - binaryfortress.com/clipboardfusion . Instead of copy-paste, the operation becomes copy-paste-realize it is ugly-scrub clipboard-paste.
Jul
31
comment How can I highlight the active line in Visual Studio, without using ReSharper?
I'd love to be able to do this without slowing down the text editor.
Jul
31
comment How can I highlight the active line in Visual Studio, without using ReSharper?
This works, but it is too slow for me. I can't move my cursor around nearly as quickly. This makes it a deal-breaker.
Jul
6
answered Vb.Net String Manipulation & or +
Jul
6
revised null shorthand in C#?
added 87 characters in body
Jul
6
answered null shorthand in C#?
Jun
25
comment Why do my WCF service returning a FaultException, time out after 10 calls?
I have the same question as Jesper. Anyone?