Re: SSL intermediate cert issue

2016-03-19 Thread Thierry Boileau
Hello Christine, nice to hear such good news :) Best regards, Thierry Boileau Le mar. 15 mars 2016 à 21:24, Christine Karman <christ...@christine.nl> a écrit : > On 04-03-16 15:29, Thierry Boileau wrote: > > Hello Christine, > > I wonder if all the intermediate c

Re: SSL intermediate cert issue

2016-03-04 Thread Thierry Boileau
regards, Thierry Boileau Le mer. 2 mars 2016 à 22:45, Christine Karman <christ...@christine.nl> a écrit : > I want to switch from using a self-signed certificate in Restlet, which > worked well, to a startcom certificate. The reason I want to change it > is that I want to give third

RE: Re: GWT with Restlet JSE examples

2015-04-30 Thread Thierry Boileau
Hello Guillaume, sample code has been recovered, cf http://restlet.com/technical-resources/restlet-framework/guide/2.3/editions/gwt/examples Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId

Re: Unable to find converter for java.util.UUID

2015-03-16 Thread Thierry Boileau
Hello, could you tell us what kind of converters are you using on server side, and those on client side? If this question is not clear, could you send us the list of extensions used on both side (all jars like org.restlet.ext.*). Best regards, Thierry Boileau 2015-03-16 12:30 GMT+01:00 Chirayu

Re: Unable to find converter for java.util.UUID

2015-03-16 Thread Thierry Boileau
Hi, a workaround is to return a String instance: public UUID authenticateUser(String username, String passwd) { [...] return resource.loginUser().toString(); [...] } Best regards, Thierry Boileau 2015-03-16 15:12 GMT+01:00 Thierry Boileau tboil...@restlet.com: Hello, could you tell us

Re: Unable to find converter for java.util.UUID

2015-03-16 Thread Thierry Boileau
using UUID, and it works with the Jackson extension. Best regards, Thierry Boileau 2015-03-16 16:08 GMT+01:00 Chirayu Desai chir...@purpledocs.com: Hi. Thanks for the prompt reply. I am using the following: org.restlet.jar And for the ext. I am using the following 1.fileupload 2.slf4j

Re: Restelt Client Internal Connector Error (1002)

2015-03-12 Thread Thierry Boileau
exceptions. are you issuing such exceptions on client side or server side? Do you have any stack trace? Best regards, Thierry Boileau and am getting illegal argument and null pointer exceptions. 2015-03-12 9:28 GMT+01:00 Chirayu Desai chir...@purpledocs.com: I am able to reslove the time out issue

Re: Restlet cannot process query parameter on ROOT path

2015-02-08 Thread Thierry Boileau
} the {id} variable cannot be empty. Best regards, Thierry Boileau 2015-02-08 7:49 GMT+01:00 Xybrek xyb...@gmail.com: I have this code: @Override public Restlet createInboundRoot() { Router router = new Router(getContext()); Redirector forward = new Redirector(getContext

Re: Redirect whole browser traffic to restlet proxy

2015-02-04 Thread Thierry Boileau
thanks! have a good day, Thierry Boileau 2015-01-03 20:41 GMT+01:00 Xybrek xyb...@gmail.com: On Tuesday, 07 October, 2014 08:12 PM, Jovan Jovanovic wrote: Hi everybody, after a lot of tries to build a proxy server I found it really easy using Restlet. Although I have an obvious issue

Re: HTTP/1.1 422 Unprocessable Entity - Error

2015-02-04 Thread Thierry Boileau
the specific part that can't be serialized? -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3094180 -- *Thierry Boileau, Mr B* +1 (408) 387-3184 • tboil...@restlet.com http://restlet.com/ 6 Rue Rose Dieng-Kuntz

RE: Is there any concrete example on how to use Restlet File Upload extension with Google App Engine?

2015-01-16 Thread Thierry Boileau
still have access to the FileItem#getInputStream() method. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3094350

RE: CRUD Operation for Calling ServerResouce with ClientProxy

2015-01-16 Thread Thierry Boileau
); return Thing; } @Override public void deleteThing() { LOG.info(Delete Thing id= + id); store().delete(ThingItem.class, id); } } I guess you may have another question about how to create an entity. Best regards, Thierry Boileau

Re: Is there any concrete example on how to use Restlet File Upload extension with Google App Engine?

