Evaluation. Chapter 1: An Overview Of Ruby Rails. Copy. 6) Static Pages Within a Rails Application

Size: px
Start display at page:

Download "Evaluation. Chapter 1: An Overview Of Ruby Rails. Copy. 6) Static Pages Within a Rails Application... 1-10"

Transcription

1 Chapter 1: An Overview Of Ruby Rails 1) What is Ruby on Rails? ) Overview of Rails Components ) Installing Rails ) A Simple Rails Application ) Starting the Rails Server ) Static Pages Within a Rails Application ) The Structure of a Rails Application ) Generating a Controller ) Rendering the View ) Adding a Static Page ) Dynamic Pages with Embedded Ruby ) Using the render Method ) Using the link_to Method

2 What is Ruby on Rails? Ruby on Rails, often shortened to Rails or RoR, is a database-backed web application development framework written in the Ruby language. First released in 2004, it aims to increase the speed and ease of web application development. The ease of development stems from assumptions made by the creators of the framework as to what is needed by developers to get started. Ruby on Rails assumes there is a best way to do things and is designed that way, while often discouraging alternative designs. The Rails philosophy is built around the following guiding principles. DRY - Don't Repeat Yourself. Repetition of code and/or information is a bad thing. Convention Over Configuration The Rails framework makes assumptions about what needs to be done and the best way to accomplish it. This is in stark contrast to the use of configuration files in other frameworks that require one to specify every little detail. REST - Representational State Transfer REST uses these existing features of the HTTP protocol to organize applications and the resources they use. MVC - Model, View, Controller Architecture MVC isolates the business logic from the user interface and assists in the maintenance of the code by clearly defining where different types of code belong within the application. 1-2

3 Overview of Rails Components The Rails framework is composed of the following individual components. Action Pack Active Model Action Controller Active Record Action View Active Resource Action Dispatch Action Mailer Active Support Railties An overview of each of the above components is provided below. Action Pack This gem provides the Action Controller, Action Dispatch, and Action View components to the framework. These components provide the View and Controller parts of MVC. Action Controller This component processes incoming requests to a rails application and dispatches to an intended action. Action View Action View manages the HTML and/or XML views that are the default output of the application through the use of view templates. Action Dispatch This handles the routing of web requests and dispatches them to the application. 1-3

4 Overview of Rails Components Action Mailer This provides a framework for including services within an application. Active Model This component provides an interface between the View and Controller components of the Action Pack services and Active Record (described below). It allows other Object Relationship Mapping (ORM) frameworks in place of Active Record if desired. Active Record This provides the base for the Model part of MVC within a Rails application. Active Resource Active Resource provides a framework for managing connections between business objects and RESTful services within the application. Active Support This is a collection of utility classes and used within the core Rails code and your applications. Railties Railties is the core Rails code that builds the Rails applications and connects the frameworks and plugins used within a Rails application. 1-4

5 Installing Rails When Ruby is installed, there are additional tools included within the installation. One such tool is the gem application, which is an interface to the RubyGems package system. RubyGems is a system for managing Ruby software libraries. Ruby code packaged in this manner is called a gem. With RubyGems, you can install the latest version of Rails and its dependencies through the following command line. gem install rails Note that the above command may require 'root' access in a Linux environment. The following command will show the version of Rails that is installed on the machine. rails -v The machines in the classroom have had a specific version of Rails installed by specifying the version to install using a command similar to the one shown below. gem install rails -v Since Rails 3.1, a JavaScript runtime has been needed for development Linux. It is not needed for Mac OS X or Windows. Node.js has already been installed and added to the PATH environment variable for this course. 1-5

6 A Simple Rails Application The first application we will build in Rails will be a simple one. Almost all Rails applications are started the same way, through the use of the rails command. The rails program creates a skeleton application to get you started. We will start by creating a directory to place all of the Rails applications that we will be developing. The directory should be created in the user's home directory and named railsapps. $ mkdir railsapps Once the directory is created, we will change into that directory. $ cd railsapps Note that throughout the course, we will show the Linux shell/command prompt ($), although we could have shown the Windows (>) prompt just the same. From within the railsapps directory, we will enter the following command. $ rails new firstapp In a Linux environment you may be prompted to enter the user's password (assuming they are in the sudoers list). The above command creates a new Rails application called firstapp in a directory of the same name. 1-6

7 A Simple Rails Application There will be a lot of output displaying the name of each file or directory being created to support the application being built called Firstapp - located in a directory named firstapp. Below is a summary of the purpose of each of the files and folders that are created by default. File/Folder Purpose app/ Contains the models, views, controllers and assets config/ Configuration rules for runtime, routes, database, and more config.ru Rack configuration for Rack based middleware db/ Contains database schema and database migrations doc/ Documentation for the application Gemfile Pertains to gem dependencies needed by application Gemfile.lock Pertains to gem dependencies needed by application lib/ Extended modules for application log/ Application log files public/ Static files and compiled assets accessible to the public Rakefile Default Rake tasks README.rdoc Instruction manual for your app script/ Rails script(s) that are used to deploy and run application test/ Unit tests, fixtures, and other test apparatus tmp/ Temporary files vendor/ Third party code.gitignore Patterns for files to be ignored by Git progresses. A more in depth understanding of the files and directories listed above, as well as their purpose, will be gained as the course With an application created, we will now demonstrate how to start up the Rails server in order to access the application. 1-7

8 Starting the Rails Server The previous pages demonstrated how to create a new Rails application by passing the new command to the rails executable. Running just the rails executable without any command will list all of the rails commands that are available. $ rails Usage: rails COMMAND [ARGS] student@localhost:~/railsapps/firstapp The most common rails commands are: generate Generate new code (short-cut alias: "g") console Start the Rails console (short-cut alias: "c") server Start the Rails server (short-cut alias: "s") dbconsole Start a console for the database specified in config/database.yml (short-cut alias: "db") new Create a new Rails application. "rails new my_app" creates a new application called MyApp in "./my_app" In addition to those, there are: application Generate the Rails application code destroy Undo code generated with "generate" (short-cut alias: "d") benchmarker See how fast a piece of code runs profiler Get profile information from a piece of code plugin Install a plugin runner Run a piece of code in the application environment (short-cut alias: "r") All commands can be run with -h (or --help) for more information. $ We will start the Rails server by passing the rails executable the server or s command. student@localhost:~/railsapps/firstapp $ rails s => Booting WEBrick => Rails application starting in development => Call with -d to detach => Ctrl-C to shutdown server [ :15:58] INFO WEBrick [ :15:58] INFO ruby ( ) [i686-linux] [ :15:58] INFO WEBrick::HTTPServer#start: pid=2096 port=3000 The WEBrick server that is launched comes prepackaged with the installation of Ruby. Alternative servers such as Mongrel or Apache could also be configured to work with Rails, if desired. 1-8

