Re: Setiting media type for webm videos

2013-04-22 Thread Jerome Louvel
Hi Adam, To simplify your code, you could just do this in your application's constructor: getMetadataService().addExtension(webm, MediaType.valueOf(video/webm)); Then, check the response media type with a raw HTTP client to make sure it is properly set. If it still doesn't work, it might not be

Re: Communication Error (1001) - The connector failed to complete the communication with the server

2013-04-22 Thread Jerome Louvel
Hi David, Please plugin the org.restlet.ext.net.jar to replace the default connector with a more stable one. It will probably help. Best regards, Jerome -- http://restlet.org http://twitter.com/#!/jlouvel 2013/4/21 David Leangen j...@leangen.net Hello! After a few weeks of absence, I am

RE: Re: Setiting media type for webm videos

2013-04-22 Thread Adam Mc
Thanks Jerome for pointing me in the right direction to debug the issue. I was mistaken, it was actually not a problem with webm videos, but in fact m4v videos (I was mistaken as which video was being fallen back to in the IE browser, I thought IE was falling back to webm, but was in fact

Re: Communication Error (1001) - The connector failed to complete the communication with the server

2013-04-22 Thread David Leangen
Hi Jerome, Thank you very much for this tip. Much appreciated. Please plugin the org.restlet.ext.net.jar to replace the default connector with a more stable one. It will probably help. I interpreted this comment to mean: org.restlet.ext.httpclient is the default to be replaced