Andrew Rayne: CairngormStore for Flex 2

« Internationalised Applications | Main | Cairngormstore source »

August 31, 2006

CairngormStore for Flex 2

Hi, over the last while I have been working on overhauling the CairngormStore for Flex 2. The aim is to get it up on Adobe Labs as soon as we can. However in the interests of making it available as soon as possible and getting feedback I will put it up here on my blog.

You can download the code from here.

Some of the things I have changed are to remove the dependency on HSQLDB. There were more questions generated by trying to configure HSQLDB than anything else and we felt that it was detracting from the main purpose of the app as an example of using Cairngorm.

As far as other changes to the store are concerned you can see that we have moved away from the ViewHelper pattern. This is not because we think that it is not useful but rather that it had tended to be over used. I have seen more than one Flex application where the ViewHelpers had taken on the role being a home for all of the client-side logic.

Other things that have changed are that we have moved away from using the mx:Model tag too. This was due to the fact that we found some problems with this while working on larger forms in projects. Under the covers the Model is just an untyped object. We have replaced this with custom model objects to allow us to type the objects.

There is currently a lot of work being done in Adobe Consulting around the direction to take the Cairngorm framework in the future. We look forward to sharing the fruits of this labour with you soon.

Posted by arayne at August 31, 2006 04:17 AM

Comments

Excellent. This will be very useful as the source code doesn't exhaustively include code templates for all the classes you need to create to build applications with Cairngorm2. So it's hard to work it out without an example.
Talking of the advantages of strong-typing, is there a good reason that the response events that the Cairngorm2 ServiceLocator raises are weakly typed ( event : * = null ) rather than mx.rpc.events.ResultEvent and mx.rpc.events.FaultEvent? As it stands, because of this, event handlers in user-written Cairngorm2 "commands" need to cast the event to its correct type before using it.

Posted by: Graeme Harker at September 5, 2006 03:46 AM

Hi Graeme, there are several changes afoot with the framework and one of them will be to move away from using Responder towards the IResponder solution. Although admittedly this won't get your result and faultevents any more strongly typed as that will make them of type object.

The reason for IResponder typing the result and fault events as object is for consistency and flexibility. IResponder is used in more cases than the simple RPC calls and therefore the events that come back to the result or fault methods aren’t always ResultEvent and FaultEvent.

Posted by: Andy Rayne at September 5, 2006 05:20 AM

I wonder about com.adobe.cairngorm.commands.Command.
but I cannot found about that.
Can I receive the file by email?.
Thank you.

Posted by: chris at September 5, 2006 04:17 PM