9 Starting the Rails Server In order to ensure that the server is up and running, we can access it via a web browser using the following URL. Note that by default, the WEBrick server listens for connections on port 3000 rather than the standard HTTP port 80. Information pertaining to each request sent to the server can be seen in the server console as shown below. student@localhost:~/railsapps/firstapp $ rails s => Booting WEBrick => Rails application starting in development on => Call with -d to detach => Ctrl-C to shutdown server [ :15:58] INFO WEBrick [ :15:58] INFO ruby ( ) [i686-linux] [ :15:58] INFO WEBrick::HTTPServer#start: pid=2096 port=3000 Started GET "/assets/rails.png" for at :17: Served asset /rails.png OK (7ms) 1-9

10 Static Pages Within a Rails Application Recall that each Rails application created generates a skeleton working application. The directory structure of this application, as shown earlier, contains a directory named public. Rails serves any files within the public directory directly to the browser. Part of the skeleton application created is a special file within the public directory, named index.html. By convention, it acts as the home page for the application. It is special in that its use in the URL is optional. The following two URLs will present the same web page. The HTML file shown below can be created within the public directory of the application and accessed at the URL of: hello.html 1. <html> 2. <head><title>hello World</title></head> 3. <body><h1>a Sample HTML Page</h1></body> 4. </html> Note that this can be done without restarting the server. By convention, the WEBrick server starts up in development mode, which does not require a restart when an application is modified. 1-10

11 The Structure of a Rails Application While the ability of a Rails application to return static HTML files exists, dynamically generated responses are typically a core part of any Rails application. The next directory (within a skeleton Rails application) that we will study is the app directory. Directly related to the app directory is the Model-View- Controller (MVC) pattern that Rails follows. Rails, through the use of MVC, enforces the separation between the domain or business logic from the input and presentation logic. Within a dynamic web application, a controller typically takes an incoming request, interacts with a model, and then renders the view as the response back to the browser. The three directories within the app directory pertaining directly to the MVC architecture are listed below. controllers models views Since the controller typically interacts with both the view and the model within the MVC architecture, it will be the first piece that we build into our application. The controller used by Rails is the ActionController class. An ActionController is made up of one or more actions (methods in the class). A file named routes.rb is used to link the actions of an ActionController to URLs. 1-11

12 Generating a Controller Rails includes a script, named generate, for generating various types of Rails components. Passing the first argument of controller to the generate script can be used to generate Rails controllers. The only other required argument is the name of the controller to be created. Optionally, additional arguments can be passed representing the actions that are to be created. We will generate a controller named StaticPages with two actions named home and guestbook. This will be done using the following command. rails generate controller StaticPages home guestbook The results can be seen below. student@localhost:~/railsapps/firstapp $ rails generate controller StaticPages home guestbook create app/controllers/static_pages_controller.rb route get "static_pages/guestbook" route get "static_pages/home" invoke erb create app/views/static_pages create app/views/static_pages/home.html.erb create app/views/static_pages/guestbook.html.erb invoke test_unit create test/functional/static_pages_controller_test.rb invoke helper create app/helpers/static_pages_helper.rb invoke test_unit create test/unit/helpers/static_pages_helper_test.rb invoke assets invoke coffee create app/assets/javascripts/static_pages.js.coffee invoke scss create app/assets/stylesheets/static_pages.css.scss $ In addition to the list of files created above, the generating of the controller updates the routes file named routes.rb. The routes.rb file is located in the config directory of the application. 1-12

13 Generating a Controller As shown in the routes.rb file below, each action generated results in a rule being added to the routes file. routes.rb 1. Firstapp::Application.routes.draw do 2. get "static_pages/home" get "static_pages/guestbook" # The priority is based upon order of creation: end The get "static_pages/home" rule above maps requests for the URL of /static_pages/home to the home action in the StaticPagesController class. The get at the beginning of the rule indicates that the action responds to a HTTP GET request. Navigating to the mapped URL of /static_pages/home results in the following page being displayed. A similar page is available for the following URL. /static_pages/guestbook 1-13

14 Generating the Controller Before looking at the generated HTML pages, we will look at the StaticPagesController class that was generated earlier via the following command. rails generate controller StaticPages home guestbook The controller can be found at the following location within the application directory. app/controllers/static_pages_controller.rb static_pages_controller.rb 1. class StaticPagesController < ApplicationController 2. def home 3. end def guestbook 6. end 7. end The ApplicationController class, from which StaticPagesController inherits, is defined in another generated file in the same directory named application_controller.rb application_controller.rb 1. class ApplicationController < ActionController::Base 2. protect_from_forgery 3. end The default behavior for all action controllers is typically declared in the ApplicationController class that all action controllers inherit from. The home and guestbook actions generated when the StaticPagesController was generated are initially empty. 1-14

15 Rendering the View Recall that many files were created with the following command. So far, we have looked at the following generated files. app/config/routes.rb rails generate controller StaticPages home guestbook app/controllers/static_pages_controller.rb app/controllers/application_controller.rb When actions are supplied to the rails generate controller script, such as the home and guestbook actions above, the script also creates a view (the View part of MVC) for each action. The views created for the home and guestbook actions are: app/views/static_pages/home.html.erb app/views/static_pages/guestbook.html.erb The.erb (embedded Ruby) extension indicates that the file may contain embedded Ruby code. The.html in the file name indicates that the file contains HTML. The generated.html.erb files listed above do not yet have any embedded Ruby code in them. They are simply snippets of HTML code that can be seen on the following page. 1-15

