Re: client POSTing

2006-10-25 Thread Henry Story
Thanks a lot for the help and the framework :-) I had not understood than one had to pass via the message class. Thanks again, Henry On 25 Oct 2006, at 20:49, Jerome Louvel wrote: Hi Henry, The API doesn't provide concrete implementations because there could be so many. You can com

Re: client POSTing

2006-10-25 Thread Jerome Louvel
Hi Henry, The API doesn't provide concrete implementations because there could be so many. You can compare it to the Servlet API which simply provides an OutputStream. However, the NRE does provide many concrete representation classes (FreeMarker template, InputStream-based, OutputStream-bas

client POSTing

2006-10-25 Thread Henry Story
Hi, I am writing an Atom client and would like to POST an to a collection. I looked at the atom source code, but could not quite work out how this is meant to work. As far as I can see one needs to do something like this Request request = new Request(Method.POST, getHref(), member); wher