Hey Andrew,
Any reason I am getting this error when I call Main.mxml?
------------------------------------------------
[Flex] Serializing AMF/HTTP response
Version: 3
(Message #0 targetURI=/2/onStatus, responseURI=)
(Typed Object #0 'flex.messaging.messages.ErrorMessage')
rootCause = (Typed Object #1 'java.lang.UnsupportedClassVersionError')
localizedMessage = "com/adobe/cairngorm/samples/store/business/ProductDe
legate (Unsupported major.minor version 49.0)"
message = "com/adobe/cairngorm/samples/store/business/ProductDelegate (U
nsupported major.minor version 49.0)"
cause = null
destination = "productServiceImpl"
headers = (Object #2)
correlationId = "F8467E5C-1677-9143-1BDB-835C5DB41D69"
faultString = "com/adobe/cairngorm/samples/store/business/ProductDelegate
(Unsupported major.minor version 49.0)"
messageId = "FDB482C5-2619-6A56-9500-0C58E249CFF9"
faultCode = "Server.Processing"
timeToLive = 0.0
extendedData = null
faultDetail = null
clientId = null
timestamp = 1.15755007143E12
body = null

Posted by: mike at September 6, 2006 06:24 AM

Mike, what version of the JRE are you running with? I am using 1.5.0_06. Sounds like you might be running with 1.4 something?

Posted by: Andy at September 6, 2006 06:31 AM

Never mind - I needed to recompile all the java classes with the updated jakarta commoms lang

Posted by: mike at September 6, 2006 10:04 AM

So, per the comment, "we have moved away from using the mx:Model tag too"...

Would you intend to move away from using it in ShippingInformation.mxml to define shipping and rates, or is this a justified use of mx:Model?

Posted by: Kris at September 7, 2006 10:19 AM

Hi Kris,
Well I thought that the convienience of reading the source in from an xml file with the mx:Model tag here plus the fact that the data is never getting passed around as an object but just getting used in the repeater, made this a more justified use. Therefore I left it in. This was my preference in this case.

Posted by: Andy at September 7, 2006 11:52 PM

Hi Andy,

can you please briefly describe the installation/configuration process necessary to run this app. This is my first try with Cairngorm and so far I only have Flex 2 Builder/Flash 9 Player installed, configured and no Flex Data Services. Any reference/link to such an instruction will be appreciated.

Posted by: Luiz at September 10, 2006 05:04 PM

I am trying to run CairngormStore for Flex 2 end-to-end.

What is already done:

- Flex 2 SDK is installed
- Flex 2 builder is up and running
- Flex 2 Data Service Express is installed with the option "JRun"
- Cairngorm Library is installed

- Project CairngormStore_2 is created in
FlexBuilder (project type "Flex DataService")
- the path to the Cairngorm Library is defined
- the path to the JRun is defined
- CairngormStore is build OK
- JRun starts successfully

Attempt to run the CairngormStore results in run-time alert message "Products can't be retrieved".
Obviously my deployemnt /configuration of Data Services on the client and server side is not complete.
Given pretty involved combination of declarative configuration parameters and configuration files it is not easy to figure out what the problem is and how to cure it.

Any hint, advise will be greately appreciated.

Posted by: Luiz at September 12, 2006 10:50 AM

Andrew,

Here is some additional information on the problem.
After turning on web-tier (server side) logging I can see the following error information (complete log is also available, but this is the last message in it and the only "error" message):
09/13 12:19:36 error Requested resource '/messagebroker/amf' (%2fmessagebroker%2famf) not found

On a more general note.

Obviously Cairngorm2 and CairngormStore2 already attract enormous attention of development community. Now after your posting of the sample that is also referenced on the Adobe Lab site and the other sites a lot of developers will try to have it up and running. I think that I've chosen the most straightforward and easiest way of deployment - Flex Builder 2 for creating a CairngormStore project and Flex Data Services Express with the option of running an integrated JRun application server. Theya are Adobe recommended tools and probably most of the people will take this route. It makes sense to make this installation/deployment/configuration as smooth as possible. People that prefer more involved deployment schemes will use their handcrafting skills. But most of developers who want to become familiar with Cairngorm Architectural Framework in action need to get this sample running without a lot of pain and not to overwhelm you with tons of questions and problems.

If you agree that enhancing of the deployment procedure for CairngormStore makes sense I can offer my assistance in experimentig with possible scenarios that you can suggest and in capturing the process in writing. (If it is more convenient - my e-mail is luiz.bonfa at gmail dot com)

Posted by: Luiz at September 13, 2006 12:58 PM

Hi,

Sorry for the delay in getting back to answer these comments. Firstly the reason that com.adobe.cairngorm.control is not included in the source is that it is part of the Cairngorm framework and therefore it is included in the Cairngorm.swc.

In order to have the application compiling and running correctly I can't recommend Peter Martin's blog entry on his plugin for Eclipse. If you set up your Flexbuilder in the way that he states there and then extract the CairngormStoreWeb.war into the webcontent directory in your project, it should work. One thing to be careful of and I think this might be the issue that you have Luiz is that the .class files don't get deleted. Hope this helps. If anyone wants to write install docs for other configurations then that would be a great thing for the community.

Posted by: Andy at September 18, 2006 06:17 AM

Hey guys,

I was getting the same "(Unsupported major.minor version 49.0)" error message and eventually realized that I had multiple JDKs on my machine and was compiling the class files with a different version (1.5.0_08) than my JRun installation was set to use (1.4.2_06). Oops :)

So, the fix for this is to delete the class files and recompile under the same Java version that your server is using.

Hope this helps some others out.

Posted by: Mark at September 20, 2006 02:36 PM

Very cool, nice to see the updated version. There appears to be a little bug though. The price range slider affects the graphical product items as if they were sorted by name, as in, when sorted by price it ends up applying alpha fading to the wrong items.

Posted by: Josh at September 20, 2006 03:28 PM

Hello
Great example !
But I have one problem : when I import the .war in Eclipse the Design Mode doesn't work anymore.
Any ideas ? I'm using Eclipse 3.1.2 with WTP 1.0.2 (all in one file) + Peter Martin FDS plugin (very nice tool). When I create a FDS project from scratch it works perfectly.
Thanks
Rod

Posted by: Rod at September 29, 2006 04:20 AM

Your link to download the CairngormStore for Flex 2, seems to be broken. Is there another way to get the example store?

Posted by: patrick at October 13, 2006 10:49 AM

Im on day 2 of trying to download it. Apparently the iterationtwo site is down :(

Posted by: Mark at October 13, 2006 07:17 PM

Hi,
i'm very interested in the CaringormStore example and i'm trying to download the example since one week. The side www.iterationtwo.com seems to be down(also www.flexcoders.org and www.richinternetapps.com). Is there anyone who know an alternative download location?

Thanks

Posted by: Steffen at October 16, 2006 07:40 AM

Yeah me too. I've not been able to find the latest Store example anywhere. Everywhere points to the old iterationtwo.com site which is down.

Posted by: Ryan at October 16, 2006 10:25 AM

hmmm.. iterationtwo is still down and the sample store cant be found anywhere.. anybody from iterationtwo there and interested in getting their site up gain?

Posted by: Wolfgang Becker at October 16, 2006 11:20 AM

I would like to echo the previous comments - I cannot download the Cairngorm Store. The link is bad.

Posted by: David Tucker at October 16, 2006 01:38 PM

Hello, does anyone have a copy of the Flexstore 2 or know of another large example of using the new release of Cairngorm? It seems the iterationtwo site has been down for a while and may not be coming back. I was hoping to review a larger example app.

thank you for your assistance.

Posted by: patrick at October 17, 2006 09:04 AM

Is there a new series written for Cairngorm 2? I have only seen the series for Cairngorm 0.99.

Posted by: Bruce Leggett at October 17, 2006 01:33 PM

Does anyone have this source code they can send me since the link is invalid now?

Posted by: Chris Giametta at October 18, 2006 07:27 AM

Hey Guys,

I've posted the Cairngorm store code here until iterationtwo.com comes back online:
http://www.cairngormdocs.org/exampleapps/CairngormStoreWeb.zip

Posted by: Evan Gifford at October 18, 2006 10:13 AM

Thanks a lot!

Posted by: Steffen at October 19, 2006 01:31 AM

How bodyViewToShow() being called?

Posted by: Sherwin at November 18, 2006 02:51 AM

Here is the actual link on cairngormdocs.org for anyone searching...

http://www.cairngormdocs.org/exampleApps/CairngormStoreWeb.zip

Posted by: Steve H. at November 30, 2006 12:02 PM

If you are seeing;

"Products can't be retrieved".

or

error Requested resource '/messagebroker/amf' (%2fmessagebroker%2famf) not found

then you don't have a server back-end. My guess is that the old version of the store had a db that was deployed with JRun from FlexBuilder.

I found this mockobject patch helpful to get around the problem;

http://ntier.wordpress.com/modcairngormstore/

Posted by: dkenny at December 6, 2006 08:42 AM

One of the solution is - While creating the project , use the option 'Compile Application on the server when the page is viewed.' under Flex Data Services.
I tried this and its working fine.
You should compile on the server

Posted by: Rajat at January 2, 2007 07:39 AM

hello,
i am new to flex. i deploying cairngormweb store application in flex store ,but when i run the application nothing is displayed in browser. i could not find the solution. please help me

Posted by: arun kumar at January 12, 2007 11:07 PM

That is the link yes
http://www.cairngormdocs.org/exampleapps/CairngormStoreWeb.zip

Posted by: islami site islami sohbet at February 11, 2007 10:47 AM

I keep getting "Internal Server Error" when I try and download the code . . .

Posted by: Cahlan Sharp at February 28, 2007 02:34 PM

I'm getting the error too. :(

Posted by: adampasz at March 20, 2007 12:26 PM

Hey Andy,
Your sample is awesome, and I have used your example to start a very large enterprise project I am working on. Cairngorm is a great framework and has proved very easy to implement. Love it so far. I have one specific question regarding CairngormEvent and Command.

The one thing I wasn't thrilled with was the physical speration of the Event and Command definitions. Too many source files to manage to achieve a single operation (IMO):
Event -->
Command -->
Delegate -->
Service

I want to run this by you just to verify that what I have done doesn't cause an underlying issues with the core framework.

I have implemented an Event/Command combo class. Because there is always a 1:1 it seemed to make logical sense.

the class extends CaringormEvent and implements Command, Responder

I have an empty contructor (for Command conformity), a setParams() to assign attributes to the event, execute(), onResult(), and onFault() methods.

addCommand(MyEventCommand.EVENT_NAME,MyEventCommand);

Does this make sense? Do you see any major issues with this?

Thanks for your awesome contribution!
Geoff


Posted by: Geoff Mina at April 8, 2007 03:36 PM

Wouldn't it be more helpful for developers to package this example application as a Flex Project (either as a zipped up project or as a SVN URL rather than as a WAR)?

Posted by: Graeme Harker at April 19, 2007 02:13 AM

l think very nice article

Posted by: arabalar at April 23, 2007 11:23 AM

l think very nice article

Posted by: resimler at April 23, 2007 11:24 AM

everybody very very thanks

Posted by: link at April 23, 2007 01:11 PM

Im a bit confused with the model.selectedItem..

On the store, when you change between Graphical Product List and Textual Product List…..why does the updateSelectedProduct method change?

On the TextualProductList.mxml, the method CairngormEventDispatcher is used, and doesnt work!
However, on the Graphical Product List an normal dispatchEvent method is used and seems to work fine.

I have been following the code in the store to create an application of my own, but im slightly confused to the different methods that have been used to dispatch the update selected product

Thanks

Posted by: J Buda at April 24, 2007 01:38 AM

Excellent. Good working :)

Posted by: resimler at May 30, 2007 08:28 AM

Andy thanks for the codes!

But have you stopped posting? Or are you continuing somewhere else??

Posted by: zonenoktaorg at June 7, 2007 07:21 AM

l think very nice article

Posted by: Bebek resimleri at June 8, 2007 03:21 AM

Andy thanks for the codes!
Thank you

Posted by: tır resimleri at June 8, 2007 04:39 AM

Very cool, nice to see the updated version

Posted by: araba at June 10, 2007 01:26 AM

Excellent. Good working

Posted by: resimler at June 10, 2007 01:27 AM

thanks for article.

Posted by: resim at June 10, 2007 01:29 AM

Hello, does anyone have a copy of the Flexstore 2 or know of another large example of using the new release of Cairngorm? It seems the iterationtwo site has been down for a while and may not be coming back. I was hoping to review a larger example app.

thank you for your assistance.

Posted by: arabalar at June 10, 2007 01:30 AM

The code works great. Thank you.

Posted by: Güzel Resimler at June 11, 2007 10:28 AM

thanks for article . it had learned me a lot of thing.

Posted by: resim at June 18, 2007 05:21 AM

Thanks for CairngormStore for Flex 2 codes . it is useful.

Posted by: arabalar at June 18, 2007 05:23 AM

Thanks a lot

Posted by: bebek resimleri at June 18, 2007 05:24 AM

Thanks for it . but there is some mistakes.

Posted by: site ekle at June 18, 2007 05:27 AM

perfect. thanks. i thing it will be publish at homepage.

Posted by: rüya at June 18, 2007 05:57 AM

Thanks it useful . codes is ok.

Posted by: gazete oku at June 18, 2007 05:58 AM

thanks you .. i am looking or this

Posted by: güzel resimler at June 18, 2007 02:54 PM

Thanks a lot

Posted by: arabalartr at June 19, 2007 02:02 AM

Cool post! I am sure everyone will appraise for this effort of yours. Thanks for sharing the fruits of this labour with us. :)
Keep it up Andy :)