16 Rendering the View home.html.erb 1. <h1>staticpages#home</h1> 2. <p>find me in app/views/static_pages/home.html.erb</p> 1. <h1>staticpages#guestbook</h1> guestbook.html.erb 2. <p>find me in app/views/static_pages/guestbook.html.erb</p> The actual view rendered to the user for each action is created by combining the code in the above views into another file that controls the overall layout of both of the views. The name of the file, acting as a template for the layout of the actions' views, can be found at the following location. app/views/layouts/application.html.erb application.html.erb 1. <!DOCTYPE html> 2. <html> 3. <head> 4. <title>firstapp</title> 5. <%= stylesheet_link_tag "application", 6. :media => "all" %> 7. <%= javascript_include_tag "application" %> 8. <%= csrf_meta_tags %> 9. </head> 10. <body> 11. <%= yield %> 12. </body> 13. </html> The embedded Ruby is all of the code above between the <%= %> tags and will be discussed in more detail shortly. 1-16

17 Adding a Static Page The previous pages have concentrated on many of the files that are automatically generated by the generate controller command. We will now concentrate on how to manually add an additional page to the existing application named Firstapp. The page we will create will be associated with an action named info. We will model this around the structure that was created for the previous home and guestbook actions. Adhering to the standard Rails naming conventions will be an important part in the new additions working properly. Accomplishing this requires a minimum of three things. Add a route to the routes file for the action. Add the action to the StaticPagesController. Create a corresponding view for the action. The first step to creating the new page is to update the routes.rb file, as shown below. routes.rb 1. Firstapp::Application.routes.draw do 2. get "static_pages/home" 3. get "static_pages/guestbook" get "static_pages/info" end The line above, in bold, maps the URL of static_pages/info to the info action in the controller. 1-17

18 Adding a Static Page Attempting to access the newly mapped URL will result in the following page being displayed. The above indicates that the action (method) named info has not been defined yet inside of the controller. The second step is to add the missing info action to the controller as shown below. static_pages_controller.rb 1. class StaticPagesController < ApplicationController 2. def home 3. end def guestbook 6. end def info 9. end 10. end Attempting to access the URL will now result in a different error being displayed, as shown on the next page. 1-18

19 Adding a Static Page The last step to creating a new static page will be to define the view (template) to avoid the above error. The name of the file that needs to be created, in order to act as the view, will be info.html.erb. It is shown below. info.html.erb 1. <h1>staticpages#info</h1> 2. Find me in: 3. <code>app/views/static_pages/info.html.erb</code> 4. <p>feel free to add any other 5. information to this page</p> The view that that the controller will present is displayed below. 1-19

20 Dynamic Pages with Embedded Ruby The Firstapp application that has been created consists of the three actions with the following three views. app/views/static_pages/guestbook.html.erb app/views/static_pages/home.html.erb app/views/static_pages/info.html.erb While the above views are permitted to have embedded Ruby in them, they currently contain only static HTML. Recall that all of the views rely on the following template for the layout of each view. app/views/layouts/application.html.erb application.html.erb 1. <!DOCTYPE html> 2. <html> 3. <head> 4. <title>firstapp</title> 5. <%= stylesheet_link_tag "application", 6. :media => "all" %> 7. <%= javascript_include_tag "application" %> 8. <%= csrf_meta_tags %> 9. </head> 10. <body> 11. <%= yield %> 12. </body> 13. </html> This file contains special tags where the Ruby code inside of them results in dynamic output generated in the view. The purpose of the template is to rely on the DRY principle mentioned earlier where you Don't Repeat Yourself. 1-20

21 Dynamic Pages with Embedded Ruby Most, if not all, browsers provide a way of viewing the page source that the browser receives to render the view. Below is the result of viewing the source of the info view through the browser. Each set of <%= => tags within application.html.erb results in dynamic output that is sent to the browser. For instance the following tag: <%= javascript_include_tag "application" %> <script src="/assets/jquery_ujs.js?body=1"... <script src="/assets/static_pages.js?body=1"... <script src="/assets/application.js?body=1"... results in the following script tags being sent to the browser. <script src="/assets/jquery.js?body=1"

22 Dynamic Pages with Embedded Ruby For each of the views, anything that is similar to all of them can be placed within the application.html.erb file. The parts of the view that are specific to each are then placed in their respective.erb files. When working with embedded Ruby, two special tags can be used to surround the Ruby code that will then be executed to generate dynamic content. <%= %> This is typically referred to as output embedding tags. Use of this tag results in the Ruby expression inside of the tag being evaluated and inserted into the HTML stream. <% %> This is typically referred to as regular embedding tags. Use of this tag will evaluate all of the Ruby code inside of the tag but nothing is inserted into the HTML stream. We will modify the info view to include several of the embedded Ruby tags to include some dynamic output. The changes will be as follows. Use regular embedding tags to initialize some variables. Use output embedding tags to output the variables. Use output embedding tags to output a Ruby object. The modified info view is shown on the next page. 1-22

23 Dynamic Pages with Embedded Ruby info.html.erb 1. <h1>staticpages#info</h1> 2. Find me in: 3. <code>app/views/static_pages/info.html.erb</code> 4. <% x = y = z = x + y 7. lucky_number = rand(100) 8. %> 9. <div>x = <%= x %></div> 10. <div>y = <%= y %></div> 11. <div>x + y = <%= z %></div> 12. <hr /> 13. <div>your lucky number is: 14. <%= lucky_number %></div> 15. <hr /> 16. Today is: <%=Time.now.to_s %><br /> 17. Today is: <%=Time.now %><br /> The updated info view looks like the following in the browser. Refreshing the page should produce different values since the page is being generated dynamically. 1-23

24 Dynamic Pages with Embedded Ruby All three views currently have an <h1> tag defined at the top whose data is similar to all three views. The technique we will use to get rid of the repetitiveness between the pages will involve creating Ruby instance variables within the actions of the controller. Since the variable part of the <h1> tag is the name of the view, we will set the value of an instance variable we will to the appropriate value for each action. instance variable can then be accessed within the embedded Ruby tag to output its value. The end result will be an <h1> tag identical within all three views. Therefore we will instead move it to the layout file that is common to all three views. The modified version of the controller is shown below where the code that has been added is shown in bold. static_pages_controller.rb 1. class StaticPagesController < ApplicationController 2. def home = "home" 4. end def guestbook = "guestbook" 8. end def info = "info" 12. end 13. end With instance variable defined, the modified layout file that will use the variable in an embedded ruby tag is shown on the next page. 1-24

