Is Restlet application distributed ?

2011-02-14 Thread komara nagarjuna
Hi All, We are going implement a application using Restlet. In this, We need a requirement like distributed system or mechanism. Our Restlet application having different components(modules) which needs to run on different servers(machines). For example, I have 3 different modules which are

Restlet speed

2011-02-14 Thread Paul Vincent Craven
Restlet does not seem to run as fast as I would expect. I was hoping someone could point me how to get it running faster. Looking at the examples, I've created a simple server: import org.restlet.Server; import org.restlet.data.Protocol; import org.restlet.resource.Get; import

RE: Problem using android 2.0.4 and apache http client with HTTPS

2011-02-14 Thread Chris Davis
Any word on why it was removed? and more relevantly is it safe to use? -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=2703914

Question about Complete Web Server

2011-02-14 Thread Jason Richards
Hello Everyone, I am new to Restlets and the java Restful coding seen. I had a question about the Complete Web Server feature that is listed for the Restlet Framework. Is this build in web server enterprise or high traffic capable or do you need an implementation of Tomcat, Glassfish ect... to

RE: Restlet speed

2011-02-14 Thread Jerome Louvel
Hi Paul, If you are using version 2.0, I would suggest using one of the pluggable HTTP connectors (“org.restlet.ext.net” or “org.restlet.ext.httpclient”) to get production level performances. The internal/default connector is only intended for development/test purpose or small loads). In

RE: Is Restlet application distributed ?

2011-02-14 Thread Jerome Louvel
Hi Komara, On which basis do you intend to route an incoming request to the correct module? Best regards, Jerome -- Restlet ~ Founder and Technical Lead ~ http://www.restlet.org/ http://www.restlet.o​rg Noelios Technologies ~ http://www.noelios.com/ http://www.noelios.com De :

RE: Question about Complete Web Server

2011-02-14 Thread Jerome Louvel
Hi Jason, In version 2.0, there are two pieces you need for this : · The Directory class to serve static files · The Jetty or Simple pluggable connectors (not used as Servlet containers, but as standalone connectors) In version 2.1, our goal is to have an internal HTTP

Need noob help

2011-02-14 Thread Scott Shea
I have coded myself into a hole and need some help out. I would try and post a question with code but seriously, I am not sure where I went wrong at this point. Is there someone who has implemented a Restlet solution that could help me off line? Both from shame and kindness I do not want to

catching parse exception using converter service

2011-02-14 Thread gonzajg
Hi! I'm using Restlet 2.0.4 with a converterService (Jackson). Problem is when I receive a Json object with a parse exception, it is not caught in the StatusService (which already works with any other exception that occurs within the resource) Example: WARNING: Unable to parse the object with

RE: Need noob help

2011-02-14 Thread Jerome Louvel
Hi Scott, For private support, you can consider our professional services: http://www.noelios.com/products/support Best regards, Jerome -- Restlet ~ Founder and Technical Lead ~ http://www.restlet.o​rg Noelios Technologies ~ http://www.noelios.com -Message d'origine- De : Scott Shea

Re: catching parse exception using converter service

2011-02-14 Thread gonzajg
I'm getting also as a response of the request a 415 http code UnsupportedMediaType which is not true since the Type is correct -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/catching-parse-exception-using-converter-service-tp6024668p6024796.html Sent from the

RE: Need noob help

2011-02-14 Thread Thierry Boileau
Hello Scott, if you need some help inline, you can have a look at the user guide: http://wiki.restlet.org/docs_2.0/318-restlet.html Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=2704005

RE: Re: catching parse exception using converter service

2011-02-14 Thread Thierry Boileau
Hello, I think that, for the moment, these kind of parsing errors are actually caught as unsupported media type error. Perhaps, this kind of exception should not be wrapped and hidden. I've entered an issue for that: http://restlet.tigris.org/issues/show_bug.cgi?id=1238 Best regards, Thierry

RE: Is Restlet application distributed ?

2011-02-14 Thread Praveen
Hi Jerome, My Restlet application would have a common Gateway and the underlying functionality will be provided by different modules. For scalability reasons, different underlying modules will be hosted on different servers. Each server knows where different modules are hosted. So when the