On Wed, Jun 13, 2012 at 10:14 PM, Eilon Yardeni <[email protected]> wrote:
> I am basically trying to create a stanza similar to this one:
>
> <x xmlns='vcard-temp:x:update'>
>  <photo/>
> </x>

In this example, <photo/> is in the namespace "vcard-temp:x:update" as
that gets inherited from it's parent, therefore in Vysper you would
create this as:
builder.startInnerElement("x", "vcard-temp:x:update");
builder.startInnerElement("photo", "vcard-temp:x:update");
builder.endInnerElement();
builder.endInnerElement();

/niklas

Reply via email to