Migration to another server

Is it possible to migrate your platform to another server?
For example instead of running on jetty to be able to run to another web server.
Thank you.

I’m working on something like this.

Take a look at

http://www.bitquant.com.hk/dokuwiki/

What I have there is an opengamma server that is proxied behind an apache server. One of the things thing that I’m working on is to use apache to be able to call python scripts that can send and receive information from opengamma via either py4j or via fudge.

If you look at

https://github.com/joequant/bitquant/blob/master/web/files/etc/httpd/conf/sites.d/00_bitquant.conf

That gives you an apache configuration file that allows you to reverse proxy an opengamma server.

What I want to do is to be able to get data from the OG server, but I want to be able to use non-java systems to be able to display the data.

Using this search url (https://github.com/OpenGamma/OG-Platform/search?q=org.eclipse.jetty.server.Server&type=Code) I have found that jetty libraries are used in 19 different points inside the code (mostly at OG-Web, OG-Integration and OG-Component).Did you use these information too?

The system is currently tied to Jetty as you found with your search. We haven’t considered this to be a problem as Jetty is a well known and reliable choice. Longer term we would like to be server independent, but we’re not ready to do that yet.