1 Reply Latest reply on Apr 22, 2005 11:46 AM by ben.wang

    Cannot Replicate in seprate JVM

    mlrathod

      Hi
      I am using TreeCache Aop (with default replSync-service.xml). I am not able to replicate the Aop enabled objects in Cache on seprate JVM. Treecache works fine on seprate JVM.

      Exact Scenario
      1. Put Aop enabled measure Object on JVM A
      2. Get same object on JVM B (this does not return null but an object which does not contain any fields)
      What might be problem I am using Jbosscache 1.01
      Any help will be appreciated


      <?xml version="1.0" encoding="UTF-8"?>









      public class Measure implements Serializable{

      private int id;
      private String name;
      /**
      * @return Returns the id.
      */
      public int getId() {
      return id;
      }
      /**
      * @param id The id to set.
      */
      public void setId(int id) {
      this.id = id;
      }
      /**
      * @return Returns the name.
      */
      public String getName() {
      return name;
      }
      /**
      * @param name The name to set.
      */
      public void setName(String name) {
      this.name = name;
      }
      }


      Regard
      Mukesh rathod