When I create a simple Atom Entry like this:

Entry e = Entry();
// set some Entry fields; title, summary, etc ...
StringWriter w = new StringWriter();
e.generateAtom(new XmlWriter(w), new ExtensionProfile());
System.out.println(w.toString());

I get :
<atom:entry xmlns:atom='https://www.w3.org/2005/Atom'><atom:title>Some
Title</atom:title>......</atom:entry>

Why doesn't it have the default namespace to be the atom one?  Want I
want is:

<entry xmlns:atom='https://www.w3.org/2005/Atom'><title>Some Title</
title>......</entry>

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Base Data API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-base-data-api?hl=en.

Reply via email to