Answer Questions
Ian_GENUX When to factories and interfaces in a component
Hello everyone. When developing a component should I always handle creation of objects with a factory Should the objects that my component contains always be fronted with an interface For example a component to manage a user account database being consumed in-proc by an ASP.NET web app. Which do you think a better design in most cases for the UserMgr component : 1.) using UserMgr; public void Page_Load { IUsers users = ...Show All
CondonG O/R mapper requirements for domain layer
I have heard a lot of talk about disadvantages of various ORM solutions. Mainly that some use attributes and reflection, making your domain layer peppered with hints about how objects are serialized and complaints (probably false) that reflection is slow. Also, some frameworks don't support caching of domain objects. Some require you to derive all your domain classes from a base class provided by the mapper. Others can't ...Show All
Len Weaver scalability implies using web services?
Hi everyone I am an analyst- programmer here in Spain(I don't know what is the difference with a programmer, i usually do the same things) I am studying a lot about architecture right now because i am in a very big project in the company that recently has hire me, perhaps the biggest project of Spain. Because i am a computer engineer I like the big vision, not the fight with the vb6, this just pay my bills. We use a lot of com+ components, ...Show All
Jorn B Architecture templates
I am in a small shop where we don't have UML tools or other design aids other than Visio. What I am looking for if there is any are templates or guides, standards for how a system architecture should be documented. That standard would also include how architecture should be documented graphically as well. You can also check the following site for more on Architecture Templates and Processes: http://www.bredemeyer.com/papers.htm ...Show All
Peteg "Unique ID" server for multi-server app
I'm building an ASP.NET app that I hope will scale to need multiple servers. For certain objects, I'd like to provide users with an "External ID". This would be either a user entered or randomly generated string, like "Fred's Data" or "q1g52xTK". This external ID would be associated with a GUID, and would allow the user to get at the object without having to know the GUID (such as at log-in). (They will also be a ...Show All
megrez80 Databinding vs Multi-tier
I'm a bit confused - see if you can help me out. It seems like microsoft is really big on the multi-tiered approach to development(presentation, business, data), but now, with visual studio 2005, they're also really pushing the new and improved typed dataset for databinding. Am I wrong, or is it virtually impossible to take full advantage of the new typed dataset and still separate your system into presentation and data layers You create a data ...Show All
Valentin Rozescu Is their worflow engine which generates .net code at compile time
i need to know which are the workflow and rule engines which generates workflow/ rules are at compile time as .net code. These would not exactly be engines but s/w ' s which can create workflow / rules. regards Well you could always try the Windows Workflow Foundation. It's currently available from the windows vista developer center. Of course if you'd prefer to work with released and supported softw ...Show All
Robsterw A good second book about architecture
Hello I have finished "pro scalable application in .net 2.0" which was nice. Now I want to read another book about architecture. What do you recomend I think Domain-Driven Design: Tackling Complexity in the Heart of Software is a good option, do you know another Thanks. I find Amazon.com "the user who bought/reviewed this book also bought/reviewed this as well" piece of advice usually helpful. Searching the ...Show All
Deasun Advantages of OOP ?
Hello, Im a fun of OOP designs. I design my bussiness classes when I start a new project. Then maybe I will write mapper classes for bussiness classes to map DB tables or using an O/RM tool or an ODBMS . Think that this project is big one and it has long deadline. You will develop it 2 or 3 years. Requirements will be changed. To develop this project with OOP designs and n-Tier application design is good idea. But I am asking myself ...Show All
Cardiff Ed A good first book about .net architecture
Hello gurus! I am a computer engineer (a Spanish five years degree) and a MCAD.net professional. I know about general architecture but not architecture in .net world. I want you to tell me a good first book about architecture under .net (net 2.0 ), develop real scalable applications, n-tiers, etc etc. Thanks. There are many great .NET architecture books (MS Press has a ton of them:D) You mention N tier design in particular; for ...Show All
Ephi windows question?!
helo all, well I am not sure if that is the right place for posting this post, but I have a small question: what is windows development Writing code in windows, COm and these things, hoiw could I know moreabout these, and how could I start write coding for the windows > thanks ...Show All
dougnoel Need help on solution architecture employing BizTalk Server & MSMQ Server
Hi, I have a potential software project for a large ad composition agency. The requirement is briefly as follows: 1. There will be front offices located in more than a dozen locations across multiple states. These front offices would be posting requirements about advertisements to multiple back office located in some other country. Each front office would have about 10 users. 2. Each ad ...Show All
xikopt Advanced NTFS Premissions: Folder ReadOnly - Content Modify
Hi, I am facing an NTFS problem ... Directory structure as follows: * E:\public : users have read only, cannot modify, rename or delete the subfolders * E:\public\userN (N = 1 to 100) : user can modify the content, create folders, files, delete folders and files. (1 folder per user, 100 users) I have put the following permissions (with inheritence): * E:\Public : users read & execute * E:\Public\userN: (this folde ...Show All
Indra Agustia Is MSMQ the right answer?
A web user visits an ASP.NET web app and submits a form which makes a couple of changes to a database and sends a message to another user, say via email. 5 minutes later, I need to check and see if that second user has responded. If not, another email message needs to be sent to that same user. If after another 5 minutes the 2nd notification has not be responded to, a 3rd user will need to be notified. Does MSMQ have a mechanism that allow ...Show All
Blastobi VS 2005 and multiple projects.
I was told by someone that Visual Studio 2005 has moved away from multiple projects in a solution. I don't believe this for a second, but I wanted to see if 1) it really was true and 2) if there is any info I could draw from to counter that argument. Also, do many of you consider the information in this article: ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/dndotnet/html/designnetapp.asp ) a bit outdated And b ...Show All
