Re: Well HTTPS

2008-11-20 Thread Mohammed Al-Adawi
Hi Given X = Public key and some data; Trusted Certificate is X which is digitally signed by CA private key.  Digitally signed means hashing X and then encrypt it with CA private key. if that is true CA public key must be some where and NOT encrypted so you can decrypt certificate,  You

Re: removeRepresentations and setAvailable

2008-11-20 Thread Thierry Boileau
Hello Richard, after having a look at the HTTP specification (http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.7), a successfull delete operation is denoted by a successful status (200, 202 or 204) but at the same time the 404 status expresses the fact that the underlying resource

Re: Deployment of Restlet on JRE 1.4 using Retrotransformer.

2008-11-20 Thread Thierry Boileau
Hello Donald That 's a good remark indeed. At this time, the build script is only available from the svn repository. Are you in a hurry or can you wait tomorrow? Best regards, Thierry Boileau -- Restlet ~ Core developer ~ http://www.restlet.org Noelios Technologies ~ Co-founder ~

Re: No available xxx connector supports the required protocols

2008-11-20 Thread Thierry Boileau
Hello Raif, I have several remarks. I think you can remove the following parameter which is useless in a context of a servlet container (you can see this tutorial http://www.restlet.org/documentation/1.1/firstSteps): server protocols=HTTP HTTPS port=8080 / I would like to add also

Re: refering a web app file with FileRepresentation

2008-11-20 Thread Thierry Boileau
Hello, what that result.tmpl file contains? actually, result.tmpl intends to be a freemarker template. best regards, Thierry Boileau Hi, what that result.tmpl file contains? is there a way to load ftl files using CLAP, from web application context, like i am planning to store files

Getting the Client address from request

2008-11-20 Thread Tamás Cservenák
Hi there, i am curious, is there any way to get the _real_ client address from Request.getClientInfo()? I am talking about the situation, when you have your Restlet App (whether standalone, or running in Servlet Container) fronted by mod_proxy + httpd... Something like this (example found on the

Re: Deployment of Restlet on JRE 1.4 using Retrotransformer.

2008-11-20 Thread Donald . Strong
Hi Thierry, There is no hurry as we currently have a working backport. Sometime in the next few weeks I would like to be able to download from the restlet site as it will make upgrading the restlet libraries smoother. Regards Donald.

Restlet MVC

2008-11-20 Thread Gan123
i am creating a web application using Restlet based on MVC. i have configured ServlerServlet to invoke my Application class, where i have all the URI mappings. i am planning to use the Application class as controller and Resource to implement business logic with other required patterns.