2015-01-16 Thread Thierry Boileau
to rely on the underlying servlet, and remove the RestletFileUpload#parseRepresentation method. Thanks a lot. 2015-01-16 11:41 GMT+01:00 Xybrek xyb...@gmail.com: On Friday, 16 January, 2015 05:51 PM, Thierry Boileau wrote: Hello, I guess you are refering to this page of the user guide: http

Re: Trouble going from 2.2 to 2.3

2014-12-19 Thread Thierry Boileau
these connectors by default, what is your thinking about that? And unfortunately, I won't be able to package a 2.3.1 release soon, I can achieve this on the 29th of December. Best regards, Thierry Boileau 2014-12-19 20:34 GMT+01:00 Tim Peierls t...@peierls.net: The default connectors

Re: Trouble going from 2.2 to 2.3

2014-12-19 Thread Thierry Boileau
wow, I need vacations! The fix is exactly: register these default connectors. Best regards, Thierry Boileau 2014-12-19 21:02 GMT+01:00 Thierry Boileau tboil...@restlet.com: Hi Tim, I'm afraid I've taken all alone the decision to remove these files as they appeared useless to me. I feel

Re: Trouble going from 2.2 to 2.3

2014-12-19 Thread Thierry Boileau
Hi Tim, I think it is not called early enough. It should be done before the Component.getServers() method is called. -- Thierry Boileau 2014-12-19 21:10 GMT+01:00 Tim Peierls t...@peierls.net: I tried adding this line: Engine.getInstance().getRegisteredServers().add( new

Re: maven dependencies

2014-09-16 Thread Thierry Boileau
Hello Laurent, we are looking at this, a new release will be out before the end of the week. Best regards, Thierry Boileau 2014-09-12 18:26 GMT+02:00 Laurent Rustuel laurent.rust...@genesys.com: Hello, I'm wanted to try the swagger extension, and thus created a maven project with dependency

RE: Re: Restlet 2.2.1 only serves from one thread

2014-08-25 Thread Thierry Boileau
, or to help us reconsider the current position. Best regards, Thierry Boileau PS: I've just committed code in the 2.2 and 2.3 branches, in order to add a decent thread pool to the internal HTTP server connector. -- http://restlet.tigris.org/ds

Re: Restlet 2.2.1 only serves from one thread

2014-08-06 Thread Thierry Boileau
connectors which are right choices for production environments. Best regards, Thierry Boileau 2014-08-06 6:17 GMT+02:00 Robert Barnett barn...@rice.edu: I had a very strange latency issue pop up today which I have isolated to an apparent issue with 2.2.1. I can take the Hello World stand alone

Re: Re: Put with no content

2014-07-15 Thread Thierry Boileau
is only an answer to this single mail. Don't worry, I don't forget the global topic, but unfortunately I need a little bit time to answer you. Best regards, Thierry Boileau 2014-07-14 17:20 GMT+02:00 Frank Kolnick reallyfr...@hotmail.com: I tried setting the content length to -1, as per MSDN

Re: Getting Started with Restlet

2014-07-11 Thread Thierry Boileau
/guide/2.2/introduction/first-steps/first-application best regards, Thierry Boileau 2014-07-11 10:27 GMT+02:00 Tejas Dharamsi m...@tejasdharamsi.in: I want to use Restlet framework for making a rest api which will act as an interface for my java back end and angular js front end. Can you post

Re: Put with no content

2014-07-11 Thread Thierry Boileau
; } With the following code, I notice that the received contact is null, and that the response is 204 - no content which is correct: @Put public Contact yop(Contact contact) { System.out.println(contact); return contact; } best regards, Thierry Boileau 2014-07-11 17:50 GMT+02

Re: Put - method not allowed

2014-06-27 Thread Thierry Boileau
regards, Thierry Boileau 2014-06-27 14:51 GMT+02:00 AAlefeld aalef...@gmail.com: Hi, I am a newbie to restlet api and I started using restlet 2.2.1 and have a running restlet app with resources that can be accessed via GET request. They return a json string, e.g. localhost:8182/myresource gives

Re: update agent.properties file

2014-05-08 Thread Thierry Boileau
-framework-java/issues/915 Best regards, Thierry Boileau 2014-05-08 13:40 GMT+02:00 Daz dazito1...@gmail.com: Hi, Could you provide an updated agent.properties file? It looks kinda outdated. Example: there is the new Opera that is detected as Chrome and not Opera. I tried to manually update

