If I have a web application with a class that contains a public method that returns data when called, is it possible to call such a method from another web application residing in the same server? Or do I have to use web services?
Asked
Active
Viewed 41 times
1 Answers
0
You will need to use socket connections to communicate between two different apps inside the same server, as you suspected.
Here is a link that may give you some guidance in case you need it.
Hope this helps you!

Jorge C.M
- 375
- 3
- 11
-
what have to do sockets with this? It seems reinventing the wheel to me – fantaghirocco Dec 19 '19 at 11:57