473,466 Members | 1,298 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

restart webservice

hi guru's
I want to restart my webservice when ever it throws an exception that isn't
cought. can i do that by web.config or iss or how ??
Nov 23 '05 #1
8 9299
What exactly do you mean when you say restart? You always get a new
instance of your web service class for every new incoming request. Why
do you want to restart the service?

You would have to restart the ASP.Net or the IIS worker process which
would affect the availability of your web service and potentially other
web applications on that serve.

Also you would need to run undo an account with administrator
privileges. Is that really something you want to do?

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko
-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Monday, December 27, 2004 4:14 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: restart webservice

hi guru's
I want to restart my webservice when ever it throws an exception that
isn't
cought. can i do that by web.config or iss or how ??


Nov 23 '05 #2
I want to restart, because that is my best guess, When i get an exception
thrown it is from the db I'm connecting to and I think i should kill the db
connection, because the db ties up licenses. When it happens during debug I
kill the aspnet_wp.exe process and all the licenses are released.

"Christoph Schittko [MVP]" wrote:
What exactly do you mean when you say restart? You always get a new
instance of your web service class for every new incoming request. Why
do you want to restart the service?

You would have to restart the ASP.Net or the IIS worker process which
would affect the availability of your web service and potentially other
web applications on that serve.

Also you would need to run undo an account with administrator
privileges. Is that really something you want to do?

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko
-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Monday, December 27, 2004 4:14 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: restart webservice

hi guru's
I want to restart my webservice when ever it throws an exception that
isn't
cought. can i do that by web.config or iss or how ??


Nov 23 '05 #3
I've just been looking around the user on my computer, ASPNET is appearently
only used for running the aspnet_wp process, and i could set appearently set
som times to shorter than ever on my iss's properties.
Which i guess will end the session and close the application and retarting
it again. ( and herby freeing licenses)

"Christoph Schittko [MVP]" wrote:
What exactly do you mean when you say restart? You always get a new
instance of your web service class for every new incoming request. Why
do you want to restart the service?

You would have to restart the ASP.Net or the IIS worker process which
would affect the availability of your web service and potentially other
web applications on that serve.

Also you would need to run undo an account with administrator
privileges. Is that really something you want to do?

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko
-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Monday, December 27, 2004 4:14 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: restart webservice

hi guru's
I want to restart my webservice when ever it throws an exception that
isn't
cought. can i do that by web.config or iss or how ??


Nov 23 '05 #4
It sounds like you are storing database connections (or objects that
hold open database connections) in the session state? If that's the case
you need to design your application to eliminate the root cause of your
problems instead of addressing the symptom by killing the worker
process.

You __have to__ follow the recommended usage for database connections,
i.e. call open as late as possible, execute your SQL and close/dispose
the connection. Otherwise you will see the problems you're reporting.

Killing the worker process will kill all sessions for all web
applications running in that instance. You can never be sure that you
are not impacting other users of other applications when you just kill
the process.

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko

-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Tuesday, December 28, 2004 7:35 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: Re: restart webservice

I've just been looking around the user on my computer, ASPNET is
appearently
only used for running the aspnet_wp process, and i could set appearently set
som times to shorter than ever on my iss's properties.
Which i guess will end the session and close the application and retarting it again. ( and herby freeing licenses)

"Christoph Schittko [MVP]" wrote:
What exactly do you mean when you say restart? You always get a new
instance of your web service class for every new incoming request. Why do you want to restart the service?

You would have to restart the ASP.Net or the IIS worker process which would affect the availability of your web service and potentially other web applications on that serve.

Also you would need to run undo an account with administrator
privileges. Is that really something you want to do?

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko
-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Monday, December 27, 2004 4:14 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: restart webservice

hi guru's
I want to restart my webservice when ever it throws an exception that isn't
cought. can i do that by web.config or iss or how ??



Nov 23 '05 #5
hmm, I developing in c# & .net, and open the session in the 'global' class
generated when you create a new webservice project. I open in thefunction:
protected void Session_Start(Object sender, EventArgs e)
- you state that i should do it much later ? and that way can control the
licens use better. And catch exceptions thrown by the db better, and wont
have to force the app to restart.

"Christoph Schittko [MVP]" wrote:
It sounds like you are storing database connections (or objects that
hold open database connections) in the session state? If that's the case
you need to design your application to eliminate the root cause of your
problems instead of addressing the symptom by killing the worker
process.

You __have to__ follow the recommended usage for database connections,
i.e. call open as late as possible, execute your SQL and close/dispose
the connection. Otherwise you will see the problems you're reporting.

Killing the worker process will kill all sessions for all web
applications running in that instance. You can never be sure that you
are not impacting other users of other applications when you just kill
the process.

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko

-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Tuesday, December 28, 2004 7:35 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: Re: restart webservice

I've just been looking around the user on my computer, ASPNET is
appearently
only used for running the aspnet_wp process, and i could set

