0 Replies Latest reply on Sep 15, 2005 8:25 PM by javadeveloper30

    .sar contents not being updated

    javadeveloper30

      I am creating a startup service as a .sar file and deploying in Jboss server instance. Now even though I change the contents of my the sar file and redeploy the sar file, it is not taking the changes and still displaying the old sar contents.

      eg - protected void startService throws Exception {
      log.info("Hello");
      }

      Updated to log.info("Hey") and redeployed the sar file but still
      "Hello" gets displayed instead of "Hey".

      is there some step I need to take so that the updated sar get picked up instead of the old sar ? Any pointers greatly appreciated.

      thanks in advance.