My REST service has to also serve static mp4 video files - for use on an iPhone. I'm having problems where the iPhone won't play the video files when I call an open() command on the file URL which is located in the static content area of my restlet application.
My URL is targeting the /data resource and is of the form http://.../data/videos/jetman_4.mp4 My restlet code looks like the following: I saw that there have been enhancements on setting content type - but I don't know how to set this up - if this is at the root of the problem. Any help or pointers to sample apps that serve static video would be great. Thanks; Andy Roberts. Application streamApplication = new Application(component.getContext()) { public Restlet createRoot() { Router router=new Router(getContext()); Directory dir=new Directory(getContext(), Constants.DATA_DEFAULT_PATH); dir.setListingAllowed(true); dir.setDeeplyAccessible(true); router.attach("/data", dir); router.attach("/streams", StreamResource.class); return router; } }; streamApplication.getTunnelService().setEnabled(true); streamApplication.getTunnelService().setMethodTunnel(true); streamApplication.getTunnelService().setMethodParameter("method"); streamApplication.getMetadataService().addExtension("mp4", MediaType.VIDEO_MPEG); GET /data/z/images/jetman_240.jpg - 200 4352 - 16 http://192.168.1.102:8182 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5. 1; .NET CLR 1.1.4322) http://192.168.1.102:8182/data/z/ Feb 22, 2008 5:43:50 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_280.jpg Feb 22, 2008 5:43:50 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_280.jpg Feb 22, 2008 5:43:50 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:43:50 192.168.1.102 - - 8182 GET /data/z/images/jetman_280.jpg - 200 4867 - 32 http://192.168.1.102:8182 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5. 1; .NET CLR 1.1.4322) http://192.168.1.102:8182/data/z/ Feb 22, 2008 5:43:50 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_320.jpg Feb 22, 2008 5:43:50 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_320 Feb 22, 2008 5:43:50 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_320.jpg Feb 22, 2008 5:43:50 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_320.jpg Feb 22, 2008 5:43:50 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:43:50 192.168.1.102 - - 8182 GET /data/z/images/jetman_320.jpg - 200 2819 - 15 http://192.168.1.102:8182 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5. 1; .NET CLR 1.1.4322) http://192.168.1.102:8182/data/z/ Feb 22, 2008 5:44:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/videos/jetman_chunk_27.mp4 Feb 22, 2008 5:44:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_chunk_27 Feb 22, 2008 5:44:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/videos/jetman_chunk_27.mp 4 Feb 22, 2008 5:44:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/videos/jetman_chunk_27.mp 4 Feb 22, 2008 5:44:12 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:44:12 192.168.1.102 - - 8182 GET /data/z/videos/jetman_chunk_27.mp4 - 200 265512 - 109 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:818 2/data/z/ C:\restlet>java -jar restlet.jar Feb 22, 2008 5:45:11 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/index Feb 22, 2008 5:45:11 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : index Feb 22, 2008 5:45:11 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/index Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/index Feb 22, 2008 5:45:12 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:12 192.168.1.102 - - 8182 GET /data/z/ - 304 0 - 125 http://192.168.1 <http://192.168.0.1/> .102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gec ko/20080201 Firefox/2.0.0.12 - Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/iecanvas.js Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : iecanvas Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/iecanvas.js Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/iecanvas.js Feb 22, 2008 5:45:12 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:12 192.168.1.102 - - 8182 GET /data/z/iecanvas.js - 304 0 - 15 http://1 <http://0.0.0.1/> 92.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv: 1.8.1 .12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z/ Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/com.peermeta.ZoomStack.noc ache.js Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : com Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/com.peermeta.ZoomStack.no cache.js Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/com.peermeta.ZoomStack.no cache.js Feb 22, 2008 5:45:12 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:12 192.168.1.102 - - 8182 GET /data/z/com.peermeta.ZoomStack.nocache.js - 304 0 - 16 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1 <http://192.168.0.1/> .102:8182/data/z/ Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/ZoomStack.css Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : ZoomStack Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/ZoomStack.css Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/ZoomStack.css Feb 22, 2008 5:45:12 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:12 192.168.1.102 - - 8182 GET /data/z/ZoomStack.css - 304 0 - 0 http://1 <http://0.0.0.1/> 92.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv: 1.8.1 .12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z/ Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/AC_QuickTime.js Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : AC_QuickTime Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/AC_QuickTime.js Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/AC_QuickTime.js Feb 22, 2008 5:45:12 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:12 192.168.1.102 - - 8182 GET /data/z/AC_QuickTime.js - 304 0 - 0 http://1 <http://0.0.0.1/> 92.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv: 1.8.1 .12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z/ Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/D074B5ECB2C7728096D34F154B 5F9ECC.cache.html Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : D074B5ECB2C7728096D34F154B5F9ECC Feb 22, 2008 5:45:12 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/D074B5ECB2C7728096D34F154 B5F9ECC.cache.html Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/D074B5ECB2C7728096D34F154 B5F9ECC.cache.html Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/D074B5ECB2C7728096D34F154B5F9ECC.cache.html - 304 0 - 16 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://1 <http://0.0.0.1/> 92.168.1.102:8182/data/z/ Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/D074B5ECB2C7728096D34F154B 5F9ECC.cache.html Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : D074B5ECB2C7728096D34F154B5F9ECC Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/D074B5ECB2C7728096D34F154 B5F9ECC.cache.html Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/D074B5ECB2C7728096D34F154 B5F9ECC.cache.html Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/D074B5ECB2C7728096D34F154B5F9ECC.cache.html - 304 0 - 16 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://1 <http://0.0.0.1/> 92.168.1.102:8182/data/z/ Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_00-1.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_00-1 Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_00-1.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/images/jetman_00-1.jpg - 404 331 - 16 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z / Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_040.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_040 Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_040.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_040.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/images/jetman_040.jpg - 304 0 - 47 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z / Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_000.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_000 Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_000.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_000.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_080.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_080 Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_080.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_080.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/images/jetman_000.jpg - 304 0 - 47 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z / Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_120.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_120 Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_120.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_120.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/images/jetman_080.jpg - 304 0 - 47 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z / Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/images/jetman_120.jpg - 304 0 - 15 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z / Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_160.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_160 Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_160.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_160.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_200.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_200 Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_200.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_200.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/images/jetman_160.jpg - 304 0 - 47 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z / Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/images/jetman_200.jpg - 304 0 - 47 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z / Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_240.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_240 Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_240.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_240.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_280.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_280 Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_280.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_280.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/images/jetman_240.jpg - 304 0 - 31 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z / Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/images/jetman_320.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_320 Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_320.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/images/jetman_320.jpg Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/images/jetman_280.jpg - 304 0 - 31 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z / Feb 22, 2008 5:45:13 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:13 192.168.1.102 - - 8182 GET /data/z/images/jetman_320.jpg - 304 0 - 31 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z / Feb 22, 2008 5:45:18 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted target URI: file:///C:/restlet/data/z/videos/jetman_4.mp4 Feb 22, 2008 5:45:18 AM com.noelios.restlet.local.DirectoryResource <init> INFO: Converted base name : jetman_4 Feb 22, 2008 5:45:18 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/videos/jetman_4.mp4 Feb 22, 2008 5:45:18 AM com.noelios.restlet.local.DirectoryResourcegetVariants INFO: Getting variants for : file:///C:/restlet/data/z/videos/jetman_4.mp4 Feb 22, 2008 5:45:18 AM com.noelios.restlet.LogFilter afterHandle INFO: 2008-02-22 05:45:18 192.168.1.102 - - 8182 GET /data/z/videos/jetman_4.mp4 - 200 1871065 - 16 http://192.168.1.102:8182 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12 http://192.168.1.102:8182/data/z /

