1

Is it possible to call from a web application running on a server, another application on the machine client, in a way that the application on the machine client will receive some informations that it will use to run a calcul, that once is done, it will return the result to the server?

The application runing on the server is a JAVA/JEE app based on Spring, and on the client is a java application

Any help would be appreciated

2
  • Provided that your Spring application is implementing a REST service and provides endpoints for manipulating data, you can easily interact with that application using a client on any device, whether it's an application on a machine or a mobile. Commented Sep 7, 2016 at 9:09
  • It sounds like you've designed a really strange system. Why do you need to do this? Commented Sep 7, 2016 at 9:09

1 Answer 1

2

You can use, for example RMI or a simple REST-Client to interact with the web application.

Sign up to request clarification or add additional context in comments.

1 Comment

Just because you mention the RMI you have my vote. But you could add some doc or example.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.