Hi Pyiush, There were indeed some non-UTF8 characters in DirectoryTestCase. I've removed them in forced the javac task in the build to use UTF-8 instead of the default platform encoding. This should prevent any similar issue in the future.
Concerning the other bug, I'll come back to it tomorrow. All the tutorial examples run fine for me, on Windows. Could you try to run them with your configuration too? Best regards, Jerome > -----Message d'origine----- > De : Piyush Purang [mailto:[EMAIL PROTECTED] > Envoyé : samedi 21 octobre 2006 21:07 > À : [email protected] > Objet : Re: Last beta 19 snapshot > > So I updated to revision 1025 compiled and part of the log is > shown as > attachment to2.txt. Note it is a Linux box. Then I packaged it > (removed test as depency) in the build file. > > Now I fail to get anything on my browser for the following code... > > Container container = new Container(); > ServerList servers = container.getServers(); > > Protocol httpProtocol = Protocol.HTTP; > String ipAddress = "127.0.0.1"; > int httpPort = 8184; > > servers.add(httpProtocol, ipAddress, httpPort); > > VirtualHost host = > VirtualHost.createLocalHost(container.getContext()); > host.attach("/something", new Restlet() { > protected void handleGet(Request request, > Response response) { > > response.setEntity("ManagedDelegatedRestletContainerFlavTwo > says Hello > World!", MediaType.TEXT_PLAIN); > } > }); > container.setDefaultHost(host); > container.start(); > > And the log doesn't show any exceptions etc. which is disturbing. > > Cheers > Piyush > > >

