Hi all,

Say the server is providing you with an xml list which looks like
this:

<shoppingList>
<counter>0</counter>
-
<meta>
<id>1</id>
<name>Unknown owner</name>
<owner>Randomly generated list</owner>
</meta>
-
<products>
-
<product>
<id>1</id>
<name>Bananas</name>
<status>open</status>
</product>
-
<product>
<id>2</id>
<name>Bread</name>
<status>open</status>
</product>
-
<product>
<id>3</id>
<name>Süssmost</name>
<status>open</status>
</product>
</products>
</shoppingList>

How can you write a httpdelete request that would delete the "Bread"?

So that when you GET
NodeList items = doc.getElementsByTagName("name");

You see only
Banana and Süssmost.

Thank you,
Sara

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to