Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
7answers
2k views

.NET Entity framework project layout (architecture)

I'm trying to determine how best to architect a .NET Entity Framework project to achieve a nice layered approach. So far I've tried it out in a browse-based game where the players own and operate ...
3
votes
3answers
472 views

What are benefits of serving static HTML and generating content with AJAX/JSON?

http://blog.urbantastic.com/post/81336210/tech-tuesday-the-fiddly-bits Heath from Urbantastic writes about his HTML generation system: All the HTML in Urbantastic is completely static. All ...
2
votes
3answers
182 views

What are possible architecture options for large scale web applications

I am assigned a task to develop a large scale social web application like Facebook, twitter etc, using ASP.net with C# Before this my development was based on three tier architecture (i.e ...
2
votes
1answer
113 views

What consideration would one take when designing a scalable web architecture

I know that one has to look at the queries for database, because when the database is small queries are not a problem. But when it becomes larger it could slow down the site.
2
votes
1answer
99 views

What's the best way to simulate a complex production web development environment?

I want to create a modestly scalable development environment for an in-development web service. Ideally, there would be an nginx web server with haproxy and a few database servers, websockets, the ...
2
votes
1answer
106 views

Architecture for Semantic Web Framework

I am doing a project on Web Based Ontology for E-citizenship where a ".owl" file will be generated using Protege OWL editor. We have to use that file for enabling Web service. Can anyone suggest me ...
2
votes
3answers
816 views

Web architecture: MVC, Lazy initialization, Data transfer Objects, Open Session In View, is there a concensus approach?

What flaws do you see in the following design, (and what would be your ideal architecture suggestion) for a typical web 3-tier application? My current blueprint approach is very roughly this ...
1
vote
1answer
52 views

Looking for comparison of web application approaches to help choose technology and architecture

I am looking for resources that give the pros & cons for different web application approaches. I have found a book "Web Application Architecture (Principles, Protocols and Practices). But it is ...
1
vote
3answers
307 views

Can i say that MVP = 3 Tier Archi?

From last few days i have been searching the optimal architecture for my new web application, which would be devloped in ASP.Net using C#. Until now, i only find and study following 3 Three Tier ...
1
vote
1answer
93 views

Common shared CSS JS files in a directory shared between similar sites?

Backgournd info: I have a ISS6 webserver hosting multiple websites. I have about 15 domains that could be considered "sister" sites that share styles, layouts, etc but they still will have their own ...
1
vote
1answer
237 views

Web application architecture in a web farm

I know there are a some changes to a web application when moving from a single web server to two, or more, web servers. But architectually, are there any other changes to consider when adding more ...
1
vote
2answers
854 views

Building farms with IBM Websphere, IBM Http Server, Load Balancer (or Dispacher)

Do you know a web page or pdf or any books to learn how to architecture these products to create a farm? Also any generic web application farm architecture best-practices source is appreciated ... I ...
1
vote
6answers
255 views

How do you structure your website content?

Do you try to keep it simple and have a root folder and then 1 folder for images, javascript, flash, etc? What do you normally call your folders? Do you give your files naming conventions?
0
votes
1answer
616 views

Difference between 3Tier Architecture and (MVC or MVP)

I just want to know the difference between 3Tier Architecture and (MVC or MVP). I am asking this question because i am C++ developer and new web development. I read various internet resources and i ...
0
votes
1answer
86 views

ASP.net Confusion among web architecture

A little Background: I started my career almost 5year ago as a web developer using ASP.net and C#, after working as a web developer for only a year i switched to the world of low level programming ...
0
votes
2answers
210 views

What is a common web architecture for java apps?

Im currently developing a java web application, and im researching how i should combine different types of technology in order to get the most use of a single webserver. My plan so far is to have the ...
0
votes
0answers
278 views

Zend Framework advanced architecture, suggestions

Just a notice, while this began a question, it turned into rambling and asking for suggestions and comments Ok maybe not so advanced compared to some of the people here. I currently use ZF 1.11, ...
0
votes
1answer
32 views

What to do with random pages after a 301 redirect?

I did a standard 301 redirect for a domain, but the original domain has about 300 pages that have some strength. It doesn't make sense to make them all point back to the new home page because the ...
0
votes
1answer
38 views

Is it advisable to make a web program to interface to a database-agnostic layer?

I'm a Winforms programmer before; I always partition programs I write in two parts, the front-end(Winforms) and middle-tier(facilitated by Remoting/WCF) On that approach, the front-end code cannot ...
0
votes
1answer
29 views

routing mvc on the web

I was wondering if anyone could possibly provide me some advice on how i could improve the routing (and/or architecture) to each 'section' of my application. (I'm writing in PHP5, and trying to use ...