glassfish - Java bean server not running properly -
i using java beans create application remote interface, have simple methods printdetail returns "abcd", test method. have session bean this:
@stateless public class mysession implements mysessionremote { @override public void businessmethod() { system.out.println("aaaababa"); }
when deploy server, error:
severe: core10012: application deployed not @ original location more
i use glassfish 3.1
i found solution, go browser type localhost:4848, select applications in left list, disable other running apps deployed. e.g mine saying like
severe: core10012: application deployed not @ original location more "c:user/ .... / xyz "
then should disable app xyz because apparently server still running app if have created new one.
Comments
Post a Comment