RE: [flexcoders] Cairngorm 0.99 ViewHelper problem

2005-05-24 Thread Alistair McLeod
Hi Stephen,

A few people have asked a similar question to yours and we're still thinking
about the best solution. Here's one way

If you create the ViewHelper yourself, as in the example you gave, the
initialized() method will not be called - the Flex Framework calls that
method at component instantiation if it implements the MXMLObject interface
and is instantiated via MXML. You could try:

mx:Script
  ![CDATA[
  var viewHelper : ViewHelper = ViewHelperBuilder(this);
viewHelper.initialized( this, myViewHelperId );
  ]]
/mx:Script

This should mimic what the Flex Framework does, but I don't really like it
as a solution as it exposes the innards of the base class.

One alternative would be to change the Cairngorm framework itself. With the
ModelLocator strategy in place, the ViewLocator pattern is often not needed
at all, in which case you could remove the ViewLocator registration from the
ViewHelper base class - in that case, both instances of the view helper can
have the same id.

Another would be to change ViewHelper base class to register with the
ViewLocator not with the id alone, but with a fully qualified id. ie. Walk
up the component's parent heirarchy, and build up an id. eg. rather than
having an id of myViewHelperId, it would be
appView.componentView1.myViewHelperId. 

Of course, both of these alternatives are producing a compile time
definition of the id, not run time, and the latter is brittle in that
changes to your component heirarchy will change the id, which forces changes
elsewhere in your code if you're attempting to retrieve that view helper via
the ViewLocator.

We'll continue to give this thought.

Cheers,

Ali


--
Alistair McLeod
Development Director
iteration::two
[EMAIL PROTECTED]
 
Office:  +44 (0)131 338 6108
 
This e-mail and any associated attachments transmitted with it may contain
confidential information and must not be copied, or disclosed, or used by
anyone other than the intended recipient(s). If you are not the intended
recipient(s) please destroy this e-mail, and any copies of it, immediately.
 
Please also note that while software systems have been used to try to ensure
that this e-mail has been swept for viruses, iteration::two do not accept
responsibility for any damage or loss caused in respect of any viruses
transmitted by the e-mail. Please ensure your own checks are carried out
before any attachments are opened.
 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Stephen Inzer
Sent: 23 May 2005 16:26
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Cairngorm 0.99 ViewHelper problem

In the 0.95 version of Cairngorm the ViewHelpers were identified by their
name attribute. I could initialize the name attribute with a call to a
method. But in the 0.99 version the name attribute has gone away, and the
ViewHelper is identied by the id attribute. The id attribute cannot be
initailized at run time, it must be evaluated a compile time.

In the application I am developing I have a view that has a ViewHelper. The
view is used many times As a result I need to have many ViewHelpers. The
Views and ViewHelpers are created at runtime so I cannot hard code the ids
for these objects. Each ViewHelper must have a unique name, but since I
cannot call a method when assigning the id attribute I cannot do this. 

Will this work:

mx:Script
  ![CDATA[
  var viewHelper : ViewHelper = ViewHelperBuilder(this);
  ]]
/mx:Script

This allows me to set the id without a compiler error, but will the
initialized( document: Object, id: String) method be called with the the
correct object?


Stephen Inzer





 
Yahoo! Groups Links



 



 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Cairngorm 0.99

2005-05-19 Thread dave buhler



I think the quotes needed to be added.

From:

namespace 
uri=http://www.iterationtwo.com/cairngorm
 
manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespace

be:


namespace 
uri=http://www.iterationtwo.com/cairngorm
 
manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespace


On 5/17/05, Dimitrios Gianninas [EMAIL PROTECTED] wrote:







Hi,

You must add the appropriate 
entry for the cairngorm-manifest.xml in the flex-config.xml (portion in red 
below):

namespace uri=
http://www.macromedia.com/2003/mxml 
manifest/WEB-INF/flex/mxml-manifest.xml/manifest/namespace
namespace 
uri=http://www.iterationtwo.com/cairngorm
 
manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespace

This probably explains the 
error meesage.

Dimitrios Jimmy Gianninas
RIADeveloper
Optimal Payments Inc.



