On 08/05/12 21:48, Gabriel Monnerat wrote:
So, how to create Addresses inside the User tag instead of a new tag.
In this case, I am trying

class Address(ComplexModel):
    number = String
    street = String

class User(ComplexModel):
  name = String
  address = Array(Address)


You should do:

  address = Address.customize(max_occurs='unbounded')

Does it help?

Best,
Burak
_______________________________________________
Soap mailing list
[email protected]
http://mail.python.org/mailman/listinfo/soap

Reply via email to