Posted by: Amrit at June 19, 2007 12:32 PM

Thanks Andy, cool article. please publish another..

Posted by: arabalar at June 20, 2007 11:03 PM

cool article Thanks ..

Posted by: gazete at June 21, 2007 04:50 AM

Cool article. We wait for publish another..
Thanks for sharing the fruits of this labour with us.

Posted by: samet at June 21, 2007 04:53 AM

Yes me too. I've not been able to find the latest Store example anywhere. Everywhere points to the old iterationtwo.com site which is down.

Posted by: Bilgi at June 21, 2007 04:58 AM

Good article. Humans need this worthly informations.

Posted by: Güzel Resimler at June 21, 2007 05:03 AM

Excellently. Good work. Have good write all time

Posted by: ÇoktaTın Nokta Kom at June 21, 2007 05:07 AM

perfect. thanks. i thing it will be publish at homepage.

Posted by: dantel at June 23, 2007 09:42 AM

thanks.. nice article

Posted by: resimler at June 23, 2007 06:09 PM

great article thanks

Posted by: Wireless at June 24, 2007 06:50 PM

thanks good site

Posted by: download at June 28, 2007 07:06 AM

thanks good baby D:

Posted by: program at June 28, 2007 07:06 AM

macromedia logs thanks :D

Posted by: indir at June 28, 2007 07:07 AM

thanks remember

Posted by: indir at June 28, 2007 07:08 AM

thanks youtube

Posted by: youtube at June 28, 2007 07:08 AM

thanks madro:D

Posted by: izlesene at June 28, 2007 07:09 AM

download now!

Posted by: download at June 28, 2007 07:09 AM

thanks.. nice article

Posted by: izle at June 30, 2007 09:04 AM

okey.thanks a lot

Posted by: kraloyun at June 30, 2007 09:05 AM

Thanks it useful . codes is ok. good night

Posted by: porno video at June 30, 2007 09:06 AM

Thanks for article

Posted by: audi arabalar at July 1, 2007 02:15 AM

Thanks...

Posted by: bmw arabalar at July 1, 2007 02:16 AM

Thanks..

Posted by: mercedes arabalar at July 1, 2007 02:19 AM

thanks.

Posted by: sohbet at July 3, 2007 12:56 AM

hi.

Posted by: dini sohbet at July 3, 2007 12:57 AM

Thanks for article

Posted by: 月饼团购 at July 4, 2007 10:01 AM

thanks

Posted by: ivan at July 4, 2007 10:21 AM

thanks
good

Posted by: kale kapı at July 6, 2007 03:42 PM

thanks for article.

Posted by: araba at July 9, 2007 01:36 AM

Nice . This will be really useful.

Posted by: Naruto Wallpaper at July 9, 2007 01:37 AM

Thank you veru much for this valuable info.

Posted by: Oyun Resimleri at July 9, 2007 01:38 AM

thanks for this article.

Posted by: resimler at July 9, 2007 02:39 PM

thanks nice..

Posted by: oyunlar at July 9, 2007 02:41 PM

thanks

Posted by: Media at July 9, 2007 02:42 PM

thanks..

Posted by: sohbet at July 9, 2007 02:45 PM

thanks for this article

Posted by: video at July 9, 2007 02:46 PM

hi thanks for this article

Posted by: bebek resimleri at July 9, 2007 02:51 PM

thanks

Posted by: Guzel resimler at July 9, 2007 02:52 PM

thank you for this site

Posted by: gazeteler at July 10, 2007 10:05 AM

veryy Good site.

Posted by: Sohbet at July 10, 2007 10:09 AM

veryy Good Site Thanks You..

Posted by: Chat at July 10, 2007 10:10 AM

yeah Very Good.!

Posted by: Kızlarla Sohbet at July 10, 2007 10:12 AM

yEahh Hi Al.!

Posted by: Şiir at July 10, 2007 10:13 AM

Thanks for article

Posted by: Guzel sozler at July 10, 2007 10:14 AM

Very Good Site..Nice Thanks.!

Posted by: arkadaş at July 10, 2007 10:15 AM

veryy Good Yeah!

Posted by: Sohbet at July 10, 2007 10:34 AM

thank you for this sitee.!

Posted by: Chat at July 10, 2007 10:35 AM

Hmm thanks.

Posted by: forum at July 10, 2007 10:37 AM

Thanks..Yous.!

Posted by: Sohbet at July 10, 2007 10:38 AM

very Good.

Posted by: sevgi Sözleri at July 10, 2007 10:41 AM

Thanlks You..

Posted by: sevgi at July 10, 2007 10:42 AM

Thankss You. very Good.

Posted by: Mirc at July 10, 2007 11:19 AM

Thanks

Posted by: Chat at July 10, 2007 11:21 AM

Eğlence Thanks.!

Posted by: EğLence at July 10, 2007 11:21 AM

Sohbet!!!!!

Posted by: Sohbet at July 10, 2007 11:22 AM

Thanks You

Posted by: Sohbet Odaları at July 10, 2007 11:23 AM

Thanks You very Goood SİTE...

Posted by: Chat Odaları at July 10, 2007 11:23 AM

VERYY GOD..!

Posted by: Sohbet at July 10, 2007 11:24 AM

Thanksyou very..

Posted by: toplist at July 10, 2007 11:24 AM

very Good site.

Posted by: Pagerank at July 10, 2007 11:25 AM

Thanks Youu veryy Good ..

Posted by: kral Oyun at July 10, 2007 11:26 AM

Veryy Good Site..!

Posted by: PortaL at July 10, 2007 11:27 AM

very Good site.!

Posted by: Ruya Tabirleri at July 10, 2007 11:27 AM

Thanks Yo!!!!!!

Posted by: Okey at July 10, 2007 11:29 AM

devil yeah very.

Posted by: Chat Odaları at July 10, 2007 11:30 AM

VERY gODDDDDDDDDDD ThANKS

Posted by: Ekart at July 10, 2007 11:31 AM

yEAh Hi Al.!

Posted by: Chat Odaları at July 10, 2007 11:32 AM

merjiiii

Posted by: arama at July 11, 2007 11:27 AM

chat te monjur

Posted by: chat at July 11, 2007 11:29 AM

hi all

Posted by: sohbet at July 12, 2007 02:10 PM

thanks

Posted by: video at July 12, 2007 02:12 PM

thanks

Posted by: dini sohbet at July 12, 2007 02:14 PM

good works. have nice day

Posted by: resim at July 12, 2007 07:16 PM

We wait for you another topics. bye

Posted by: video at July 12, 2007 07:19 PM

You don’t avoid the spam comments. It’s normal when you often posting. ;-)

Posted by: Stock photos at July 13, 2007 04:03 PM

Can i translate this and insert on my site in Poland? Thanks

Posted by: Apteka internetowa at July 13, 2007 04:05 PM

thanks a lot .. for this article

Posted by: youtube video izlesene at July 14, 2007 07:25 AM

thanks a lot .. for this article

Posted by: youtube video izlesene at July 14, 2007 07:26 AM

thanks a lot .. for this article .
good write post

Posted by: youtube at July 14, 2007 07:28 AM

thank you

Posted by: DigitalBoutiques at July 14, 2007 12:53 PM

thanks

Posted by: Directory at July 14, 2007 12:54 PM

thanks macromedia

Posted by: Healty at July 14, 2007 12:55 PM

thanks

Posted by: resimler at July 14, 2007 01:33 PM

thanks you

Posted by: sohbet at July 15, 2007 04:19 AM

The link to downoad the code is not working.

Posted by: Desenie at July 16, 2007 03:23 AM

Excellent. Good working

Posted by: Sd card at July 16, 2007 02:37 PM

yeah

Posted by: program at July 17, 2007 07:02 AM

thanks all

Posted by: hadi at July 17, 2007 09:49 AM

thanks all

Posted by: sohbet at July 17, 2007 09:49 AM

thanks all

Posted by: indir at July 17, 2007 12:43 PM

Good working

Posted by: Odtwarzacze mp3 at July 17, 2007 03:11 PM

It’s very good article.

Posted by: Aukcje internetowe at July 17, 2007 03:12 PM

thanks a lot

Posted by: Programy at July 17, 2007 03:14 PM

Thanks...

Posted by: zonenoktaorg odullu seo yarismasi at July 18, 2007 03:05 AM

Thanks....

Posted by: murat kekilli at July 19, 2007 02:48 PM

Thanks a lot

Posted by: Arabalar at July 19, 2007 09:16 PM

thanks

Posted by: Resimler at July 19, 2007 09:22 PM

thank you

Posted by: diyet at July 20, 2007 11:35 AM

hi adobe

Posted by: güzeller at July 20, 2007 11:35 AM

Excellent. This will be very useful as the source code doesn't exhaustively include code templates for all the classes you need to create to build applications with Cairngorm2. So it's hard to work it out without an example.
Talking of the advantages of strong-typing, is there a good reason that the response events that the Cairngorm2 ServiceLocator raises are weakly typed ( event : * = null ) rather than mx.rpc.events.ResultEvent and mx.rpc.events.FaultEvent? As it stands, because of this, event handlers in user-written Cairngorm2 "commands" need to cast the event to its correct type before using it.

Posted by: komik videolar at July 20, 2007 11:36 AM

So, per the comment, "we have moved away from using the mx:Model tag too"...

Would you intend to move away from using it in ShippingInformation.mxml to define shipping and rates, or is this a justified use of mx:Model?

Posted by: bebek resimleri at July 20, 2007 11:54 AM

It’s very good article.

Posted by: Giełda samochodowa at July 20, 2007 03:02 PM

Hi, Im very interested in the CaringormStore example and Im trying to download the example since one week.

Posted by: Arabalar at July 22, 2007 04:59 PM

thanks a lot

Posted by: Pendrive at July 26, 2007 01:09 AM

thank a lot

Posted by: resimler at July 26, 2007 12:15 PM

Thanks but Adobe products are rally expensive There is a lot o chipper software like Photoshop Lightroom ;-)

Posted by: moda at July 26, 2007 01:22 PM

Very cool, nice to see the updated version. There appears to be a little bug though. The price range slider affects the graphical product items as if they were sorted by name, as in, when sorted by price it ends up applying alpha fading to the wrong items.

Posted by: teknoloji at July 26, 2007 01:23 PM

Hi, Im very interested in the CaringormStore example and Im trying to download the example since one week.

Posted by: resim at July 26, 2007 01:26 PM

So, per the comment, "we have moved away from using the mx:Model tag too"...

Posted by: bebek resimleri at July 26, 2007 01:28 PM

Hi, Im very interested in the CaringormStore example and Im trying to download the example since one week.

Posted by: güzellik at July 26, 2007 01:36 PM

Don't tell me it's not worth tryin' for
Bana bunun denemeye değer olmadığını söyleme

You can't tell me it's not worth dyin' for
Bana bunu ölmeye değer olmadığını söyleyemezsin

Posted by: astroloji at July 26, 2007 01:53 PM

.1 doesn’t seem to support all that you need, it would be interesting to see if

Posted by: chat at July 28, 2007 02:13 PM

Thank You for another very interesting article. It’s really good written and I fully agree with You on main issue, btw. I must say that I really enjoyed reading all of Your posts. It’s interesting to read ideas, and observations from someone else’s point of view… it makes you think more. So please try to keep up the great work all the time. Greetings

Posted by: sohbet at July 28, 2007 02:14 PM

very good article.

Posted by: slovenia at July 29, 2007 07:51 AM

yes do you faq:s

Posted by: yonja at July 30, 2007 02:50 AM

very good

Posted by: bilgisayar satış at July 31, 2007 04:48 AM

good site

Posted by: sohbet at July 31, 2007 02:56 PM

Andy thanks for the codes!

But have you stopped posting? Or are you continuing somewhere else??

Posted by: Nieruchomosci komercyjne at August 2, 2007 03:34 PM

It's very good article. Great site with very good look and perfect information... Thanks

Posted by: Modlitwa at August 2, 2007 03:49 PM

thanks

Posted by: 月饼 at August 5, 2007 06:22 AM

thanks

Posted by: 月饼 at August 5, 2007 06:31 AM

I want Google talk gadget in my netvibes. hurry up Tariq. it's a must have. add this GTalk module..

Posted by: chat odaları at August 7, 2007 04:00 AM

I want Google talk gadget in my netvibes. hurry up Tariq. it's a must have. add this GTalk module..ZaLim

Posted by: Bayan arkadas at August 7, 2007 04:02 AM

Thank you for the great work that you did. I have been able to get a lot of ideas on what to do with my site just by looking at yours. And the hints and tips that you gave have made a world of difference in making it easier to build mine up. Any other tips that you would like to share with me I would very much welcome and appreciate them. I have been working on websites for the past 6 years and have found some of your tips radically make it easier to work on them. I have gone through several books and been using the tips and advice that they have given, and I found that some of your is the plainly written out of them all. Thank you again for the wonderful site and the great tips. If you have any more, I would love to hear them.

Posted by: online shopping at August 8, 2007 10:12 PM

Can someone send me the Cairngorm Store source code? The link no longer works. Thanks, Mark

Posted by: Mark at August 9, 2007 06:52 AM

Thank you for the great work that you did. I have been able to get a lot of ideas on what to do with my site just by looking at yours. And the hints and tips that you gave have made a world of difference in making it easier to build mine up. Any other tips that you would like to share with me I would very much welcome and appreciate them. I have been working on websites for the past 6 years and have found some of your tips radically make it easier to work on them. I have gone through several books and been using the tips and advice that they have given, and I found that some of your is the plainly written out of them all. Thank you again for the wonderful site and the great tips. If you have any more, I would love to hear them.

Posted by: magazin at August 12, 2007 07:51 AM

Hi Graeme, there are several changes afoot with the framework and one of them will be to move away from using Responder towards the IResponder solution. Although admittedly this won't get your result and faultevents any more strongly typed as that will make them of type object.

The reason for IResponder typing the result and fault events as object is for consistency and flexibility. IResponder is used in more cases than the simple RPC calls and therefore the events that come back to the result or fault methods aren’t always ResultEvent and FaultEvent.

Posted by: kadin at August 12, 2007 07:51 AM

Would you intend to move away from using it in ShippingInformation.mxml to define shipping and rates, or is this a justified use of mx:Model?

Posted by: arkadaş at August 12, 2007 07:53 AM

Thank you for the great work that you did. I have been able to get a lot of ideas on what to do with my site just by looking at yours. And the hints and tips that you gave have made a world of difference in making it easier to build mine up. Any other tips that you would like to share with me I would very much welcome and appreciate them. I have been working on websites for the past 6 years and have found some of your tips radically make it easier to work on them. I have gone through several books and been using the tips and advice that they have given, and I found that some of your is the plainly written out of them all. Thank you again for the wonderful site and the great tips. If you have any more, I would love to hear them.

Posted by: göğüs büyütücü hap at August 12, 2007 07:55 AM

Thank you for the great work that you did. I have been able to get a lot of ideas on what to do with my site just by looking at yours. And the hints and tips that you gave have made a world of difference in making it easier to build mine up. Any other tips that you would like to share with me I would very much welcome and appreciate them. I have been working on websites for the past 6 years and have found some of your tips radically make it easier to work on them. I have gone through several books and been using the tips and advice that they have given, and I found that some of your is the plainly written out of them all. Thank you again for the wonderful site and the great tips. If you have any more, I would love to hear them.

Posted by: teknoloji at August 12, 2007 07:55 AM

Thank you

Posted by: kekilli at August 12, 2007 08:50 AM

thanks

Posted by: 月饼 at August 13, 2007 08:15 AM

thanks

Posted by: gonca at August 16, 2007 05:45 AM

thanks

Posted by: gonca at August 16, 2007 07:59 AM

Thanks for new version

Posted by: download at August 17, 2007 12:37 AM

Thank you for the useful informations.

Posted by: Bank zdjec at August 17, 2007 02:54 AM

It's very good article. Great site with very good look and perfect information... Thanks

Posted by: Apteka internetowa at August 17, 2007 02:57 AM

Thanks for article useful informations.

Posted by: Resim at August 17, 2007 09:29 PM

Thanks for this article

Posted by: msn nickleri at August 18, 2007 11:42 PM

Thanks for all

Posted by: resim upload at August 18, 2007 11:43 PM

Thank you

Posted by: gazate at August 18, 2007 11:45 PM

it is a good article

Posted by: download at August 18, 2007 11:45 PM

thanks for all

Posted by: indir at August 18, 2007 11:47 PM

Thanks you

Posted by: türkiye resimleri at August 18, 2007 11:47 PM

thanks

Posted by: oyunlar at August 18, 2007 11:48 PM

thanks

Posted by: araba resimleri at August 19, 2007 12:20 AM

good article and Andy thanks for the flex 2 unsupported major.minor 49.0 solution and hint!

Posted by: Jazz at August 19, 2007 09:35 AM

Thansk for useful article

Posted by: araba at August 20, 2007 08:01 PM

Usefuul article. Thanks for it.

Posted by: aşk at August 20, 2007 08:06 PM

thanks for all hayvan resimleri

Posted by: hayvan resimleri at August 20, 2007 08:07 PM

I agree that merely increasing the number of democratic member states is unlikely help with the enforcement problem plaguing the United Nations. The number democratic member-states is already high, yet enforcement is feeble at best: Adding more democratic states (or more rules!) is unlikely to improve this situation.

Posted by: sohbet at August 21, 2007 10:17 AM

ShippingInformation.mxml to define shipping and rates, or is this a justified use of mx:Model?Would you intend to move away from using it in

Posted by: Pos Software at August 22, 2007 01:35 PM

l think very nice article wow

Posted by: Heloc at August 23, 2007 03:37 AM

Nice article Andy. Keep it up ;)

Posted by: Kathmandu Boy at August 26, 2007 03:59 PM

Hello ,

thanks for article http://www.iterationtwo.com/cairngormstore/CairngormStoreWeb.war how can i open this?

Posted by: kampus at August 27, 2007 08:52 AM

Nce Blog Ty for all

Posted by: Resim at August 28, 2007 04:17 AM

Thansk for useful article

Posted by: Güzel Resimler at August 28, 2007 04:18 AM

l think very nice article wow

Posted by: nurceyiz at August 28, 2007 02:02 PM

Usefuul article. Thanks for it.

Posted by: erdogdubilgisayar at August 28, 2007 02:03 PM

Thanks for good article.

Posted by: Guzel Resimler at August 30, 2007 03:01 PM

good post thanks

Posted by: Travel turkey at August 31, 2007 09:28 AM

nice thanks

Posted by: ozlu sozler at August 31, 2007 09:30 AM

Thanks nice article

Posted by: hareketli resimler at August 31, 2007 09:33 AM

good article.. thank you

Posted by: turkey sultanahmet at August 31, 2007 09:36 AM

thank

Posted by: 月饼 at September 1, 2007 09:12 AM

thanks

Posted by: 月饼 at September 1, 2007 09:12 AM

thank you for this site

Posted by: Resim at September 2, 2007 10:54 AM

Thanx.

Posted by: Design at September 2, 2007 10:55 AM

thank you for this site

Posted by: islam at September 2, 2007 10:56 AM

TX.

Posted by: Spor Haberleri at September 2, 2007 10:57 AM

Thank you great.

Posted by: Yemek Tarifleri at September 2, 2007 10:57 AM

thank you for this site

Posted by: CANLI tv at September 2, 2007 10:58 AM

Very good.

Posted by: Ödev at September 2, 2007 10:59 AM

Best lc.

Posted by: Radyo Canlı Yayın at September 2, 2007 11:22 AM

So, per the comment, "we have moved away from using the mx:Model tag too"...

Posted by: Fotograf at September 2, 2007 11:22 AM

Thansk for useful article

Posted by: BABACAN at September 3, 2007 01:37 AM

thanks for article

Posted by: goksel at September 3, 2007 04:22 AM

thanks

Posted by: cynthiaknouft at September 3, 2007 04:23 AM

thanks for article.. !!!!!!!!

Posted by: mcdf at September 3, 2007 04:24 AM

It's very good article. Great site with very good look and perfect information... Thanks

Posted by: vip people at September 3, 2007 04:25 AM

thanks..!!!! good article

Posted by: watch at September 3, 2007 04:26 AM

thanks

Posted by: seviyorum seni at September 3, 2007 04:26 AM

Wouldn't it be more helpful for developers to package this example application as a Flex Project (either as a zipped up project or as a SVN URL rather than as a WAR)?

Posted by: Foto at September 3, 2007 04:29 AM

thanks.

Posted by: www.r10.net küresel ısınmaya hayır seo yarışması at September 5, 2007 01:37 PM

thanks..

Posted by: www.r10.net küresel ısınmaya hayır seo yarışması at September 5, 2007 01:38 PM

thanks for good article..

Posted by: Oyun at September 6, 2007 11:36 AM

good.

Posted by: Sevgi at September 6, 2007 12:08 PM

thanks for good article.

Posted by: oyun indir at September 7, 2007 06:59 AM

very nice thankss...


evden eve nakliyat

evden eve nakliyat

nakliyat

nakliyat

Posted by: sürücü kursu at September 8, 2007 01:01 AM

thankss...

Posted by: evden eve nakliyat at September 8, 2007 01:03 AM

thankk

Posted by: evden eve nakliyat at September 8, 2007 01:03 AM

very nice

Posted by: nakliyat at September 8, 2007 01:04 AM

nice....

Posted by: nakliyat at September 8, 2007 01:05 AM

Thank you for the useful informations.

Posted by: Buy photo at September 8, 2007 04:44 AM

Can i translate this and insert on my site in Poland? Thanks

Posted by: Rene Furterer at September 8, 2007 04:45 AM

Andy thanks for the codes!

But have you stopped posting? Or are you continuing somewhere else??

Posted by: Manzara Resimleri at September 10, 2007 05:29 AM

Thanks Thanks Thanks :)

Posted by: wmwebtr ödüllü seo yarışması at September 12, 2007 05:50 PM

Thans this is great

Posted by: Alaturqa at September 12, 2007 11:38 PM

Thanks great post

Posted by: melekler at September 12, 2007 11:38 PM

Andy thanks for the codes!

Posted by: oyun indir at September 13, 2007 11:32 AM

Hi
Thanks for code..

Posted by: Katalog Stron at September 19, 2007 10:09 AM

thanks very good

Posted by: 杭州办公室清洁 at September 19, 2007 08:02 PM

realy nice article, great site, thanks for infomations

Posted by: dobre programy at September 21, 2007 12:53 PM

thanks for this article

Posted by: seo yarismasi at September 25, 2007 09:40 AM

realy nice article, great site, thanks for infomations

Posted by: komik at September 25, 2007 12:12 PM

Realy nice article.

Posted by: Yemek Tarifleri at September 25, 2007 12:13 PM

Hi Andy,

can you please briefly describe the installation/configuration process necessary to run this app. This is my first try with Cairngorm and so far I only have Flex 2 Builder/Flash 9 Player installed, configured and no Flex Data Services. Any reference/link to such an instruction will be appreciated.

Posted by: tez ödev at September 25, 2007 12:15 PM

Hi, Im very interested in the CaringormStore example and Im trying to download the example since one week

Posted by: canli tv at September 25, 2007 12:19 PM

everybody very very thanks.

Posted by: Resimler at September 25, 2007 12:20 PM

iterationtwo is still down and the sample store cant be found anywhere.. anybody from iterationtwo there and interested in getting their site up gain.

Posted by: Design at September 25, 2007 12:20 PM

tank you

Posted by: seks shop at September 27, 2007 05:31 AM

thxx

Posted by: sohbet at September 27, 2007 11:51 AM

thanks a lot !

Posted by: Fitness Article at September 27, 2007 12:14 PM

thank you

Posted by: hayko cepkin at September 27, 2007 01:00 PM

thanks
pageranklarda oynamalar var mı arkadaşlar?

Posted by: web tasarım at September 28, 2007 07:36 AM

Thank you for the great work that you did.

Posted by: Admin at September 28, 2007 08:54 AM

Muchas Gracias!

Posted by: Linksarok at September 28, 2007 08:55 AM

Thank you for the great work that you did.

Posted by: Aldimeola at September 28, 2007 11:15 AM

thanks again

Posted by: sohbet odalari at September 29, 2007 03:30 AM

thanks

Posted by: çiçekçiler at September 29, 2007 08:28 AM

ı have you istanbul flowers

Posted by: çiçekçi at September 29, 2007 08:28 AM

Thank You..

Posted by: sohbet at September 29, 2007 10:13 PM

Print screen

Posted by: Nyomda at September 30, 2007 02:57 AM

Thank you

Posted by: Estetik at September 30, 2007 07:21 AM

evden eve nakliyat

Posted by: evden eve nakliyat at September 30, 2007 07:59 AM

evden eve nakliyat

Posted by: evden eve nakliyat at September 30, 2007 08:01 AM

thanks you

Posted by: wmwebtr odüllü seo yarışması at September 30, 2007 08:47 AM

Hi This great
http://www.audiophile.pl

Posted by: Katalog Stron at October 1, 2007 01:48 AM

Are you continuing somewhere else?

Posted by: Tervezés at October 1, 2007 02:45 AM

thanks

Posted by: Elisha Cuthbert at October 1, 2007 02:31 PM

Brilliant article.
Thanks for this!

Posted by: Download movies at October 2, 2007 12:11 AM

If you are tired, after this article...

Posted by: Paintball at October 2, 2007 06:25 AM

Thank You! But I'm over there.

Posted by: City-light at October 2, 2007 07:33 AM

Yes, was useful, but I'm tired too.

Posted by: Barcode at October 2, 2007 07:34 AM

online çiçek sipariş

Posted by: çiçek siparişi at October 2, 2007 08:02 AM

this article is very helpful and useful thank you

Posted by: Corlu at October 2, 2007 12:57 PM

veryy Good site.
thanks you...

Posted by: FORUM at October 2, 2007 07:14 PM

Andy thanks for everything!

But where are you? have you stopped posting? How can i find your new articles?

Posted by: ozcan at October 2, 2007 10:47 PM

I’m a new customer on macromedia. thx for article.

Posted by: ticaret at October 2, 2007 11:07 PM

nice article. i will save on my pc. thank you

Posted by: ajaxboy at October 2, 2007 11:12 PM

nice article. i will save on my pc. thank you

Posted by: turkiyeotel.net at October 2, 2007 11:50 PM

this article is very helpful and useful thank you

Posted by: bilgiland.com at October 2, 2007 11:50 PM

Yes, was useful, but I'm tired too.

Posted by: teknolojhi.com at October 2, 2007 11:51 PM

I am trying to run CairngormStore for Flex 2 end-to-end.

What is already done:

- Flex 2 SDK is installed
- Flex 2 builder is up and running
- Flex 2 Data Service Express is installed with the option "JRun"
- Cairngorm Library is installed

Posted by: cizgifilm.tv at October 2, 2007 11:51 PM

I am trying to run CairngormStore for Flex 2 end-to-end.

What is already done:

- Flex 2 SDK is installed
- Flex 2 builder is up and running
- Flex 2 Data Service Express is installed with the option "JRun"
- Cairngorm Library is installed

Posted by: cizgifilm.tv at October 2, 2007 11:52 PM

I am trying to run CairngormStore for Flex 2 end-to-end.

What is already done:

- Flex 2 SDK is installed
- Flex 2 builder is up and running
- Flex 2 Data Service Express is installed with the option "JRun"
- Cairngorm Library is installed

Posted by: cizgifilm.tv at October 2, 2007 11:53 PM

Good article. Humans need this worthly informations.

Posted by: rradyo at October 2, 2007 11:55 PM

Thanks it useful . codes is ok.

Posted by: portal.name at October 2, 2007 11:55 PM

Hello, does anyone have a copy of the Flexstore 2 or know of another large example of using the new release of Cairngorm? It seems the iterationtwo site has been down for a while and may not be coming back. I was hoping to review a larger example app.

thank you for your assistance.

Posted by: antalyashop at October 2, 2007 11:56 PM

Flexstore2 is perfect!

Posted by: inkemer at October 2, 2007 11:56 PM

Im a bit confused with the model.selectedItem..

On the store, when you change between Graphical Product List and Textual Product List…..why does the updateSelectedProduct method change?