From: Sean McKibben 
[mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 17, 2005 6:25 
PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] 
Cairngorm 0.99
I'm having some trouble getting my Services.mxml to work with .99.

I keep getting errors like:
Error /com/cadpo/shared/business/Services.mxml:4

Namespace http://www.iterationtwo.com/cairngorm
 
has not been associated with component manifest.




Error /com/cadpo/shared/business/Services.mxml:4

No type for element 
http://www.iterationtwo.com/cairngorm:ServiceLocator




Error /com/cadpo/shared/business/Services.mxml:4

Unexpected root element 
http://www.iterationtwo.com/cairngorm:ServiceLocator 
does not extend MovieClip

I put the cairngorm-manifest.xml into the WEB-INF/flex 
directory, but it still doesn't want to eat it.
Here is the first part of my Services.mxml:
?xml version=1.0 encoding=utf-8?
cairngorm:ServiceLocator xmlns:mx=http://www.macromedia.com/2003/mxml 

 xmlns:cairngorm=http://www.iterationtwo.com/cairngorm
 mx:WebService id=myWS
...

Is thexmlns:cairngorm=http://www.iterationtwo.com/cairngorm 
attribute correct? I copied it out of one of the sample apps included in 
.99.

Any ideas?

Thanks,
Sean McKibben







Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


















Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










RE: [flexcoders] Cairngorm 0.99

2005-05-19 Thread Dimitrios Gianninas





Yes correct... copy 'n' past 
error :)

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.



From: dave buhler [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 4:05 AMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Cairngorm 
0.99
I think the quotes needed to be added.From:
namespace uri=http://www.iterationtwo.com/cairngorm 
 
manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespacebe:
namespace uri="http://www.iterationtwo.com/cairngorm " 
manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespace
On 5/17/05, Dimitrios 
Gianninas [EMAIL PROTECTED] 
wrote: 

  Hi,
  
  You must add the appropriate entry for the cairngorm-manifest.xml in 
  the flex-config.xml (portion in red below):
  
  namespace uri=" 
  http://www.macromedia.com/2003/mxml" 
  manifest/WEB-INF/flex/mxml-manifest.xml/manifest/namespace
  namespace uri=http://www.iterationtwo.com/cairngorm 
   
  manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespace
  
  This probably explains the error meesage.
  
  Dimitrios "Jimmy" Gianninas
  RIADeveloper
  Optimal Payments 
Inc.
  
  
  
  From: Sean McKibben [mailto:[EMAIL PROTECTED]] 
  Sent: Tuesday, May 17, 2005 6:25 PMTo: flexcoders@yahoogroups.comSubject: 
  Re: [flexcoders] Cairngorm 0.99
  
  I'm having some trouble getting my Services.mxml to work with .99. 
  
  I keep getting errors like:
  Error /com/cadpo/shared/business/Services.mxml:4 
  
  Namespace http://www.iterationtwo.com/cairngorm has not been 
  associated with component manifest.
  
  
  Error /com/cadpo/shared/business/Services.mxml:4 
  
  No type for element " 
  http://www.iterationtwo.com/cairngorm:ServiceLocator"
  
  
  Error /com/cadpo/shared/business/Services.mxml:4 
  
  Unexpected root element " 
  http://www.iterationtwo.com/cairngorm:ServiceLocator" does not extend 
  MovieClip
  
  I put the cairngorm-manifest.xml into the 
  WEB-INF/flex directory, but it still doesn't want to eat it.
  Here is the first part of my Services.mxml:
  ?xml version="1.0" encoding="utf-8"?
  cairngorm:ServiceLocator xmlns:mx="http://www.macromedia.com/2003/mxml" 
   xmlns:cairngorm="http://www.iterationtwo.com/cairngorm"
   mx:WebService id="myWS"
  ...
  
  Is thexmlns:cairngorm="http://www.iterationtwo.com/cairngorm" attribute correct? I 
  copied it out of one of the sample apps included in .99.
  
  Any ideas?
  
  Thanks,
  Sean McKibben
  
  Yahoo! Groups Links
  
To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]  
Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service. 







Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [flexcoders] Cairngorm 0.99, JRun and Log4J

2005-05-19 Thread Hans Omli




I'm running Tomcat. I see two log4j warnings when launching Tomcat through Eclipse:

