Re: Help with GWT integration

2011-03-10 Thread Stefan Christoph
Hi, I was experiencing a similar issue. Problem manifested itself in the fact that the client was requesting the data object to be represented as application/x-java-serialized-object+gwt while my rest service always provided a JSON representation. In my case this yield to a similar stack trace lik

RE: help, I need my URLS defaulted to https:// not http://

2010-10-27 Thread Thierry Boileau
Hello, >Restlet has defaulted all my URLS to http://something. >How do I change this >so that the default is https://something? What do you mean by "Restlet has defaulted all my URLS to http://something";? Restlet allows you to define a set of resources. Once that has been done, you set up the s

RE: Help with jax-rs @Path matching.

2009-12-28 Thread Jerome Louvel
-Message d'origine- De : Karel Vervaeke [mailto:ka...@outerthought.org] Envoyé : lundi 21 décembre 2009 11:41 À : discuss@restlet.tigris.org Objet : Re: Help with jax-rs @Path matching. > By the way, when using @Path("foo{dot:\\.}bar"), the resource also > matches foo.bar/

Re: Help with jax-rs @Path matching.

2009-12-21 Thread Karel Vervaeke
> By the way, when using @Path("foo{dot:\\.}bar"), the resource also > matches foo.bar/anything.  Is there a way to prevent this? That's not true, my mistake. It does match "foo.bar/" though. Actually, it should match foo{dot:\\.}bar - according to step 5 of section 3.7.3 of the spec. Regards,

RE: Re: Help with basic spring setup

2009-09-24 Thread norton borf
Thanks Dustin, awesome Use the org.restlet.ext.servlet.SpringServerServ​let instead. Dustin -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=233

Re: Help with basic spring setup

2009-09-24 Thread Dustin N. Jenkins
Use the org.restlet.ext.servlet.SpringServerServlet instead. Dustin norton borf wrote: > Hi, > I am using the 2.0 snapshot and trying to get Restlet to work in a Spring > 2.5.6 application. I have read as much as I can from the docs but am unable > to get this working. > > -- > MY

RE: Help required for restlet-jee-2.0m4 with spring using apache-tomcat-6.0.18 and JDK 1.6.0_13

2009-08-22 Thread Jerome Louvel
Hi Abdur, It is really discouraged to cross-post messages to various mailing lists. In addition, you put my personal email to the list, so I confirm I got three copies of your post :) Let's see if Spring experts in the list are willing to look at your test project to see what is not working prope

Re: Help! -- Error handler isn't working

2009-07-25 Thread Schley Andrew Kutz
e Louvel > -- > Restlet ~ Founder and Lead developer ~ http://www.restlet.org > Noelios Technologies ~ Co-founder ~ http://www.noelios.com > > > > > -Message d'origine- > De : Schley Andrew Kutz [mailto:sak...@gmail.com] > Envoyé : jeudi 23 juillet 2009 01:07

RE: Help! -- Error handler isn't working

2009-07-25 Thread Jerome Louvel
- De : Schley Andrew Kutz [mailto:sak...@gmail.com] Envoyé : jeudi 23 juillet 2009 01:07 À : discuss@restlet.tigris.org Objet : Re: Help! -- Error handler isn't working Jerome, Sorry about that (updated). Here is the ViewVC link to the file - http://vangaea.svn.sourceforge.net/viewvc/vangaea/

Re: Help! -- Error handler isn't working

2009-07-22 Thread Schley Andrew Kutz
Jerome, Sorry about that (updated). Here is the ViewVC link to the file - http://vangaea.svn.sourceforge.net/viewvc/vangaea/trunk/src/main/java/com/h9labs/vangaea/server/rest/BaseResource.java?view=markup . I've updated the code to take advantage of M4's doCatch handler. However, when I thr

RE: Help!

2009-07-21 Thread Jerome Louvel
Hi Schley, Could you send us your project (or a snippet reproducing the issue) and Restlet environment details (version, OS, etc.)? It should definitely work. BTW, I suggest that you use more meaningful email title when you post, easier for tracking and searching in the archives. Best regards, J

