[CFCDev] Arabic XML document

2006-04-25 Thread Murad Amer
Hello, I am using Arabic text inside the XmlText of XML nodes, but when I try to view this Arabic text after parsing the XML document using XmlParse function, the text doesn't appear correct! Any help? I have included the line (?xml version=1.0 encoding=windows-1256? ) on the top of

Re: [CFCDev] Arabic XML document

2006-04-25 Thread Paul Hastings
Murad Amer wrote: I am using Arabic text inside the XmlText of XML nodes, but when I try to view this Arabic text after parsing the XML document using XmlParse function, the text doesn't appear correct! what does doesn't appear correct mean? boxes? question marks? mojibake? I have included

RE: [CFCDev] Arabic XML document

2006-04-25 Thread Murad Amer
I am using windows-1256 encoding for the rest of CF pages. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Hastings Sent: Tuesday, April 25, 2006 11:30 AM To: CFCDev@cfczone.org Subject: Re: [CFCDev] Arabic XML document Murad Amer

Re: [CFCDev] Arabic XML document

2006-04-25 Thread Paul Hastings
Murad Amer wrote: I am using windows-1256 encoding for the rest of CF pages. how exactly? and the rest of my questions? -- You are subscribed to cfcdev. To unsubscribe, send an email to cfcdev@cfczone.org with the words 'unsubscribe

Re: [CFCDev] Arabic XML document

2006-04-25 Thread Paul Hastings
i don't have any windows-1256 encoded data, can you send me an example *off-list*? please zip it to preserve the encoding. -- You are subscribed to cfcdev. To unsubscribe, send an email to cfcdev@cfczone.org with the words 'unsubscribe

RE: [CFCDev] UGAL.net

2006-04-25 Thread Phillip Senn
Jean, This is very interesting - I've been pondering doing the same thing soon (after I graduate). I think Dave Shuck is also working on a similar project. What features are you planning to incorporate? Is it done via SQL Server? Can people use their own DNS name? I'd like to discuss this with

[CFCDev] Calendar, Events, and CRUD

2006-04-25 Thread Jeff Chastain
I am playing with a simple little application and Iam running into some questions on data access. I have a calendar object that along with other information, has one or more event objects associated with it. So, when I tell the calendar DAO to give me a calendar instance based upon a given

[CFCDev] Dependency Injection for Dummies?

2006-04-25 Thread Ron Phillips
I really wasn't getting ColdSpring, and I stumbled across http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/413268, Zoran Isailovski's "Dependency Injection The Python Way" recipe.A calling object just specifies that the provider of a given feature must meet certain assertions. Then the

RE: [CFCDev] UGAL.net

2006-04-25 Thread Jean Moniatte
Hello Phillip, thanks for the message. The short replies are: - MySQL for the database. - yes for the domain name mapping (in fact as many domain names as you want) - not so sure for creating an open source project. I feel that there is nothing technically fancy enough in UGAL.net to create

Re: [CFCDev] Calendar, Events, and CRUD

2006-04-25 Thread Matt Williams
Learning from others, I started using a service layer that does the talking to the DAO. In your example you could have a CalendarEventService.cfc with a getCalendar function. This function would call the Read on the calendar DAO and then hit the event gateway. I did something similar with some

RE: [CFCDev] Calendar, Events, and CRUD

2006-04-25 Thread Jeff Chastain
Okay, I have been digging to find more details on exactly what a service layer should contain and I am not coming up with much. If I am using a framework such as Mach-II, what is the difference between the controller and a service layer? How do you determine what functions go into the

[CFCDev] Application.cfc

2006-04-25 Thread Mehdi, Agha
Title: Application.cfc Hi, I am getting "CFCServlet must be initialized" error when Application.cfc is executed. What am I doing wrong? Thanks Agha Mehdi IDT - eBusiness Program Manager Work: 408.284.8239 Cell : 510.493.0491 Fax : 408.284.2766

RE: [CFCDev] Calendar, Events, and CRUD

2006-04-25 Thread Peter Bell
Title: Message Hi Jeff, Personally, I look at the controller as a facade to the business model, simplifying the steps required to perform useful page actions. Lets say you have a cart page which has an add to cart method. I'd create a cart controller/facade (cart.cfc). I'd also make it

RE: [CFCDev] Calendar, Events, and CRUD

2006-04-25 Thread Jeff Chastain
This does make a lot of sense. It makes my simple little app a lot more complex, but it does make sense. Has anybody put together a "best practices" sample app showing all of the different layers and types of objects (assuming such is possible)? Thanks and off to tinker again. From:

Re: [CFCDev] Calendar, Events, and CRUD

2006-04-25 Thread Nando
Maybe someone else can answer it better. Part of the problem seems to be that OO terminology means different things in different circles. But i've come to understood 2 things from listening in to all these conversations over the past years. 1) the controllers / listeners in MII or MG should

Re: [CFCDev] Calendar, Events, and CRUD

2006-04-25 Thread Matt Williams
Looks like Peter and Jeff are on the same page as me. If you would like an example app that uses a cart.cfc in the way that Peter described, check out http://www.briankotek.com/blog . He as a sample bookstore app in several of the different frameworks. Look at the Model-Glue / ColdSpring version.

Re: [CFCDev] Application.cfc

2006-04-25 Thread Dave Carabetta
On 4/25/06, Mehdi, Agha [EMAIL PROTECTED] wrote: Hi, I am getting CFCServlet must be initialized error when Application.cfc is executed. What am I doing wrong? Do you have the Cumulative Hotfix 2 installed by chance? That release has been a bomb and would recommend rolling it back to CHF 1

RE: [CFCDev] Application.cfc

2006-04-25 Thread Mehdi, Agha
Title: RE: [CFCDev] Application.cfc I don't have the HotFix installed. All my other CFCs are working just fine. I only happens when Application.cfc is executed. Agha Mehdi IDT - eBusiness Program Manager -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On

Re: [CFCDev] Calendar, Events, and CRUD

2006-04-25 Thread Kurt Wiersma
I just release appbooster a sample application that show how to do the user admin portion of an application. It uses these different patterns and is currently setup using Mach II and ColdSpring. You can find it and discussion on my blog. http://jroller.com/page/kwiersma--KurtOn 4/25/06, Jeff