log4j:WARN No appenders could be found for logger (org.apache.catalina.session.ManagerBase).
log4j:WARN Please initialize the log4j system properly.

Then I get the following error when I run Main.mxml:

Error: Unresolved compilation problems: The import org.apache.commons cannot be resolvedThe import org.apache.commons cannot be resolvedlog cannot be resolvedlog cannot be resolved
log cannot be resolvedlog cannot be resolvedlog cannot be resolvedlog cannot be resolvedLog cannot be resolved to a typeLogFactory cannot be resolved

Any ideas?
On 5/19/05, Alistair McLeod [EMAIL PROTECTED] wrote:

Hi all,

It turns out that the log4j JAR file that ships with the CairngormStore example in Cairngorm conflicts with the one that is pre-installed with the version of JRun that ships with Flex, and stops the application context from starting up successfully. So, to get it running, delete the following file before starting the integrated JRun server:


\jrun4\servers\default\cairngormstore\WEB-INF\lib\log4j-1.2.8.jar

JRun will then use its own Log4J JAR file.




Cheers,

Ali

--
Alistair McLeodDevelopmentDirector
iteration::two[EMAIL PROTECTED]

Office: +44 (0)131 338 6108

This e-mail and any associated attachments transmitted with it may contain confidential information and must not be copied, or disclosed, or used by anyone other than the intended recipient(s). If you are not the intended recipient(s) please destroy this e-mail, and any copies of it, immediately.
Please also note that while software systems have been used to try to ensure that this e-mail has been swept for viruses, iteration::two do not accept responsibility for any damage or loss caused in respect of any viruses transmitted by the e-mail. Please ensure your own checks are carried out before any attachments are opened.









Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [flexcoders] Cairngorm 0.99, JRun and Log4J

2005-05-19 Thread Hans Omli



