01-21-2015 10:02 PM
Hi All,
I am booked a sandbox demo “Shared Endpoint Lab”, "Commands" tell me VPN username and password , I can access VPN.
But, my Jabber SDK for WEB how to register?
Fill in what? IMPS IP, domain, username/password...
var demo_config = {
httpBindingURL: "http(s)://xx.xx.xx.xx:7335/httpbinding",
domain: "xxxx.com",
username: "yourusername",
password: "yourpassword",
chatroom: "testroom@xxx.com",
nickname: "nickname",
unsecureAllowed: true
I have not received any mail, not once!
Thanks
xingxing.
01-22-2015 07:22 AM
Since this is a shared sandbox, it may be set to secure or non-secure, depending on what a user changes in the configuration. If it is currently non-secure, here is a sample configuration (change username and password):
var demo_config = {
httpBindingURL: "http://cup.psdtemea.cisco.com:7335/httpbinding",
domain: "psdtemea.cisco.com",
username: "yourusername",
password: "yourpassword",
chatroom: "testroom@muc.psdtemea.cisco.com",
nickname: "nickname",
unsecureAllowed: true
};
If it is currently secure, try this one instead:
var demo_config = {
httpBindingURL: "https://cup.psdtemea.cisco.com:7335/httpbinding",
domain: "psdtemea.cisco.com",
username: "yourusername",
password: "yourpassword",
chatroom: "testroom@muc.psdtemea.cisco.com",
nickname: "nickname",
unsecureAllowed: false
};
If you are using Chrome, navigate to https://cup.psdtemea.cisco.com:7335/httpbinding and allow the connection. This will approve the certificate. If you are using Firefox, it should prompt you to allow an exception.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide