Hi,
Has anyone out there come across this problem before? I have a secure site running on port 8443 which I am trying to stream MP3 audio from but Windows Media Player continually tells me that a network problem occurred and that I should check my proxy settings. The proxy settings are standard from installation. I have a servlet to byte stream the data from the site, the code is as follows:
DataInputStream dis = new DataInputStream(new FileInputStream(Constants.voicemailStore+"/"+msg));
byte[] buffer = {};
dis.read(buffer);
dis.close();
response.setContentType("audio/mpeg");
response.setContentLength(buffer.length);
ServletOutputStream out = response.getOutputStream();
out.write(buffer);
out.flush();
out.close();