Open BlueDragon + Railo + ColdFusion on Tomcat
As a corollary to Sean's post about running Railo, OpenBD, and ColdFusion on JRun, I thought I'd outline my preferred development environment these days, which is to run all the necessary CFML engines on Apache Tomcat. Note that this approach will work equally well on Jetty, JBoss, GlassFish, or more or less any servlet container or JEE server you choose.
Great minds think alike because coincidentally enough, Dave Shuck also has just published two blog posts (part 1, part 2) about setting up a similar environment. I figure I'll throw mine out there as well because the more information available the better.
So why not use JRun? Well, aside from the fact that JRun is getting very long in the tooth at this point, personally (and you'll probably hear me say this in a couple of conference presentations this year), I think the ColdFusion model stands Java on its head a bit, particularly when you do a standalone install of ColdFusion. Yes, it makes it easy to install and configure ColdFusion, but in my opinion it also shields people from how Java web applications actually work, so I've become a big fan of treating ColdFusion like what it is: a Java web application.
This to me makes far more sense than letting ColdFusion and JRun dictate your Java environment. And I think you'll see in this blog post that "installing" CFML engines on Tomcat is actually easier than installing ColdFusion. The only even remotely tricky part is installing Tomcat (and in most cases it isn't tricky at all), so let's tackle that first.
As an aside, if you just want to try Open BlueDragon and don't want to bother with the Tomcat installation, just download the Ready2Run Jetty + OpenBD distribution, start Jetty, and you're done!
Installing Tomcat
I'm assuming you already have Java installed, and I recommend Java 1.6 updater 10 or later (updater 11 is the latest) since previous versions had a bug that makes CFC instantiation horrendously slow. So, if the following looks complicated, it's really only because I'm outlining how to get the Java settings correct if you need to worry about it. Chances you won't need to do most of these steps, and once Tomcat's running the CFML piece of this puzzle is dead simple.
First, download Tomcat. As of this blog post the latest version is 6.0.18, and you'll want the "Core" binary distribution. After the download completes, unzip the file you downloaded. Now comes the tricky install process. Oh wait, I forgot--there is no install process! All you have to do is start Tomcat after you unzip it. If you have your Java environment set up correctly Tomcat should find Java fine and fire right up.
To start Tomcat, open a terminal (or DOS window if you must ...) and navigate to your Tomcat directory, then the bin directory. For example if you unzipped Tomcat to /home/yourname/apache-tomcat-6.0.18, you would navigate to /home/yourname/apache-tomcat-6.0.18/bin. (Note that all of this runs perfectly well on Windows, and though I would never recommend using Windows for anything, you do not have to use Linux to get any of this to work.)
Once you're in the bin directory, run the startup.sh script (./startup.sh) and you'll see some output similar to this:
Using CATALINA_BASE: /home/mwoodward/apache-tomcat-6.0.18
Using CATALINA_HOME: /home/mwoodward/apache-tomcat-6.0.18
Using CATALINA_TMPDIR: /home/mwoodward/apache-tomcat-6.0.18/temp
Using JRE_HOME: /usr/share/java/jdk1.6.0_11
As long as you see something similar everything's likely fine. If you see errors, the most likely culprit is that Tomcat can't find Java. You can either set a JAVA_HOME environment variable, or you can explicitly tell Tomcat where to find Java by adding the JAVA_HOME location to the catalina.sh script in the bin directory. Open catalina.sh in your favorite text editor, and after the big block of comments at the top of the file (denoted with # signs), add the following line:
JAVA_HOME=/path/to/your/jdk
Note that this should be the path to your JDK's home directory, not to a directory such as lib, etc. inside the directory. In my case I have Java in /usr/share/java/jdk1.6.0_11 so that's the value I use for JAVA_HOME. Save catalina.sh and run startup.sh again and everything should work now.
Check to make sure Tomcat is running by browing to http://localhost:8080 You should a page confirming that Tomcat is configured correctly.
Installing Open BlueDragon
Once Tomcat is running, since Open BlueDragon is a standard Java WAR (web application archive) file, "installing" OpenBD on Tomcat really just means copying a file to Tomcat's webapps directory so the WAR file is deployed. A WAR file is actually the same format as a JAR file (which is essentially a ZIP file ...), but it has an XML file that tells servlet containers how to deploy the application.
Here are the installation steps for OpenBD:
- Download the Open BlueDragon WAR ("J2EE Standard WAR") file from http://openbluedragon.org/download.cfm
- Copy the WAR file (which unless you change it is called openbd.war) to /path/to/tomcat/webapps
- Wait a few seconds for Tomcat to auto-deploy the WAR file, and browse to http://localhost:8080/openbd to see a test page:
That's it! You now have Open BlueDragon running on Tomcat. Tomcat will deploy the WAR into a context path with the same name as the WAR file, which in this case is openbd, hence the URL http://localhost:8080/openbd If you want to deploy another instance with a different context path name, just change the name of the WAR file as you copy it (e.g. cp opendb.war /path/to/tomcat/webapps/mynewcontextpath.war) and you'll have another instance with a different context path.
As for where to put your CFML files, just put them in /path/to/tomcat/webapps/openbd (or whatever you called your context path), and of course all URLs for this instance will include the context path in them. I won't be covering how to run Tomcat on port 80 or hook things into Apache in this blog post, but I'll cover that in a future post.
Installing Railo
To install Railo you follow the exact same steps as above with Open BlueDragon:
- Download the Railo WAR from http://railo.ch/en/index.cfm?treeID=224 -- you want the WAR file under "Railo Custom" at the bottom of the page
- Copy the WAR file to /path/to/tomcat/webapps. In this case since the file name includes the version number, I did a cp railo-3.0.2.001.war /path/to/tomcat/webapps/railo.war, which will make the context path "railo"
- Wait a few seconds for Tomcat to auto-deploy the WAR file, and browse to http://localhost:8080/railo to see a test page:
As with OpenBD above, just put your CFML files in /path/to/tomcat/webapps/railo to run them on Railo in the railo context path.
Installing ColdFusion
ColdFusion is a bit of a different beast since Adobe doesn't distribute a standard WAR file, but luckily you easily can generate one by running the installer. The steps below are when you run the installer on Linux but the same principles apply on other operating systems. Let's generate a WAR file for ColdFusion.
- If you don't have it handy, download the developer edition of ColdFusion from http://www.adobe.com/support/coldfusion/downloads.html
- Run the installer (note on Linux you need to run the installer as root)
- Accept the license agreement (which is really fun to page through on the console installer--I think if you hit enter 28 times that will get you to the "Do you accept?" prompt ;-)
- Select Developer Edition (or use a serial number if you prefer)
- KEY STEP: Choose an installation type of "J2EE Configuration (WAR file)"
- Select the stuff you don't want to include in the installation. I typically uncheck all four choices (docs, LiveCycle, search services, and start on init) when I generate a WAR
- Choose the installation directory or accept the default
- Enter the admin password
- Choose to enabled or disable RDS. I find it's handy to have RDS on development instances so you can use the Eclipse tools to interact with the datasources.
- Enter the RDS password
- Confirm the installation selections and continue
- Wait a minute or so for the WAR to be generated
At the end of this process you have a CF 8 WAR file sitting in your install directory (which by default on Linux is /opt/coldfusion8). Now the installation is more or less as above with OpenBD and Railo since we have a standard WAR file we can deploy on Tomcat:
- Copy the cfusion.war file into /path/to/tomcat/webapps As indicated above, this will mean your context path will be "cfusion" unless you rename the WAR file while copying it.
- Wait a few seconds for Tomcat to auto-deploy the WAR file
- Browse to http://localhost:8080/cfusion to complete the installation process for the WAR.

Note that you only have to go through the 12-step program above to generate the WAR once, unless you want to change the installation options. So when you need another instance of ColdFusion on Tomcat, just copy the WAR file over again and give it a different name (and hence a different context path) from any other instances.
If this matters to you, please be aware that for some reason ColdFusion isn't officially supported on Tomcat. Why is a bit of a mystery since Tomcat is the servlet container used in JBoss, and in my experience ColdFusion runs just fine on Tomcat. I only bring it up if you're in an environment where official support matters.
Why Do This?
You now have Tomcat running and can easily develop and test on Open BlueDragon, Railo, or Adobe ColdFusion. To me that's reason enough to use a development setup such as this. Also based on my experience helping people get this type of environment set up, it really does start to open up people's eyes to what's really going on under the hood with ColdFusion. Yes, if you do the multi-instance installation of ColdFusion you do get some server management features you don't get otherwise, but based on how I'm using ColdFusion these days, I simply don't need those features, particularly on development.
What I do need, on the other hand, is the ability to develop on both ColdFusion 8 and (increasingly) Open BlueDragon, so rather than trying to shoehorn OpenBD into the ColdFusion/JRun environment, I prefer to use a standard Java servlet container such as Tomcat and put all the CFML engines and instances I need on Tomcat.
Next Steps
You're probably already wondering how to get things to run "for real," meaning eliminating the port number and context path for your users. This can be done several different ways, so I'll cover some options in future blog posts. In the mean time, check out Dave's blog posts (links above) for some info on setting things up with Apache and mod_jk, which is one way to go. You can also change the port Tomcat runs on, or proxy from Apache out to Tomcat for CFML sites, so there's no shortage of ways to set up more or less any configuration you want.
Yes, the lack of "official support" for Tomcat is odd since JBoss 4.0.3, 4.0.5 and 4.2 are all officially supported!
I've never had much luck getting Tomcat to work with a webroot outside of its install tree - could you post instructions for that?
I guess my ideal setup would be to use Apache vhosts to select which engine handles the code but to have each project have its own webroot that all three engines can see, e.g.,
dev-cf.project.com -> CF8 and {workspace}/project/wwwroot
dev-railo.project.com -> Railo and {workspace}/project/wwwroot
dev-openbd.project.com -> OpenBD and {workspace}/project/wwwroot
Great Post and looking forward for your future post on this topic.
@Sean--concerning the webroot outside the Tomcat area, do you mean having your CFML files in a directory elsewhere on your hard drive? Like /home/user/mywebs as opposed to being in the Tomcat webapps directory?
It seems like I heard that Adobe wasn't going to support JRun any more, am I remembering wrong?
@Jake--they announced some time ago that they will not be developing new features for JRun.
http://tinyurl.com/d4tmu2
The last official update was in 2007.
ColdFusion/JRun FAQ is here:
http://tinyurl.com/d575v7
Personally it seems to me they'd do better forgetting about JRun and shipping ColdFusion as a standard EAR/WAR distribution, but I understand that they have an investment in the JRun + CF combo so that probably won't happen, at least for a while.
@sean Part of what Matt is talking about here having a more standard JEE configuration. Having a war access resources outside of itself seems to go against the spirit of what Matt is talking about accomplishing. You can configure tomcat itself to look for war files anywhere on the system by adding a context element to server.xml (Confluence standalone does this very nicely refer to it as a good example). Maybe later I'll post my ANT file for people if they want to use it to deploy to the different war's (which is how I have my dev setup). I have a builder attached to each Eclipse project which deploys the code to all configured war files.
@Adam--yep, that's part of it too. I'm becoming a massive fan of just dropping a WAR with everything in it on a production server when I need to deploy an app, not to mention it keeps my development environment dang tidy.
I understand the value of a packaged WAR but for development at least, it's nice to have a single webroot for a project with all your CFML engines pointing to the same place.
I believe you can configure Tomcat to serve specific directories for specific hostnames and then you could use a symlink from webapps/something to the actual webroot?
Great timing, a few week's ago I tried to do the same but with Apache in the mix. I think I'll take another look.
Looking forward to that next post. Could you comment here to alert us when it's up maybe?
Thanks.
@sean I still don't like the approach personally but hey we all have our quarks. Anyone interested in doing it this way is probably looking for is allowLinking. You would specify this in a context element in the server.xml (due to windows security issues this is disabled by default). More info:
http://tomcat.apache.org/tomcat-5.5-doc/config/context.html
@Adam @Matt Based on your comments then, you advocate holding all files for a web application under the context root in Tomcat (ie /usr/tomcat/webapps/projectX)?
Maybe I'm missing something but doesn't that force all requests to go to the app server, instead of just the CF-related requests. That seems to be counter-productive to me in that we want Apache to serve graphics, css, html and other "non-CF" stuff because that's what it's good at.
I'd like to move to having all my CF engines active under Tomcat (and in fact as of right now have CFMX7, CF8, OpenBD, and Railo3 deployed to Tomcat on my Mac). My issue is that I keep projects sorted by client under my home directory as in /Users/userName/Sites/ClientName/ProjectName so that multiple projects for a specific client stay together. Then I can create Apache vhosts to point to the correct folder for that project
I really want to find out how to replicate the proxy behavior that the JRun connector gave us that only sent .cfm, .cfc etc to the app server while letting Apache do what it excels at.
Looking foward to your next posts. Hopefully it'll come later this week so that I can play with some of this configuration while I'm on the RIAdventure cruise next week!
Counterproductive because ... ? You can set things up a bunch of different ways, but I think the notion of "use Apache for static content because it will be faster" is antiquated at this point (and it's a notion I held until I read more about the various Tomcat connectors). Using the native Tomcat HTTP connector is actually going to perform better than using the AJP connector, which would hand CFML processing off to Tomcat while Apache would handle everything else.
So what I'm saying is unless you really *need* Apache (and you may ...) you can use the HTTP connector built into Tomcat and get far better performance for both dynamic and static content, and the setup is a lot more straight-forward.
On my VPS right now I'm using Apache and just proxying out to Tomcat + OpenBD for all my CFML content. I did it this way because I already had Apache configured, and I do have a couple of sites running on here that are straight HTML, but I'm going to convert these over because proxying is actually the least performant option. As fast as things run even using proxying I can't wait to see how fast things run on Tomcat with the native HTTP connector. :-)
Apache is no better at fielding requests than the Tomcat HTTP connector (like Matt was saying). What apache excels at, over tomcat's HTTP handling, is configuration (and this is based off older experiences this too may have changed). Unless you have a configuration that can not be done easily in Tomcat I'd just use Tomcat (or jetty for that matter). Even if I do need an http server I use lighttpd or ngineX over apache these days. The only reason apache is installed on my personal server is for SVN (which last time I checked the connector was still in early works for lighttpd).
At work it is a different story we have a dedicated logical partition (actually multiple clustered HTTP servers) that handle some of our static content and proxy to a cluster of CF servers. Again though we do this not for performance but because we use siteminder and it has to connect to either IIS or Apache (or a derivative). Since we have that http server we figured why not put all of the reusable static content on a shared partition and host it straight off there, while anything that is app specific remains packaged in the war.
@Matt - How do you deal with URL rewriting without Apache?
One interesting point I'd like to discuss regarding proxying requests in this type of setup. I run an NginX / HAProxy combo as my proxy layer. Much smoother then apache for static content and the likes.. But I find that when proxying a request for "/" to "/cfusion" or what have you, theres an anomoly w/ the cookies wherein each cookie seems to be tied to not only a domain, but also a context root. Have you had an experience with this happening?
@Adrian--depends on how much URL rewriting you need. You can easily set up hosts on Tomcat just as you do on Apache to have Tomcat respond to normal URLs without the port and context path and point those to a specific web app.
You can also do more full-blown URL rewriting on Tomcat, either directly or through an add-on. I haven't tried it myself but Tomcat does include a URLRewriteFilter that lets you put rewrite rules in place.
I'll know a lot more once I cut the Apache cord and run pure Tomcat. ;-)
I receive a HTTP Status 404 - /cfusion/
Any ideas?
NM, I had to put in the full url: http://localhost:8080/cfusion/CFIDE/administrator/index.cfm Duh!
Always useful to know this stuff, but would be even more useful if it wasn't anti-windows, as that is after all what most of us use, it is only a small minority of developers who use Linux and even most CF hosts also use windows.
@Russ--not sure how not poking fun at windows makes the information itself more useful. I'm a firm believer in the free software movement so I don't use Windows unless I'm forced to, and just because from some people's perspective "most people use Windows" that doesn't mean I'm required to take my time to cater to Windows users when I myself hardly use it at all. It's not my main area of familiarity. Not to mention the fact that with legions of Windows users out there, someone else can surely take anything I post that's Linux specific (which this isn't!) and modify it for Windows.
And frankly I don't think Linux/Mac users are as small of a minority as you may think they are, and many people are interested in learning about Linux, so I think I'm filling a need there.
Also, I think people need to have a sense of humor about the whole thing. So I hate Windows--so what? All this stuff is Java anyway, so even my Windows-specific post about getting all this stuff running is only about 10% Windows-specific. If people get something out of my posts and also lose a bit of the fear of the unknown when it comes to Linux in the process, all the better as far as I'm concerned.
Matt,
I am sorry you hate windows that much that is causes you to rant like a rabid dog in to a harmless comment, which is simply a statement of fact. Perhaps you need to take a chill pill there and stop getting so angry, it is just an operating system, and it is the one most of the population uses whether you like it or not.
@Russ--first off, I'm not ranting like a rabid dog, so I'm not sure where you're coming from when you make a comment like that. I realize you can't hear my tone when just reading text, but I honestly don't think I'm the one who needs the chill pill here. 99% of my bitching about Windows is intended to be humorous--why are you getting so angry and defenseive about me not liking Windows?
Second, not that this even needs to be said, but it's my blog and if you don't the way I present things, you're certainly free to get your information elsewhere.
Lastly, as I said in my other comment (and frankly it sounds like a lot of this is coming out of you being frustrated about something wholly unrelated to my attitude about Windows ...) I don't use Windows much, and given the fact that I don't like Windows I'm certainly not going to spend my time installing and using Windows to cater to people who do use it. Majority doesn't rule here--I have a choice not to use Windows and I choose not to. Everyone's free to make their own choice.
Again, I'm really not angry. Seriously. So I'm not sure where your vitriol is coming from. If it's just an operating system why do you care so much that I don't like it? Do you expect me to suppress my attitude on my own blog so I don't "offend" Windows users? I just don't get it.
I'm afraid you have lost me now Matt, I am not angry or defensive, nor have I said anything angry or defensive. The only anger I can see here is yours i'm afraid. I personally don't care whether you like windows or not, it certainly desn't affect my life in any way. All I said was it would be better if it was not so anti-windows, which is simply my opinion, i'm afraid I cannot fathom why this has sent you off in such a rage.
Can someone post a WAR for Adobe's CF so that we don't have to go through the install process...
@Baz--that would be against the terms of the CF license I believe. It's really not *that* bad and once you have the WAR file created, you can re-use it so you don't have to create it every time.
@Matt What pain in the license :) My Ubuntu desktop is so nice and clean, I'm hesitant to have some installer litter it...
I'm sure it wouldn't be a big deal. anyone can download the trial/developer edition and generate a war file, so you are not giving anything away as it would still be a trial/developer ediiton without a license.
I know in the past it has been an issue--I know at least a couple of people who asked Adobe if they could provide the CF runtime with sample apps and the answer was an unequivocal no. Maybe that's changed.
Hi. I appreciate your article on setting up openbd but I am having an issue that likely has a simple fix. Being a newbie I simply cannot figure it out and was hoping you could help. I would like to put my site in a sub-directory of my "/etc/tomcat/webapps/openbd" directory. But as soon as I change my tomcat host from "/opt/tomcat/webapps/openbd/" to "/opt/tomcat/webapps/openbd/mysite/", it no longer works. I get a "HTTP Status 404" error. ANY help with thiw would be HUGELY appreciated.
Has anyone figured out to configure railo and coldfusion to use the same webroot on a windows machine?
I can specify a webroot in the railo administrator but i can't tell how to do this for coldfusion. If you are interested in details, take a look here: http://serverfault.com/questions/47109/coldfusion-8-does-not-accept-document-root-that-is-set-with-apache
this may be a dumb? but you recommended using the java 1.6 update 10, on osx, it runs the java update through the os updater and i noticed that it is not version 1.6. I am currently on 10.5.8 and its running:
java version "1.5.0_19"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_19-b02-304)
Java HotSpot(TM) Client VM (build 1.5.0_19-137, mixed mode, sharing)
will this cause an issue or is there a way around this to update it to the latest version? I am hesitant to affect anything that can screw up my machine.
Thank you Matt
@Chris--I haven't heard of any problems with Java 1.6 on the Mac, but of course you can simply point Tomcat to Java 6 if you don't want to make it the default before Apple officially ordains it as the default. (As an aside, Apple handles Java very strangely IMO.)
So, if you've done all the OS X updates as far as I know you'd have Java 6. So you can point Tomcat directly to that and you should be in good shape. Note that the latest nightly of OpenBD REQUIRES Java 6, as will (presumably) versions moving forward, so you'll at least need to point Tomcat to Java 6 in order to be able to run OpenBD.
Let me know if you need more details.
@Matt from what I have found out, you can either switch the java preference in the java utilities app or going through ADC to get the coming updater: http://adcdownload.apple.com/Java/java_for_mac_os_x_10.5_update_5_developer_preview_9m3086/release_notes_9m3092.html
I changed my pref and when I use java version in terminal I am now showing "java version "1.6.0_13"
@Eric--sorry, was going back through old emails and couldn't remember if I ever addressed your question.
Some common problems that might cause what you're seeing are A) you're not restarting Tomcat after you make a configuration chnage; B) you don't have your site files and your WEB-INF files in the same place; or C) your config file syntax isn't correct.
If you're still having trouble feel free to email me and I'll help if I can.
Good quality Yellow Ugg. Didn't realize ugg boots mayfaire were specific for winter activities, have worked very well, so Ugg Classic Cardy will be you best choice.
Excellent reproduction replica rolex sells at resonable price.The rolex replica paypal with high quality and exclusive design.Choose one amazing of replica watch paypal to highlight your life style.
thanks
good
nice
As the business grows, rolex replica has also jumped into an international brand. It is worth mentioning that, replica rolex paypal is the ancestor of today's brand-oriented, in order to protect the quality and brand name will be printed on their products, the history of fashion in the world, is the first one first.
replica watches paypal
rolex replica paypal
replica watch paypal
http://www.excelwatch.com
http://www.excelwatch.com
http://www.excelwatch.com
http://www.excelwatch.com
Good post! Thank for your information!
Good post! Thanks for your information!
Montblanc replica
movado replica
omega replica
oris replica
Panerai replica
as
Very happy I can comment here!
Best wishes for this year.
Interesting thing!
This looks awesome! Thank you for your information!
Dolce&Gabbana brand history: Domenico Dolce and Stefano Gabbana two Italians, before creates Dolce & hand in hand the Gabbana brand, the life path is completely different, one hour then often follows the father to choose the cotton material, the tailor, with the tailor in the small clothing shop, another does not make contact with the relations with the fashionable clothing, meets until them in Milan, only then facilitates Dolce & Gabbana the birth. http://www.coachofnewyork.com/
The federal government will pay men's watches 100 percent of costs for covering newly eligible replica breitling individuals through 2016. A special deal that would have given Nebraska 100 percent federal financing women's watches for newly eligible Medicaid men's watches recipients in perpetuity is eliminated. A different, one-time replica breitling watches deal negotiated by Democratic Sen.
welcome to buy mbt shoes
new style with free shipping 40% off offering.
MBT Shoes Sale offer powerful training shoes Cheap MBT Shoes. MBT shoes made from high quality Nappa leather are strong and enduring. MBT Shoes Best Prices available at Cheap MBT Shoes help to build body. Wearing MBT Shoes will burn extra calories and stimulate your metabolism. mbt chapa shoes have a firm effect on leg muscles. mbt lami shoes is the star product among the Discount MBT Shoes,which are extremely hot recently. And mbt m.walk shoes is one of the most popular and selling hot online since it was come up to the market.
Welcome to our website,and you will enjoy the sunshine service. Let's abandon all the worry,and enjoy the happy shopping travel.All
thefake rolexandfake rolex watches are most in fashion boutique this year.rolex replica and rolex replica and the fake rolex watches show your chaming temperament. In addtin, the rolex replica and the other fake rolex make you mold your unique glamour this winter.The swissrolex replica have the high quality but low price. fake rolex and replica rolex have all the style and cheapest price fake rolex watches. Enjoying the fun of net purchase! rolex replica We will supply you the perfect service and after sale support system. Our honest will bring you absolute satisfaction.
2010????
the china check valve need effort to reaserch it.so thanks for your share.hehe.
Aw, it was a top quality content. Actually I would like to write like this as well - taking time and real energy to bring about an excellent post... however what can I say... I procrastinate an awful lot and by no means appear to get things completed...
Life stories of some men make one ugg boots cheap succumb to their ingenuity. Some people have proved and some are proving without a second cheap ugg boot store doubt that they are winners. Anybody,uggs on sale in uk who has read “A Beautiful Mind” or has watched a movie by the same name, can never remain untouched by the courage of a sundance tall ugg schizophrenic Prof. Nash who overcame the disease by merely accepting the haunting illusions and getting the uggs sundance coveted Noble prize for game theory. Political ugg classic tall boots leaders, Writers, Economist, Musicians and Sportsmen have been a beacon to their uggs classic tall fellowmen.It is from Act II Scene I Duke Senior, the banished duke says about uggs bailey button boots Sweet uses of adversity.To quote a part of it “Sweet are the uses of adversity, Which, like the toad, ugly and venomous, Wears yet a precious jewel in his bailey uggs uk head; And this our life exempt from public haunt Finds tongues in ugg argyle knit sale trees, books in the running cheap argyle uggs brooks, Sermons in stones and good in every thing.This approach closely follows the ugg classic cardy boots white cheap philosophical approach with a beauty of its own. To appreciate the beauty of life one can relish the works of artists and writers of renaissance period. Be it Da Vinci with the ethereal Mona Lisa, Rembrandt or Monet with classic cardy Water Lillies brought out the essence of life. http://www.uggsbailey.co.uk/sitemap.html
I used to find notes left in timberland 6 inch collection basket,beautiful notes about my homilies and about the writer's thoughts on the daily scriptural timberland 6 inch boots readings.The person who penned timberland rolltop boots notes would add reflections to my thoughts and would always include some quotes from poets and mystics he or she had read timberland custom boots and remembered and loved.The notes fascinated me.Here was someone immersed in a search for truth and beauty.Words had been treasured,words that were beautiful black timberland boots .And I felt as if the words somehow delighted in being discovered,for they were obviously very generous to the timberland work shoes as yet anonymous writer of the notes.And now this person was in turn learning timberland winter boots secret of sharing them.Beauty so shines when given away.How long does it take most of us to reach ladies timberland boots that level of human growth,if we ever get there?We get so consumed diminished,worrying about all the things that need improving,we can easily forget to cherish those timberland hiking boots things that last.Friendship,so rare and so good,just needs our care--maybe even the simple gesture of writing a little timberland waterproof boots note now and then,or the dropping of some beautiful words in a basket,in the hope that such beauty will be shared and taken to timberland womens premium boots heart. http://www.timberland6inch.com/
Want unique hair dresser?ghd iv styler,ghd hair straightener,ghd australia,ghd straightener cheap,your perfect choice,choose your best of gold ghd,pink ghd also....
Great stuff, thanks!
http://www.myfreediettips.com/
http://www.myfreediettips.com/lose-pregnancy-weight/
http://www.myfreediettips.com/lose-baby-weight-skinny-legs-edition/
http://www.myfreediettips.com/lose-baby-weight-love-handles-edition/
I recently to visit your blog, reading, I very much enjoy, and above the content is great.xiao101
I recently to visit your blog, reading, I very much enjoy, and above the content is great.xiao101
I recently to visit your blog, reading, I very much enjoy, and above the content is great.xiao101
I recently to visit your blog, reading, I very much enjoy, and above the content is great.xiao101
For the casual clinger, Weiss suggests treating the situation like you would a guy you only went on a few dates with. "I’m all for the 'so busy this month, maybe next month' line," she says.
;??? ??;?????;????? ???;????? ?? ??????|??????|????? ??? ??????;??? ????????;??? ???????;??? ??????; ??? ??????;??? ???;??? ??????; "It doesn't have to be a big thing." Even easier if it's an online acquaintance you're trying to shake. You can block them or just ignore their Facebook posts. Eventually most people will take the hint.???????;???????;?????;IWC??? ?????????;?????????????;?????GMT????II ???????????;?????????;????????;???????? IWC???????;IWC??????;IWC?????????;IWC?????? ???????????;????????????;??????????? ??????????;??????????;???????????????
Acquaintances in your same social group may be a bit trickier--as you're going to end up running into them often in the future.?????????????????;??????????;????????? ????????????;IWC??????????;IWC??????;???????????? ?????? ??;?????;????? ??? ;????? ??;???;??? ??? "They might want to be closer to you and you just tolerate them. They're fine until they start talking behind your back or manipulating their way into your friend circle by creating drama." ??? ?????? ??? ???;??? ???;??? ???????????????????;??? ??;????;???? ???;???? ??;???;??? ???;??????? ???;???? ???;???? ???;????? ???;????? ???;????? ???;???? ???;??????;?????? ???;?????? ??;???;??? ???;??? ??;?????;????? ???;????? ??;??????;?????? ???;
Got these shoes a couple weeks ago. They look great. And HANDS DOWN, the cheapest I found them on-line. You can't find these in stores easily and I was very pleased with this store's selection
nike air max
If I speak in the Cheap Authentic NFL Jerseys tongues of men and of angels, but have not love, I am only a resounding gong or a clanging cymbal. If I have the gift of prophecy and can fathom all mysteries and all Official NFL Jerseys knowledge, and if I have a faith that can move mountains, but have not love, I am nothing. If I give all I possess to the poor and surrender my USA Jerseys Shop body to the flames,but have not love, I gain nothing.Love is patient, NFL Jerseys love is kind. It does not envy, it does not boast, it is not proud. It is not rude, it is not self-seeking, it is not easily angered, it NHL Jerseys keeps no record of wrongs. Love does not delight in evil but rejoices with the truth. It always protects, always trusts, always MLB Jerseys hopes, always perseveres.Love never NHL Hockey Jerseys fails. But where there are prophecies, they will cease; where there are tongues, they will be stilled; where there is knowledge, it will pass away. For we know in part and we prophesy in MLB Baseball Jerseys part, but when perfection comes, the imperfect disappea. When I was a child, I talked like a child, I thought like a child, I reasoned like a child. When I became NBA Basketball Jerseys man, I put childish ways behind me. Now we see but a poor reflection as in a mirror; then we shall see face to face. Now I know in part; then I shall know fully, even as I am fully known.And now these three remain: faith, hope and NFL Football Jerseys love. But the greatest of these is love. http://www.jersey-usa.com/sitemap.html YQ
wholesale and retail handbags , brand jewelry on ecshop365.com
www.ecshop365.com
Here are so many best handbags for fashion ladies.
leather handbags ,shoulder handbags,fashion handbags,handbags online
authentic handbags,handbag,large handbags,handbags,pink handbags
quilted handbags,marc jacobs handbags,designer handbag,wholesale designer handbags
cheap designer handbags,cheap handbag,coach handbags,dkny handbags
www.ecshop365.com
black handbags,brown handbags,hobo handbags,leather handbag,satchel handbags
designer leather handbags,fiorelli handbags,jane shilton handbags,red handbags
buy handbags,fashion handbag,cheap leather handbags,best handbags,vanilla handbags
BRAND JEWELRY
http://ecshop365.com/brandjewelry
juicy,DG,ED hardy,chanel,Gucci,LV jewelry,handmade jewelry,fashion jewelry,
pearl jewelry,designer jewelry,silver jewelry,wholesale jewelry,gemstone jewelry,
costume jewelry,gold jewelry,beaded jewelry,bead jewelry,jewelry necklaces
welcome to our website to choose your favourite and fashionable brand jewelry
http://ecshop365.com/brandjewelry
Winter is coming,it's time for boots. Not any boots like uggs on sale are so popular.Buy ugg boots at http://www.ugg-outletuk.com/specials.html!
Thanks for such a great post and the review, I am totally impressed! Keep stuff like this coming.