25 Dynamic Pages with Embedded Ruby application.html.erb 1. <!DOCTYPE html> 2. <html> 3. <head> 4. <title>firstapp</title> 5. <%= stylesheet_link_tag "application", 6. :media => "all" %> 7. <%= javascript_include_tag "application" %> 8. <%= csrf_meta_tags %> 9. </head> 10. <body> 11. %></h1> 12. <%= yield %> </body> 15. </html> Since the <h1> tag and its dynamic content is now defined within the template, the corresponding <h1> tag in each of the views can now be removed. This can be seen in the modified home.html.erb view shown below. home.html.erb 1. <p>find me in app/views/static_pages/home.html.erb</p> 1-25

26 Using the render Method The default behavior of each of the actions defined in a controller is to render a view whose name corresponds to that of the action. i.e., the info action rendering the info.html.erb view. The render method of the controller, inherited from ActionController::Base, can be used to render a view that is associated with a different action, if desired. There are three variations on the Ruby syntax that can be used to accomplish this inside one of your actions. In the variations below, name_of_an_action should be replaced with the actual name of an action such as info, guestbook, or home in the current application. The first variation passes a string to the render method. render "name_of_an_action" The second variation passes a symbol. render :name_of_an_action The last variation passes a hash to the render method. This is from Rails 2 but is no longer required in Rails 3. render :action => "name_of_an_action" So, if the info method were to be defined as follows: def info render :guestbook end The info action would render the guestbook.html.erb view rather than the default of info.html.erb. 1-26

27 Using the link_to Method The link_to method allows easy navigation to URLs. The URLs generated by the method may be to views within the application or URLs outside of the application. The link_to method takes a variable number of arguments (and as such there are several variations on how the method can be used). The first argument should be a string representing the text to display for the link that will be created. The second argument is the URL to link to, and can either be a string representing the URL to use, or a literal hash of the action/value pair. Subsequent arguments are a hash of attributes and values that are added to the generated link. Several examples of using the link_to method within embedded Ruby and the resulting tag that is generated are shown below. <%= link_to "Info", {:action => "info"} %> generates the following link: <a href="/static_pages/info">info</a> <%= link_to "Info", "info" %> generates the following link: <a href="info">info</a> <%= link_to "/training/etc", " :class => "links" %> generates the following link: <a href=" class="links">/training/etc</a> 1-27

28 Using the link_to Method A modified version of the home view is shown below. The examples of the link_to method from the previous page and some additional examples have been included. home.html.erb 1. <p>find me in 2. app/views/static_pages/home.html.erb</p> 3. <h3>links passing action name as a hash<h3> 4. <%= link_to "Info", {:action => "info"} %> 5. <%= link_to "GuestBook", {:action => "guestbook"} %> 6. <hr> 7. <h3>links passing a relative URL as a string<h3> 8. <%= link_to "Info", "info" %> 9. <%= link_to "GuestBook", "guestbook" %> 10. <hr> 11. <h3>link passing an absolute URL as string<h3> 12. <%= link_to "/training/etc", 13. " %> 14. <%= link_to "/training/etc", 15. " :class => "links" %> 1-28

29 Exercises 1. You are going to mimic most of the things we have done in this chapter. Create a Rails application named Store. Create a controller named Inventory with index, buy, and sell actions. Recall that passing the actions as parameters when the controller is being generated will also create the associated views/templates. Start the Rails server. Test each of the following URLs Modify the index action to generate a random number between 0 and 99. Now, use the render method to render either the buy or sell view, depending upon whether the random number is greater than 50. In either case, include the random number within the view. Now, place a link in both the buy and sell views permitting a user to easily navigate back to the index view. 1-29

30 This Page Intentionally Left Blank 1-30

Ruby on Rails is a web application framework written in Ruby, a dynamically typed programming language The amazing productivity claims of Rails is

Ruby on Rails is a web application framework written in Ruby, a dynamically typed programming language The amazing productivity claims of Rails is Chris Panayiotou Ruby on Rails is a web application framework written in Ruby, a dynamically typed programming language The amazing productivity claims of Rails is the current buzz in the web development

More information

Outline. Lecture 18: Ruby on Rails MVC. Introduction to Rails

Outline. Lecture 18: Ruby on Rails MVC. Introduction to Rails Outline Lecture 18: Ruby on Rails Wendy Liu CSC309F Fall 2007 Introduction to Rails Rails Principles Inside Rails Hello World Rails with Ajax Other Framework 1 2 MVC Introduction to Rails Agile Web Development

More information

Integrate Rails into an Existing IIS Web infrastructure using Mongrel

Integrate Rails into an Existing IIS Web infrastructure using Mongrel This article will walk you through the steps of installing Ruby, Gems, Rails, and other important libraries on a Windows 2003 server with IIS. Microsoft s Internet Information Server is a popular proprietary

More information

Ruby On Rails. CSCI 5449 Submitted by: Bhaskar Vaish

Ruby On Rails. CSCI 5449 Submitted by: Bhaskar Vaish Ruby On Rails CSCI 5449 Submitted by: Bhaskar Vaish What is Ruby on Rails? Ruby on Rails is a web application framework written in Ruby, a dynamic programming language. Ruby on Rails uses the Model-View-Controller

More information

Rails 4 Quickly. Bala Paranj. www.rubyplus.com

Rails 4 Quickly. Bala Paranj. www.rubyplus.com Rails 4 Quickly Bala Paranj 1 About the Author Bala Paranj has a Master s degree in Electrical Engineering from The Wichita State University. He has over 15 years of experience in the software industry.

More information

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor

More information

Test Automation Integration with Test Management QAComplete

Test Automation Integration with Test Management QAComplete Test Automation Integration with Test Management QAComplete This User's Guide walks you through configuring and using your automated tests with QAComplete's Test Management module SmartBear Software Release

More information

Ruby on Rails. Mitchell Craig; Tam Nguyen; Becker Luu; Eliezer Mar Manarang; and Colin Williams University of Calgary SENG 403 Dr.

Ruby on Rails. Mitchell Craig; Tam Nguyen; Becker Luu; Eliezer Mar Manarang; and Colin Williams University of Calgary SENG 403 Dr. Ruby on Rails Mitchell Craig; Tam Nguyen; Becker Luu; Eliezer Mar Manarang; and Colin Williams University of Calgary SENG 403 Dr. Kremer Abstract The proceeding document describes the Ruby on Rails web