appearently
set
som times to shorter than ever on my iss's properties.
Which i guess will end the session and close the application and

retarting
it again. ( and herby freeing licenses)

"Christoph Schittko [MVP]" wrote:
What exactly do you mean when you say restart? You always get a new
instance of your web service class for every new incoming request. Why do you want to restart the service?

You would have to restart the ASP.Net or the IIS worker process which would affect the availability of your web service and potentially other web applications on that serve.

Also you would need to run undo an account with administrator
privileges. Is that really something you want to do?

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko

> -----Original Message-----
> From: kenneth fleckenstein nielsen
> [mailto:ke************************@discussions.micr osoft.com]
> Posted At: Monday, December 27, 2004 4:14 AM
> Posted To: microsoft.public.dotnet.framework.webservices
> Conversation: restart webservice
> Subject: restart webservice
>
> hi guru's
> I want to restart my webservice when ever it throws an exception that > isn't
> cought. can i do that by web.config or iss or how ??


Nov 23 '05 #6
It would be nice just to restart the httpApp that the service derive from.
But it doesn't seam to have an end/exit function to call.

"Christoph Schittko [MVP]" wrote:
It sounds like you are storing database connections (or objects that
hold open database connections) in the session state? If that's the case
you need to design your application to eliminate the root cause of your
problems instead of addressing the symptom by killing the worker
process.

You __have to__ follow the recommended usage for database connections,
i.e. call open as late as possible, execute your SQL and close/dispose
the connection. Otherwise you will see the problems you're reporting.

Killing the worker process will kill all sessions for all web
applications running in that instance. You can never be sure that you
are not impacting other users of other applications when you just kill
the process.

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko

-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Tuesday, December 28, 2004 7:35 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: Re: restart webservice

I've just been looking around the user on my computer, ASPNET is
appearently
only used for running the aspnet_wp process, and i could set

appearently
set
som times to shorter than ever on my iss's properties.
Which i guess will end the session and close the application and

retarting
it again. ( and herby freeing licenses)

"Christoph Schittko [MVP]" wrote:
What exactly do you mean when you say restart? You always get a new
instance of your web service class for every new incoming request. Why do you want to restart the service?

You would have to restart the ASP.Net or the IIS worker process which would affect the availability of your web service and potentially other web applications on that serve.

Also you would need to run undo an account with administrator
privileges. Is that really something you want to do?

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko

> -----Original Message-----
> From: kenneth fleckenstein nielsen
> [mailto:ke************************@discussions.micr osoft.com]
> Posted At: Monday, December 27, 2004 4:14 AM
> Posted To: microsoft.public.dotnet.framework.webservices
> Conversation: restart webservice
> Subject: restart webservice
>
> hi guru's
> I want to restart my webservice when ever it throws an exception that > isn't
> cought. can i do that by web.config or iss or how ??


Nov 23 '05 #7
That's not what you asked for initially ...

It's doable, by unloading the app domain that the application is running
in, but I'm not sure if the account that's doing that requires special
privileged.

Either way, you're much better off changing the design of your
application.

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko
-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Wednesday, December 29, 2004 6:37 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: Re: restart webservice

It would be nice just to restart the httpApp that the service derive from. But it doesn't seam to have an end/exit function to call.

"Christoph Schittko [MVP]" wrote:
It sounds like you are storing database connections (or objects that
hold open database connections) in the session state? If that's the case you need to design your application to eliminate the root cause of your problems instead of addressing the symptom by killing the worker
process.

You __have to__ follow the recommended usage for database connections, i.e. call open as late as possible, execute your SQL and close/dispose the connection. Otherwise you will see the problems you're reporting.
Killing the worker process will kill all sessions for all web
applications running in that instance. You can never be sure that you are not impacting other users of other applications when you just kill the process.

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko

-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Tuesday, December 28, 2004 7:35 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: Re: restart webservice

I've just been looking around the user on my computer, ASPNET is
appearently
only used for running the aspnet_wp process, and i could set

appearently
set
som times to shorter than ever on my iss's properties.
Which i guess will end the session and close the application and

retarting
it again. ( and herby freeing licenses)

"Christoph Schittko [MVP]" wrote:

> What exactly do you mean when you say restart? You always get a new > instance of your web service class for every new incoming
request. Why
> do you want to restart the service?
>
> You would have to restart the ASP.Net or the IIS worker process

which
> would affect the availability of your web service and
potentially other
> web applications on that serve.
>
> Also you would need to run undo an account with administrator
> privileges. Is that really something you want to do?
>
> HTH,
> Christoph Schittko
> MVP XML
> http://weblogs.asp.net/cschittko
>
> > -----Original Message-----
> > From: kenneth fleckenstein nielsen
> > [mailto:ke************************@discussions.micr osoft.com]
> > Posted At: Monday, December 27, 2004 4:14 AM
> > Posted To: microsoft.public.dotnet.framework.webservices
> > Conversation: restart webservice
> > Subject: restart webservice
> >
> > hi guru's
> > I want to restart my webservice when ever it throws an
exception that
> > isn't
> > cought. can i do that by web.config or iss or how ??
>
>



