hi
I have modified your HelloWorld DataAdapter class to test if it can read from an xml file. So I have written ReadXMLData class which uses
Code:
import java.io.File;
import org.w3c.dom.Document;
import org.w3c.dom.*;

import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.DocumentBuilder;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
This is the class I use in my app, so it works ok.
When I run it on LS the LS seems to work but there is no data on screen.
When I remove the ReadXMLData part and just put in some numbers. They appear.

I have included all the packages in my class folder except java.io and javax.xml Do I need to include them as well?