[android-developers] Re: cannot get attribute from XMLReader (SAX)

2008-04-09 Thread Anil
I dont know why specifying the namespace causes it to fail on android String base = atts.getValue(http://www.w3.org/XML/1998/ namespace, xml:base); with the second method of getting the parser fails. On Apr 8, 6:50 pm, Anil [EMAIL PROTECTED] wrote: wow, that worked. thanks much! On Apr 8,

[android-developers] Re: cannot get attribute from XMLReader (SAX)

2008-04-08 Thread Dan U.
Well, I can't give you an explanation at this time, but if you do String base = atts.getValue(, xml:base);, it should work. On Apr 8, 2:33 pm, Anil [EMAIL PROTECTED] wrote: This works fine in j2se, but am stumped why it fails in android. Cannot get attribute base from XMLReader (SAX). It is

[android-developers] Re: cannot get attribute from XMLReader (SAX)

2008-04-08 Thread Anil
Hi Dan, I tried your solution. Unfortunately it didn't work. String base = atts.getValue(,xml:base); Dont know why it can get the href value, but not the base. thanks, Anil On Apr 8, 5:55 pm, Dan U. [EMAIL PROTECTED] wrote: Well, I can't give you an explanation at this time, but if you do

[android-developers] Re: cannot get attribute from XMLReader (SAX)

2008-04-08 Thread Dan U.
I think the problem is with your first example of getting the parser. Try the second one. On Apr 8, 4:20 pm, Anil [EMAIL PROTECTED] wrote: Hi Dan, I tried your solution. Unfortunately it didn't work. String base = atts.getValue(,xml:base); Dont know why it can get the href value, but not

[android-developers] Re: cannot get attribute from XMLReader (SAX)

2008-04-08 Thread Anil
wow, that worked. thanks much! On Apr 8, 6:46 pm, Dan U. [EMAIL PROTECTED] wrote: I think the problem is with your first example of getting the parser. Try the second one. On Apr 8, 4:20 pm, Anil [EMAIL PROTECTED] wrote: Hi Dan, I tried your solution. Unfortunately it didn't work.