stephbu

2,279
Reputation
194 views

Registered User

Name stephbu
Member for 1 year
Seen 1 hour ago
Website
Location Bellevue, WA
Age 37
Microsoft Architect, cyber-brickie, and expert with duct tape.
Nov
29
accepted How can I determine the current focused process name and version in C#
Nov
21
revised What is the single most effective thing you did to improve your programming skills?
added 1528 characters in body
Nov
12
comment Issue with Url Routing(System.Web.Routing) 3.5 in Godaddy…(non-MVC App)
A little bit more detail than "it doesn't work" would help.
Oct
19
comment Why is my MS Access database always broken?
Agree with many of the the thoughts here. A question in my head is how do you terminate the service, and does it terminate gracefully? For example if you use service control to stop the service and it fails to stop in the allotted time, service control manager kills the process.
Oct
19
comment Retrieve calling application name in wcf
Agree with @Marc, the nearest you're going to get is either a) arbitrary user supplied string like AppName b) mandatory credential e.g. an AppID, Cert, Token or other evidence to identify the caller - doesn't necessarily have to be a cert, I'd suggest that should ensure that you validate that you issued or trusted the evidence originally. e.g. a lookup into a db of issued tokens, or validating a cert root.
Oct
19
comment What account should I use for ASP.NET?
@Daniel superuser.com? :) Agreed - this article was the canonical resource - shame P&P guys have never come back and refreshed it. Considering how far the industry has moved in the last 3-4 years, emphasis on customer legal risks through compromise, horsepower to enable virtualization and simplified one server - one role deployments, while consolidating resource utilization in the datacenter. Rightfully, config requirements like Custom Accounts are big red flags in design, security, and operational reviews in our company.
Oct
19
comment What account should I use for ASP.NET?
Totally agree @tvanfosson, we usually only run one role per server to keep security simple. Makes it easy to troubleshoot, and typically at worst just reimage if things go amuck.
Oct
19
comment What account should I use for ASP.NET?
I think this resource is pretty dated now and doesn't reflect industry practices such as frequent enforced password changes very well - Custom User accounts are a huge risk to application availability in such environments.
Oct
19
answered What account should I use for ASP.NET?
Oct
1
comment Running ASP Classic and .NET on Linux
Just for the record ASP "classic" shipped with Win2k8 r2 - implying at least 10 years of support from here. Main variance is invariably COM objects such as XML and ADO, external to ASP rather than the scripting engines themselves. While many features were added over the engine's lives, they removed/altered very few features.
Sep
17
awarded  Yearling
Aug
15
comment Retrieving Anchor Link In URL for ASP.Net
Miky just because someone wrote a piece of code to parse anchors out of URLs - still doesn't mean it is sent by any browser over the wire. Try it - use your favourite network monitor of choice to watch the wire. You won't see any anchor in the HTTP request.
Jul
1
answered Why does LINQ send sp_executesql instead of directly executing the SQL?
Jul
1
comment Why does LINQ send sp_executesql instead of directly executing the SQL?
This isn't a reason to use sp_executesql tho'. Parameterization is available on the SqlExecDirect calls through OLE/DB and ODBC too.
Jul
1
comment Why does LINQ send sp_executesql instead of directly executing the SQL?
OP you should clarify what you mean a little - I take it you're watching through SQL Profiler and see calls flowing by. I interpret your question as "why does L2S use sp_executesql rather than send the contained statements directly".
Jul
1
comment Why does LINQ send sp_executesql instead of directly executing the SQL?
Yeah I guess I should qualify mine a bit better too :) SQLExecDirect through OLEDB/ODBC is just as a parameterizable. Unless there was more than a single statement being sent - it doesn't seem to make sense.
Jul
1
comment Why does LINQ send sp_executesql instead of directly executing the SQL?
The article is talking about the EXECUTE tsql statement. The OP is wondering why sp_executesql is being sent rather than sending the "inner" statement directly (parameters and all).
Jul
1
comment Why does LINQ send sp_executesql instead of directly executing the SQL?
msdn.microsoft.com/en-us/library/… as additional information about Execute supporting the same parameterized statement caching strategies.
Jul
1
comment Why does LINQ send sp_executesql instead of directly executing the SQL?
Execute uses the same statement cache with parameterized queries.
Jul
1
comment Why does LINQ send sp_executesql instead of directly executing the SQL?
Execute is just as parameterizable, so parameterization isn't it. What data says it performs "more efficiently" Its at least the same cost.
Jun
30
awarded  
Jun
12
comment What’s the advantage of using COM over a plain DLL?
Yeah totally agree - unless you need it, it is often more trouble.
Jun
12
answered What’s the advantage of using COM over a plain DLL?
Jun
12
accepted Which tables/views contain the list of objects used by Service Broker?
Jun
12
answered Which tables/views contain the list of objects used by Service Broker?
Jun
8
revised Who wins if we have multiple temporary Asynchronous pluggable protocol for same schema?
added 150 characters in body; added 7 characters in body
Jun
7
answered Who wins if we have multiple temporary Asynchronous pluggable protocol for same schema?