I resolved the log4j warnings. I had imported log4j.properties into the wrong webapp. :-(

However, I still get the unresolved compilation problems. Any ideas?
On 5/19/05, Hans Omli [EMAIL PROTECTED] wrote:

I'm running Tomcat. I see two log4j warnings when launching Tomcat through Eclipse:

log4j:WARN No appenders could be found for logger (org.apache.catalina.session.ManagerBase).
log4j:WARN Please initialize the log4j system properly.

Then I get the following error when I run Main.mxml:

Error: Unresolved compilation problems: The import org.apache.commons cannot be resolvedThe import org.apache.commons cannot be resolvedlog cannot be resolvedlog cannot be resolved
log cannot be resolvedlog cannot be resolvedlog cannot be resolvedlog cannot be resolvedLog cannot be resolved to a typeLogFactory cannot be resolved

Any ideas?

On 5/19/05, Alistair McLeod [EMAIL PROTECTED]
 wrote: 

Hi all,

It turns out that the log4j JAR file that ships with the CairngormStore example in Cairngorm conflicts with the one that is pre-installed with the version of JRun that ships with Flex, and stops the application context from starting up successfully. So, to get it running, delete the following file before starting the integrated JRun server: 


\jrun4\servers\default\cairngormstore\WEB-INF\lib\log4j-1.2.8.jar

JRun will then use its own Log4J JAR file.




Cheers,

Ali

--
Alistair McLeodDevelopmentDirector
iteration::two[EMAIL PROTECTED]

Office: +44 (0)131 338 6108

This e-mail and any associated attachments transmitted with it may contain confidential information and must not be copied, or disclosed, or used by anyone other than the intended recipient(s). If you are not the intended recipient(s) please destroy this e-mail, and any copies of it, immediately. 
Please also note that while software systems have been used to try to ensure that this e-mail has been swept for viruses, iteration::two do not accept responsibility for any damage or loss caused in respect of any viruses transmitted by the e-mail. Please ensure your own checks are carried out before any attachments are opened. 









Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [flexcoders] Cairngorm 0.99, JRun and Log4J

2005-05-19 Thread Hans Omli



Resolved the compilation problems. I needed to add the libraries to the Tomcat project I'm using in Eclipse, not just import the libraries into the lib folder.
On 5/19/05, Hans Omli [EMAIL PROTECTED] wrote:

I resolved the log4j warnings. I had imported log4j.properties into the wrong webapp. :-(

However, I still get the unresolved compilation problems. Any ideas?

On 5/19/05, Hans Omli [EMAIL PROTECTED] wrote:
 

I'm running Tomcat. I see two log4j warnings when launching Tomcat through Eclipse:

log4j:WARN No appenders could be found for logger (org.apache.catalina.session.ManagerBase).
log4j:WARN Please initialize the log4j system properly.

Then I get the following error when I run Main.mxml:

Error: Unresolved compilation problems: The import org.apache.commons cannot be resolvedThe import org.apache.commons cannot be resolvedlog cannot be resolvedlog cannot be resolved
log cannot be resolvedlog cannot be resolvedlog cannot be resolvedlog cannot be resolvedLog cannot be resolved to a typeLogFactory cannot be resolved

Any ideas?

On 5/19/05, Alistair McLeod [EMAIL PROTECTED] 
 wrote: 

Hi all,

It turns out that the log4j JAR file that ships with the CairngormStore example in Cairngorm conflicts with the one that is pre-installed with the version of JRun that ships with Flex, and stops the application context from starting up successfully. So, to get it running, delete the following file before starting the integrated JRun server: 


\jrun4\servers\default\cairngormstore\WEB-INF\lib\log4j-1.2.8.jar

JRun will then use its own Log4J JAR file.




Cheers,

Ali

--
Alistair McLeodDevelopmentDirector
iteration::two[EMAIL PROTECTED]

Office: +44 (0)131 338 6108

This e-mail and any associated attachments transmitted with it may contain confidential information and must not be copied, or disclosed, or used by anyone other than the intended recipient(s). If you are not the intended recipient(s) please destroy this e-mail, and any copies of it, immediately. 
Please also note that while software systems have been used to try to ensure that this e-mail has been swept for viruses, iteration::two do not accept responsibility for any damage or loss caused in respect of any viruses transmitted by the e-mail. Please ensure your own checks are carried out before any attachments are opened. 









Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [flexcoders] Cairngorm 0.99

2005-05-17 Thread David Aden
stephen, 

great and thanks! 

One thing before the pub (if you're not already gone) -- could you
check the release notes PDF -- I'm getting a message that it is
corrupt and can't be repaired. The install directions are fine.

ta, 

d

On 5/17/05, Steven Webster [EMAIL PROTECTED] wrote:
  
 http://www.iterationtwo.com/open_source_cairngorm.html 
   
 Any questions, we'll answer them tomorrow ... team iteration::two are off to
 the bar :-) 
   
 We shall have a drink at the bar on behalf of the rest of the Cairngorm
 Project Team 
 as well (in fact, Ilya/Matt/Dirk/Romain/Jimmy, could you let us know where
 to send 
 our bar bills...?) who also played their ever important roles in pulling
 this release 
 together. 
   
 Enjoy :) 
   
 Steven 
   
  
  
 -- 
 Steven Webster
 Technical Director 
 iteration::two 
   
 This e-mail and any associated attachments transmitted with it may contain
 confidential information and must not be copied, or disclosed, or used by
 anyone other than the intended recipient(s). If you are not the intended
 recipient(s) please destroy this e-mail, and any copies of it, immediately.
  
 Please also note that while software systems have been used to try to ensure
 that this e-mail has been swept for viruses, iteration::two do not accept
 responsibility for any damage or loss caused in respect of any viruses
 transmitted by the e-mail. Please ensure your own checks are carried out
 before any attachments are opened. 
   
  
  Yahoo! Groups Links
  
  
 To visit your group on the web, go to:
 http://groups.yahoo.com/group/flexcoders/
   
 To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
   
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


-- 
--
David Aden
Webworld Technologies


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Cairngorm 0.99

2005-05-17 Thread David Aden
never mind -- downloading and opening it worked fine, just opening
from within Firefox didn't work.

d

On 5/17/05, David Aden [EMAIL PROTECTED] wrote:
 stephen,
 
 great and thanks!
 
 One thing before the pub (if you're not already gone) -- could you
 check the release notes PDF -- I'm getting a message that it is
 corrupt and can't be repaired. The install directions are fine.
 
 ta,
 
 d
 
 On 5/17/05, Steven Webster [EMAIL PROTECTED] wrote:
 
  http://www.iterationtwo.com/open_source_cairngorm.html
 
  Any questions, we'll answer them tomorrow ... team iteration::two are off to
  the bar :-)
 
  We shall have a drink at the bar on behalf of the rest of the Cairngorm
  Project Team
  as well (in fact, Ilya/Matt/Dirk/Romain/Jimmy, could you let us know where
  to send
  our bar bills...?) who also played their ever important roles in pulling
  this release
  together.
 
  Enjoy :)
 
  Steven
 
 
 
  --
  Steven Webster
  Technical Director
  iteration::two
 
  This e-mail and any associated attachments transmitted with it may contain
  confidential information and must not be copied, or disclosed, or used by
  anyone other than the intended recipient(s). If you are not the intended
  recipient(s) please destroy this e-mail, and any copies of it, immediately.
 
  Please also note that while software systems have been used to try to ensure
  that this e-mail has been swept for viruses, iteration::two do not accept
  responsibility for any damage or loss caused in respect of any viruses
  transmitted by the e-mail. Please ensure your own checks are carried out
  before any attachments are opened.
 
   
   Yahoo! Groups Links
 
 
  To visit your group on the web, go to:
  http://groups.yahoo.com/group/flexcoders/
 
  To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]
 
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
 
 --
 --
 David Aden
 Webworld Technologies
 


