473,395 Members | 1,383 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

ASP.NET deployment

I just wanted to hear some ideas and what some have done on this. I'm having a problem deciding how to build or setup our application. This will be an application for our entire company of 700 employees and we have several different departments and groups. After talking with one developer we thought it would be a bad move to develop the whole application as one project since everytime you had to make a change to something you would have to build the entire application again and roll out the dll. Seemed like that could present some problems with many developers working on different parts within the application. Parts that aren't completed could get rolled out when not ready and break the site. So next we talked about developing the different modules in our application as custom controls (dlls) so if a developer needed to make a change they could just do it and roll out that one dll without having to worry about breaking the entire application. The problem there we thought was now we would have over a hundred dlls (doesn't seem that easy to keep track of). Next, we thought of breaking it out in projects. So we would have a global project with header, menu, etc. and then each department or group could be a project. That way when we go to build a project we are just building that department and not the entire application. This seemed much better until we tried to carry a session variable thru the site. From one project to another it would lose any session variables. We found this work around where we had to make the projects that we wanted under the global one not be virtual directories, we had to move the compiled dll up to the global bin directory, modify the web.config and then compile the global project. I can't remember if there were a few other steps, but anyhow it worked. This seemed like it would be a big pain to do for everything plus it raised questions about WHIDBEY. I may not completely understand WHIDBEY yet but this is what I was told. The deployment is supposed to be easier, more filed based where you just move files over and WHIDBEY handles all the compiling itself. If this was the case, how would the solution with moving the project dlls all into the global projects bin work if there are no dlls to move

Wow, I've really rambled on here. I hope this makes sense, just trying to figure out best way to setup an enterprise app..

Nov 18 '05 #1
1 1467
If your app is that large, you could always consider using stateless
webservices to provide a good portion of your logic, and allow your
mini-apps to connect to those for business logic only.

You really need to decide if you are developing one application, or a series
of dependent applications as it will impact your approach to DLL's etc. If
you are writing a single application with 100 dll's then I would suggest you
should look to better encapsulate your logic and break out your application
logic into a multi tiered architecture and split applications, and use the
best features of the various web development approaches - or you simply need
a better appreciation of source control as it may well be your best option.
Unfortunately, its your app - and only you can decide. If it was me, I
would always look to make features reusable, and if that makes the
development slightly more fussy without impacting performance then its often
cheaper over time. Deploying to the root web app would not be an approach I
would consider.

If your worried about session sharing across applications, look for some
other solutions - like keeping session data in a DB instead, or using
cookies etc. I would never or rarely at least try and architect a single
huge solution, I would always look to see what could be packaged up into
components and re-used - and that would be the right approach for .NET
development.

Whidby is not really open for discussion as it is still in the beta - which
you cant discuss outside of the beta groups - however, deployment is much
more akin to xcopy than the package and deployment approach used in vs.net.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
----------------------------------------------------------------------------
------------------------------------
<blatant plug>
Professional .NET for Java Developers with C#- ISBN: 1-861007-91-4
Professional Windows Forms - ISBN: 1861005547
Professional JSP 2nd Edition - ISBN: 1861004958
Professional JSP - ISBN:
1861003625
Beginning JSP Web Development - ISBN: 1861002092
</blatant plug>
----------------------------------------------------------------------------
------------------------------------

"webfitz" <an*******@discussions.microsoft.com> wrote in message
news:98**********************************@microsof t.com...
I just wanted to hear some ideas and what some have done on this. I'm having a problem deciding how to build or setup our application. This will
be an application for our entire company of 700 employees and we have
several different departments and groups. After talking with one developer
we thought it would be a bad move to develop the whole application as one
project since everytime you had to make a change to something you would have
to build the entire application again and roll out the dll. Seemed like
that could present some problems with many developers working on different
parts within the application. Parts that aren't completed could get rolled
out when not ready and break the site. So next we talked about developing
the different modules in our application as custom controls (dlls) so if a
developer needed to make a change they could just do it and roll out that
one dll without having to worry about breaking the entire application. The
problem there we thought was now we would have over a hundred dlls (doesn't
seem that easy to keep track of). Next, we thought of breaking it out in
projects. So we would have a global project with header, menu, etc. and
then each department or group could be a project. That way when we go to
build a project we are just building that department and not the entire
application. This seemed much better until we tried to carry a session
variable thru the site. From one project to another it would lose any
session variables. We found this work around where we had to make the
projects that we wanted under the global one not be virtual directories, we
had to move the compiled dll up to the global bin directory, modify the
web.config and then compile the global project. I can't remember if there
were a few other steps, but anyhow it worked. This seemed like it would be
a big pain to do for everything plus it raised questions about WHIDBEY. I
may not completely understand WHIDBEY yet but this is what I was told. The
deployment is supposed to be easier, more filed based where you just move
files over and WHIDBEY handles all the compiling itself. If this was the
case, how would the solution with moving the project dlls all into the
global projects bin work if there are no dlls to move?
Wow, I've really rambled on here. I hope this makes sense, just trying to figure out best way to setup an enterprise app...

Nov 18 '05 #2

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

Similar topics

2
by: Felix | last post by:
Out of no where I'm starting to get these problems and my Deployment projects won't build anymore. Does anyone have any idea what's causing this? I've tried copying these files from another...
0
by: Mystery Man | last post by:
We want to deploy a large CSharp/SQL Server system. We are successfully using the 'setup project' (under setup and deployment projects) to build our deployed system. With our stored...
4
by: wobbles | last post by:
Hi Everyone, I'm really struggling to get no-touch deployment to work well (if at all, in some cases). Can anyone recommend a good book on this topic? There seem to be a lot of blogs about...
3
by: Steve Brecher | last post by:
VS.NET help on deployment indicates that, while using a deployment project requires administrative access to IIS, " we recommend deploying your project in most cases, because it allows you to take...
4
by: James | last post by:
I have a VB windows forms application that accesses a Microsoft Access database that has been secured using user-level security. The application is being deployed using No-Touch deployment. The...
0
by: James | last post by:
I have a VB windows forms application that accesses a Microsoft Access database that has been secured using user-level security. The application is being deployed using No-Touch deployment. The...
3
by: al | last post by:
Hi, Can someone please tell me what is exactly zero deployment in VB.NET. Is it that .NET doesn't need to deal with the registry? If that is the case, then why MS introduced class registry? ...
2
by: Bill Nguyen | last post by:
I ran into this error trying to run an app from Publish.htm. I can't find what is wrong with the deployment. Thanks a million Bill -------- PLATFORM VERSION INFO
6
by: andrewbb | last post by:
I want to deploy a service with a windows app and the setup program must conform to the Vista certification requirements. Can that be done with the standard .net setup project? Assuming cost is...
7
by: Cirene | last post by:
I used to use the Web Deployment Project with my VS2005 projects. Now I've fully upgraded to VS2008. Do I have to download a new version of the Web Deployment Project? If so where can I find...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.