RE: [flexcoders] MVC - Philosophical question

2008-04-15 Thread Glenn Williams
when I'm building URLS for services I store the URL in the model and have the build code in a command. you could also put the build logic into the model with the URL holding variable Glenn www.flex-ria.com www.tinylion.co.uk www.our-little-secret.com From:

Re: [flexcoders] MVC - Philosophical question

2008-04-15 Thread Jeffry Houser
I'd put it in the model. The Controller is just supposed to facilitate communication between the View and the Model. Building a URL (or retrieving it from a database) is some form of business logic and that should go in the model. Cesare Rocchi wrote: Hi, I am developing an

RE: [flexcoders] MVC - Philosophical question

2008-04-15 Thread Glenn Williams
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeffry Houser Sent: Tuesday, April 15, 2008 2:26 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] MVC - Philosophical question I'd put it in the model. The Controller is just supposed to facilitate

Re: [flexcoders] MVC - Philosophical question

2008-04-15 Thread Daniel Gold
@yahoogroups.com *Subject:* Re: [flexcoders] MVC - Philosophical question I'd put it in the model. The Controller is just supposed to facilitate communication between the View and the Model. Building a URL (or retrieving it from a database) is some form of business logic and that should go

Re: [flexcoders] MVC - Philosophical question

2008-04-15 Thread Jeffry Houser
Are you talking about Cairngorm specific stuff here? Or generic MVC questions? It sounds like your post has a specific Cairngorm slant. Glenn Williams wrote: I do have some logic in the model. when I build URLS, I build them in the delegate before making the service call. A