-- 
--
David Aden
Webworld Technologies


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Cairngorm 0.99

2005-05-17 Thread dave buhler



The link is for the .95 release.

On 5/17/05, Steven Webster [EMAIL PROTECTED] wrote:







http://www.iterationtwo.com/open_source_cairngorm.html


Any questions, we'll 
answer them tomorrow ... team iteration::two are off to the 
bar:-)

We shall have a 
drink at the bar on behalf of the rest of the Cairngorm Project 
Team
as well (in fact, 
Ilya/Matt/Dirk/Romain/Jimmy, could you let us know where to send 

our bar bills...?) 
who also played their ever important roles in pulling this 
release
together.

Enjoy 
:)

Steven



--
Steven WebsterTechnical 
Director
iteration::two

This e-mail and any associated attachments 
transmitted with it may contain confidential information and must not be copied, 
or disclosed, or used by anyone other than the intended recipient(s). If you are 
not the intended recipient(s) please destroy this e-mail, and any copies of it, 
immediately.Please also note that while software systems have been 
used to try to ensure that this e-mail has been swept for viruses, 
iteration::two do not accept responsibility for any damage or loss caused in 
respect of any viruses transmitted by the e-mail. Please ensure your own checks 
are carried out before any attachments are 
opened.








Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


















Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Shlomi Cohen





Hi

great 
guys , thanks

i 
think you forgot some resources (procust images) at the assets/products of the 
store sample.

and 
the installation guide needs to be fixed regarding the DB path , the default 
..\\db\\ in store.cfg is not working.
(and i 
have tried all combinations -:-) i had to specify a full path to that 
.

Shlomi



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of dave 
buhlerSent: Tuesday, May 17, 2005 21:20To: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Cairngorm 
0.99
The link is for the .95 release.
On 5/17/05, Steven 
Webster [EMAIL PROTECTED] 
wrote:

  http://www.iterationtwo.com/open_source_cairngorm.html 
  
  
  Any questions, we'll answer them tomorrow 
  ... team iteration::two are off to the bar:-)
  
  We shall have a drink at the bar on behalf 
  of the rest of the Cairngorm Project Team
  as well (in fact, 
  Ilya/Matt/Dirk/Romain/Jimmy, could you let us know where to send 
  
  our bar bills...?) who also played their 
  ever important roles in pulling this release
  together.
  
  Enjoy :)
  
  Steven
  
  
  
  --
  Steven WebsterTechnical 
  Director
  iteration::two
  
  This e-mail and any associated 
  attachments transmitted with it may contain confidential information and must 
  not be copied, or disclosed, or used by anyone other than the intended 
  recipient(s). If you are not the intended recipient(s) please destroy this 
  e-mail, and any copies of it, immediately.Please also note that 
  while software systems have been used to try to ensure that this e-mail has 
  been swept for viruses, iteration::two do not accept responsibility for any 
  damage or loss caused in respect of any viruses transmitted by the e-mail. 
  Please ensure your own checks are carried out before any attachments are 
  opened.
  
  
  Yahoo! Groups Links
  
