Click here to Skip to main content
15,893,564 members
Home / Discussions / C#
   

C#

 
AnswerRe: i want send output data into pdf fromate Pin
DaveyM6921-Oct-09 0:11
professionalDaveyM6921-Oct-09 0:11 
QuestionWHY THIS CODE RETURNS ERROR Pin
RINSON VARGHESE20-Oct-09 23:54
RINSON VARGHESE20-Oct-09 23:54 
AnswerRe: WHY THIS CODE RETURNS ERROR Pin
Christian Graus21-Oct-09 0:00
protectorChristian Graus21-Oct-09 0:00 
GeneralRe: WHY THIS CODE RETURNS ERROR Pin
RINSON VARGHESE21-Oct-09 0:11
RINSON VARGHESE21-Oct-09 0:11 
AnswerRe: WHY THIS CODE RETURNS ERROR Pin
DaveyM6921-Oct-09 0:36
professionalDaveyM6921-Oct-09 0:36 
Questioncustom headers in email Pin
nirmalsat20-Oct-09 23:47
nirmalsat20-Oct-09 23:47 
AnswerRe: custom headers in email Pin
Christian Graus21-Oct-09 0:00
protectorChristian Graus21-Oct-09 0:00 
GeneralRe: custom headers in email Pin
J4amieC21-Oct-09 0:09
J4amieC21-Oct-09 0:09 
GeneralRe: custom headers in email Pin
Eddy Vluggen21-Oct-09 0:10
professionalEddy Vluggen21-Oct-09 0:10 
AnswerRe: custom headers in email Pin
J4amieC21-Oct-09 0:10
J4amieC21-Oct-09 0:10 
GeneralRe: custom headers in email Pin
nirmalsat21-Oct-09 19:38
nirmalsat21-Oct-09 19:38 
QuestionSuggestion about a data structure Pin
Siddhartha S.20-Oct-09 23:45
Siddhartha S.20-Oct-09 23:45 
AnswerRe: Suggestion about a data structure Pin
Luc Pattyn21-Oct-09 2:40
sitebuilderLuc Pattyn21-Oct-09 2:40 
GeneralRe: Suggestion about a data structure Pin
Siddhartha S.21-Oct-09 2:45
Siddhartha S.21-Oct-09 2:45 
GeneralRe: Suggestion about a data structure Pin
Luc Pattyn21-Oct-09 2:53
sitebuilderLuc Pattyn21-Oct-09 2:53 
GeneralRe: Suggestion about a data structure Pin
Siddhartha S.21-Oct-09 2:55
Siddhartha S.21-Oct-09 2:55 
QuestionWindows Identity of the currently logged in user Pin
ramz_g20-Oct-09 22:23
ramz_g20-Oct-09 22:23 
AnswerRe: Windows Identity of the currently logged in user Pin
stancrm20-Oct-09 22:31
stancrm20-Oct-09 22:31 
GeneralRe: Windows Identity of the currently logged in user Pin
ramz_g20-Oct-09 23:11
ramz_g20-Oct-09 23:11 
AnswerRe: Windows Identity of the currently logged in user Pin
Eddy Vluggen20-Oct-09 23:40
professionalEddy Vluggen20-Oct-09 23:40 
ramz_g wrote:
System.Security.Principal.WindowsIdentity.GetCurrent().Name

I am getting the name as "SYSTEM" and not the logged in user's name. And I know that this is because the service is run at the system level.


That's correct. Your service is running with the privileges of the system account.

ramz_g wrote:
I can now get the currently logged in user name. But, this requires the user to enter his user name and password when the service is being installed and I do not want that to happen.


It would be a breach in security if you could impersonate that user without them entering a password for their account. Either your database needs to grant access to the builtin system-account, or the service needs to run under it's own account, or you use the users' account.

If you're using SQL Server, then you might want to switch to a SQL-login (as compared to Windows Authentication). You wouldn't want to do that with the 'sa' user, but it would get you started Smile | :)

I are Troll Suspicious | :suss:

GeneralRe: Windows Identity of the currently logged in user Pin
ramz_g21-Oct-09 2:05
ramz_g21-Oct-09 2:05 
GeneralRe: Windows Identity of the currently logged in user Pin
Eddy Vluggen21-Oct-09 3:18
professionalEddy Vluggen21-Oct-09 3:18 
GeneralRe: Windows Identity of the currently logged in user Pin
ramz_g21-Oct-09 19:15
ramz_g21-Oct-09 19:15 
QuestionSafe Parallel loops Pin
tvbarnard20-Oct-09 21:49
tvbarnard20-Oct-09 21:49 
AnswerRe: Safe Parallel loops Pin
stancrm20-Oct-09 22:27
stancrm20-Oct-09 22:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.