I'm using this code:
public static MjpegInputStream read(String url) {
HttpResponse res;
DefaultHttpClient httpclient = new DefaultHttpClient();
httpclient.getCredentialsProvider().setCredentials(
new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT),
new UsernamePasswordCredentials("admin", "1234"));
try {
res = httpclient.execute(new HttpGet(URI.create(url)));
return new MjpegInputStream(res.getEntity().getContent());
} catch (ClientProtocolException e) { Log.e("MjpegInputStream - CP", e.getMessage()); }
catch (IllegalArgumentException e) { Log.e("MjpegInputStream - IA", e.getMessage()); }
catch (IOException e) { Log.e("MjpegInputStream - IO", e.toString() + " " + e.getMessage()); }
return null;
}
I get IOExcetion:
04-09 17:27:52.350: E/MjpegInputStream - IO(5749): java.net.SocketException: Permission denied Permission denied
My URL is http://192.168.1.113/videostream.cgi And when i connect with my browser the username and password is (admin, 1234)
What am i doing wrong ?
UPDATE:
I added INTERNET permissions and now my application crashes on this line:
res = httpclient.execute(new HttpGet(URI.create(url)));
with NetworkOnMainThreadException
It seems you forgot to add
<uses-permission android:name="android.permission.INTERNET"/>
to your manifest file.
See also Security and Permissions