More information

Drupal CMS for marketing sites

Drupal CMS for marketing sites Drupal CMS for marketing sites Intro Sample sites: End to End flow Folder Structure Project setup Content Folder Data Store (Drupal CMS) Importing/Exporting Content Database Migrations Backend Config Unit

More information

Witango Application Server 6. Installation Guide for OS X

Witango Application Server 6. Installation Guide for OS X Witango Application Server 6 Installation Guide for OS X January 2011 Tronics Software LLC 503 Mountain Ave. Gillette, NJ 07933 USA Telephone: (570) 647 4370 Email: support@witango.com Web: www.witango.com

More information

Pete Helgren pete@valadd.com. Ruby On Rails on i

Pete Helgren pete@valadd.com. Ruby On Rails on i Pete Helgren pete@valadd.com Ruby On Rails on i Value Added Software, Inc 801.581.1154 18027 Cougar Bluff San Antonio, TX 78258 www.valadd.com www.petesworkshop.com (c) copyright 2014 1 Agenda Primer on

More information

Ipswitch Client Installation Guide

Ipswitch Client Installation Guide IPSWITCH TECHNICAL BRIEF Ipswitch Client Installation Guide In This Document Installing on a Single Computer... 1 Installing to Multiple End User Computers... 5 Silent Install... 5 Active Directory Group

More information

Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64

Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 http://www.suse.com 1 Table of Contents Introduction...3 Hardware and

More information

Sample copy. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc.

Sample copy. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc. Objectives At the end of this chapter, participants should be able to: Understand basic WebLogic Server architecture Understand the

More information

Guides.rubyonrails.org

Guides.rubyonrails.org More at rubyonrails.org: Overview Download Deploy Code Screencasts Documentation Ecosystem Community Blog Guides.rubyonrails.org Ruby on Rails Guides (v3.2.2) These are the new guides for Rails 3.2 based

More information

The Other mod_rails: Easy Rails Deployment with JRuby. Nick Sieger Sun Microsystems, Inc

The Other mod_rails: Easy Rails Deployment with JRuby. Nick Sieger Sun Microsystems, Inc The Other mod_rails: Easy Rails Deployment with JRuby Nick Sieger Sun Microsystems, Inc CGI/FCGI Mongrel omg puppiez! not nirvana... Processes: 68 total, 3 running, 1 stuck, 64 sleeping... 309 threads

More information

Working With Virtual Hosts on Pramati Server

Working With Virtual Hosts on Pramati Server Working With Virtual Hosts on Pramati Server 13 Overview Virtual hosting allows a single machine to be addressed by different names. There are two ways for configuring Virtual Hosts. They are: Domain Name

More information

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

More information

CS169.1x Lecture 5: SaaS Architecture and Introduction to Rails " Fall 2012"

CS169.1x Lecture 5: SaaS Architecture and Introduction to Rails  Fall 2012 CS169.1x Lecture 5: SaaS Architecture and Introduction to Rails " Fall 2012" 1" Web at 100,000 feet" The web is a client/server architecture" It is fundamentally request/reply oriented" Web browser Internet

More information

Ruby on Rails (Ruby 1.9.2, Rails 3.1.1) Installation

Ruby on Rails (Ruby 1.9.2, Rails 3.1.1) Installation Ruby on Rails (Ruby 1.9.2, Rails 3.1.1) Installation Ubuntu 11.10, 11.04 desktop or server (or on Linux Mint 11, 12) (You are welcomed to share this PDF freely, with no commercial purposes) First, we will

More information

Apache Server Implementation Guide

Apache Server Implementation Guide Apache Server Implementation Guide 340 March Road Suite 600 Kanata, Ontario, Canada K2K 2E4 Tel: +1-613-599-2441 Fax: +1-613-599-2442 International Voice: +1-613-599-2441 North America Toll Free: 1-800-307-7042

More information

Administration Quick Start

Administration Quick Start www.novell.com/documentation Administration Quick Start ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of

More information

1. Was ist das? II. Wie funktioniert das? III. Wo funktioniert das nicht?

1. Was ist das? II. Wie funktioniert das? III. Wo funktioniert das nicht? RubyOnRails Jens Himmelreich 1. Was ist das? II. Wie funktioniert das? III. Wo funktioniert das nicht? 1. Was ist das? abstrakt RubyOnRails RubyOnRails Ruby Programmiersprache * 24. 2. 1993 geboren Yukihiro

More information

PowerTier Web Development Tools 4

PowerTier Web Development Tools 4 4 PowerTier Web Development Tools 4 This chapter describes the process of developing J2EE applications with Web components, and introduces the PowerTier tools you use at each stage of the development process.

More information

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

Getting Started using the SQuirreL SQL Client

Getting Started using the SQuirreL SQL Client Getting Started using the SQuirreL SQL Client The SQuirreL SQL Client is a graphical program written in the Java programming language that will allow you to view the structure of a JDBC-compliant database,

More information

The NetBeans TM Ruby IDE: You Thought Rails Development Was Fun Before

The NetBeans TM Ruby IDE: You Thought Rails Development Was Fun Before The NetBeans TM Ruby IDE: You Thought Rails Development Was Fun Before Tor Norbye and Brian Leonard Sr. Software Engineers Sun Microsystems TS-5249 Learn how to jump-start your Ruby and Rails development

More information

Ruby on Rails. Matt Dees

Ruby on Rails. Matt Dees Ruby on Rails Matt Dees All trademarks used herein are the sole property of their respective owners. Introduction How Ruby on Rails Works cpanel's interaction with Ruby on Rails Administrating Ruby on

More information

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc.

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc. WA2088 WebSphere Application Server 8.5 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2013 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

Introduction to Ingeniux Forms Builder. 90 minute Course CMSFB-V6 P.0-20080901

Introduction to Ingeniux Forms Builder. 90 minute Course CMSFB-V6 P.0-20080901 Introduction to Ingeniux Forms Builder 90 minute Course CMSFB-V6 P.0-20080901 Table of Contents COURSE OBJECTIVES... 1 Introducing Ingeniux Forms Builder... 3 Acquiring Ingeniux Forms Builder... 3 Installing

More information

Chapter 1 - Web Server Management and Cluster Topology