On the TextualProductList.mxml, the method CairngormEventDispatcher is used, and doesnt work!
However, on the Graphical Product List an normal dispatchEvent method is used and seems to work fine.

I have been following the code in the store to create an application of my own, but im slightly confused to the different methods that have been used to dispatch the update selected product

Thanks

Posted by: azrehber at October 2, 2007 11:57 PM

Hey Guys,

I've posted the Cairngorm store code here until iterationtwo.com comes back online:
http://www.cairngormdocs.org/exampleapps/CairngormStoreWeb.zip

Posted by: 7 wonders on the world at October 2, 2007 11:57 PM

iterationtwo is still down and the sample store cant be found anywhere.. anybody from iterationtwo there and interested in getting their site up gain.

Posted by: tasarimci at October 2, 2007 11:58 PM

Hello
Great example !
But I have one problem : when I import the .war in Eclipse the Design Mode doesn't work anymore.
Any ideas ? I'm using Eclipse 3.1.2 with WTP 1.0.2 (all in one file) + Peter Martin FDS plugin (very nice tool). When I create a FDS project from scratch it works perfectly.
Thanks
Rod

Posted by: 7zeorg at October 2, 2007 11:58 PM

Very cool, nice to see the updated version

Posted by: antalyashop at October 2, 2007 11:59 PM

Why do people this?

Posted by: Domain at October 3, 2007 07:08 AM

thanx

Posted by: programlar at October 3, 2007 07:52 AM

Thanks good

Posted by: kapı at October 3, 2007 11:23 AM

thanks for good article..

Posted by: www.r10.net küresel ısınmaya hayır seo yarışması at October 3, 2007 08:31 PM

Hi
Well I thought that the convienience of reading the source in from an xml file with the mx:Model tag here plus the fact that the data is never getting passed around as an object pioneer but just getting used in the repeater, made this a more justified use. Therefore I left it in. This was my preference in this case.

Posted by: Pioneer at October 4, 2007 02:51 AM

thanks good article

Posted by: Free wordpress themes at October 4, 2007 08:25 AM

Thank you very much, i enjoy reading your Blog

Posted by: yellowpages at October 4, 2007 09:58 PM

Thanks good

Posted by: Katalog Stron at October 5, 2007 03:53 AM

Hello, does anyone have a copy of the Flexstore 2 or know of another large example of using the new,release of Cairngorm? It seems the iterationtwo site has been down for a while and may not be coming back.I was hoping to review a larger example app.

Posted by: Sparrow at October 5, 2007 06:05 AM

Guys a later version of the app is available here http://cairngormdocs.org/blog/?p=17.

Posted by: Andy Rayne at October 5, 2007 06:14 AM

Thank you for information.

Regards,

Minna Lazer Epilasyon, Lazerli Epilasyon

Posted by: Lazerli Epilasyon at October 5, 2007 12:34 PM

Thanks administrator

Posted by: program pownload at October 5, 2007 12:49 PM

thank you..

Posted by: bilgisayar hocası at October 5, 2007 01:17 PM

thanks..

Posted by: candan öte at October 5, 2007 01:18 PM

very nice, thanks.

Posted by: download at October 5, 2007 01:19 PM

Thank you very much, i enjoy reading your Blog

Posted by: derinport.biz at October 5, 2007 01:20 PM

yeah.thanks everyone.great blog

Posted by: web tasarım at October 5, 2007 04:03 PM

thanks your article ready

Posted by: www.r10.net küresel ısınmaya hayır seo yarışması at October 5, 2007 04:10 PM

Thank you very much,grup web i enjoy reading your Blog

Posted by: web tasarim at October 5, 2007 04:38 PM

thank you for information.

Posted by: nakliyat at October 5, 2007 04:46 PM

thanks

Posted by: 电炉 at October 6, 2007 07:58 PM

thanks

Posted by: 阀门 at October 6, 2007 08:00 PM

ooo good thanks you.

Posted by: sesli chat at October 7, 2007 06:08 AM

good thanks.

Posted by: sesli at October 7, 2007 06:09 AM

Good work

Posted by: praca oferty at October 7, 2007 08:31 AM

Yes i agree

Posted by: nieruchomosci at October 7, 2007 08:32 AM

very nice design

Posted by: youtube at October 7, 2007 06:35 PM

very nice design

Posted by: youtube at October 7, 2007 06:36 PM

gazeteler
gazete
hikaye
gazete oku
spor
haber
fal
burc

very good site

Posted by: izlesene at October 7, 2007 06:37 PM

Hi
Well I thought that the convienience of reading the source in from an xml file with the mx:Model tag here plus the fact that the data is never getting passed around as an object pioneer but just getting used in the repeater, made this a more justified use. Therefore I left it in. This was my preference in this case.

very good

Posted by: hikaye at October 7, 2007 06:38 PM

thank you lan sitenin sahibi :)

Posted by: haber at October 7, 2007 06:39 PM

very good site design.. congr...

Posted by: fal at October 7, 2007 06:39 PM

this site very very good

Posted by: burc at October 7, 2007 06:40 PM

Hello, does anyone have a copy of the Flexstore 2 or know of another large example of using the new release of Cairngorm? It seems the iterationtwo site has been down for a while and may not be coming back. I was hoping to review a larger example app.

thank you for your assistance.

Posted by: ganyan at October 7, 2007 09:43 PM

Hi, Im very interested in the CaringormStore example and Im trying to download the example since one week

Posted by: programlar at October 7, 2007 09:44 PM

Im on day 2 of trying to download it. Apparently the iterationtwo site is down :(

Posted by: ders kapakları at October 7, 2007 09:45 PM

can you please briefly describe the installation/configuration process necessary to run this app. This is my first try with Cairngorm and so far I only have Flex 2 Builder/Flash 9 Player installed, configured and no Flex Data Services. Any reference/link to such an instruction will be appreciated.

Posted by: resim at October 7, 2007 09:45 PM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat bedava kız msn,

Posted by: sesli sohbet at October 7, 2007 11:50 PM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat bedava üyelik,

Posted by: sesli sohbet at October 7, 2007 11:52 PM

sesli chat sesli sohbet görüntülü sohbet görüntülü chat bayan sohbet

Posted by: sesli sohbet at October 7, 2007 11:53 PM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat liseli kızlar

Posted by: sesli sohbet at October 7, 2007 11:56 PM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat bayan arkadaş

Posted by: sesli sohbet at October 7, 2007 11:57 PM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat kız kıza

Posted by: sesli sohbet at October 7, 2007 11:59 PM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat bedava üyelik

Posted by: sesli sohbet at October 8, 2007 12:00 AM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat kızla sosbet

Posted by: sesli sohbet at October 8, 2007 12:00 AM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat bedava chat

Posted by: sesli sohbet at October 8, 2007 12:01 AM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat bedava sohbet

Posted by: sesli sohbet at October 8, 2007 12:02 AM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat bedava arkadaşlık

Posted by: sesli sohbet at October 8, 2007 12:03 AM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat bedava msn

Posted by: sesli sohbet at October 8, 2007 12:04 AM

sesli sohbet sesli chat görüntülü sohbet görüntülü chat liseli kız msn si

Posted by: sesli sohbet at October 8, 2007 12:10 AM

thanks...

Posted by: indirkaydet at October 8, 2007 02:42 AM

nice, thanx.

Posted by: efe at October 8, 2007 06:39 PM

Thank you very much, i enjoy reading your Blog

Posted by: Eren at October 9, 2007 05:13 AM

Brilliant article.

Posted by: Netsarok at October 10, 2007 12:47 AM

Great !

Posted by: Katalog Stron at October 10, 2007 07:48 AM

Thank you very much, i enjoy reading your Blog

Posted by: Webdesign & SEO at October 12, 2007 07:54 AM

cool, thanx

Posted by: site ekle dizin at October 12, 2007 10:57 AM

Thank you :)