Nov 23 '05 #8
You are correct. Open the connection just when you need to execute a
database command and then close it as soon as you're done. That way you
don't tie up database connections (licenses) and ensure that database
connection can be pooled.

That should avoid your exceptions altogether (or at least rule out one
possible cause ;) ).

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko

-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Wednesday, December 29, 2004 2:35 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: Re: restart webservice

hmm, I developing in c# & .net, and open the session in the 'global' class generated when you create a new webservice project. I open in thefunction: protected void Session_Start(Object sender, EventArgs e)
- you state that i should do it much later ? and that way can control the licens use better. And catch exceptions thrown by the db better, and wont have to force the app to restart.

"Christoph Schittko [MVP]" wrote:
It sounds like you are storing database connections (or objects that
hold open database connections) in the session state? If that's the case you need to design your application to eliminate the root cause of your problems instead of addressing the symptom by killing the worker
process.

You __have to__ follow the recommended usage for database connections, i.e. call open as late as possible, execute your SQL and close/dispose the connection. Otherwise you will see the problems you're reporting.
Killing the worker process will kill all sessions for all web
applications running in that instance. You can never be sure that you are not impacting other users of other applications when you just kill the process.

HTH,
Christoph Schittko
MVP XML
http://weblogs.asp.net/cschittko

-----Original Message-----
From: kenneth fleckenstein nielsen
[mailto:ke************************@discussions.micr osoft.com]
Posted At: Tuesday, December 28, 2004 7:35 AM
Posted To: microsoft.public.dotnet.framework.webservices
Conversation: restart webservice
Subject: Re: restart webservice

I've just been looking around the user on my computer, ASPNET is
appearently
only used for running the aspnet_wp process, and i could set

appearently
set
som times to shorter than ever on my iss's properties.
Which i guess will end the session and close the application and

retarting
it again. ( and herby freeing licenses)

"Christoph Schittko [MVP]" wrote:

> What exactly do you mean when you say restart? You always get a new > instance of your web service class for every new incoming
request. Why
> do you want to restart the service?
>
> You would have to restart the ASP.Net or the IIS worker process

which
> would affect the availability of your web service and
potentially other
> web applications on that serve.
>
> Also you would need to run undo an account with administrator
> privileges. Is that really something you want to do?
>
> HTH,
> Christoph Schittko
> MVP XML
> http://weblogs.asp.net/cschittko
>
> > -----Original Message-----
> > From: kenneth fleckenstein nielsen
> > [mailto:ke************************@discussions.micr osoft.com]
> > Posted At: Monday, December 27, 2004 4:14 AM
> > Posted To: microsoft.public.dotnet.framework.webservices
> > Conversation: restart webservice
> > Subject: restart webservice
> >
> > hi guru's
> > I want to restart my webservice when ever it throws an
exception that
> > isn't
> > cought. can i do that by web.config or iss or how ??
>
>



Nov 23 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: DraguVaso | last post by:
Hi, I'm new to WebServices, and I'm doing some tests (with a small VB.NET-application) to know the performance-difference between a WebService and the 'normal'-way of getting data (just...
6
by: Davie | last post by:
I want to authorise a user of a web service by using the AuthHeaderValue for some reason I keep getting a null reference exception when I try to run the following code: It seems to work fine on a...
1
by: Nalaka | last post by:
Hi, I am testing with Visual studio 2005, web projects. Situation: I have one solution with two web projects, created as file system projects. (I am tesing using the built in server, not IIS)...
3
by: John A Grandy | last post by:
In ASP.NET 1.1 and/or 2.0 ..... Is it possible to configure a web-app so that replacement of an .xml file ( physically located under the virtual dir root ) with a newer version of the file...
6
by: Leonardo Curros | last post by:
Hello, I would like to know what's the best way to restart one service. I would like to do it from the service itself. Is this possible? I try it with ServiceController.stop()...
7
by: Nalaka | last post by:
Hi, I created a sinple web service that returns a dataSet. Then I created a client program that uses this web service (that returns the Dataset). My question is, how did the client figure...
5
by: AliR | last post by:
Hi Everyone, I have a Visual C++ MFC program, and I am trying to use a webservice written in C#. When I add the webservice to my project using Add Web Reference the sproxy compiler complains...
4
by: shorti | last post by:
Can anyone explain in greater (and more comprehensive) detail what the RESTART option does in the ALTER TABLE table ALTER COLUMN statement. This is the description in Info Center: RESTART or...
0
by: =?Utf-8?B?TWFuaQ==?= | last post by:
Hi All, Problem in deploying my WebService developed using Asp.net WebServices 2005. I have designed simple WebService using Asp.net Webservices 2.0 , The webservice look this , using System;...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.