How to start webchat as "web messenger"

Hi, I’m newbie about this application… I tried to setup a personal server (Ubuntu 8.04) and setup openfire. After installation, I login as admin and re-configured the server. I add plugin webchat.war into plugin using admin panel and its successfully installed.

I tried to setup the webchat

http://IP_Address:9090/webchat

after installation and set all necessary things to run the webchat…

I don’t know if this link is the main link to see the chat environment…

http://IP_Address:9090/webchat/jivelive.jsphttp://IP_Address:9090/webchat/

but this code appeared…

//===================== // Copyright © 2004-2005 // Fastpath // http://www.jivesoftware.com //===================== /* * $RCSfile$ * $Revision: 19342 $ * $Date: 2005-07-20 09:30:31 -0700 (Wed, 20 Jul 2005) $ * * Copyright © 2003-2008 Jive Software. All rights reserved. * * This software is the proprietary information of Jive Software. Use is subject to license terms. */ // Override the default trim method of String. String.prototype.trim = function() { var text = this; var start = 0; var end = text.length; var display = “”; for (var i = 0; i < text.length; i++) { display += text.charCodeAt(i) + " "; } for (var i = 0; i < text.length; i++) { var code = text.charCodeAt(i); if (code >= 33) { start = i; break; } else{ start++; } } for (var i = text.length; i > start; i–) { var code = text.charCodeAt(i - 1); if (code >= 33) { end = i; break; } } return text.substring(start, end); } // variable to tell whether or not a form has been clicked var clicked = false; function allowClick() { if (! clicked) { clicked = true; return true; } return false; } // Sequence for open window names var windowNameSeq = 0; // Array of all open windows var windows = new Array(); // Checks to see if a window exists function windowExists(name) { for (var i = 0; i < windows.length; i++) { // IE needs a try/catch here for to avoid an access violation on windows[i].name // in some cases. try { if (windows[i].name == name) { return true; } } catch (exception) { } } return false; } // Returns the window object - returns nothing if not found. function getWindow(name) { for (var i = 0; i < windows.length; i++) { try { if (windows[i].name == name) { return windows[i]; } } catch (exception) { } } } function removeWindow(name) { for (var i = 0; i < windows.length; i++) { try { if (windows[i].name == name) { windows.splice(i, 1); return; } } catch (exception) { } } } // Open a window given its unique name, url, width and height. function pushWin(name, url, width, height) { var defaultOptions = “location=yes,status=yes,toolbar=no,personalbar=no,menubar=no,directories=no,”; defaultOptions += “scrollbars=yes,resizable=yes,”; defaultOptions += “width=” + width + “,height=” + height; launchWinWithOptions(name, url, defaultOptions); } // Open a window given its unique name, url, width and height. function launchWin(name, url, width, height) { var defaultOptions = …

I tried to test my connection to server and its connected using this link…

http://IP_Address:9090/webchat/test-connection.jsp

I don’t know what’s the missing or there’s a plugins that i missed to setup or configured. I hope there’s someone that can help me… This is one of my project to our company so we can easily communicate to each other… I appreciate your kindness to help me… Thanks

Best Regards