Posted by: www.r10.net küresel ısınmaya hayır seo yarışması at October 12, 2007 01:27 PM

Thanks.

Posted by: www.r10.net küresel ısınmaya hayır seo yarışması at October 12, 2007 01:31 PM

Thank you

Posted by: drcetinerdotorg at October 12, 2007 01:33 PM

Thanks

Posted by: grafiker at October 12, 2007 01:35 PM

google reklam

Posted by: google reklam at October 12, 2007 03:03 PM

nakliyat

Posted by: nakliyat at October 12, 2007 03:05 PM

nakliyat

Posted by: seks shop at October 12, 2007 03:06 PM

thank your article.

Posted by: free firefox at October 12, 2007 03:48 PM

good thanks.

Posted by: resimler at October 12, 2007 03:53 PM

thank you.

Posted by: radyo dinle at October 12, 2007 03:55 PM

cool thanks.

Posted by: tatil at October 12, 2007 03:56 PM

Thank you all informatins

Posted by: Evden Eve Nakliyat at October 13, 2007 12:20 AM

thank you webmaster

Posted by: sarki sözleri at October 14, 2007 10:45 AM

www.dinisohbet.com thank you webmaster !

Posted by: islami sohbet at October 14, 2007 10:53 AM

thank you webmaster ! www.islamiradyo.com

Posted by: islami sohbet radyo at October 14, 2007 10:54 AM

chat sohbet müzik aşk arkadas sms msn turkchat sohbet

Posted by: chat sohbet sex aşk at October 14, 2007 10:56 AM

chat wepcam programlar ilahi sohbet arkadas muhabbet fotograf

Posted by: chat sohbet sex aşk at October 14, 2007 10:58 AM

www.iyimi.net thank you good web site

Posted by: programlar at October 14, 2007 10:59 AM

radyo müzik mp3 chat sohbet islam

Posted by: radyo chat sohbet sex porno radyo at October 14, 2007 11:04 AM

thanks by www.sohbetiniz.net

Posted by: sohbet at October 14, 2007 01:04 PM

Thanx you :)

Posted by: arasira at October 14, 2007 03:34 PM

Thanks for CairngormStore for Flex 2 codes . it is useful.

Posted by: resimleri at October 14, 2007 10:29 PM

thanks

Posted by: tatil at October 14, 2007 10:39 PM

Great site

Posted by: tworzenie stron at October 15, 2007 02:11 AM

www.r10.net küresel ısınmaya hayır seo yarışması , www.r10.net küresel ısınmaya hayır seo yarışması , www.r10.net küresel ısınmaya hayır seo yarışması , www.r10.net küresel ısınmaya hayır seo yarışması

Posted by: www.r10.net küresel ısınmaya hayır seo yarışması at October 15, 2007 04:13 AM

it useful information

Posted by: hepimizinblogu at October 15, 2007 01:07 PM

good article. thank you

Posted by: ailemizinblogu at October 15, 2007 01:08 PM

moda rehberi

Posted by: moda rehberi at October 16, 2007 03:39 AM

galeri

Posted by: galeri at October 16, 2007 03:41 AM

monitör

Posted by: monitör at October 16, 2007 03:42 AM

sandalye

Posted by: sandalye at October 16, 2007 03:43 AM

cam

Posted by: cam at October 16, 2007 03:51 AM

kalem

Posted by: kalem at October 16, 2007 03:59 AM

catı

Posted by: catı at October 16, 2007 04:01 AM

halı

Posted by: halı at October 16, 2007 04:02 AM

kamera

Posted by: kamera at October 16, 2007 04:04 AM

thanks..

Posted by: www.r10.net küresel ısınmaya hayır seo yarışması at October 16, 2007 10:53 AM

Thanks..

Posted by: www.r10.net küresel ısınmaya hayır seo yarışması at October 16, 2007 10:53 AM

thanks...

Posted by: www.r10.net küresel ısınmaya hayır seo yarışması at October 16, 2007 10:54 AM

Thank you ...

Posted by: sohbet odaları at October 16, 2007 06:38 PM

nice plugin thanks but how can ı download that

Posted by: evden eve nakliyat at October 17, 2007 01:30 AM

Hi, Im very interested in the CaringormStore example and Im trying to download the example since one week.

Posted by: resimleri at October 17, 2007 02:42 AM

Hi, Im very interested in the CaringormStore example and Im trying to download the example since one week.

Posted by: ganyan at October 17, 2007 02:42 AM

nakliyat

Posted by: nakliyat at October 17, 2007 10:22 AM

Thanx you :)

Posted by: oyun at October 17, 2007 12:46 PM

great website i can use this informations..thanks again.

Posted by: burclar at October 18, 2007 04:50 AM

radyo dinle chat sohbet mp3

Posted by: radyo at October 18, 2007 05:58 AM

islam chat islami sohbet sohbet ilahi namaz kuran

Posted by: islami sohbet at October 18, 2007 06:06 AM

islami sohbet islam sohbet chat allah kuran kitap namaz tespih ilahi mp3

Posted by: islami radyo at October 18, 2007 06:06 AM

thanks a lot (:

Posted by: dizi at October 18, 2007 08:45 AM

thanks

Posted by: küresel ısınma at October 18, 2007 10:37 AM

thanks

Posted by: küresel ısınma at October 18, 2007 10:38 AM

thanks

Posted by: kurtlar vadisi pusu videoları at October 18, 2007 10:45 AM

Thank you for that information

Posted by: Diamant at October 18, 2007 10:58 AM

Fine article thank you

Posted by: Kostenlose Songtexte at October 18, 2007 10:59 AM

Greetings for all

Posted by: Praca dodatkowa at October 18, 2007 11:23 AM

The flash satay method is great too, but has some drawbacks. Namely you have to use a container movie to a container movie if you want your SWF to play before fully loaded. In addition you’ll also need javascript to detect the correct player version.

Posted by: mp3 indir at October 18, 2007 12:54 PM

minikperi oyunları

Posted by: minikperi at October 18, 2007 02:55 PM

çocuk oyunları

Posted by: çocuk oyunları at October 18, 2007 02:57 PM

magazin haberleri

Posted by: magazin haberleri at October 18, 2007 03:03 PM

porno

Posted by: hikayeler at October 18, 2007 03:04 PM

l think very nice article... thanks

Posted by: ali bektaş at October 18, 2007 03:37 PM

Nice article and very fantastic helpful site.

Posted by: Strony www at October 19, 2007 03:57 AM

good thankss

Posted by: sohbet at October 19, 2007 07:45 AM

Ay ışığı ve tekne

Posted by: sohbet at October 19, 2007 07:46 AM

good thankss

Posted by: komik videolar at October 19, 2007 07:47 AM

maskot

Posted by: maskot at October 20, 2007 01:31 AM

temizlik

Posted by: temizlik at October 20, 2007 01:33 AM

ofis mobilya

Posted by: ofis mobila at October 20, 2007 01:34 AM

evden eve nakliyat

Posted by: evden eve nakliyat at October 20, 2007 01:35 AM

belgelendirme

Posted by: belgelendirme at October 20, 2007 01:40 AM

kalibrasyon

Posted by: kalibrasyon at October 20, 2007 01:41 AM

Post a comment




Remember Me?