Sha256: 60635f1f18525dc00bc5cb0bce31bcee9b9d3a24041935b1d20583996558efac

Contents?: true

Size: 1.6 KB

Versions: 6

Compression:

Stored size: 1.6 KB

Contents

Web Console
===

Your RhoConnect application exposes a web interface which runs on http://localhost:9292/console/ (port 80 on Windows) by default.  You can open the console by running the following in your application directory:

	:::term
  	$ rake rhoconnect:web

To login to the console:

1. Click on the "Console" link
2. Make sure the server field matches the host and port your rhoconnect app is running
3. Default username is 'rhoadmin' and the password is empty
4. Now you will be presented with a page showing your current license, for example:

  		
		Licensed to Rhomobile on Fri Apr 23 17:20:13 -0700 2010, 
			available 9 of 10 devices

It will also show a link to "Application Users" where you can view users of the system as well as devices they have registered.

If you want to disable this web interface, you can do so by editing the rackup file, config.ru:

	:::ruby
	# Setup the url map
	run Rack::URLMap.new \
		"/"         => Rhoconnect::Server.new,
		"/resque"   => Resque::Server.new, # If you don't want resque frontend, disable it here
		#"/console"  => RhoconnectConsole::Server.new # If you don't want rhoconnect frontend, disable it here

**NOTE: This web console is intended to be used for basic tests and views into the running RhoConnect application.  It uses the [RhoConnect REST API](/rhoconnect/rest-api) for everything it does, so it is very easy to extend this console or programmatically control your RhoConnect application directly using the [RhoConnect API](/rhoconnect/rest-api). **

Here is a screenshot of the web console:

<img src="https://img.skitch.com/20110110-f81w9mr8ujegyep543bjsrkigj.jpg"/>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rhoconnect-3.0.2 doc/web-console.txt
rhoconnect-3.0.1 doc/web-console.txt
rhoconnect-3.0.0 doc/web-console.txt
rhoconnect-3.0.0.rc1 doc/web-console.txt
rhoconnect-3.0.0.beta3 doc/web-console.txt
rhoconnect-3.0.0.beta1 doc/web-console.txt