Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dll or better option?

Status
Not open for further replies.

BigRedTexas

Programmer
Mar 14, 2002
22
0
0
US
Ok, we want to have a dll or something similiear used for basic business functions (formatting, calculations, etc.) on the network and have other applications all reference that dll.

Here's the (possibly dumb) question. If we want to update that dll on the fly (in the middle of the day while the calling applications are running), how do we do that? Is it even possible if the referencing applications are using that dll? If not, whats the best way to go about doing what we are wanting?



Thanks!
 
Sounds like a webservice could be of use. By using the webservice as a facade, the dlls used by the webservice could be replaced at any time.

Craig
 
Thanks Craig. So you're saying that even if a Web Service is using a dll, the dll can be seamlessly replaced while in use?
 
Correct. There should be plenty on the net describing how ASP.Net pages can be updated without shutting down the web server. As webservices are a subset of ASP.Net, the same should apply.

Craig
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top