Chapter 1 - Web Server Management and Cluster Topology Objectives At the end of this chapter, participants will be able to understand: Web server management options provided by Network Deployment Clustered Application Servers Cluster creation and management

More information

Rails Cookbook. Rob Orsini. O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo

Rails Cookbook. Rob Orsini. O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Rails Cookbook Rob Orsini O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Table of Contents Foreword : ; xi Preface ; ;... xiii 1. Getting Started 1 1.1 Joining the Rails Community

More information

Hudson Continous Integration Server. Stefan Saasen, stefan@coravy.com

Hudson Continous Integration Server. Stefan Saasen, stefan@coravy.com Hudson Continous Integration Server Stefan Saasen, stefan@coravy.com Continous Integration Software development practice Members of a team integrate their work frequently Each integration is verified by

More information

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity

More information

WebLogic Server: Installation and Configuration

WebLogic Server: Installation and Configuration WebLogic Server: Installation and Configuration Agenda Application server / Weblogic topology Download and Installation Configuration files. Demo Administration Tools: Configuration

More information

Magento Search Extension TECHNICAL DOCUMENTATION

Magento Search Extension TECHNICAL DOCUMENTATION CHAPTER 1... 3 1. INSTALLING PREREQUISITES AND THE MODULE (APACHE SOLR)... 3 1.1 Installation of the search server... 3 1.2 Configure the search server for usage with the search module... 7 Deploy the

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Enterprise Service Bus

Enterprise Service Bus We tested: Talend ESB 5.2.1 Enterprise Service Bus Dr. Götz Güttich Talend Enterprise Service Bus 5.2.1 is an open source, modular solution that allows enterprises to integrate existing or new applications

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation

TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation Software Release 6.0 November 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS

More information

Wakanda Studio Features

Wakanda Studio Features Wakanda Studio Features Discover the many features in Wakanda Studio. The main features each have their own chapters and other features are documented elsewhere: Wakanda Server Administration Data Browser

More information

An Oracle White Paper January 2013. Integrating Oracle Application Express with Oracle Access Manager. Revision 1

An Oracle White Paper January 2013. Integrating Oracle Application Express with Oracle Access Manager. Revision 1 An Oracle White Paper January 2013 Integrating Oracle Application Express with Oracle Access Manager Revision 1 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Deep in the CRUD LEVEL 1