Re: Transparent reverse proxying using org.restlet.routing.Redirector

2014-05-06 Thread Thierry Boileau
Hello all, I'm having a look at it. Best regards, Thierry Boileau 2014-05-01 12:27 GMT+02:00 Arjohn Kampman arjohn.kamp...@vound-software.com : Any thoughts on the encoding related bug in Redirector? -- http://restlet.tigris.org/ds

RE: Re: HTTPS Server with Jetty Connector, SSLv3

2014-05-01 Thread Thierry Boileau
Hello, thanks a lot for reporting this issue. I've synchronized the code and javadocs. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3077353

Re: HTTPS Server with Jetty Connector, SSLv3

2014-04-07 Thread Thierry Boileau
Hi, I've entered an issue for that: https://github.com/restlet/restlet-framework-java/issues/903 Best regards, Thierry Boileau 2014-04-07 7:54 GMT+02:00 Thierry Boileau tboil...@restlet.com: Hello, for a quick workaround, set the keyManagerAlgorithm property

Re: HTTPS Server with Jetty Connector, SSLv3

2014-04-06 Thread Thierry Boileau
Hello, for a quick workaround, set the keyManagerAlgorithm property: sslContextFactory.setKeyManagerAlgorithm(SunX509); I think there is a bug here, because this should be the default value. Best regards, Thierry Boileau 2014-04-05 6:42 GMT+02:00 cdu cdu.a...@gmail.com: Trying

Re: Java Serialization issues on Restlet versions above 2.1-M4

2014-03-17 Thread Thierry Boileau
of the wrapped representation public ObjectRepresentation(Representation) best regards, Thierry Boileau 2014-02-26 18:06 GMT+01:00 Raffaele Gravina raffaele.grav...@gmail.com: Dear All, I'm trying to run the very simple Restlet sample app available here http://restlet.org/learn/guide/2.2

Re: Entity to large

2014-02-28 Thread Thierry Boileau
Hello Adrien, could you precise the kind of remote server you are communicating with? what is the size of the file? What kind of client HTTP connector are you using? It seems that the server estimates the entity is too large and decide to cut the communication. Best regards, Thierry Boileau

Re: Entity to large

2014-02-28 Thread Thierry Boileau
, Thierry Boileau 2014-02-28 15:58 GMT+01:00 adrien ruffie a.ruf...@e-deal.com: Thank you for your first response, I try to upload several picture with 53ko, 15ko, 226ko, 9ko size but not very large size like 10mo ... My webapp which send the file is running on a Tomcat, and the webapp

Re: Restlet returns 404 error when http request line contains an absolute URI with an https scheme

2014-02-20 Thread Thierry Boileau
Hello John, I've entered a ticket for this: https://github.com/restlet/restlet-framework-java/issues/846 Best regards, Thierry Boileau 2014-02-19 2:05 GMT+01:00 John Graf jg...@hp.com: We have a client for our Restlet web service that puts the absolute URI in the http GET request line

Re: Serving static content

