I wrote this
HttpsURLConnection con = (HttpsURLConnection) new URL("Here my server
URL is provided").openConnection();
                con.setDoOutput(true);
                con.setDoInput(true);
                con.connect();// at this point im geting error saying
Java.net.SocketException:permission denied..


Actually im sending request to server after getting reques in XML
format i want parse using

xr.parse(new InputSource("URL"));

But its giving error at con.connect(); only... And i have added
INTERNET permission in manifest file..


Please help me out to solve this error..

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to