hi, first of all, the Resource never really changes its location. "Resource" just means that there is something (a piece of software, a web page, e.g.) which can be identified by an URI. Due to that, you may send http requests to it (e.g. POST, GET, PUT ...).
Using Restlet API, each URI identifies a Subclass of ServerResource. To send a POST- Request means, calling the method annotated with @Post (in restlet 2.0, things vary for Restlet 1.1). Due to the fact that all network stuff is transparent you may use it as if the Resource is on the same physical maschine as your client, but you never really "retrieve" the resource, but its messages. There is a Quick- Start- Tutorial in the Restlet documentation section. Greetings, Alex -------- Original-Nachricht -------- > Datum: Mon, 19 Jul 2010 07:41:12 -0700 (PDT) > Von: Rachel Yvonneski <[email protected]> > An: [email protected] > Betreff: Rest help needed > Hi all! > I need some help with rest as I am new to this programming scene. > I'm trying to learn the the basic restlet webservice therefore can someone > link me to a forum post somewhere that shows you how you use restlet to > POST? Basically I want to POST "hello, world" to the resource, and upon > retrieving the resource it tells me what i have posted before. Sorry if > this > doesnt make sense and thanks in advance for your help! > -- > View this message in context: > http://restlet-discuss.1400322.n2.nabble.com/Rest-help-needed-tp5312301p5312301.html > Sent from the Restlet Discuss mailing list archive at Nabble.com. > > ------------------------------------------------------ > http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2635252 -- GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01 ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2635261

