Wednesday, June 30, 2010
The Power of Saying "I Don't Know" - VerticalResponse
The leader then elaborates and you see a sign of quiet calm come over all of the people that now know what a TPS report is, because you asked. They wouldn’t risk looking like an idiot or risk showing a sign of weakness, but you actually showed a sign of strength.
In today's ultra competitive work environment, many people feel the need to be "super workers" and have an answer to every question. But, it's not always a good thing if you have people who work for you that are afraid to admit they don't know something, and it's the kind of behavior that can ultimately get you in trouble with potential clients.
I once worked with a guy who was a stereotypical Sales Shark! His problem? He sold whatever the prospect wanted, even if we didn’t have it. One particular prospect asked a ton of questions about our service and instead of saying "I don’t know if we can deliver that, I’ll check on it and get back to you," he said "Yes, we can do that." After closing and signing this pretty big deal, it turned out that the service that our new customer wanted wasn’t anything that we could deliver on. The customer wasn’t happy, which is the worst way to start a business relationship.
In another incident, I was recently on a conference call with someone who was trying to get our business. During the call, I asked this gentleman if he had seen the latest news on a company we were both tracking. He told me that he had, as I heard his fingers frantically scrambling on the keyboard for him to Google it and read it to me. Was I born yesterday? I don’t think so.
Why do people have to pretend to know everything? At my company, VerticalResponse, if we don’t know the answer to a question I encourage people to say, "I don’t know, but let me find out and get back to you with an answer." There is no value in dancing around something that isn’t true just to look good, because in the long run, if you’re wrong, you just look bad.
The Bottom Line: The Truth Doesn’t Hurt
I work in a male-dominated industry, so that’s probably the reason I see it happening with guys more than women. In any case, my opinion is those three little words are not any sign of weakness. Saying “I don’t know” is a sign of strength because it’s the most honest thing you can say.
It’s critical that your people/staff understand that they can actually earn respect by being confident in the fact that they aren’t expected to know every answer to every question. And your company can earn more business as a result.
The Power of Saying "I Don't Know" - VerticalResponse
Column by Janine Popick
February 11, 2010
Tuesday, June 29, 2010
WCF Security Articles
WCF over HTTPS - Christophe Geers
|
9 simple steps to enable X.509 certificates on WCF - CodeProject http://www.codeproject.com/KB/WCF/9StepsWCF.aspx?display=Print
|
Securing WCF Services with Certificates.- CodeProject http://www.codeproject.com/KB/WCF/wcf_certificates.aspx
|
How To Configure WCF Security Using Only X.509 Certificates - CodeProject http://www.codeproject.com/KB/webservices/WCFx509Security.aspx
|
WCF certificate authentication under Windows Vista - Windows Live http://romualdas.spaces.live.com/blog/cns!DCDC5E439E70339D!1006.entry?sa=894596551
|
Use Transport Security and Message Credentials - MSDN http://msdn.microsoft.com/en-us/library/ms789011.aspx |
|
WCF - 2 Way SSL Security using Certificates - Imaya's Blog http://blogs.msdn.com/b/imayak/archive/2008/09/12/wcf-2-way-ssl-security-using-certificates.aspx
|
Thoughts on BasicHttpBinding, Security and SSL - Sajay MSDN Blogs http://blogs.msdn.com/b/sajay/archive/2007/01/05/thoughts-on-basichttpbinding-security-and-ssl.aspx
|
Programming WCF Security - MSDN http://msdn.microsoft.com/en-us/library/ms731925.aspx |
Improving Web Services Security Guide - patterns & practices http://wcfsecurityguide.codeplex.com http://msdn.microsoft.com/en-us/library/ff648360.aspx
|
Certificate Authentication - MSDN Forum http://social.msdn.microsoft.com/forums/en-US/wcf/thread/4e12a513-ba7f-485d-93a7-2f093f1ccd8d |
Misc http://webservices20.blogspot.com/ http://wcfsecurity.codeplex.com/wikipage?title=How%20Tos |
Books
http://www.readprint.com/ |
Free online books library for students, teachers, and the classic enthusiast. |
http://webdesignledger.com/freebies/10-free-online-books-for-web-designers |
10 Free Online Books for Web Designers | Freebies |
http://www.infoq.com/resource/minibooks/domain-driven-design-quickly/en/pdf/DomainDrivenDesignQuicklyOnline.pdf |
7 Freely available E-Books/Guides I found essential for .NET Programmers and Architects http://amazedsaint.blogspot.com/2010/09/7-freely-available-e-booksguides-i.html |
Seth Godin: Validation is overrated
If you're waiting for a boss or an editor or a college to tell you that you do good work, you're handing over too much power to someone who doesn't care nearly as much as you do.
We spend a lot of time organizing and then waiting for the system to pick us, approve of us and give us permission to do our work.
Feedback is important, selling is important, getting the market to recognize your offering and make a sale--all important. But there's a difference between achieving your goals and realizing your work matters.
If you have a book to write, write it. If you want to record an album, record it. No need to wait for someone in a cubicle halfway across the country to decide if you're worthy.
http://sethgodin.typepad.com/seths_blog/2010/06/validation-might-be-overrated.html
Monday, June 28, 2010
Friday, June 25, 2010
Wednesday, June 23, 2010
IIS7: SSL Certificate binding issue
Problem
I recently tried installing a certificate into IIS7 on an new Windows 2008 server at work. The import went well but when I tried to bind a site to use the new certificate I got a dialog box with the following message
There was an error while performing this operation.
Details:
A specified logon session does not exist. It may already have been terminated. (Exception from HRESULT: 0x80070520)
Solution
You have to check the "Allow this certificate to be exported" box when you import the certificate file to certificate store
Source
http://blog.freakcode.com/2009/02/iis7-certificate-binding-issue.html
Tuesday, June 22, 2010
SSIS: Unable to execute web service task
Error Microsoft.SqlServer.Dts.Tasks.WebServiceTask.WebserviceTaskException: Could not generate the proxy for the specified Web service. The following errors were encountered while generating the proxy: Source file 'C:\Windows\TEMP\xyz.cs' could not be found . No inputs specified |
Solution Make sure that the account that the job is running under (the proxy account) has permissions to C:\Windows\TEMP. |
Source http://social.msdn.microsoft.com/Forums/en/sqlintegrationservices/thread/3249cb4e-00ea-419b-be90-d47394630673 |
WebDesign:: Icon Sources
Wednesday, June 16, 2010
C#:: Code Factory
Split string in equal sized chunks |
private IEnumerable<string> SplitIntoChunks(string text, int chunkSize) |
source: http://stackoverflow.com/questions/1632078/split-string-in-512-char-chunks-c |
Find the Date for the Start of the Week? |
public static class DateTimeExtensions |
source: http://stackoverflow.com/questions/38039/how-can-i-get-the-datetime-for-the-start-of-the-week |
Chained null checks and the Maybe monad - CodeProject |
OLD string postCode = null; |
NEW public static TResult With<TInput, TResult>(this TInput o, Func<TInput, TResult> evaluator) string postCode = this.With(x => person) |
source: http://www.codeproject.com/KB/cs/maybemonads.aspx |
C# Puzzlers http://streaming.ndc2010.no/tcs/?id=E915B78B-D9B7-4CE9-96DA-2B794391AD2F |
Monday, June 14, 2010
WCF Client Error:: Can't find method: 'Boolean System.IdentityModel.Selectors.SecurityTokenRequirement. get_IsOptionalToken()'
Scenario: All of a sudden, all your WCF client projects stop working with the above error
Cause: This was due to a different version between System.ServiceModel.dll and System.IdentityModel.dll.
Solution: It can be solved be installing the following Quick Fix:
Win7 / Win2008 R2
KB-article: http://support.microsoft.com/kb/976462
Installer: http://code.msdn.microsoft.com/KB976462
Windows Xp/2K3/Vista/Win2K8
KB-article: http://support.microsoft.com/kb/976394
Installer: http://code.msdn.microsoft.com/KB976394
Thursday, June 10, 2010
C#
-
How to - Check if a class is derived from another class
typeof(DerivedClass).IsSubclassOf(typeof(BaseClass))
http://stackoverflow.com/questions/457676/c-reflection-check-if-a-class-is-derived-from-a-generic-class
-
Article - Parameter passing
http://rapidapplicationdevelopment.blogspot.com/2007/01/parameter-passing-in-c.html
Tuesday, June 08, 2010
English::
PritishNandy 09 June 2010
Yesterday was awful, remembering the Bhopal trauma, a story I had covered with grief and anger. This morning, the rains washed it all away.
Every grief we feel is so quickly replaced by beauty, joy, hope. I guess this makes life so magical. This chiaroscuro of pain and delight
chiaroscuro
A monochrome picture made by using several different shades of the same colour
However, my own painting that Salman has no magnanimously displayed is so esoteric, that even I don't know what exactly it is
Confined to and understandable by only an enlightened inner circle
Monday, June 07, 2010
SQL Server
SQL Server 2008 - Trouble exploring databases node with newly created user.
Grant new user rights for each of the databases with no rights http://blogs.msdn.com/b/euanga/archive/2006/05/04/585513.aspx |
How to identify your SQL Server version and edition?SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition') |
How To: Reset Identity column in SQL ServerDBCC CHECKIDENT('Customer', RESEED, 0) http://geekswithblogs.net/TakeNote/archive/2007/11/30/117258.aspx |
List All the Tables for All Databasessp_msforeachdb 'select "?" AS db, * from [?].sys.tables'http://blog.sqlauthority.com/2009/04/26/sql-server-list-all-the-tables-for-all-databases-using-system-tables/ |
SQL Documentation BI Documenter - http://msdn.microsoft.com/en-us/magazine/ee335714.aspx SQL Doc - http://www.simple-talk.com/sql/sql-tools/database-documentation-using-sql-doc/ Code project - http://www.codeproject.com/KB/database/sqldoc.aspx |
Error: Saving changes not permitted Menu >> Tools >> Options >> Designers >> Uncheck “Prevent Saving changes that require table re-creation http://sqlserverpedia.com/blog/sql-server-bloggers/sql-server-–-fix-management-studio-error-saving-changes-in-not-permitted-the-changes-you-have-made-require-the-following-tables-to-be-dropped-and-re-created-you-have-either-made-changes/ |
SQL Server Performace |
Tip of the Day #5 (SQL Server memory usage) http://blog.colinmackay.net/archive/2008/07/20/2996.aspx |
SQL Server queries with DMVs for examining bottlenecks *** http://searchsqlserver.techtarget.com/tutorial/SQL-Server-queries-with-DMVs-for-examining-bottlenecks |
Using COALESCE to Build Comma-Delimited String |
http://www.sqlteam.com/article/using-coalesce-to-build-comma-delimited-string |
Download details: Microsoft® SQL Server® 2008 Express with Advanced Services http://www.microsoft.com/downloads/en/details.aspx?FamilyId=B5D1B8C3-FDA5-4508-B0D0-1311D670E336&displaylang=en |
SqlMag article: SQL Server 2008 Express Editions http://www.sqlmag.com/article/sql-server-2005-express/sql-server-2008-express-editions.aspx |