1.1 milestone confusion

2007-08-31 Thread Sean Landis
I followed the link recently posted to the roadmap. I was surprised to find that the 1.1m1 milestone page does not include issue 289 for JaxbRepresentation. Examining the issue though, shows it is targeted for 1.1m1. Not sure why the discrepancy but I thought someone would like to know.

Re: sample in org.restlet.example.book.ch7

2007-08-31 Thread Thierry Boileau
Hello Katrin, to begin with, you have to create a user, add bookmark. All of these tasks are available in the ApplicationTest class, according to the arguments given to the "main" method. However, you may be still unable to add a bookmark. The bug is located in the bookmarkResource#put method.

issue with org.restlet.Client

2007-08-31 Thread Nicolas
Hi, first of all, kudos for your great work. We are using your framework intensively in our production environment and it works like a charm. I have stumbled with an issue with org.restlet.Client, that you might be able to solve. We need to navigate through a website and retrieve a csv file in

Re: Using version URI?

2007-08-31 Thread Stanczak Group
Thanks for all the input. I think I will use versions, but keep changes to a minimum. And just user /v1/ type of syntax. I don't imagine changes, but I'd like to be able to expand even if others are using old clients. Rob Heittman wrote: We've been using that approach in production for sever

Re: sample in org.restlet.example.book.ch7

2007-08-31 Thread Stanczak Group
Looking at the code you would simple supply the {} values. So /users/bill to get a user, /users/bill/bookmarks to get bookmarks for that user, and /users/bill/bookmarks/someurl to all one. Then in your request you would set it to do a PUT to add. / Add a route for user resources router.

sample in org.restlet.example.book.ch7

2007-08-31 Thread katrin
Hi, when I run this sample and want to add a bookmark, or Get a user, receive Not Found (404) message. what I must do to add a bookmark successfully? Thanks in advance.