I'm getting a compile error (same one) a few different places in my code.
Here's a sample of one of the areas:
// handle attribute "lang"
java.lang.String tempAttribLang =
reader.getAttributeValue("http://www.w3.org/XML/1998/namespace",
"lang");
if (tempAttribLang != null) {
java.lang.String content = tempAttribLang;
if (tempAttribLang.indexOf(":") > 0) {
// this seems to be a Qname so find the namespace and
send
prefix = tempAttribLang.substring(0,
tempAttribLang.indexOf(":"));
namespaceuri = reader.getNamespaceURI(prefix);
object.setLang(org.w3.www.xml._1998.namespace.Lang_type0.Factory.fromString(
tempAttribLang, namespaceuri));
} else {
// this seems to be not a qname send and empty
namespace incase of it is
// check is done in fromString method
object.setLang(org.w3.www.xml._1998.namespace.Lang_type0.Factory.fromString(
tempAttribLang, ""));
}
} else {
}
The problem is with this line:
____________________________________________________________________________________
Be a better sports nut! Let your teams follow you
with Yahoo Mobile. Try it now.
http://mobile.yahoo.com/sports;_ylt=At9_qDKvtAbMuh1G1SQtBI7ntAcJ
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]