A newbie to Java, so please excuse my wording.
Currently, on one server, I have a java wrapper around a 3rd party jar file. I am using: Class lc = Class.forName(“pkg.lib”) to initialize the class.
I need to put this 3rd party jar on a separate server. How can my java application on Server 1 call the 3rd party jar on Server 2?
Thanks,
You can use Java RMI or maybe use web services to publish some of your functionality on server 2 and consume that web service from server 1. If you can give an example of your use case we can try to improve the solution even more in case this one already does not give any hints.