active questions tagged architecture - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T11:38:28Z http://stackoverflow.com/feeds/tag/architecture http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1814467/new-transport-and-reader-type-in-twisted 1 New transport and reader type in Twisted viraptor 2009-11-29T02:38:02Z 2009-11-29T04:31:31Z <p>I'm trying to add a new transport to Twisted, which will read data from a stream - either a file in a <code>tail -f</code> way, or from a pipe, but I have some problems with Twisted architecture.</p> <p>I've got the transport itself (implements <code>ITransport</code>) ready - it handles all file opening. I've got streaming functions/deferreds ready. How do I put it together now? I'd like to report the new data back to some protocol's <code>dataReceived()</code>.</p> <p>I could of course create a new object that will set up the I/O monitors with proper callbacks, register a callback on reactor shutting down (to close the files / protocols) and start everything up manually - but is that "the right way"? Is there any nicer abstraction I could use? I've seen <code>reactor.connectWith()</code>, but it doesn't really provide much of an abstraction...</p> <p>Also - how am I supposed to pass the data from my reader to the protocol? ITransport doesn't define any interface for it, even though it seems like exactly the transport's responsibility.</p> http://stackoverflow.com/questions/1813032/help-with-c-pattern 0 help with c# pattern. stevenrosscampbell 2009-11-28T16:56:58Z 2009-11-28T18:35:24Z <p>Hello and thanks for any assistance.</p> <p>using .Net 3.5 C#; </p> <p>Say i have about 10 methods that all follow the same pattern</p> <p>Using 3 as an example: </p> <pre><code>public Customer CreateCustomer(Customer c) { .. } public Car CreateCar(Car c) { .. } public Planet CreatePlanet(Planet p) { ..} </code></pre> <p>the internal logic of each method has the exact same pattern. </p> <p>IE:</p> <pre><code>public Customer CreateCustomer(Customer c) { Log.BeginRequest(c, ActionType.Create); Validate(customer); WebService.Send(Convert(c)); Log.EndRequest(c, ActionType.Create); } public Car CreateCar(Car c) { Log.BeginRequest(c, ActionType.Create); Validate(c); WebService.Send(Convert(c)); Log.EndRequest(c, ActionType.Create); } </code></pre> <p>The same is true with CreatePlanet and the other 7 methods.</p> <p>Can these methods be re-written, they all follow the same pattern, and I feel like I am missing something... Is there is another level of abstraction that could be derived? </p> <p>Question: How should this be re-written to take advantage of proper architecture pattens?</p> <p>Thanks, Steven </p> http://stackoverflow.com/questions/1437426/flash-lite-optimization-attachmovie-vs-timeline 1 Flash Lite Optimization - attachMovie vs Timeline Thommas 2009-09-17T08:18:18Z 2009-11-28T01:36:36Z <p>Give us your opinion about how you define a Flash Lite project for a complex application with many different views.</p> <p>Do you use : 1) attachMovie with each different views in movie clips in the library unloadMovie to switch to another view ?</p> <p>2) timeline ... you use gotoAndStop() ? the main problem of this, is when you use createEmptyMovieClip(), created movieclips won't be removed when you gotoAndStop() to another keyframe even if it is separated from the previous one.</p> <p>I tried solution n°2 Timeline becomes fast overloaded. Moreover, I learn that you need to put many empty frames to let Flash Lite initialize properly ... if you put 1 keyframe for each view from the very beginning of your timeline, your AS code will be buggy.</p> <p>I'm now going to use solution n°1.</p> <p>Tell us about your Flash Lite experience and mobile application architecture. Thx !</p> http://stackoverflow.com/questions/1810104/use-types-referenced-by-a-referenced-project-in-c 1 Use types referenced by a referenced project in C# Tarks 2009-11-27T18:25:03Z 2009-11-27T22:45:40Z <p>I'm new to splitting up my applications into multiple solutions (in other words I just got into the real world), I have a situation where I'm fully seperating the logic from the UI into a seperate project. Where I'm falling down is my glue code.</p> <p>As a simple example.</p> <p>Project car references projects containing door,radio etc</p> <p>Project garage references project car, but needs to use radio.</p> <p>Do I need to add a reference to the radio project in the garage project?</p> http://stackoverflow.com/questions/1789451/asp-net-provider-with-different-types-of-roles 0 ASP.NET Provider with Different Types of Roles teebot.be 2009-11-24T11:22:13Z 2009-11-27T20:04:02Z <p>Hello, </p> <p>I have different types of Roles to take into account when authorizing a user. For example: John must have <strong>Position</strong> Manager and be part of the Office Supplies <strong>Department</strong> to order a new computer.</p> <p>Problem with Roles is Roles.GetRolesForUser("John") can only return a string array. </p> <p>Should I go with a custom roleProvider and custom roleManager? or should I develop a custom ProfileManager to add methods like GetUsersWithProfileProperties()?</p> <p>Any suggestion is welcome!</p> <p>Thibaut</p> <p>EDIT: the above example is simplified I could have a much as 4 types of roles which are 4 different collections. </p> <p>EDIT: I found a <a href="http://stackoverflow.com/questions/1367483/asp-net-how-to-manage-users-with-different-types-of-roles">very similar question</a> </p> http://stackoverflow.com/questions/152120/are-there-any-open-source-projects-using-ddd-domain-driven-design 10 Are there any open source projects using DDD (Domain Driven Design)? Mikael Sundberg 2008-09-30T07:42:12Z 2009-11-27T18:58:33Z <p>I'm trying to understand the concepts behind DDD, but I find it hard to understand just by reading books as they tend to discuss the topic in a rather abstract way. I would like to see some good implementations of DDD in code, preferably in C#.</p> <p>Are there any good examples of projects practicing DDD in the open source world?</p> http://stackoverflow.com/questions/740826/web-app-to-client-interaction 0 Web app to client interaction? John Virgolino 2009-04-11T21:42:18Z 2009-11-27T18:00:03Z <p>I am designing a web app that has some information that needs to be transferred to a client side (non-browser) application (i.e. Outlook). Assuming the client side app has an API of some sort, I need for the web app to trigger the client side (based on a user clicking a link) to get the information and transfer it into the client app through it's API.</p> <p>My first thought would be to write an ActiveX control that I can pass a secure code to that then uses that information to talk back to the web app through a web service I create and then the ActiveX control can implement the interface into the client side app (i.e. Outlook). Based on what I have read, this is doable with ActiveX.</p> <p>My problem is that ActiveX won't work in Mozilla browsers or Chrome which poses a real problem as I need this to be multi-platform. I've read about NPAPI which is supposedly the equivelent native technology. I also read about plug-ins for Firefox and Chrome that supposedly support ActiveX, but they aren't native. I need to have native out of the box support so that users don't have to do anything special, just click and run. So here are my questions:</p> <p>1) Is ActiveX my only option for IE?</p> <p>2) Do I need to develop ActiveX and NPAPI to support all clients?</p> <p>3) Is there a better way to do this that I am not aware of? I am open to other technologies since the focus is on a seamless user experience.</p> <p>Thanks for any insight!</p> http://stackoverflow.com/questions/1806585/why-linux-is-called-monolithic-kernel 10 Why linux is called monolithic kernel KernelNewbie 2009-11-27T03:16:22Z 2009-11-27T16:29:13Z <p>I read that Linux is a monolithic kernel. Does monolithic kernel means compiling the linking the complete kernel code into an executable? If Linux is able to support modules, why not break all the subsystems into modules and load them when necessary. In that case, kernel doesn't have to load all modules initially and maintain index of the functions in the module and load them when necessary.</p> http://stackoverflow.com/questions/1809130/can-you-have-a-plugin-architecture-in-asp-net 0 Can you have a plugin architecture in ASP.NET? Robert Massa 2009-11-27T14:35:36Z 2009-11-27T14:51:17Z <p>Is it possible to load external "web-parts" in an ASP.NET website? I would like to make stand-alone dll's containing a User-Control or Page to include in a main site. Like a plug-in architecture for websites.</p> <p>The only examples I can seem to find bind the user control to the main project, you need to have a "hard" reference to the control.</p> <p>What I would like is to define a shared interface which the plugins can implement, and the website can load and display.</p> http://stackoverflow.com/questions/1100819/how-do-you-design-object-oriented-projects 27 How do you design object oriented projects? Victor 2009-07-08T22:10:25Z 2009-11-27T11:10:52Z <p>I'm working on a large project (for me) which will have many classes and will need to be extensible, but I'm not sure how to plan out my program and how the classes need to interact.</p> <p>I took an OOD course a few semesters back and learned a lot from it; like writing UML, and translating requirements documents into objects and classes. We learned sequence diagrams too but somehow I missed the lecture or something, they didn't really stick with me.</p> <p>With previous projects I've tried using methods I learned from the course but usually end up with code that as soon as I can say "yeah that looks something like what I had in mind" i have no desire to dig through the muck to add new features.</p> <p>I've got a copy of Steve McConnell's <em>Code Complete</em> which I continually hear is amazing, here and elsewhere. I read the chapter on design and didn't seem to come out with the information I'm looking for. I know he says that it's not a cut and dried process, that it's mostly based on heuristics, but I can't seem to take all his information and apply it to my projects.</p> <p>So <strong>what are things you do during the high level design phase (before you begin programming) to determine what are the classes you need (especially ones not based on any 'real world objects') and how will they interact with each other</strong>?</p> <p>Specifically I'm interested in what are the methods you use? What is the process you follow that usually yeilds a good, clean design that will closely represent the final product?</p> http://stackoverflow.com/questions/1752764/asp-net-legitimate-architecture-httpmodule-concern 1 ASP.NET: Legitimate architecture/HttpModule concern? JamesBrownIsDead 2009-11-18T00:07:45Z 2009-11-27T08:15:48Z <p>An architect at my work recently read <a href="http://developer.yahoo.com/performance/rules.html#expires" rel="nofollow">Yahoo!'s Exceptional Performance Best Practices</a> guide where it says to use a far-future Expires header for resources used by a page such as JavaScript, CSS, and images. The idea is you set a Expires header for these resources years into the future so they're always cached by the browser, and whenever we change the file and therefore need the browser to request the resource again instead of using its cache, change the filename by adding a version number.</p> <p>Instead of incorporating this into our build process though, he has another idea. Instead of changing file names in source and on the server disk for each build (granted, that would be tedious), we're going to fake it. His plan is to set far-future expires on said resources, then implement two HttpModules. </p> <p>One module will intercept all the Response streams of our ASPX and HTML pages before they go out, look for resource links and tack on a version parameter that is the file's last modified date. The other HttpModule will handle all requests for resources and simply ignore the version portion of the address. That way, the browser always requests a new resource file each time it has changed on disk, without ever actually having to change the name of the file on disk.</p> <p>Make sense?</p> <p>My concern relates to the module that rewrites the ASPX/HTML page Response stream. He's simply going to apply a bunch of Regex.Replace() on "src" attributes of <code>&lt;script&gt;</code> and <code>&lt;img&gt;</code> tags, and "href" attribute of <code>&lt;link&gt;</code> tags. This is going to happen for every single request on the server whose content type is "text/html." Potentially hundreds or thousands a minute.</p> <p>I understand that HttpModules are hooked into the IIS pipeline, but this has got to add a prohibitive delay in the time it takes IIS to send out HTTP responses. No? What do you think?</p> http://stackoverflow.com/questions/1640839/caching-to-a-local-sql-instance-on-a-web-server 1 Caching to a local SQL instance on a web server Matt Wrock 2009-10-28T23:39:00Z 2009-11-27T08:13:15Z <p>I run a very high traffic(10m impressions a day)/high revenue generating web site built with .net. The core meta data is stored on a SQL server. My team and I have a unique caching strategy that involves querying the database for new meta data at regular intervals from a middle tier server, serializing the data to files and sending those to the web nodes. The web application uses the data in these files (some are actually serialized objects) to instantiate objects and caches those in memory to use for real time requests.</p> <p>The advantage of this model is that it:</p> <ol> <li>Allows the web nodes to cache all data in memory and not incur any IO overhead querying a database.</li> <li>If the database ever goes down either unexpectedly or for maintenance windows, the web servers will continue to run and generate revenue. You can even fire up a web server without having to retrieve its initial data from the DB because all the data it needs are in files on its own disks.</li> <li>Allows us to be completely horizontally scalable. If throughput suffers, we can just add a web server.</li> </ol> <p>The disadvantages are that this caching and persistense layers adds complexity in the code that queries the database, packages the data and unpackages it on the web server. Any time our domain model requires us to add entities, more of this "plumbing" has to be coded. This architecture has been in place for four years and there are probably better ways to tackle this.</p> <p>One strategy I have been considering is using replication to replicate our master sql server database to local database instances installed on each web server. The web server application would use normal sql/ORM techniques to instantiate objects. Here, we can still sustain a master database outage and we would not have to code up specialized caching code and could instead use nHibernate to handle the persistence.</p> <p>This seems like a more elegant solution and would like to see what others think or if anyone else has any alternatives to suggest.</p> http://stackoverflow.com/questions/1805835/is-there-an-advantage-to-using-wcf-to-facilitate-ajax-calls 4 Is there an advantage to using WCF to facilitate AJAX calls ? Roberto Sebestyen 2009-11-26T21:52:35Z 2009-11-27T06:46:38Z <p>I am currently reading through a proposal, where this person is proposing to use WCF services to facilitate AJAX calls in a web application. They say that WCF can serialize data more efficiently. I personally have never considered going this approach. I have always liked calling MVC controllers using jQuery's AJAX functionality, and that has never been a problem.</p> <p>Now there is this proposal to use WCF for AJAX, and i'm a little sceptical. I would like to keep and open mind. To me it seems to add another layer, unnecessarily complicating things. Is this worth it?</p> http://stackoverflow.com/questions/1801593/physical-organization-of-bounded-context-aggregates 0 Physical organization of bounded context/aggregates Sean Chambers 2009-11-26T04:51:09Z 2009-11-26T08:01:56Z <p>In the context of DDD how is everyone physically structuring their files/folders when it comes to bounded context and aggregate roots?</p> <p>Does there need to be a physical representation of these or is it more just for discussions? I've tried to find evans and nilsson say something about physical layout but either I missed it or they don't discuss it.</p> <p>I'm assuming you can't really represent bounded context in a physical layout as certain classes may be involved in multiple bounded contexts, but it still asks the question of aggregates and how you lay them out.</p> http://stackoverflow.com/questions/1796481/how-to-learn-about-formal-top-down-approach-to-software-architecture 3 How to learn about formal top-down approach to software architecture? Obscure Hipster 2009-11-25T11:56:17Z 2009-11-25T19:52:02Z <p>Hello everyone, I'm a software developer interested in information retrieval. Currently I'm working on my 3rd search engine project and am <em>VERY</em> frustrated about the amount of boilerplate code that is written again and again, with the same bugs, etc.</p> <p>Basic search engine is a very simple beast that could be described in a formal language consisting of two "layers":</p> <ol> <li><p>"Layer of primitives" (or axioms, kernel language - don't know how to name them). They consist of several sets (as a set of resources - files, websites), relations on sets (as 'site A links to site B') and simple operations as 'open stream to resource A', 'read record from stream', 'merge N streams', 'index set of records by field F', etc. Also, there is a lot of data conversion, as 'save stream in YAML format', 'load stream from XML format', etc.</p></li> <li><p>"Application layer" - several very high-level operations that form a search engine lifecycle, as 'harvest new resources', 'crawl harvested resources', 'merge crawled resources to the database', 'index crawled resources', 'merge indexes', etc. Every one of this high-level operations could be expressed in the terms of "primitives" from 1.</p></li> </ol> <p>Such a high-level representation could be easily tested, maybe even proved formally, and implemented (or code-generated) in the programming language of choice.</p> <p>So, the question: does anybody design systems in this way - formally, rigorously ( maybe even at the level of algebra/group theory), in the strict top-down approach? What can I read to learn about ?</p> http://stackoverflow.com/questions/1782325/how-should-my-business-logic-interact-with-my-data-layer 1 How should my business logic interact with my data layer? CasperT 2009-11-23T10:43:14Z 2009-11-25T13:53:26Z <p>Hi,</p> <p>So I'm working on making a draft of my program.</p> <p>This is my plan:</p> <pre><code>GUI --- Business Logic --- Data </code></pre> <p>You should be able to replace either <code>GUI</code> or the <code>Data</code> layer without issues. Every layer watches itself. So <code>GUI</code> will call methods from <code>Business logic</code> and the methods will always return a status and perhaps some data. How the GUI should respond to the data, should always be decided in the GUI layer. Business logic should have no influence over this. So the relations with GUI and business logic has been solved. I hope you can follow me.</p> <p>Now for something more concrete. My plan for the data layer, is to use an database. Now, how should Business Logic call methods from the data layer?</p> <p>Perhaps I should make an enum, that corresponds to different hardcoded SQL queries, which the data layer is aware of?</p> <p>E.g.</p> <pre><code>Datalayer.GetResults(Queries.GetAllCustomersIDs); </code></pre> <p>Queries being an enum.</p> <p>If this is the right way, what should GetResults return? a string array? but what if the query has multidimensional data?</p> <p>Should I then have 2 generic methods instead?</p> <pre><code>Datalayer.GetSingleDimensionResults(SingleDimensionQueries.GetAllCustomersIDs); Datalayer.GetMultipleDimensionResults(MultiDimensionQueries.GetAllCustomers); </code></pre> <p>Or should I perhaps have a query for each kind of data request?</p> <pre><code>Datalayer.GetAllCustomerIDs; DataLayer.GetAllCustomers; </code></pre> <p>etc.</p> http://stackoverflow.com/questions/1757801/architecting-blackberry-crm-sfa-applications 1 Architecting BlackBerry CRM / SFA applications SN 2009-11-18T17:44:55Z 2009-11-25T09:30:08Z <p>Hi, I am in process to start developing a Blackberry application (Proof Of Concept) on the lines of SalesForce and SalesNow CRM. I am a web developer with skills on LAMP technologies with a limited knowledge in JAVA /J2ME / BB Native libraries. Have gone through all the examples / samples on RIM / STACKOVERFLOW websites.</p> <p>Expert advice needed on how to start developing the same with information pertaining to the following points.</p> <ol> <li>how to implement the storage of data (Records) on device for offline browsing. (e.g. Persistent Store / RMS etc)</li> <li>what data format to follow to download from server. (shud it be xml, string based etc)</li> <li>sample Class design for entities like (Account, Contacts, Leads etc)</li> <li>Sample Tabbed like interface similiar to Salesforce and SalesNow BB apps.</li> </ol> <p>any pointers / suggestions / help is appreciated.</p> <p>Tx in advance.</p> <p>SN</p> http://stackoverflow.com/questions/1784414/how-should-i-handle-uploads-centrally-and-sanely-in-my-web-app 0 How should I handle uploads centrally and sanely in my web app? Adam Taylor 2009-11-23T16:46:51Z 2009-11-24T23:31:27Z <p>Hi,</p> <p>I am creating a web application, which is basically a very specialised CMS. It's written in PHP with Codeigniter (though the specifics are not important) and is structure according to the MVC pattern.</p> <p>Many entities in this webapp require the ability to have uploads, e.g pages, articles etc.</p> <p>I have an upload controller which works fine on its own. How it functions is that we have a media table which records meta data about an upload, and then a number of other tables which map a specific media item to an article/page etc so <code>articles_media</code>, <code>pages_media</code> etc. These tables just contain a <code>media_id</code> and an <code>article/page/etc_id</code> </p> <p>I clearly don't want to copy and paste the upload code throughout the app so when you are on an article_create view, for example, there is a link to the upload controller which opens in a pop up allowing you to upload an image. </p> <p>The problem with this is that at the point at which you want to upload an image you haven't actually created the article/page etc. so there is no ID that can be passed to the upload controller to map the uploaded media to the specific article/page etc.</p> <p>My "solution" which feels completely insane, is to add an <code>is_published</code> field to the models that require uploads and when you get to the create page to instantly create it with all blank values except <code>is_published = 0</code> and then I have an ID I can pass to the uploader.</p> <p>This does work but it feels sub-optimal, for starters I'm going to [potentially] end up with many blank rows in the database.</p> <p>How do sensible people normally do handle this? I don't require any specific implementation help, I'll figure out the required PHP myself but my brain cannot seem to come up with a logical solution to the overall problem.</p> <p>I thought my mapping between media, articles_media and articles was neat but maybe this is also part of the problem...?</p> <p>In theory I'd like a user to be able to upload an arbitrary number of media files, though in practice this is actually meant to be quite limited, as in you can only have one upload with one article etc.</p> <p>I would appreciate informed opinions - I'm assuming there is a [relatively] straightforward "best practice" to this problem that I just can't seem to come up with myself.</p> http://stackoverflow.com/questions/1787948/how-to-maintain-transaction-in-n-tier-architecture 1 How To Maintain Transaction in N-Tier Architecture Dot Net Developer 2009-11-24T05:16:13Z 2009-11-24T20:26:16Z <p>I am developing application in N-Tier Architecture. as we all know that we need to implement transactions while insert/update/delete operation. please tell me how to use transaction in c#.net in N-Tier architecture. my architecture is like this Applicationform->middle_Layre->Factory->DataAccessLayre->StoredProcedure->Table in application form i create object of middleLayer and pass data in Insert/update/delete function of middle layer. i am creating object of sqlcommand in factoryclass and fill the data which i gets from middle layer and pass that object os sqlcommand to DAL.</p> http://stackoverflow.com/questions/1790806/how-to-achieve-library-agnosticism-when-building-a-javascript-framework 1 How to achieve library-agnosticism when building a javascript framework ? julien 2009-11-24T15:30:45Z 2009-11-24T19:57:15Z <p>I've started looking into architecturing a javascript framework. </p> <p>I don't want to reinvent the wheel here, especially regarding browser quirks, and know that for that matter, I'll have to rely, at some point, on some commonly-used libraries to handle low-level concerns. </p> <p>The thing is, I'm not sure how i can depend on an external library for some piece of functionality (say for example dom manipulation), without tying it to my design. </p> <p>Practical examples would help make a better point, but I'm not at the design stage yet, and I'm merely trying to avoid getting started on the wrong foot. </p> <p>So I'm looking for some examples, guidelines, best-practices or maybe patterns that could help in this situation. </p> <p>Any insight ?</p> <p>EDIT : Bit of a clarification on why I'd want to do this.<br> My goal is to build something resembling more of an application framework than most traditional libraries like jQuery.<br> Think layered architecture, where the libraries would fit into the infrastructure layer (as per Evans' definition in Domain Driven Design), and handle things such as events, dom traversing and manipulation etc...</p> http://stackoverflow.com/questions/1790020/pitfalls-of-true-client-server-architecture-in-web-applications 0 Pitfalls of true client-server architecture in web applications ? julien 2009-11-24T13:22:00Z 2009-11-24T13:32:23Z <p>I've been researching on building web applications in a true client-server fashion. </p> <p>This type of architecture basically consists of : </p> <ul> <li><p>A <em>thin server</em>, merely a headless api that :</p> <ul> <li><p>handles security concerns</p></li> <li><p>processes core business logic</p></li> <li><p>provides data persistence </p></li> </ul></li> <li><p>A <em>fat client</em>, with a desktop-like design that :</p> <ul> <li><p>caches data, and makes offline use possible</p></li> <li><p>has gui-templating and rendering capabilities</p></li> <li><p>holds and processes non-critical business logic </p></li> </ul></li> </ul> <p>However, at first sight such an architecture wouldn't play nice with how the web works today :</p> <ol> <li><p>poor or no possible fallback when javascript isn't available (2% of user-agents nowadays, am I right ?)</p></li> <li><p>accessibility concerns (I'm kinda clueless here)</p></li> <li><p>SEO concerns, cloacking is an option but that means one should provide some server-side html rendering, and making that content relevent could be tricky</p></li> </ol> <p>Anything else I'm missing ? Which approach would you take to work around those issues ?</p> http://stackoverflow.com/questions/1788895/data-aggregation-multiple-websites-single-superuser-site 0 Data aggregation - multiple websites, single superuser site Paddy 2009-11-24T09:22:44Z 2009-11-24T09:40:40Z <p>I have a requirement for a set of asp.net MVC websites as follows:</p> <ol> <li><p>Multiple sites, using the same codebase, but each site will have a separate database (this is a requirement), and users will login and enter data.</p></li> <li><p>A single site for super users where they log in and work on data aggregated from each of the individual sites.</p></li> </ol> <p>The number of sites in point one is liable to expand as we roll it out to more clients.</p> <p>My question is about the architecture of the above - how to manage the data aggregation, given that it needs to be real time. Do we maintain this at the database level (e.g. a view that is essentially a union across the individual site databases), or at the application level.</p> <p>A few infrastructure points:</p> <ol> <li><p>We have complete control over the database server and naming of databases.</p></li> <li><p>All these websites are deployed onto a server that we manage.</p></li> </ol> <p>I'd appreciate any input/ideas from folks that may have done this before.</p> http://stackoverflow.com/questions/1029621/one-section-many-implementations-in-c 1 One section, many implementations in C# 2009-06-22T21:59:04Z 2009-11-24T03:14:30Z <p>I would like to download a file, parse it and put it somewhere. So I have a few sections outlined below and I would like to use the directives below to guide what the program should be doing. I like this form of config and I would like to figure out how to get this to work somehow but I know it won't work exactly like this because I can't use the same section more than once. I am just hoping someone could throw some ideas my way on how to get this idea to work.</p> <pre><code> &lt;configSections&gt; &lt;section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /&gt; &lt;sectionGroup name="processor"&gt; &lt;sectionGroup name="process"&gt; &lt;!-- AVAILABLE TRANSPORTS --&gt; &lt;section name="ftp_transport" type="someFTPClass1, someAssembly"/&gt; &lt;section name="web_transport" type="someHTTPClass2, someAssembly"/&gt; &lt;!-- AVAILABLE PARSERS --&gt; &lt;section name="fixed_line_parser" type="someParserClass3, someAssembly" /&gt; &lt;section name="regular_expression_parser" type="someParserClass4, someAssembly" /&gt; &lt;!-- AVAILABLE LOADERS --&gt; &lt;section name="database_loader" type="someDbLoaderClass5, someAssembly" /&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/configSections&gt; </code></pre> <p>and then something like this to drive the program:</p> <pre><code>&lt;processor&gt; &lt;process name="File1"&gt; &lt;ftp_transport&gt;...&lt;/ftp_transport&gt; &lt;fixed_line_parser&gt;...&lt;/fixed_line_parser&gt; &lt;database_loader&gt;...&lt;/database_loader&gt; &lt;/process&gt; &lt;process name="File2"&gt; &lt;web_transport&gt;...&lt;/web_transport&gt; &lt;fixed_line_parser&gt;...&lt;/fixed_line_parser&gt; &lt;database_loader&gt;...&lt;/database_loader&gt; &lt;/process&gt; &lt;/processing&gt; </code></pre> http://stackoverflow.com/questions/1786311/zendcontrollerrouterroute-chaining-problem-with-more-than-3-url-parameters 1 Zend_Controller_Router_Route Chaining Problem with more than 3 url parameters rr 2009-11-23T21:54:10Z 2009-11-23T22:16:57Z <p>I can't seem to figure out what's going wrong, but I'm attempting to setup module routing based on sub domain. Otherwise the routing is standard. The following works until I add more than 3 parameters in the URL:</p> <p>This is within a controller plugin</p> <pre><code>... public function routeStartup() { $router = Zend_Controller_Front::getInstance()-&gt;getRouter(); $pathRoute = new Zend_Controller_Router_Route ( ':controller/:action/*', array( 'controller' =&gt; 'index', 'action' =&gt; 'index' ) ); $hostRoute = new Zend_Controller_Router_Route_Hostname(':module.domain.com'); $chainedRoute = $hostRoute-&gt;chain($pathRoute); $router-&gt;addRoute('host', $chainedRoute); ... } </code></pre> <p><a href="http://module.domain.com/controllerName/actionName/param1" rel="nofollow">http://module.domain.com/controllerName/actionName/param1</a> <em>works</em> <a href="http://module.domain.com/controllerName/actionName/param1/param2" rel="nofollow">http://module.domain.com/controllerName/actionName/param1/param2</a> <em>does not work</em></p> <p>Has anyone else run into this?</p> http://stackoverflow.com/questions/1783529/java-massive-message-processing-with-queue-manager-trading 0 Java, Massive message processing with queue manager (trading) Ronny 2009-11-23T14:39:28Z 2009-11-23T15:15:25Z <p>Hello, </p> <p>I would like to design a simple application (without j2ee and jms) that can process massive amount of messages (like in trading systems)</p> <p>I have created a service that can receive messages and place them in a queue to so that the system won't stuck when overloaded.</p> <p>Then I created a service (QueueService) that wraps the queue and has a pop method that pops out a message from the queue and if there is no messages returns null, this method is marked as "synchronized" for the next step.</p> <p>I have created a class that knows how process the message (MessageHandler) and another class that can "listen" for messages in a new thread (MessageListener). The thread has a "while(true)" and all the time tries to pop a message.</p> <p>If a message was returned, the thread calls the MessageHandler class and when it's done, he will ask for another message.</p> <p>Now, I have configured the application to open 10 MessageListener to allow multi message processing.</p> <p>I have now 10 threads that all time are in a loop. </p> <p>Is that a good design??</p> <p>Can anyone reference me to some books or sites how to handle such scenario??</p> <p>Thanks, Ronny</p> http://stackoverflow.com/questions/1773086/soa-with-wcf-responsibilities-and-dependencies 0 SOA with WCF responsibilities and dependencies blu 2009-11-20T20:34:16Z 2009-11-23T14:29:42Z <p>I am moving onto a new team that has implemented a solution using SOA with WCF. The services are all very vertical, for example: a CustomerService, an AddressService, an AccountService, etc. To return the fully populated objects the services may call another service over a wcf endpoint. </p> <p>There are a few very high level vertical areas, but underneath they can reuse a lot of the core service logic.</p> <p>How valid is the following? </p> <p>The webservices are thin layers that handle remote calls; they are strictly for communication. The real functionality would be implemented in something lets call, "business or domain services".</p> <p>Domain Service responsibilities:</p> <ul> <li>Reference data access / repository interfaces for working with the infrastructure</li> <li>Call multiple repository methods to create fully populated objects</li> <li>Process data against the complex business rules</li> <li>Call other domain services (not having to call WCF) </li> </ul> <p>This would give us domain services that can be tested outside of specific WCF and SQL Server implementations.</p> <p>The web services reusing the different business services seems to be the biggest gain and yet the biggest potential pitfall. </p> <ul> <li>On one hand the logic can be reused for multiple services, eliminating web service calling web service calling web service. </li> <li>On the other hand, if someone changes one of the assemblies multiple services need to be updated, potentially breaking multiple applications.</li> </ul> <p>Have people tried this and had success? Are there better approaches?</p> http://stackoverflow.com/questions/1782928/who-should-learn-the-old-system 7 Who should learn the "old" system? JoelFan 2009-11-23T12:41:07Z 2009-11-23T13:57:58Z <p>I've been involved in several projects which basically involved replacing an "old" system with a "new" system. Invariably, the pattern has been that practically no one on the team building the "new" system has any real knowledge of the "old" system. Whenever I questioned this, I've been told that this is purposeful... by not knowing the "old" system, the team is able to think differently and not be limited by how things were done there. So what happens is there is usually only 1 or 2 people on the team that know anything about the "old" system and they are consulted whenever a question comes up about how the "old" system did something.</p> <p>But what always seems to happen is that after the "new" system is delivered, there are always questions from the user of the form "How do we do X (which was easy in the old system) in the new system?" For the developers, this is often the first time they have heard of X. So they have to go and research what X is and often the answer they give back to the users is "you can't" or "you can, but it's really awkward".</p> <p>This does not seem right to me... it seems to me that a lot would be gained by having every developer of the "new" system know the "old" system really well, and that wouldn't necessarily kill their creativity, if they have decent design and development skills.</p> <p>Any thoughts on which approach is best?</p> http://stackoverflow.com/questions/1778371/architecting-user-types 0 Architecting user types Matt Brailsford 2009-11-22T10:29:18Z 2009-11-23T06:37:44Z <p>Hi,</p> <p>I'm developing a system that has different types of users. Based upong their role, the system collects different information. I'm a little unsure how best to architect this.</p> <p>At the base level I have a User entity which contains just the core info for a user. Beyond this, I need somewhere to store common information (not sure whether to add this to the User entity, create something like a Profile entity, or create a Member entity that extends the User entity). </p> <p>After this, I then need somewhere to store the user type specific data. My roles are "Seller", "Merchant" and "Buyer". A User / Member can be one or more of these user types. I'm not sure here whether these should be seperate entities which extend the base User / Member, or whether these are more like extended profiles, which are a property on the User entity.</p> <p>Could anybody sugest the best way to architect this? </p> http://stackoverflow.com/questions/1647631/c-state-machine-design 20 C state-machine design jldupont 2009-10-30T02:08:33Z 2009-11-23T01:38:54Z <p>I am crafting a small project in mixed C and C++. I building one small-ish state-machine at the heart of one of my worker threads.</p> <p>I was wondering if you gurus on SO would share your state-machine design techniques.</p> <p><strong>NOTE:</strong> I am primarily after tried &amp; tested implementation techniques.</p> <p><strong>UPDATED:</strong> Based on all the great input gathered on SO, I've settled with this structure:</p> <p><img src="http://www.gliffy.com/pubdoc/1876140/L.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1780642/design-pattern-for-multiple-services 0 Design pattern for multiple services jparram 2009-11-23T01:04:02Z 2009-11-23T01:11:17Z <p>What pattern(s) would be good to manage multiple API's?</p> <p>A scenario for using multiple API's would be a payment portal that allows clients to use different payment vendors to post transactions. So this system may need to utilize a papypal, fasttransact, x, y, or z API. </p>