Re: Approximating multi forms or wizards

2009-02-10 Thread Malcolm Sparks
Hi Bill, There's a good discussion of this order/cart workflow, using coffee ordering as an example - http://www.infoq.com/articles/webber-rest-workflow Malcolm On 9 Feb 2009, at 22:14, blackh...@collab.net wrote: > Hi there, > > I'm in the process of developing an e-commerce sits. It going

RE: DOM formatting

2009-02-10 Thread Jerome Louvel
Hi all, I confirm that the default value is now 'false'. Regarding the property name, I do like 'indent'. The definition given by WordNet sounds compatible: http://wordnetweb.princeton.edu/perl/webwn?s=indent -> indent (set in from the margin) "Indent the paragraphs of a letter" Best regard

Re: Using ChallengeGuard

2009-02-10 Thread Jerome Louvel
Hi Tim, The new security package is now usable! You can test it with a recent 1.2 snapshot. For details you can check this mail from the developers list: http://restlet.tigris.org/ds/viewMessage.do?dsForumId=7458&dsMessageId=1134688 Feed-back welcome! Cheers, Jerome t-j-f a écrit : > Oh, no

PUT weirdness

2009-02-10 Thread Donald S Strong
Hi all, We are trying to PUT a JSON representation from an Ajax client to a restlet web service. The entity body that we recieve on the server has a appended to it. Anyone know why are we getting the null? Regards Donald. This is being submitted by the Ajax client. PUT Request Headers Host:

GZIP Encoding and content length

2009-02-10 Thread Tamás Cservenák
Hi there, after upgrading from 1.1.1 to 1.1.2 of restlet, i discovered a strange problem. We are using Encoder in this way in createRoot() of Application: Encoder encoder = new Encoder( getContext() ); encoder.setNext( a router with resources... ); root.set

Restlet Servlet adapter with Tomcat

2009-02-10 Thread ldouglas
We are using the restlet servlet adapter to integrate Restlet with Tomcat. We have a top level servlet filter which checks each request to see if: (1) it is a POST (2) it contains a certain form parameter If either of these is not true, we simply forward the request-response pair down the chain

Re: PUT weirdness

2009-02-10 Thread Donald S Strong
Hi again, Found the problem. getLogger().log(Level.INFO, "submitted json=((" + json + "))"); outputs the following: "submitted json=((...some valid JSON text...)): " Conclusion: java.util.logging.Logger.log(Level level, String msg) adds the ": " How helpful of it. Regards