A happy new year from all of us at Railo

 

  • Update Notification

    Check for Railo updates

    You want the latest server updates? just subscribe to our update notification service.

    Subscribe »

  • Railo newsletter

     

    You want the latest news? just subscribe to our newsletter.

    Subscribe »

  • SERVER MONITOR FOR RAILO

    FREE TRIAL LIGHT WEIGHT PRODUCTION MONITOR

    Quickly gauge the health of all your servers from one interface. Gain invaluable insight into what your CFML pages are really doing.

    Download Free Trial »

  • INTERACTIVE DEBUGGER
    FOR RAILO

    NEW RELEASECUT DEVELOPMENT TIME IN HALF

    Set breakpoints, step over, into, or out of code, inspect variables (across different scopes), and watch expressions.

    Download Free Trial »

  • Vote for your favorite Railo enhancement

    Need something implemented?

    Railo a better productthanks to you

    Vote and suggest the next Railo features

    Learn More »

  • Railo + JBoss

    Great News for CFML & Java Developers

    Railo has teamed up with JBoss to offer a 100% Open Source version of the Railo CFML server.

    Download »

  • Need help?

    Ask RailoProfessional Open Source

    We will help you with any kind of CFML related problem. Performance tuning, installation, training, just contact us.

    Learn More »

Railo Book
Finally out on the shelves is the Railo 3: Beginner's Guide book. Written by Mark Drew, with contribution by Gert Franz, Paul Klinkenberg and Jordan Michaels, this is an indispensable guide to getting up and running with Railo Server. You can get it now from Packt Publishing.
Buy it now!
Railo Community

We know it can be frustrating getting going, but with the documentation, help and support from the community you will get going in no time! Why not check out the mailing list? As well as community based support you can call on a professional team of consultants to get you going in a jiffy!

Community Resources
Railo Source Code

Want to check out the latest Railo Source? Railo Server is hosted at Github. This means you can clone the source, build the server and even implement new and exciting features. 

View the Source

Railo Blog

February 20, 2012
Railo Memory Monitor 0.1 Beta now available

An early Beta of the Railo Memory Monitor plugin is now available. To install, go to Extension > Applications in your Server administrator. You'll find the Memory Monitor available as a free extension.

After installation, you will see a Monitor section in your Server admin.

Note that as of 0.1, you will need to restart your JAVA servlet container (e.g., Tomcat, JBoss, etc.) for the Memory Monitor to function.

February 6, 2012
Railo Tip of the Week: Installing SSL Certificates

As of Railo 3.3.2.001 you can install external SSL certificates of sites you want to access using CFHTTP and CreateObject(“webservice”).

This is done by simply going to the Railo Server Administrator on your server, looking on the left menu for “SSL Certificates” and putting in the site you want to add the certificate you want to use (for example somesite.com) and installing that certificate.

This means you can now do something like the following:

rs = CreateObject("webservice",
"https://localhost/RemoteService.cfc?wsdl")
dump(rs.getTime());

This will now use the certificate you installed to communicate with that server.

January 30, 2012
Railo Tip of the Week: Railo Resources

Since Railo 2.0, it is possible to use all different kinds of virtual file systems with all different kind of file related tags. Railo supports the following virtual file systems:

  • file (file:// or c:\ or /var/…) 
  • ram (ram://)
    Note that you can store the location for the RAM resource to any external cache or NoSQL key value store) 
  • ftp (ftp://username:password@ftpserver/) 
  • db (db://datasourcename:/) 
  • http (http://fileLocation) 
  • ZIP (zip://pathToFile!directory/file) 
  • TAR (tar://pathToFile!directory/file) 
  • TGZ (tgz://pathToFile!directory/file) 
  • S3 (s3://secret:access@amazonaws.com/bucket) 

When you want to use a given resource you can easily do it by using the following notation:

<cffile action="read" file="db://datasource/temp.txt" variable="susi">
<cfdirectory action="read" directory="ram://" name="susi">
<cfif fileExists("ftp://username:password@ftpServer/index.cfm")>...</cfif>

In addition you can easily define any resource as a mapping pointing to that resource. So you then can use these mappings inside your code.