cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1206
Views
0
Helpful
1
Replies

Jabber SDK for WEB don't register Sandbox demo “Shared Endpoint Lab”

Xingxing Zhang
Spotlight
Spotlight

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.

1 Reply 1

npetrele
Cisco Employee
Cisco Employee

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.