Is Java RMI supported on Azure Web apps?

navpat 1 Reputation point
2022-04-22T13:35:34.05+00:00

One of the Java application targeted for migration to Azure Web app uses RMI , is it supported on Azure Web apps?
Azure web apps uses port 80 and 443, whereas port used for RMI would be different.

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
4,943 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. brtrach-MSFT 8,066 Reputation points Microsoft Employee
    2022-04-26T16:53:35.283+00:00

    @navpat Thank you for your interest in using RMI on Azure Web Apps.

    You are able to do RMI over HTTP as it's a built-in functionality. Please see here for more details on that.

    If you are required to use ports rather than HTTP, you can look into using an Azure Web App Container, which still only uses 80 and 443 but you can open the necessary RMI ports on the container and then map those ports to 80 and 443.

    Please let us know if you have any further questions or concerns regarding this setup. If not, we would appreciate it if you could mark this reply as a verified answer.

    0 comments No comments

  2. navpat 1 Reputation point
    2022-05-05T11:57:23.353+00:00

    how can we secure the traffic if it traverse over HTTP?