Hi Dennis,

Recursive structure is the actual subject of my original posting. If
you see I have below class structure :

Customer.java
-----------------------
public class Customer {
   Customer customer = null;
   public void setCustomer(Customer cust) {
               this.customer = cust;
       }
       public Customer getCustomer() {
               return this.customer;
       }
}


Now can you please tell me how to write binding.xml. How to handle
recursive structures like this with JiBX. Please suggest ?


Thank You.


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
jibx-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jibx-users

Reply via email to