I have GWT projects as .war A and .war B... each .war's servlet contains methods like a
- .war A - String methodA(){return "this is method A of .war A";}
- .war B - String methodB(){return (?).methodA(); }
The thing is... I'd like to get methodA value from methodB. So my question is... Is it possible to do that? And how to do that according to GWT?
Any useful comment is appreciated