[flexcoders] Re: CAIRNGORM 0.99 QUESTION

2005-08-31 Thread flexcoding
Hi, Thanks for the reply. You must be a very experienced programmer because you just looked at the suggestion and found the problem it will create two steps down. I have experienced the same problem that you mentioned below if I use recommended mx:Application tag instead of

[flexcoders] Re: CAIRNGORM 0.99 QUESTION

2005-08-30 Thread Daniel Harfleet
Hi, you would need to be carefull, because the command instances are created once only at creation of the FrontController. By creating a delegate instance, you are using the ServiceLocator to look up the remote object, however, if your service locator hasn't been initialized yet, you may get a

R: [flexcoders] Re: Cairngorm 0.99

2005-05-20 Thread Paolo Bernardinin
= {this} in the viewHelpers files, and the application worked as before. Da: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] Per conto di Steven Webster Inviato: gioved 19 maggio 2005 23.33 A: flexcoders@yahoogroups.com Oggetto: RE: [flexcoders] Re: Cairngorm 0.99 Hi Dave, I ran

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Hans Omli
configured in Eclipse. Will dig deeper into this in the morning. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steven Webster Sent: Wednesday, May 18, 2005 7:10 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Cairngorm 0.99 Hi

Re: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread dave buhler
] On Behalf Of violabg2002 Sent: 18 May 2005 15:04 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm 0.99 Hi Steven changed the store.cfg paht to db_path=c:\\cairngormstore\\db\\but same problem. I have h commons-lang-1.0.1.jar h commons-logging-1.0.4.jar h hsqldb.jar h log4j-1.2.8.jar

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Alex Uhlmann
Uhlmann Software Engineer iteration::two -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf Of dave buhler Sent: 19 May 2005 09:14 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Cairngorm 0.99 I have the same issue with the Login example

Re: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread dave buhler
: 18 May 2005 15:04 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm 0.99 Hi Steven changed the store.cfg paht to db_path=c:\\cairngormstore\\db\\but same problem. I have h commons-lang-1.0.1.jar h commons-logging-1.0.4.jar h hsqldb.jar h log4j-1.2.8.jar in the Flex\jrun4\servers

Re: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread dave buhler
@yahoogroups.com [mailto: flexcoders@yahoogroups.com ] On Behalf Of violabg2002 Sent: 18 May 2005 15:04 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm 0.99 Hi Steven changed the store.cfg paht to db_path=c:\\cairngormstore\\db\\but same problem. I have h commons-lang-1.0.1.jar h

[flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread reubenbrown13
While that is nice and all, I have these errors now: 5 Errors found. Error H:\Inetpub\wwwroot\flex\cairngormlogin\org\nevis\cairngorm\samples\login\business\Services.mxml:28 Invalid value for 'named' - does not match any object name from the configuration file. Error

[flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread reubenbrown13
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of reubenbrown13 Sent: 19 May 2005 16:47 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm 0.99 While that is nice and all, I have these errors now: 5 Errors found. Error H:\Inetpub\wwwroot\flex\cairngormlogin\org

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Steven Webster
Reuben, That fixed it. Thanks. It might be good to have some manual installation instructions in the documentation for putting cairngorm into an existing flex server. http://www.iterationtwo.com/nevis/InstallationGuide.pdf On page 6, we instruct: To copy over the store sample files, you

Re: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread dave buhler
Whoa! I missed the PDF. :SOn 5/19/05, Steven Webster [EMAIL PROTECTED] wrote: Reuben, That fixed it.Thanks.It might be good to have some manual installation instructions in the documentation for putting cairngorm into an existing flex

[flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Paolo Bernardini
Hi Steven Could you explain the reason this new way of passing the command string in the addCommand in the ShopController: addCommand( ShopController.EVENT_GET_PRODUCTS, new GetProductsCommand () ); public static var EVENT_GET_PRODUCTS = getProducts; compare to the old cairngorm 0.95

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Jose Lora
Is it to avoid typo issues and later error debugging craziness? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paolo Bernardini Sent: Thursday, May 19, 2005 2:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm 0.99

Re: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread dave buhler
Wooo-H! I'm in! *** insert spy theme music here My thoughts: I ran into the same errors as reuben and Sean above with the exact same errors. I have never heard of ANT until today. I'm a client-side developer. Just like Berardini. Server configuration is foreign to me. Lead my

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Steven Webster
Hi Paolo, Could you explain the reason this new way of passing the command string in the addCommand in the ShopController: addCommand( ShopController.EVENT_GET_PRODUCTS, new GetProductsCommand () ); public static var EVENT_GET_PRODUCTS = getProducts; compare to the old cairngorm

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Steven Webster
Hi Dave, I ran into the same errors as reuben and Sean above with the exact same errors. I have never heard of ANT until today. I'm a client-side developer. Just like Berardini. Server configuration is foreign to me. Lead my people to the Red Sea of Server

[flexcoders] Re: Cairngorm 0.99

2005-05-18 Thread violabg2002
great work!! I'm having same problem with the installation of the cairgormstore example, (I think the problem is whit the db files) after installing everything the application start but I get e message saying: Product could not be retrived! Like I said I think the problem is with db files

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-18 Thread Alistair McLeod
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of violabg2002 Sent: 18 May 2005 11:24 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm 0.99 great work!! I'm having same problem with the installation of the cairgormstore example, (I think the problem is whit the db

[flexcoders] Re: Cairngorm 0.99

2005-05-18 Thread violabg2002
:[EMAIL PROTECTED] On Behalf Of Alistair McLeod Sent: 18 May 2005 11:31 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Cairngorm 0.99 Hi, The store.cfg file should be in your WEB-INF/classes directory. Within that, the path to the database can be relative to your webapp

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-18 Thread Steven Webster
Hey, then I changed the path inside the store.cfg file like this: db_path=c:\cairngormstore\db I think (from the HSQLDB docs) that should be: db_path=c:\\cairngormstore\\db\\ (ie you have to escape the \ character) Status (object #2) .code: Server.Processing .description:

[flexcoders] Re: Cairngorm 0.99

2005-05-18 Thread violabg2002
Hi Steven changed the store.cfg paht to db_path=c:\\cairngormstore\\db\\ but same problem. I have „h commons-lang-1.0.1.jar „h commons-logging-1.0.4.jar „h hsqldb.jar „h log4j-1.2.8.jar in the Flex\jrun4\servers\default\cairngormstore\WEB-INF\lib directory. at this point I have tried to run