Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / Web Services / December 2004

Tip: Looking for answers? Try searching our database.

restart webservice

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
kenneth fleckenstein nielsen - 27 Dec 2004 10:14 GMT
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 ??
Christoph Schittko [MVP] - 27 Dec 2004 15:34 GMT
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
[quoted text clipped - 8 lines]
> isn't
> cought. can i do that by web.config or iss or how ??
kenneth fleckenstein nielsen - 28 Dec 2004 09:09 GMT
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.

> 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
[quoted text clipped - 24 lines]
> > isn't
> > cought. can i do that by web.config or iss or how ??
kenneth fleckenstein nielsen - 28 Dec 2004 13:35 GMT
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)

> 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
[quoted text clipped - 24 lines]
> > isn't
> > cought. can i do that by web.config or iss or how ??
Christoph Schittko [MVP] - 28 Dec 2004 16:39 GMT
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
[quoted text clipped - 40 lines]
> > > isn't
> > > cought. can i do that by web.config or iss or how ??
kenneth fleckenstein nielsen - 29 Dec 2004 08:35 GMT
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.

> It sounds like you are storing database connections (or objects that
> hold open database connections) in the session state? If that's the case
[quoted text clipped - 66 lines]
> > > > isn't
> > > > cought. can i do that by web.config or iss or how ??
Christoph Schittko [MVP] - 29 Dec 2004 17:44 GMT
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
[quoted text clipped - 81 lines]
> > > > > isn't
> > > > > cought. can i do that by web.config or iss or how ??
kenneth fleckenstein nielsen - 29 Dec 2004 12:37 GMT
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.

> It sounds like you are storing database connections (or objects that
> hold open database connections) in the session state? If that's the case
[quoted text clipped - 66 lines]
> > > > isn't
> > > > cought. can i do that by web.config or iss or how ??
Christoph Schittko [MVP] - 29 Dec 2004 17:38 GMT
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
[quoted text clipped - 77 lines]
> > > > > isn't
> > > > > cought. can i do that by web.config or iss or how ??

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.