Deep in the CRUD LEVEL 1 Deep in the CRUD LEVEL 1 Prerequisites: TryRuby.org TwitteR for ZOMBIES {tweets Columns (we have 3) DB TABLE Rows { (we have 4) id status zombie Zombie Challenge #1 Retrieve the Tweet object with id =

More information

Using the Adobe Access Server for Protected Streaming

Using the Adobe Access Server for Protected Streaming Adobe Access April 2014 Version 4.0 Using the Adobe Access Server for Protected Streaming Copyright 2012-2014 Adobe Systems Incorporated. All rights reserved. This guide is protected under copyright law,

More information

Novell Identity Manager

Novell Identity Manager AUTHORIZED DOCUMENTATION Manual Task Service Driver Implementation Guide Novell Identity Manager 4.0.1 April 15, 2011 www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with

More information

Installing Rails 2.3 Under Windows XP and Apache 2.2

Installing Rails 2.3 Under Windows XP and Apache 2.2 Installing Rails 2.3 Under Windows XP and Apache 2.2 Scott Taylor Tailor Made Software August 9, 2011 Version 1.0 1.0 Introduction Ruby On Rails (aka just Rails ) is a modern scripting system that allows

More information

FileMaker Server 12. FileMaker Server Help

FileMaker Server 12. FileMaker Server Help FileMaker Server 12 FileMaker Server Help 2010-2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc.

More information

IBM WebSphere Application Server Version 7.0

IBM WebSphere Application Server Version 7.0 IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the

More information

MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server

MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server November 6, 2008 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296 E-mail:

More information

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

Modern Web Application Framework Python, SQL Alchemy, Jinja2 & Flask

Modern Web Application Framework Python, SQL Alchemy, Jinja2 & Flask Modern Web Application Framework Python, SQL Alchemy, Jinja2 & Flask Devert Alexandre December 29, 2012 Slide 1/62 Table of Contents 1 Model-View-Controller 2 Flask 3 First steps 4 Routing 5 Templates

More information

Application Servers - BEA WebLogic. Installing the Application Server

Application Servers - BEA WebLogic. Installing the Application Server Proven Practice Application Servers - BEA WebLogic. Installing the Application Server Product(s): IBM Cognos 8.4, BEA WebLogic Server Area of Interest: Infrastructure DOC ID: AS01 Version 8.4.0.0 Application

More information

Web Server Manual. Mike Burns (netgeek@speakeasy.net) Greg Pettyjohn (gregp@ccs.neu.edu) Jay McCarthy (jay.mccarthy@gmail.com) November 20, 2006

Web Server Manual. Mike Burns (netgeek@speakeasy.net) Greg Pettyjohn (gregp@ccs.neu.edu) Jay McCarthy (jay.mccarthy@gmail.com) November 20, 2006 Web Server Manual Mike Burns (netgeek@speakeasy.net) Greg Pettyjohn (gregp@ccs.neu.edu) Jay McCarthy (jay.mccarthy@gmail.com) November 20, 2006 Copyright notice Copyright c 1996-2006 PLT Permission is

More information

Building and Deploying Web Scale Social Networking Applications Using Ruby on Rails and Oracle. Kuassi Mensah Group Product Manager

Building and Deploying Web Scale Social Networking Applications Using Ruby on Rails and Oracle. Kuassi Mensah Group Product Manager Building and Deploying Web Scale Social Networking Applications Using Ruby on Rails and Oracle Kuassi Mensah Group Product Manager The following is intended to outline our general product direction. It

More information

virtualization.info Review Center SWsoft Virtuozzo 3.5.1 (for Windows) // 02.26.06

virtualization.info Review Center SWsoft Virtuozzo 3.5.1 (for Windows) // 02.26.06 virtualization.info Review Center SWsoft Virtuozzo 3.5.1 (for Windows) // 02.26.06 SWsoft Virtuozzo 3.5.1 (for Windows) Review 2 Summary 0. Introduction 1. Installation 2. VPSs creation and modification

More information

CYCLOPE let s talk productivity

CYCLOPE let s talk productivity Cyclope 6 Installation Guide CYCLOPE let s talk productivity Cyclope Employee Surveillance Solution is provided by Cyclope Series 2003-2014 1 P age Table of Contents 1. Cyclope Employee Surveillance Solution

More information

Using Actian PSQL as a Data Store with VMware vfabric SQLFire. Actian PSQL White Paper May 2013

Using Actian PSQL as a Data Store with VMware vfabric SQLFire. Actian PSQL White Paper May 2013 Using Actian PSQL as a Data Store with VMware vfabric SQLFire Actian PSQL White Paper May 2013 Contents Introduction... 3 Prerequisites and Assumptions... 4 Disclaimer... 5 Demonstration Steps... 5 1.

More information

Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0

Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 This document supports the version of each product listed and supports all subsequent versions until the document

More information

COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10

COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 LabTech Commands COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 Overview Commands in the LabTech Control Center send specific instructions

More information

Bundler v0.5 Documentation

Bundler v0.5 Documentation Bundler v0.5 Documentation Prepared by the West Quad Computing Group October, 2008 1 Overview In the past, all development and computational activities took place on the (former) Roth lab cluster head-node,

More information

PaaS Operation Manual

PaaS Operation Manual NTT Communications Cloudⁿ PaaS Operation Manual Ver.1.0 Any secondary distribution of this material (distribution, reproduction, provision, etc.) is prohibited. 1 Version no. Revision date Revision details

More information

Document management and exchange system supporting education process

Document management and exchange system supporting education process Document management and exchange system supporting education process Emil Egredzija, Bozidar Kovacic Information system development department, Information Technology Institute City of Rijeka Korzo 16,

More information

WIRIS quizzes web services Getting started with PHP and Java

WIRIS quizzes web services Getting started with PHP and Java WIRIS quizzes web services Getting started with PHP and Java Document Release: 1.3 2011 march, Maths for More www.wiris.com Summary This document provides client examples for PHP and Java. Contents WIRIS

More information

ZeroTurnaround License Server User Manual 1.4.0

ZeroTurnaround License Server User Manual 1.4.0 ZeroTurnaround License Server User Manual 1.4.0 Overview The ZeroTurnaround License Server is a solution for the clients to host their JRebel licenses. Once the user has received the license he purchased,

More information

Creating a Java application using Perfect Developer and the Java Develo...

Creating a Java application using Perfect Developer and the Java Develo... 1 of 10 15/02/2010 17:41 Creating a Java application using Perfect Developer and the Java Development Kit Introduction Perfect Developer has the facility to execute pre- and post-build steps whenever the

More information

Creating Home Directories for Windows and Macintosh Computers

Creating Home Directories for Windows and Macintosh Computers ExtremeZ-IP Active Directory Integrated Home Directories Configuration! 1 Active Directory Integrated Home Directories Overview This document explains how to configure home directories in Active Directory

More information

Deploying Intellicus Portal on IBM WebSphere

Deploying Intellicus Portal on IBM WebSphere Deploying Intellicus Portal on IBM WebSphere Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com

More information

WEB2CS INSTALLATION GUIDE

WEB2CS INSTALLATION GUIDE WEB2CS INSTALLATION GUIDE FOR XANDMAIL XandMail 32, rue de Cambrai 75019 PARIS - FRANCE Tel : +33 (0)1 40 388 700 - http://www.xandmail.com TABLE OF CONTENTS 1. INSTALLING WEB2CS 3 1.1. RETRIEVING THE

More information

Oracle Service Bus Examples and Tutorials

Oracle Service Bus Examples and Tutorials March 2011 Contents 1 Oracle Service Bus Examples... 2 2 Introduction to the Oracle Service Bus Tutorials... 5 3 Getting Started with the Oracle Service Bus Tutorials... 12 4 Tutorial 1. Routing a Loan

More information

JBoss Portlet Container. User Guide. Release 2.0

JBoss Portlet Container. User Guide. Release 2.0 JBoss Portlet Container User Guide Release 2.0 1. Introduction.. 1 1.1. Motivation.. 1 1.2. Audience 1 1.3. Simple Portal: showcasing JBoss Portlet Container.. 1 1.4. Resources. 1 2. Installation. 3 2.1.

More information

MarkLogic Server. Connector for SharePoint Administrator s Guide. MarkLogic 8 February, 2015

MarkLogic Server. Connector for SharePoint Administrator s Guide. MarkLogic 8 February, 2015 Connector for SharePoint Administrator s Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents

More information

Handle Tool. User Manual

Handle Tool. User Manual User Manual Corporation for National Research Initiatives Version 2 November 2015 Table of Contents 1. Start the Handle Tool... 3 2. Default Window... 3 3. Console... 5 4. Authentication... 6 5. Lookup...

More information

Customizing the SSOSessionTimeout.jsp page for Kofax Front Office Server 3.5.2

Customizing the SSOSessionTimeout.jsp page for Kofax Front Office Server 3.5.2 Customizing the SSOSessionTimeout.jsp page for Kofax Front Office Server 3.5.2 Date July 23, 2014 Applies To Kofax Front Office Server (KFS) 3.5.2.10 Summary This application note provides instructions

More information

Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L

Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Introduction: This guide is written to help any person with little knowledge in AIX V5.3L to prepare the P Server

More information

10CS73:Web Programming

10CS73:Web Programming 10CS73:Web Programming Question Bank Fundamentals of Web: 1.What is WWW? 2. What are domain names? Explain domain name conversion with diagram 3.What are the difference between web browser and web server

More information

Novell ZENworks 10 Configuration Management SP3

Novell ZENworks 10 Configuration Management SP3 AUTHORIZED DOCUMENTATION Software Distribution Reference Novell ZENworks 10 Configuration Management SP3 10.3 November 17, 2011 www.novell.com Legal Notices Novell, Inc., makes no representations or warranties

More information

Intellicus Cluster and Load Balancing (Windows) Version: 7.3

Intellicus Cluster and Load Balancing (Windows) Version: 7.3 Intellicus Cluster and Load Balancing (Windows) Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not

More information

App Building Guidelines

App Building Guidelines App Building Guidelines App Building Guidelines Table of Contents Definition of Apps... 2 Most Recent Vintage Dataset... 2 Meta Info tab... 2 Extension yxwz not yxmd... 3 Map Input... 3 Report Output...

More information

Stock Trader System. Architecture Description

Stock Trader System. Architecture Description Stock Trader System Architecture Description Michael Stevens mike@mestevens.com http://www.mestevens.com Table of Contents 1. Purpose of Document 2 2. System Synopsis 2 3. Current Situation and Environment

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

More information

Developing ASP.NET MVC 4 Web Applications MOC 20486

Developing ASP.NET MVC 4 Web Applications MOC 20486 Developing ASP.NET MVC 4 Web Applications MOC 20486 Course Outline Module 1: Exploring ASP.NET MVC 4 The goal of this module is to outline to the students the components of the Microsoft Web Technologies

More information

Setting Up SSL on IIS6 for MEGA Advisor

Setting Up SSL on IIS6 for MEGA Advisor Setting Up SSL on IIS6 for MEGA Advisor Revised: July 5, 2012 Created: February 1, 2008 Author: Melinda BODROGI CONTENTS Contents... 2 Principle... 3 Requirements... 4 Install the certification authority

More information

OpenMind: Know Your Customer

OpenMind: Know Your Customer OpenMind: Know Your Customer Contents About OpenMind... 3 Feedback... 3 A Request... 3 Installation... 3 Install Ruby and Ruby on Rails... 4 Get the Code... 4 Create the Database Schema... 4 Update database.yml...

More information

What s really under the hood? How I learned to stop worrying and love Magento

What s really under the hood? How I learned to stop worrying and love Magento What s really under the hood? How I learned to stop worrying and love Magento Who am I? Alan Storm http://alanstorm.com Got involved in The Internet/Web 1995 Work in the Agency/Startup Space 10 years php

More information

How To Set Up An Intellicus Cluster And Load Balancing On Ubuntu 8.1.2.2 (Windows) With A Cluster And Report Server (Windows And Ubuntu) On A Server (Amd64) On An Ubuntu Server

How To Set Up An Intellicus Cluster And Load Balancing On Ubuntu 8.1.2.2 (Windows) With A Cluster And Report Server (Windows And Ubuntu) On A Server (Amd64) On An Ubuntu Server Intellicus Cluster and Load Balancing (Windows) Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2014 Intellicus Technologies This

More information

McAfee One Time Password

McAfee One Time Password McAfee One Time Password Integration Module Outlook Web App 2010 Module version: 1.3.1 Document revision: 1.3.1 Date: Feb 12, 2014 Table of Contents Integration Module Overview... 3 Prerequisites and System

More information

KonyOne Server Installer - Linux Release Notes

KonyOne Server Installer - Linux Release Notes KonyOne Server Installer - Linux Release Notes Table of Contents 1 Overview... 3 1.1 KonyOne Server installer for Linux... 3 1.2 Silent installation... 4 2 Application servers supported... 4 3 Databases

More information

CatDV Pro Workgroup Serve r

CatDV Pro Workgroup Serve r Architectural Overview CatDV Pro Workgroup Server Square Box Systems Ltd May 2003 The CatDV Pro client application is a standalone desktop application, providing video logging and media cataloging capability

More information

Novell Identity Manager

Novell Identity Manager Password Management Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 3.6.1 June 05, 2009 www.novell.com Identity Manager 3.6.1 Password Management Guide Legal Notices Novell, Inc. makes no representations

More information

Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2

Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2 Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2 Scott Taylor Tailor Made Software July 24, 2011 Version 1.2 1.0 Introduction Ruby On Rails (aka just Rails ) is a modern scripting system that allows

More information

Developing Web Views for VMware vcenter Orchestrator

Developing Web Views for VMware vcenter Orchestrator Developing Web Views for VMware vcenter Orchestrator vcenter Orchestrator 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

Thin Client Manager. Table of Contents. 1-10ZiG Manager. 2 - Thin Client Management. 3 - Remote client configurations. 1 of 16

Thin Client Manager. Table of Contents. 1-10ZiG Manager. 2 - Thin Client Management. 3 - Remote client configurations. 1 of 16 1 of 16 Thin Client Manager Table of Contents 1-10ZiG Manager 1.1 - Configuring and Managing the Server 1.1.1 - Server Settings 1.1.2 - Starting and Stopping the Server 1.2 - Configuring and Starting the

More information

CONFIGURING A WEB SERVER AND TESTING WEBSPEED

CONFIGURING A WEB SERVER AND TESTING WEBSPEED CONFIGURING A WEB SERVER AND TESTING WEBSPEED Fellow and OpenEdge Evangelist Document Version 1.0 August 2010 September, 2010 Page 1 of 15 DISCLAIMER Certain portions of this document contain information

More information

See the installation page http://wiki.wocommunity.org/display/documentation/deploying+on+linux

See the installation page http://wiki.wocommunity.org/display/documentation/deploying+on+linux Linux Installation See the installation page http://wiki.wocommunity.org/display/documentation/deploying+on+linux Added goodies (project Wonder) Install couple of more goodies from Wonder. I Installed

More information

Change Management for Rational DOORS User s Guide

Change Management for Rational DOORS User s Guide Change Management for Rational DOORS User s Guide Before using this information, read the general information under Appendix: Notices on page 58. This edition applies to Change Management for Rational

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

FileMaker Server 15. Custom Web Publishing Guide

FileMaker Server 15. Custom Web Publishing Guide FileMaker Server 15 Custom Web Publishing Guide 2004 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

Password Reset PRO. Quick Setup Guide for Single Server or Two-Tier Installation

Password Reset PRO. Quick Setup Guide for Single Server or Two-Tier Installation Password Reset PRO Quick Setup Guide for Single Server or Two-Tier Installation This guide covers the features and settings available in Password Reset PRO version 3.x.x. Please read this guide completely

More information

Web Development Frameworks

Web Development Frameworks COMS E6125 Web-enHanced Information Management (WHIM) Web Development Frameworks Swapneel Sheth swapneel@cs.columbia.edu @swapneel Spring 2012 1 Topic 1 History and Background of Web Application Development

More information

Creating a Guest Book Using WebObjects Builder

Creating a Guest Book Using WebObjects Builder Creating a Guest Book Using WebObjects Builder Creating a Guest Book Using WebObjects BuilderLaunch WebObjects Builder WebObjects Builder is an application that helps you create WebObjects applications.

More information