hai ragione sorry:
codice:
        @Override
        protected Object doInBackground(Object... params) {
            try {
                rx.read(getApplicationContext(), UrlAndPath.XML_CLIENTI);
            } catch (IOException e) {
                System.out.println("IOException: " + e.getMessage());
            } catch (SAXException e) {
                System.out.println("SAXException: " + e.getMessage());
            } catch (ParserConfigurationException e) {
                System.out.println("ParserConfigurationException: " + e.getMessage());
            }
            return null;
        }
da qua lo richiamo.
l'errore è questo:
codice:
11-28 11:25:06.431: I/System.out(896): IOException: Protocol not found: /mnt/sdcard/clienti.xml
nel manifest ho messo questo permesso:
codice:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />