« Back to Installation

how to config BOSH on Apache

Combination View Flat View Tree View
Threads [ Previous | Next ]
Hello
I try to config BOSH on Apache followed "http://developer.cisco.com/jabber/doc/api/deploymentGuide.html" but I can't run sample code that I download from "http://developer.cisco.com/web/jabber-developer/im-core-api-sample". I open basic-chat.html on IE, I found error message "Could not connect: <stream:error xmlns:stream="http://etherx.jabber.org/streams"><xml-not-well-formed xmlns="urn:ietf:params:xml:ns:xmpp-streams"/></stream:error>". Additional I have CUP Server and Web Server.
Thank you
Lohkaeo
 

There is actually no need to setup Apache as Proxy.
in you config, make sure the following is correctly setup
var demo_config = {
   domain: "your_domain_name", //if you are running the Jabber shared sandbox, please use psdtemea.cisco.com
   maxGraphAge: 5,
   unsecureAllowed: true,
   atSymbolAllowed: false,
   logPersistence: false,
   serviceDiscoveryEnabled: false,
   httpBindingURL: "http://your_CUP_server_IP:7335/httpbinding"  //If you are running the Jabber shared sandbox, please use http://cup02:7335/httpbinding
};
 
Hope this help
Howard