Click here to Skip to main content
15,917,964 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: silverlight Pin
Abhinav S3-Oct-12 20:40
Abhinav S3-Oct-12 20:40 
QuestionCheckk For WCF Service Running & Exit Pin
Kevin Marois29-Sep-12 9:51
professionalKevin Marois29-Sep-12 9:51 
I'm trying to check to see if a WCF service is running, and if not, exit. So far I have this:

// Attempt to create an instance of the proxy
bool serviceRunning = true;
try
{
    Proxy = new MyAppServiceRef.MyAppServiceClient();
}
catch (Exception e)
{
    serviceRunning = false;
}
// Now check to see if the service is running
try
{
    serviceRunning = !Proxy.ServiceRunning();
}
catch (Exception e)
{
    serviceRunning = false;
}

// If the service is not running, then exit the app
if (!serviceRunning)
{
    string message = "The service appears to not be running. Please check the service. " + ApplicationTitle + " will now exit.";
    MessageBox.Show(message, "Service Error", MessageBoxButton.OK, MessageBoxImage.Stop);
    Application.Current.Shutdown();
}


1) is this really the way to do this?

2) After the call to Application.Current.Shutdown() the app continue to run and I get XAML errors. How to I actually stop the app dead right here?

Thanks
If it's not broken, fix it until it is

QuestionSendMessage in C# WPF Pin
dominioYP28-Sep-12 6:11
dominioYP28-Sep-12 6:11 
AnswerRe: SendMessage in C# WPF Pin
Pete O'Hanlon29-Sep-12 10:30
mvePete O'Hanlon29-Sep-12 10:30 
GeneralRe: SendMessage in C# WPF Pin
dominioYP29-Sep-12 12:08
dominioYP29-Sep-12 12:08 
GeneralRe: SendMessage in C# WPF Pin
Pete O'Hanlon29-Sep-12 20:45
mvePete O'Hanlon29-Sep-12 20:45 
QuestionNew to .net/ previous programming background Pin
goawayxxxx27-Sep-12 8:29
goawayxxxx27-Sep-12 8:29 
AnswerRe: New to .net/ previous programming background Pin
Richard MacCutchan27-Sep-12 9:47
mveRichard MacCutchan27-Sep-12 9:47 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx27-Sep-12 10:00
goawayxxxx27-Sep-12 10:00 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan27-Sep-12 21:16
mveRichard MacCutchan27-Sep-12 21:16 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx28-Sep-12 8:14
goawayxxxx28-Sep-12 8:14 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan28-Sep-12 21:57
mveRichard MacCutchan28-Sep-12 21:57 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx29-Sep-12 7:29
goawayxxxx29-Sep-12 7:29 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan29-Sep-12 7:34
mveRichard MacCutchan29-Sep-12 7:34 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx29-Sep-12 16:46
goawayxxxx29-Sep-12 16:46 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan29-Sep-12 21:38
mveRichard MacCutchan29-Sep-12 21:38 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx30-Sep-12 6:23
goawayxxxx30-Sep-12 6:23 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan30-Sep-12 6:59
mveRichard MacCutchan30-Sep-12 6:59 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx30-Sep-12 7:51
goawayxxxx30-Sep-12 7:51 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan30-Sep-12 21:57
mveRichard MacCutchan30-Sep-12 21:57 
AnswerRe: New to .net/ previous programming background Pin
Pete O'Hanlon30-Sep-12 7:48
mvePete O'Hanlon30-Sep-12 7:48 
AnswerRe: New to .net/ previous programming background Pin
Blikkies2-Oct-12 5:04
professionalBlikkies2-Oct-12 5:04 
GeneralRe: New to .net/ previous programming background Pin
Alisaunder3-Oct-12 17:10
Alisaunder3-Oct-12 17:10 
AnswerRe: New to .net/ previous programming background Pin
_Maxxx_7-Oct-12 17:17
professional_Maxxx_7-Oct-12 17:17 
QuestionJesús Alvarez Manrique Pin
Member 901299827-Sep-12 6:47
Member 901299827-Sep-12 6:47 

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.