To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]  
Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service. __This 
email has been scanned by the MessageLabs Email Security System.For more 
information please visit http://www.messagelabs.com/email 
__

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__








Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.











RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Stacy Young










Links for both 0.95 and 0.99 are there

Stace



p.s. nice work lads! J













From: dave buhler
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 17, 2005 2:20
PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
Cairngorm 0.99





The link is for the .95
release.






On 5/17/05, Steven
Webster [EMAIL PROTECTED]
wrote:



http://www.iterationtwo.com/open_source_cairngorm.html












Any questions, we'll answer them tomorrow ... team
iteration::two are off to the bar:-)











We shall have a drink at the bar on behalf of the rest of
the Cairngorm Project Team





as well (in fact, Ilya/Matt/Dirk/Romain/Jimmy, could you let
us know where to send 





our bar bills...?) who also played their ever important
roles in pulling this release





together.











Enjoy :)











Steven











--

Steven Webster
Technical Director



iteration::two











This e-mail and any associated attachments
transmitted with it may contain confidential information and must not be
copied, or disclosed, or used by anyone other than the intended recipient(s).
If you are not the intended recipient(s) please destroy this e-mail, and any
copies of it, immediately.

Please also note that while software systems have been used to try to ensure
that this e-mail has been swept for viruses, iteration::two do not accept
responsibility for any damage or loss caused in respect of any viruses
transmitted by the e-mail. Please ensure your own checks are carried out before
any attachments are opened.



















Yahoo! Groups Links


 To visit your group on the web, go to:
 http://groups.yahoo.com/group/flexcoders/
  
 To unsubscribe from this group, send an
 email to:
 [EMAIL PROTECTED] 
  
 Your use of Yahoo! Groups is subject to
 the Yahoo!
 Terms of Service. 











AVIS IMPORTANTWARNING Les informations contenues dans le present document et ses pieces jointes sont strictement confidentielles et reservees a l'usage de la (des) personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, soyez avise que toute divulgation, distribution, copie, ou autre utilisation de ces informations est strictement prohibee. Si vous avez recu ce document par erreur, veuillez s'il vous plait communiquer immediatement avec l'expediteur et detruire ce document sans en faire de copie sous quelque forme. The information contained in this document and attachments is confidential and intended only for the person(s) named above. If you are not the intended recipient you are hereby notified that any disclosure, copying, distribution, or any other use of the information is strictly prohibited. If you have received this document by mistake, please notify the sender immediately and destroy this document and attachments without making any copy of any kind.









Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.












RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Ryan Scott Jones










CHEERS!!!



Ryan











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steven Webster
Sent: Tuesday, May 17, 2005 12:58 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Cairngorm
0.99







http://www.iterationtwo.com/open_source_cairngorm.html











Any questions, we'll answer them tomorrow ... team
iteration::two are off to the bar:-)











We shall have a drink at the bar on behalf of the rest of
the Cairngorm Project Team





as well (in fact, Ilya/Matt/Dirk/Romain/Jimmy, could you let
us know where to send 





our bar bills...?) who also played their ever important
roles in pulling this release





together.











Enjoy :)











Steven











--

Steven Webster
Technical Director



iteration::two











This e-mail and any associated attachments
transmitted with it may contain confidential information and must not be
copied, or disclosed, or used by anyone other than the intended recipient(s).
If you are not the intended recipient(s) please destroy this e-mail, and any
copies of it, immediately.

Please also note that while software systems have been used to try to ensure
that this e-mail has been swept for viruses, iteration::two do not accept
responsibility for any damage or loss caused in respect of any viruses
transmitted by the e-mail. Please ensure your own checks are carried out before
any attachments are opened.






















Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.












RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Steven Webster





i think you forgot some resources (procust images) at 
the assets/products of the store sample.

