-2

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?

1 Answers1

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