Re: [castor-user] [XML] Duplicate XML names in SourceGenerator

2006-01-21 Thread Ralf Joachim
Sandeep, may it be an option for you to switch to type method as explained at: http://castor.codehaus.org/sourcegen.html#The-'type'-method This does not create classes for elements whose types are top-level types. Not sure if this helps but worse a try ;-) Regards Ralf Sandeep N schrieb:

Re: [castor-user] [XML] Duplicate XML names in SourceGenerator

2006-01-21 Thread Keith Visco
Another solution would be to use namespaces for your schema and map the namespaces to different Java packages so that your classes get generated in the appropriate packages based on the namespace schema. This would prevent the collisions. --Keith Ralf Joachim wrote: Sandeep, may it be an