January 20th, 2013 10:38 AM
I have the following classes:
public class Order
{
public string OrderName { get; set; }
public List<Parts> PartsList { get; set; }
}
November 4th, 2011 07:59 PM
On my system there is an application (App.exe) that runs, but sometimes it terminates (gracefully and expectantly). At the same time I have another application that, when App.exe is stopped, needs to...
March 30th, 2011 09:47 AM
Wish I could .... but I need to use the user account created.
March 29th, 2011 04:20 PM
Currently I have a windows service written in C# (running as LocalSystem) which creates a user account, needed for impersonation, by using the DirectoryEntry to add the user/password and associated...
November 21st, 2009 06:34 PM
Yes I see something similar, the difference is the custom GetMessage() function is not in the WSDL.
Actually - it looks like using the super (Message) solved the problem ...
November 19th, 2009 10:54 PM
What do you mean "Metro"?
November 18th, 2009 10:40 PM
UserException has @WebFault already - or is it missing something?
I catch the exception, and it is in the WSDL, but it looks like either the String ErrorMessage isn't returning correctly...
November 18th, 2009 06:51 PM
I am trying to send an EXCEPTION from a Web Server to a Client using JAX-WS ...
When the exception is thrown by the server the client does catch it ... but the contents are not the expected...
November 3rd, 2009 11:30 PM
I've got a Client who needs to send a UDP packet to a server and the only reference he has to the Server is through the CORBA naming service (IOR). I know the IOR has the Server Information embedded...
November 3rd, 2009 05:23 PM
My system has a service (Serv.exe) which starts as LocalSystem and should be running at all time, additionally on startup of the PC (auto logon) the user has a STARTUP application (App.exe) which...
September 26th, 2009 12:34 PM
Is there a way to force a logoff (knowing this is not recommended) of the current interactive (logged-on) user and then login with a new user account (interactive - not using stuff like LogonUser and...
September 25th, 2009 03:59 PM
I have a tool which I use to programmatically create local user accounts as follows:
DirectoryEntry NewUser = dirEntryLocalMachine.Children.Add("UserName", "user");
...
September 20th, 2009 12:34 AM
Simplified Question:
My system has 2 accounts (USER and ADMIN), the user is always logged on as USER but at some specific times a process (Tool.exe) is launched under the ADMIN account (by a...
September 19th, 2009 10:44 PM
My system has 2 accounts (USER and ADMIN) and a service (Service.exe) running under LocalSystem.
The user logs into the USER account, the LocalService can then launch a process...
September 18th, 2009 03:04 PM
I need to find a reliable way to update a running Windows Service (Service.exe).
The service is run under the LocalSystem account whereas the logged-in user is in a non-admin User account.
My...
September 18th, 2009 11:33 AM
At my company we have a product which pretty much interacts with everything you can imagine... registry, databases, devices, etc... it is composed of many parts but the entire application is launched...
September 16th, 2009 11:39 PM
Ya - it is logged-on as ADMIN (verified) - from what I can see I still can't even access HKEY_CURRENT_USER so I think I need to use LoadUserProfile(...) to load-in all that information ... playing...
September 16th, 2009 09:15 PM
Didn't work - gives the same behavior ...
September 16th, 2009 12:47 PM
That is a great idea ... I've gotta run for 4-5 hours but the second I get back I'll test and post the results here ... Thanks !