Spark web for openfire server

hi im using openfire 3.6.4 and currently running it on spark IM client…,its working fine–>questions how do i setup it to used the spark web are there how to on spark web intergration…?

Its very simple to enable sparkweb on your server. Follows the steps.

  1. Download spark client from
    Ignite Realtime: Downloads
  2. Extract the files ( It’ll end up with a folder named sparkweb and some files inside it)
  3. Copy the folder with items and place it inside
    *C:\Program Files\Openfire\plugins\admin\webapp*
  4. Now you can directly access the sparkweb through
    http://yourOpenfireServerUrl:9090/sparkweb/SparkWeb.html

Cheers.

Thank you for Providing me the solution for Spark Web.

But I am looking for web client where username & password is taken from Session or from file.

Actually I am developing the application in where client can do interation with administrator of the application . E.g. for providing the support.

The best example is http://www.ijab.im/ which provide chat application with AJAX and without FLASH. Which also take the username and password from the sesstion.

But the problem with http://www.ijab.im/ is that , I am unable to connect openfire with the http://www.ijab.im/.

So please provide me any reliable solution for the same.

Thank you.

Thank you for Providing me the solution for Spark Web.

But I am looking for web client where username & password is taken from Session or from file.

Actually I am developing the application in where client can do interation with administrator of the application . E.g. for providing the support.

The best example is http://www.ijab.im/ which provide chat application with AJAX and without FLASH. Which also take the username and password from the sesstion.

But the problem with http://www.ijab.im/ is that , I am unable to connect openfire with the http://www.ijab.im/.

So please provide me any reliable solution for the same.

Thank you.

avtarsingh wrote:

But the problem with http://www.ijab.im/ is that , I am unable to connect openfire with the http://www.ijab.im/.

OF works with iJab

<Directory /var/www/my.domain.com/htdocs/>
#AllowOverride All
AllowOverride None
Order Deny,Allow
Deny from all

<VirtualHost *:80>
DocumentRoot /var/www/my.domain.com/htdocs/
ServerName my.domain.com
ServerAdmin webmaster@my.domain.com

    <Directory /var/www/my.domain.com/htdocs/>
        Options FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
        AddType text/html .shtml
        AddOutputFilter INCLUDES .shtml
        Options +Includes
        Options +Indexes +Multiviews
    </Directory>
    AddDefaultCharset UTF-8
    RewriteEngine on
    RewriteRule http-bind/ [http://my.domain.com:7070/http-bind/](http://my.domain.com:7070/http-bind/) [P]
    RewriteRule http-pool/ [http://my.domain.com:7070/http-bind/](http://my.domain.com:7070/http-bind/) [P]

xmpp:{
domain:“domain.com”,
http_bind:“/http-bind/”,
host:“my.domain.com”,
port:5222,
server_type:“openfire”,
roster_mode:“all”,
auto_login:true,
username_cookie_field:“username”,
token_cookie_field:“SID”,
anonymous_prefix:“”,
max_reconnect:3
},

Where we can put the Virtual Host tag . coz I want to run it standalone…

Or I am using Grails for developing the application. How it is possible in it.