Hello,
I am trying to deploy a CAXL client in our environment, we are running an on-prem CUP environment.
I have successfully logged in using my lab environement when trying to connect to my production environement i get the following error.
<table>
<tbody id="console-log-table">
<tr class="log_message">
<td class="type" valign="top">Log</td>
<td class="timestamp" valign="top">12:02:27:072</td>
<td class="details jwa_log" valign="top">Note: Service discovery is disabled on the client.</td>
</tr>
<tr class="log_message">
<td class="type" valign="top">Log</td>
<td class="timestamp" valign="top">12:02:27:075</td>
<td class="details jwa_log" valign="top">Update _connectToNode = httpbinding_prod</td>
</tr>
<tr class="log_message">
<td class="type" valign="top">Log</td>
<td class="timestamp" valign="top">12:02:27:078</td>
<td class="details jwa_log" valign="top">Bosh URL is:
http://webserver/httpbinding_prod</td>
</tr>
<tr class="log_message">
<td class="type" valign="top">Log</td>
<td class="timestamp" valign="top">12:02:27:119</td>
<td class="details jwa_log" valign="top"> Stream opened with sjrb.ca <stream:features xmlns:stream="http://etherx.jabber.org/streams"><mechanisms xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><mechanism>PLAIN</mechanism><mechanism>CISCO-VTG-TOKEN</mechanism><hostname xmlns="urn:xmpp:domain-based-name:0">
servername</hostname><hostname xmlns="urn:xmpp:domain-based-name:0">nodeaname-02</hostname></mechanisms></stream:features></td>
</tr>
<tr class="log_message">
<td class="type" valign="top">Sent</td>
<td class="timestamp" valign="top">12:02:27:134</td>
<td class="details sent_xml" valign="top">
<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl'
mechanism='PLAIN'>
AGFoYWlnaDEAUmVmaWN1bDQ=
</auth>
</td>
</tr>
<tr class="log_message">
<td class="type" valign="top">Log</td>
<td class="timestamp" valign="top">12:02:27:155</td>
<td class="details jwa_log" valign="top">network timeout retry 1</td>
</tr>
<tr class="log_message">
<td class="type" valign="top">Log</td>
<td class="timestamp" valign="top">12:02:27:660</td>
<td class="details jwa_log" valign="top">network timeout retry 2</td>
</tr>
<tr class="log_message">
<td class="type" valign="top">Log</td>
<td class="timestamp" valign="top">12:02:28:192</td>
<td class="details jwa_log" valign="top">network timeout retry 3</td>
</tr>
<tr class="log_message">
<td class="type" valign="top">Log</td>
<td class="timestamp" valign="top">12:02:28:738</td>
<td class="details jwa_log" valign="top"> Stream closed with error: Operation failed (<stream:error xmlns:stream="http://etherx.jabber.org/streams"><service-unavailable xmlns="urn:ietf:params:xml:ns:xmpp-streams"/></stream:error>)</td>
</tr>
<tr class="log_message">
<td class="type" valign="top">Log</td>
<td class="timestamp" valign="top">12:02:28:744</td>
<td class="details jwa_log" valign="top">closed: <stream:error xmlns:stream="http://etherx.jabber.org/streams"><service-unavailable xmlns="urn:ietf:params:xml:ns:xmpp-streams"/></stream:error></td>
</tr>
</tbody>
</table>
This is running on a nginx webserver. Configurations are as follows.
location /httpbinding_prod {
access_log off;
proxy_pass
http://servergroupname.domain:7335/httpbinding;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
var demo_config = {
domain: "domain.ca",
maxGraphAge: 5,
unsecureAllowed: true,
atSymbolAllowed: false,
logPersistence: true,
conferencealias: "conference-3.",
serviceDiscoveryEnabled: false,
httpBindingURL: "/httpbinding_prod"
};
Cisco UP XCP Connection Manager is running
Cisco UP XCP Direcotry Service is running
Cisco UP XCP Authentication Service is running.
when i goto to the binding URL i do get the proper reponse so i know that is working.
Any suggestions on additional cup server configurations that are requiered for deployment would be appreciated.
Thanks,
Allan