here are some answers: http://www.mail-archive.com/u...@xfire.codehaus.org/msg00818.html ------------------------------------------------- For Collections you can provide mapping files which tell XFire what is contained in collections. In those mapping files you can also ignore properties. Check out this page for instructions: http://xfire.codehaus.org/Aegis+Binding -------------------------------------------------
document/literal has got no reference notation, so Aegis (like XmlBeans, Jaxb, Castor, etc.) would try to serialize everything again and again until a StackOverFlow occurs. There is no magic recognition of already serialized objects. Using *.aegis.xml mappings (along side my *.hbm.xml files) with a few 'ignore'
settings helps keep circular Parent-Child references from happening. ------------------------------------------------- http://www.oreillynet.com/onjava/blog/2007/07/apache_cxf_interview_with_dan.html ------------------------------------------------- Yes, if you use Aegis Binding: http://xfire.codehaus.org/Aegis+Binding You can get Aegis to Ignore properties with either a Mapping file entry: <mappings> <mapping> <property name="propertyName" ignore="true"/> </mapping> </mappings> Or if you're using Java5 you can do it with the @IgnoreProperty annotation just above the property getter method: @IgnoreProperty public String getFoo(); -- View this message in context: http://www.nabble.com/axis-stackoverflow-tp21091534s2369p21274974.html Sent from the AppFuse - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@appfuse.dev.java.net For additional commands, e-mail: users-h...@appfuse.dev.java.net