does anyone know if there is any documentation on how to setup the cps broswer/mobile to be access online securely? I can access it from within my network.
Thanks.
The only documentation I've seen are the guidelines in the System Planning and Requirements for CPS ( http://centricitypractice.gehe.....ements.pdf ) starting at page 117. The diagram on page 122 mentions using Apache to provide secure access and AJP to redirect the requests from Apache to jboss. I already had a web server set up with Apache so I enabled proxy_ajp and added a SSL vhost with this for example: (note that Apache AJP to jboss isn't encrypted, the network between needs to be secure)
<Location /centricitypm/emrgwt/>
ProxyPass ajp://dbsrv.nwos.local:9009/centricitypm/emrgwt/
</Location>
<Location /centricitypm/EMRGWTServices/>
ProxyPass ajp://dbsrv.nwos.local:9009/centricitypm/EMRGWTServices/
</Location>
Or just have one ProxyPass line for the whole jboss site but I only wanted to redirect what seemed needed for the mobile access to work. Apache can also provide authentication before the user's requests are proxied, restrict by IP, logging, etc.