cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1230
Views
0
Helpful
2
Replies

Can CAXL be deployed to Tomcat?

matthew.sreeves
Level 1
Level 1

The CAXL on-premise deployment guide describes how CAXL can be deployed to an Apache web server:

https://developer.cisco.com/site/jabber-websdk/develop-and-test/im-and-presence/xmpp-deployment-guide/index.gsp

Is it possible to deploy it to a Tomcat server instead?

Thanks

1 Accepted Solution

Accepted Solutions

npetrele
Cisco Employee
Cisco Employee

You can deploy a CAXL application on any web server, including Tomcat. 

The instructions for Apache (and nginx) on the page you cited are instructions on how to solve the problem of cross-origin resource sharing (CORS) with a reverse proxy.  A reverse proxy tricks the system into thinking all requests are being made from the same origin.  For more information on CORS, here's the Wikipedia entry for CORS

View solution in original post

2 Replies 2

npetrele
Cisco Employee
Cisco Employee

You can deploy a CAXL application on any web server, including Tomcat. 

The instructions for Apache (and nginx) on the page you cited are instructions on how to solve the problem of cross-origin resource sharing (CORS) with a reverse proxy.  A reverse proxy tricks the system into thinking all requests are being made from the same origin.  For more information on CORS, here's the Wikipedia entry for CORS

Ok - thanks.