2014-02-04 Thread Thierry Boileau
Hello Daz, I've answered in the StackOverFlow forum. Best regards, Thierry Boileau 2014-02-04 Daz dazito1...@gmail.com: I've made this question on stackoverflow but to no success yet. (Here's the link: http://stackoverflow.com/questions/21533787/restlet-serving-static-content-android

Re: Restlet client version 2.1.6, SSL configuration on Android

2014-01-13 Thread Thierry Boileau
Hello Mark, I'm also trying to figure out what happens. I'll keep you informed. Best regards, Thierry 2014/1/12 Mark Petrovic mspetro...@gmail.com Well, I'm making progress. My original code failed to expand the Android R resource id's into actual strings. So my URL was horribly mangled.

Re: Restlet, jackson and @JsonTypeInfo

2014-01-07 Thread Thierry Boileau
Hello, I think that the following will also work: @Get public ArrayListSiteDAO myGet() { ... } Best regards, Thierry Boileau 2014/1/7 Tim Peierls t...@peierls.net One problem is that the generic type formal parameter T doesn't convey enough information for the annotation-based code

Re: Nested object de-serialization in JsonRepresentation not working

2013-12-16 Thread Thierry Boileau
-jackson-and-ormlite-annotations-together-in-one-object ). Best regards, Thierry Boileau 2013/12/12 Ramesh ramesh_ragha...@yahoo.com I have an Order class and OrderDetail model as described below. class Order { long id; String description; CollectionOrderDetail details; public

Re: odd problem with form posts

2013-12-16 Thread Thierry Boileau
servlet-mapping servlet-nameMyServlet/servlet-name url-pattern/*/url-pattern /servlet-mapping and see what happen in the service(HttpServletRequest, HttpServletResponse) method, especially regarding the request.getInputStream(). Best regards, Thierry Boileau ps : for a customer we use Restlet

Re: Scoring of entity variants

2013-12-16 Thread Thierry Boileau
Hello Arjohn, I guess this is related to this issue https://github.com/restlet/restlet-framework-java/issues/807 even if the symptoms are different. I guess that the method post(Object) behaves much more as you expect. For me you are pointing an issue. Best regards, Thierry Boileau 2013/11

Re: odd problem with form posts

2013-12-16 Thread Thierry Boileau
. Best regards, Thierry Boileau 2013/12/16 Sean Hogan s...@clixtec.ca Thanks for the hint Thierry. I found a place where one of the 11 (!) filters in our app was unconditionally calling getParameter on the ServletRequest. It appears this causes the request body to be consumed, at least

Re: Routing woes...

2013-12-09 Thread Thierry Boileau
void handle(Request request, Response response) { // TODO Auto-generated method stub super.handle(request, response); } }; return restlet; } Best regards, Thierry Boileau 2013/12/9

Re: Manually setting the base URL in Restlet

2013-12-09 Thread Thierry Boileau
()); ref.setBaseRef(http://localhost;); return super.beforeHandle(request, response); } }; return filter; } I'm not sure it solves exactly your problem, but it can gives you some ideas. Best regards, Thierry Boileau 2013/12/6 Hannes Ebner hannes.eb...@gmail.com Hi, I have

Re: restlet TunnelFilter incorrectly removing + from query params

2013-12-05 Thread Thierry Boileau
. This new query is then encoded before being set to the request but without any character set. I wonder why no encoding has been defined. Best regards, Thierry 2013/12/5 Thierry Boileau tboil...@restlet.com Hello Rob, I have time today to check what happens. Best regards, Thierry Boileau 2013

Re: Cookie domain not set

2013-12-05 Thread Thierry Boileau
the request's reference. Best regards, Thierry Boileau ps : // First server response, that requires the browser to record a cookie. HTTP/1.1 200 OK Content-Length: 12 Content-Type: text/plain; charset=UTF-8 Date: Thu, 05 Dec 2013 09:02:04 GMT Accept-Ranges: bytes Server: Restlet-Framework/@major-number

Re: GWT Restlet cross domain Put request

2013-12-05 Thread Thierry Boileau
Hello, I can not get these methods to work using Restlet GWT, are these methods supported. yes, these methods are supported. I've never tested such method in a cross-domain context. Best eregards, Thierry Boileau 2013/11/18 Larry larry.edward...@roames.com.au Hi there I have read

Re: restlet TunnelFilter incorrectly removing + from query params

2013-12-04 Thread Thierry Boileau
Hello Rob, I have time today to check what happens. Best regards, Thierry Boileau 2013/12/2 Rob Elsner r...@wowza.com I opened this issue; https://github.com/restlet/restlet-framework-java/issues/804 but I haven't heard anything back. I'm curious if anyone has an opinion on restlet

RE: ZipException with Restet 2.1 RC6

2013-11-15 Thread Thierry Boileau
/org.restlet/src/org/restlet/service/accept-encoding.properties. I think you will understand it quickly. If not, please tell me. By the way, you can also tell me what could the default value for the msie browser. Cheers. Thierry Boileau -- http

Re: GWT with Restlet JSE examples

2013-11-15 Thread Thierry Boileau
/deserialization format. By doing so, your API can communicate with a GWT client application, or any other kind of client, at the time with the same resources. Best regards, Thierry Boileau 2013/11/14 Guillaume Pelletier tig...@perlhive.com Hi everyone, I've been investigating the restlet

Re: bug with SpringFinder?

2013-11-15 Thread Thierry Boileau
Hi Sean, thanks for submitting this question: I've entered an issue for that point: https://github.com/restlet/restlet-framework-java/issues/797 best regards, Thierry Boileau 2013/11/15 Sean Hogan s...@clixtec.ca Hi, I believe I may have found a bug with the way SpringFinder works

Re: bug with SpringFinder?

2013-11-15 Thread Thierry Boileau
ok, thanks Sean. I close the issue. Best regards, Thierry Boileau 2013/11/15 Sean Hogan s...@clixtec.ca Never mind. Like an idiot I had two beans named metadataResource. I thought Spring would whine about that, but apparently not. :-( (There may still be an issue with SpringFinder

Re: how to set javax.net.ssl.SSLContext to Restlet ClientResource

2013-08-14 Thread Thierry Boileau
- org.restlet.ext.ssl.JsslutilsSslContextFactory The first one should fit your needs, it can be parametrized as follow http://restlet.org/learn/javadocs/2.1/jse/ext/org/restlet/ext/ssl/DefaultSslContextFactory.html . Best regards, Thierry Boileau 2013/8/14 emre he emre...@gmail.com Hi, i am using Restlet

Re: Restlet runing with Jetty on HTTPS BindException

2013-08-14 Thread Thierry Boileau
Hello Patrick, I've add an answer to your question on SOF. Best regards, Thierry Boileau 2013/8/12 Patrick Dürsteler patr...@sunsus.net Hello I have BindExceptions if I'm trying to run Restelt with Jetty: http://stackoverflow.com/questions/18053034/restlet-runing-with-jetty-on-https

Re: Re: Restlet Framework 2.1.2 and 2.2 M3 released (+ new web site)

2013-04-18 Thread Thierry Boileau
Hello Darryl, Arjohn, I've reconnected the nexus indexation process... It should be better now. Thanks for reporting this issue. Best regards, Thierry Boileau 2013/4/17 Darryl Miles dar...@netbauds.net Doh! http://maven.restlet.org/.index/nexus-maven-repository-index.properties has

RE: Re: Restlet Framework 2.1.2 and 2.2 M3 released (+ new web site)

2013-04-17 Thread Thierry Boileau
Hello Darryl, Arjohn, I've reconnected the nexus indexation process... It should be better now. Thanks for reporting this issue. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3053527

Re: empty form on POST? (not GAE)

2013-04-11 Thread Thierry Boileau
Hello Sean, could you precise the version of Restlet are you using? Best regards, Thierry Boileau 2013/4/10 Sean Hogan seanmho...@hotmail.com Hello all, My experience with Restlet to date has generally been pleasant; thanks for that. I've been having a problem in some near-production

RE: Setting Response Header with JAX-RS

2013-03-14 Thread Thierry Boileau
Hello, an issue has been entered #739 (https://github.com/restlet/restlet-framework-java/issues/739) by Mark Kharitonov. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3050998

Re: Re: Re: Re: Re: Location-ref not set in IE9

2013-03-08 Thread Thierry Boileau
... Best regards, Thierry Boileau 2013/3/7 Koen Maes k...@koma.be Thx Thiery... I read everywhere it should be fixed in IE10 but the recent port of IE10 to Win7, I see the same behaviour. Anyhow, there is nothing that can be done about the missing response headers. Total clusterf#ck by MS

Re: Re: Re: Re: Location-ref not set in IE9

2013-03-07 Thread Thierry Boileau
Hi, I've updated the current snapshot. It considers that status code 1223 is equivalent to status 204. Thanks a lot for your investigations. Best regards, Thierry Boileau 2013/3/2 Fabian Mandelbaum fmandelb...@gmail.com If it helps, I only use HTTP 204 response code for successful DELETE

Re: @Post not handling multiple variants properly?

2013-02-26 Thread Thierry Boileau
Hello Jon, thanks for reporting this issue. I've entred a new ticket for this : https://github.com/restlet/restlet-framework-java/issues/733 Best regards, Thierry Boileau 2013/2/16 Jon Sawyer j...@jsawyer.net I have a Restlet ServerResource method annotated with @Post(multipart). It works

Re: Maven artifacts disappearing

2013-02-15 Thread Thierry Boileau
hello Peter, I've restored the missing artifacts. Best regards, Thierry Boileau 2013/2/11 Peter Major peter.ma...@forgerock.com Hi, I can see 2.1-RC6, but 2.1-RC4 is missing. :( Do you have any scripts you can share to (re)deploy the artifacts? Thanks, Peter

Re: Maven artifacts disappearing

2013-02-13 Thread Thierry Boileau
Hi all, I've restored 2.1RC4 (except gae edition). I plan to end the restauration this week. Best regards, Thierry Boileau 2013/2/11 Jerome Louvel jlou...@restlet.com Hi Peter, Indeed, we have not restored all versions yet. Here are the list of missing ones: - 2.1 RC2 - RC5 - 2.0

RE: Maven version range not working post restore

2013-01-25 Thread Thierry Boileau
Hello, Thanks for reporting this, the metadata has been updated. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3045921

Re: Serving static files using Directory and CLAP from a jar

2013-01-11 Thread Thierry Boileau
Hi Robert, I send you a zip file of the eclipse project (testRobert.zip), and the jar file generated by eclipse. I launch the application on command line as follow: java -cp testRobert.jar:/home/thierry/restlet/branches/2.1/org.restlet.jar test.MyApplication Best regards, Thierry Boileau 2013

Re: Serving static files using Directory and CLAP from a jar

2013-01-10 Thread Thierry Boileau
which has the ability to list files (such as a directory). directory = new Directory(getContext(), zip: + LocalReference.createFileReference(new File(/your/path)) + !/ ); Of course, it obliges you to reference the jarfile from itself. You can consider this as a workaround. Best regards, Thierry Boileau

RE: Re: dependencies in 2.2-SNAPSHOT

2012-12-21 Thread Thierry Boileau
Hello Tim, thanks for reporting these issues. I've updated the libraries: - precised the stax2api version = 3.1.1 I've updated the servlet library - precised the available version of servlet api in maven central repository : 3.0-alpha-1 ... Best regards, Thierry Boileau

RE: Re: another CookieAuthenticator mystery

2012-12-21 Thread Thierry Boileau
the loginFormPath value. When it is null, we cannot redirect, therefore it calls super#challenge(Response, boolean). Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3038041

RE: Re: another CookieAuthenticator mystery

2012-12-21 Thread Thierry Boileau
Hi tim, I've applied it also on the 2.1 branch. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3038042

RE: Re: another CookieAuthenticator mystery

2012-12-21 Thread Thierry Boileau
/response to a next Restlet. In this case, when a request is authenticated, I wonder what is the behaviour of the CookieAuthenticator. This is the end of the year, I'm a little bit tired, so my question may be confuse. :) Best regards, Thierry Boileau

Re: Re: another CookieAuthenticator mystery

2012-12-21 Thread Thierry Boileau
Hi Tim, yes, you're right, it reverts to the ChallengeAuthenticator behaviour. I wonder if CookieAuthenticator is really a ChallengeAuthenticator. Best regards, Thierry Boileau 2012/12/21 Tim Peierls t...@peierls.net Sounds good, so if you haven't provided a login form, it more or less

Re: Conversion of primitive java Datatype double to OData Edm.Double

2012-12-21 Thread Thierry Boileau
Hi, I meant 2.2m1. Best regards, Thierry Boileau 2012/12/21 Thierry Boileau tboil...@restlet.com Hi Martin, Thanks a lot for reporting this issue. The fix will be available in shortly comming releases 2.1.1 and 2.1m1. Best regards, Thierry Boileau

RE: Don

2012-11-29 Thread Thierry Boileau
Hello Adrien, are you hosting the application inside a servlet container? Which one? Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3031980

RE: Re: Re: Getting NullPointerException when trying to get serialized object

2012-11-29 Thread Thierry Boileau
Hi Diego, of course, you can share the answer to stackoverflow. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3031994

Re: controlling the max form size to protect against DoS attacks

2012-11-22 Thread Thierry Boileau
to inherit from httpServerHelper, adn I'm not sure the property maxFormContentSize can be used in this context. Best regards, Thierry Boileau Hi, Does Restlet expose a way to reject incoming requests which are too large? We are using Restlet on Jetty, and Jetty exposes this feature via

Re: Re: status code REDIRECT in GWT

2012-11-22 Thread Thierry Boileau
Hi, as far as I know this method does not help as the browser always follows redirections. We should depreciate this method in Restlet 2.1 and remove it from 2.2. Best regards, Thierry Boileau I wasnt aware of the property, I will give it a try

Re: Re: Android Client/GAE Server - 400 Bad Request

2012-11-22 Thread Thierry Boileau
of the identification of the resource. Best regards, Thierry Boileau The problem is finally resolved! As i mentioned before in the previous release it was working, but after upgrading the app to the new Android platform and foundations, it stopped working. I didn't mention it, but only one method works @Put

Re: Trouble with x-java-serialized-object...

2012-11-22 Thread Thierry Boileau
in the query string. I've entered a new issue for that : https://github.com/restlet/restlet-framework-java/issues/688 Best regards, Thierry Boileau Hi, On GAE Server I have these two entities: public class Convive implements Serializable, HasKey { @Id private Long id

Re: Restlet Versioning Scheme

2012-11-22 Thread Thierry Boileau
these internal connectors are on the way to be stabilized. I've read the changes.log ( http://www.restlet.org/documentation/2.1/jse/changes) and I think the upgrade will be fine. The API is more stable then before. Best regards, Thierry Boileau Will restlet 2.1 be backward compatible

Re: Re: Overwriting ServerServlet issue

2012-11-22 Thread Thierry Boileau
Hi Hanno, did you tell us the kind of servlet container you are using? Best regards, Thierry Boileau Hi Thiery, don't know whether it helps but I ran it once in the YourKit profiler and the output for a single call with initialization first was https://dl.dropbox.com/u/317086/Screenshots

Re: Android Client/GAE Server - 400 Bad Request

2012-11-15 Thread Thierry Boileau
isn't required for the GWT edition. Best regards, Thierry Boileau Hi, I had some working application Android/GWT client and GAE server. After upgrading my android version on my smartphone the android client stopped working however GWT still working until now. I used last production version(GWT

RE: RESTful internationalization

2012-11-15 Thread Thierry Boileau
(and thus the cost could be adjusted according to the shipping address). Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3028534

RE: Overwriting ServerServlet issue

2012-11-15 Thread Thierry Boileau
: what do you mean by long startup times? Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3028538

RE: status codes in GWT client - responding to validation or business exception

2012-11-15 Thread Thierry Boileau
().getResponseEntity(); } public void onSuccess(Contact contact) { [...] } }); I guess there is room for improvement. I let the issue #411 open, and adds this answer. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds

Re: status code REDIRECT in GWT

2012-11-15 Thread Thierry Boileau
Hi Koen, I've added you as approved suscriber... Bes tregards, Thierry Boileau Ok, more investigation shows that I *can* get hold of all the data in case of a error status code via the clientresource-getresponse. That's just fine. Except for redirection, because this is automatically being

Re: Overwriting ServerServlet issue

2012-11-15 Thread Thierry Boileau
Hi Hanno, The first request took 6-12 seconds wow, that's too long... I've never seen that... I wil check on a PC with Window 7 also. Best regards, Thiery Boileau ps : I've meant the time which is used before the first request is processed, but we have only seen that on Windows 7. you're right,

Re: http://wiki.restlet.org/ unavailable

2012-11-01 Thread Thierry Boileau
Hello Ralph, thanks for reporting this issue. I'm having a look at this. Best regards, Thierry Boileau Hi, I noticed a couple of days ago http://wiki.restlet.org/ is unavailable. Is there any idea on when it will be back? Thanks. Ralph

Re: http://wiki.restlet.org/ unavailable

2012-11-01 Thread Thierry Boileau
Hello all, I've restarted the wiki which is up again. Best regards, Thierry Boileau Hello Ralph, thanks for reporting this issue. I'm having a look at this. Best regards, Thierry Boileau Hi, I noticed a couple of days ago http://wiki.restlet.org/ is unavailable. Is there any idea

RE: Re: Restlets in gwt with json

2012-10-26 Thread Thierry Boileau
Hello Xavier, your code works for me also using the RC6 or 2.1.0 release. I've updated my sample project, with several ways to do the same thing. I hope this will help you. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds

Re: Hiding Restlet LogFilter#afterHandler log

2012-10-25 Thread Thierry Boileau
and specify a simpler Formatter, for example the org.restlet.engine.log.AccessLogFormatter. You can have a look at the standard documentationhttp://docs.oracle.com/javase/1.5.0/docs/guide/logging/index.htmlor here http://wiki.restlet.org/docs_2.0/13-restlet/101-restlet.html. Best regards, Thierry

Re: Restlet client hanging when connecting to Restlet server (SunOS)

2012-10-25 Thread Thierry Boileau
Hello Noam, I'm currently using the net client connector for customer in production environment. Using the HttpClient extension is fine also. Best regards, Thierry Boileau Thanks for your reply Jerome! It is working fine on SunOS with the org.restlet.ext.net connector! I will also test

Re: Posting files without writing them to disk

2012-10-08 Thread Thierry Boileau
Hello Bjorn, from what I see, you are following the right way (see http://www.restlet.org/documentation/2.1/jse/ext/org/restlet/ext/fileupload/RestletFileUpload.html#getItemIterator%28org.restlet.representation.Representation%29 ) Best regards, Thierry Boileau ps : there could be another way

Re: Getting NullPointerException when trying to get serialized object

2012-10-03 Thread Thierry Boileau
regarding the full path of the bean classes are referenced inside the JSON representation. All other classes such as ClientResource, annotated interfaces could be located in distinct packages between client/server projects. Best regards, Thierry Boileau After trying many many many many things I made

Re: Re: MyStatusService not invoked after MyRepresentation throws exception

2012-10-03 Thread Thierry Boileau
Hello Jim, thanks for the sample code, I understand the issue and have entered a new one in github : https://github.com/restlet/restlet-framework-java/issues/670 . Best regards, Thierry Boileau Thierry - I very much appreciate your reply, but TestApplication does not take into account

Re: nio controller freezes occasionally

2012-09-26 Thread Thierry Boileau
freeze, and we are on the way to stabilize them. On our side we have some reproductible scenario that should help us to enhance these connectors, but need some time to fix the issues. Please stay tuned. Best regards, Thierry Boileau Hi, I'm running into an interesting scenario with Restlet 2.1

Re: ClientRestlet speed compare to apache Httpclient

2012-09-26 Thread Thierry Boileau
Hello, do you mean the HttpClient extension for the Restlet framework? Best regards, Thierry Boileau i access a remote restlet server using ClientRestlet and Httpclient, the clientresource seems to be slower than httpclient, i debug the open source, BaseClientHelper.handle(Request request

Re: GWT Edition does not work with latest GWT toolkit 2.5.0-rc1

2012-09-19 Thread Thierry Boileau
Hello Koen, I've updated the 2.1 and the master branches in order to support GWT 2.5. It will be part of the next 2.1.0 release. Best regards, Thierry Boileau see http://stackoverflow.com/questions/12230932/restlet-proxy-generation-fails-with-latest-gwt-2-5-0-rc1 Is this a known problem

Re: The parent context doesn't have a client dispatcher available. Unable to handle call.

2012-08-30 Thread Thierry Boileau
-nameorg.restlet.clients/param-name param-valueHTTP/param-value /init-param It contains the list of protocols supported by the host component. Otherwise, any kind of sample source code is welcomed. Best regards, Thierry Boileau Hello ** ** *The parent context doesn't have a client dispatcher

Re: Re: Re: Parameters for annotated resources with interface?

2012-08-14 Thread Thierry Boileau
. Then, the request's entity is taken into consideration. I hope this will give you a little bit more of explanations. Best regards, Thierry Boileau Thanks Tim! -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=2996980

Re: Re: Re: Repeated calls by Restlet client to Restlet server hangs

2012-08-14 Thread Thierry Boileau
it. The idea is that this common code should handle properly exceptions issued from the HttpClient apache library. I keep the issue open. Please feel free to add any comment! Best regards, Thierry Boileau Thierry, I have come up with a fix that solves the issue for us... but I don't know

Re: GWT Accept header leak

2012-08-14 Thread Thierry Boileau
Hello, thanks for reporting this issue (in the discussion list and in github). The fix is available in the current snapshot, and will be part of 2.1rc6 to be published soon. Best regards, Thierry Boileau I'm having a problem with a GWT client. If I have a proxy, which I call repeatedly to poll

Re: Re: Repeated calls by Restlet client to Restlet server hangs

2012-08-01 Thread Thierry Boileau
Hello Jon, tanks for reporting this problem, I've entered an issue for that point : https://github.com/restlet/restlet-framework-java/issues/630 Best regards, Thierry Boileau I'm seeing similar behavior (leaked connections), but in a different case. In our case we get leaked connections

Re: Restlet thread pool exhaustion

2012-07-11 Thread Thierry Boileau
release. I guess the same question applies for the client application : you can use the net or the httpclient extensions. We consider also that these extensions provide a more stable client connector than the internal one. Best regards, Thierry Boileau Yes it was. I let Restlet do all the heavy

  1   2   3   4   5   6   7   8   9   10   >