We 
didn't forget, we chose not to ship the images  it's in the Installation 
guide how to
copy 
them from 
Flexsamples.

  and 
  the installation guide needs to be fixed regarding the DB path , the default 
  ..\\db\\ in store.cfg is not working.
  (and i have tried all combinations -:-) i had to specify a full path to 
  that .
It's going to be 
appserver specific; let us know your appserver and appserver paths, and we 
can
suggest a fix. 
You canput an absolute instead of relative URL in store.cfg for HSQLDB if 
you
want 
to.

Best,

Steven




--
Steven WebsterTechnical 
Director
iteration::two[EMAIL PROTECTED]

Office: +44 (0)131 338 
6108Mobile: +44 (0)7977 216 223

This e-mail and any associated attachments 
transmitted with it may contain confidential information and must not be copied, 
or disclosed, or used by anyone other than the intended recipient(s). If you are 
not the intended recipient(s) please destroy this e-mail, and any copies of it, 
immediately.Please also note that while software systems have been 
used to try to ensure that this e-mail has been swept for viruses, 
iteration::two do not accept responsibility for any damage or loss caused in 
respect of any viruses transmitted by the e-mail. Please ensure your own checks 
are carried out before any attachments are 
opened.







Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Sean McKibben


I'm having some trouble getting my Services.mxml to work with .99.I keep getting errors like:Error /com/cadpo/shared/business/Services.mxml:4Namespace http://www.iterationtwo.com/cairngorm has not been associated with component manifest.Error /com/cadpo/shared/business/Services.mxml:4No type for element "http://www.iterationtwo.com/cairngorm:ServiceLocator"Error /com/cadpo/shared/business/Services.mxml:4Unexpected root element "http://www.iterationtwo.com/cairngorm:ServiceLocator" does not extend MovieClipI put the cairngorm-manifest.xml into the WEB-INF/flex directory, but it still doesn't want to eat it.Here is the first part of my Services.mxml:?xml version="1.0" encoding="utf-8"?cairngorm:ServiceLocator xmlns:mx="http://www.macromedia.com/2003/mxml"    xmlns:cairngorm="http://www.iterationtwo.com/cairngorm"  mx:WebService id="myWS"...Is the xmlns:cairngorm="http://www.iterationtwo.com/cairngorm" attribute correct? I copied it out of one of the sample apps included in .99.Any ideas?Thanks,Sean McKibben







Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.









RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Dimitrios Gianninas





Hi,

You must add the appropriate 
entry for the cairngorm-manifest.xml in the flex-config.xml (portion in red 
below):

namespace uri="http://www.macromedia.com/2003/mxml" 
manifest/WEB-INF/flex/mxml-manifest.xml/manifest/namespace
namespace 
uri=http://www.iterationtwo.com/cairngorm 
manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespace

This probably explains the 
error meesage.

Dimitrios "Jimmy" Gianninas
RIADeveloper
Optimal Payments Inc.



From: Sean McKibben 
[mailto:[EMAIL PROTECTED] Sent: Tuesday, May 17, 2005 6:25 
PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] 
Cairngorm 0.99
I'm having some trouble getting my Services.mxml to work with .99.

I keep getting errors like:
Error /com/cadpo/shared/business/Services.mxml:4
Namespace http://www.iterationtwo.com/cairngorm 
has not been associated with component manifest.


Error /com/cadpo/shared/business/Services.mxml:4
No type for element "http://www.iterationtwo.com/cairngorm:ServiceLocator"


Error /com/cadpo/shared/business/Services.mxml:4
Unexpected root element "http://www.iterationtwo.com/cairngorm:ServiceLocator" 
does not extend MovieClip

I put the cairngorm-manifest.xml into the WEB-INF/flex 
directory, but it still doesn't want to eat it.
Here is the first part of my Services.mxml:
?xml version="1.0" encoding="utf-8"?
cairngorm:ServiceLocator xmlns:mx="http://www.macromedia.com/2003/mxml" 

 xmlns:cairngorm="http://www.iterationtwo.com/cairngorm"
 mx:WebService id="myWS"
...

Is thexmlns:cairngorm="http://www.iterationtwo.com/cairngorm" 
attribute correct? I copied it out of one of the sample apps included in 
.99.

Any ideas?

Thanks,
Sean McKibben







Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.