Re: Help with a basic Application and Resources (on JBOSS)

2009-06-05 Thread Andrew Moore
Well... I figured it out. And I am an idiot. I had setup my web.xml to associate my Application class with "/myapp". I was then attaching my resources to a URI that started with "/myapp/...". So therefore, in my browser the URI which properly returned me my resource was: /myapp/myapp/zipcodes/{

RE: help on PUT

2009-04-25 Thread Jerome Louvel
nvoyé : jeudi 23 avril 2009 16:13 À : discuss@restlet.tigris.org Cc : Helen Chen Objet : Re: help on PUT I worked with weblogic support and we proved that weblogic support the PUT request. >>> helen chen 04/06/09 8:37 AM >>> Hi Thierry, I tested the POST method and it works. S

Re: help on PUT

2009-04-23 Thread helen chen
I worked with weblogic support and we proved that weblogic support the PUT request. >>> helen chen 04/06/09 8:37 AM >>> Hi Thierry, I tested the POST method and it works. So I think you are right, there maybe some configuration in weblogic that stoped PUT request. I'm going to contact weblogic

Re: help on PUT

2009-04-06 Thread helen chen
Hi Thierry, I tested the POST method and it works. So I think you are right, there maybe some configuration in weblogic that stoped PUT request. I'm going to contact weblogic support and see what I can get and I'll post back. Thanks a lot for your help. Helen >>> Thierry Boileau 04/06/09 5:55

Re: help on PUT

2009-04-06 Thread Thierry Boileau
Hello Helen, I have no knowledge of weblogic, but it seems that the access to PUT requests is securized. Is it possible that by default Weblogic forbids that kind of request? Is there any configuration that allows you to specific the authorized methods for a deployed application? Best regards,

RE: Help!!!!! Restlet ?!?!?!?!?

2009-03-23 Thread webpost
-Our problem is to understand how makes the client thet have to get or post a resource to know resource's location and therefore the final url to use in the GET or POST HTTP messages to refer to the correct locations. -- http://restlet.tigris.o

RE: Help!!!!! Restlet ?!?!?!?!?

2009-03-21 Thread webpost
thank you Jerome Louvel and Thierry Boileau for help! -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=1373791

Re: Help request

2009-03-17 Thread Thierry Boileau
Hello Endrio, as said Jérôme, the client and server connectors interpretes the HTTP packets in order to build high level objects => Request [1] and Response [2]. From the point of view of a Restlet-based client, the Response object contains a representation of the requested resource (assuming

RE: Help request

2009-03-17 Thread Jerome Louvel
Endrio, What a creative email title! Not sure it usually helps to get a prompt answer :) To get you started, you just need the "org.restlet.jar" (if you are using Restlet 1.2 M1), otherwise you also need "com.noelios.restlet.jar". With those two JARs in your classpath, you have built-in/internal

RE: help with spring/servlet integration and applicaiton modificaton

2009-01-13 Thread Jerome Louvel
Hi Matt, Were you able to solve this? Did you specify your application class properly in your ServerServlet parameters? org.restlet.application com.mycompany.HwApplication Best regards, Jerome Louvel -- Restlet ~ Founder and Lead developer

Re: Help: IE chunked-http problem

2008-06-10 Thread Thierry Boileau
Hello all, I've just created the issue (http://restlet.tigris.org/issues/show_bug.cgi?id=511). Ralf, once your account has been created, you can add yourself in the cc field and keep informed of the progress made on this issue. Best regards, Thierry Boileau Hi Ralf, the Restlet Bugs are

Re: Help: IE chunked-http problem

2008-06-10 Thread Stephan Koops
Hi Ralf, the Restlet Bugs are managed by http://restlet.tigris.org. Just create an account (top left), klick "Issue tracker" on the left navigation bar and insert your bug report. BTW: If I remember right, you took a look into the JAX-RS extension. If you find bugs their, you could put them

Re: Help: IE chunked-http problem

2008-06-10 Thread Ralf Bommersbach
ahem ok, sure, dumb question: how do I do this? :-/ Kevin Conaway schrieb: Ralf, can you open a ticket for this? Perhaps we're not setting the correct header combination or IE requires a strange one to parse chunked encodings. On Fri, Jun 6, 2008 at 11:47 AM, Ralf Bommersbach < [EMAIL PROTECTE

Re: Help: IE chunked-http problem

2008-06-09 Thread Kevin Conaway
Ralf, can you open a ticket for this? Perhaps we're not setting the correct header combination or IE requires a strange one to parse chunked encodings. On Fri, Jun 6, 2008 at 11:47 AM, Ralf Bommersbach < [EMAIL PROTECTED]> wrote: > Ok thanks that helped a lot! > I use now the jetty server-connec

Re: Help: IE chunked-http problem

2008-06-06 Thread Ralf Bommersbach
Ok thanks that helped a lot! I use now the jetty server-connector and not only did the speed improve, but also (so far) the error can't be reproduced with Internet Explorer. Everythings just fine! thanks again :-) p.s. so yeah - it seems that the internal server just has some problems handlin

Re: Help: IE chunked-http problem

2008-06-06 Thread Thierry Boileau
Hi Ralf >Maybe I should try another, like the Apache tomcat? I'll have to look how to do that. Oh, that's simple, have a look at this page: http://www.restlet.org/documentation/1.1/connectors You only have to put the jar of one of the server connectors and the jars of its dependencies (try wit

Re: Help: IE chunked-http problem

2008-06-06 Thread Ralf Bommersbach
Hi, first its nice to hear I'm not the only one with this problem. It's driving me crazy... ;-) Yes, I also have the problem very randomly (sometimes it loads just fine, sometimes it doesn't even do CSS, sometimes there are the numbers) but _only_ with IE and the internal noelios server. Until

Re: Help: IE chunked-http problem

2008-06-06 Thread Thierry Boileau
Hello Ralf, I've encountered also this strange behaviour but randomly and only a few times with the internal server connector. What is yours? Did you try to use another one? best regards, Thierry Boileau Hello, I'm getting strange errors when loading restlet-pages in IE, it sometimes does i

RE: Help! Weird timeout on GET to Restlet API

2008-04-11 Thread Jerome Louvel
> -Message d'origine- > De : Ian Clarke [mailto:[EMAIL PROTECTED] > Envoyé : vendredi 11 avril 2008 01:34 > À : discuss@restlet.tigris.org > Objet : Re: Help! Weird timeout on GET to Restlet API > > On Tue, Apr 8, 2008 at 8:38 AM, Rob Heittman > <[EMAIL PROTECT

Re: Help! Weird timeout on GET to Restlet API

2008-04-10 Thread Ian Clarke
On Tue, Apr 8, 2008 at 8:38 AM, Rob Heittman <[EMAIL PROTECTED]> wrote: > Since one of the main objectives of 1.1 has been to respond to issues that > confuse or frustrate people coming to the platform, the changes in 1.1 are > extremely on point for the needs of a new Restlet user. Ok, I'll take

Re: Help! Weird timeout on GET to Restlet API

2008-04-08 Thread Rob Heittman
It seems that as you work with Restlet, you're running into a lot of things that have been a focus of work in the 1.1 cycle. This one was http://restlet.tigris.org/issues/show_bug.cgi?id=357 The 1.1 milestone builds don't totally fix the issue, but do cover a number of common cases (perhaps inclu

Re: Help! Weird timeout on GET to Restlet API

2008-04-07 Thread Ian Clarke
Ok, I think I fixed it - the problem was that after some calls I wasn't doing a getEntity().getText() (I didn't require the entity). Its a bit of a nasty pitfall for newbies... Ian. On Mon, Apr 7, 2008 at 4:29 PM, Ian Clarke <[EMAIL PROTECTED]> wrote: > I keep getting the following timeout when

RE: Help to begin on Restlet

2006-06-21 Thread Jerome Louvel
Hi Skyman, If download the latest release and look into the "src/example/restlet.example.zip" file, you'll see two classes: SimpleClient and SimpleServer that provide a basic communication test. Thanks, Jerome > -Message d'origine- > De : news [mailto:[EMAIL PROTECTED] De la part de Sky