• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps XML parsing request error

Code:
public static NodeList UpdateSchoolList()
	throws SAXException, IOException, ParserConfigurationException
{
return parse_xml([COLOR="Red"]request[/COLOR]("https://www.lectio.dk/lectio/login_list.aspx?forcemobile=1")).getElementsByTagName("a");
}

the request gives an error :
The method request(String) is undefined for the type Login
 
Do you have the request method defined in your Login class? If so, does it take a String object as a parameter?
 
Back
Top Bottom