http://lists.oasis-open.org/archives/members/200212/msg00002.html <snip> The TC will also define an XML schema to associate metadata with resources and a...
Yah, I've talked with Gabe Wachod about this, who's gone out of his way to be accomodating of my views. He may be fuzzy on the technical side, but he's very...
... Eek, my apologies to Gabe. His surname is Wachob, not Wachod. MB -- Mark Baker. Ottawa, Ontario, CANADA. http://www.markbaker.ca Web architecture...
I have a Web Server which I want to check against the HTTP/1.1 conformance. Is there any tool on the web which can do so ? Thanks in advance for all your help ...
Diwakar Shetty
diwakar.shetty@...
Jan 3, 2003 2:05 pm
3162
I am trying to figure out how to create a ReST interface to a mailfolder. Initially, I figured I could simply POST messages and have them appended to the...
... From: "S. Alexander Jacobson" <alex@...> ... When you GET, is the response a list of current messages or the actual content of the messages? I'd go with...
Perhaps I wasn't clear. There may be a large number of messages and, ideally, I only want the client to retrieve new messages. Again, my initial instinct here...
A couple thoughts: 1) Use HEAD to determine if the contents have changed. This keeps you from having to get the entire resource. 2) There is nothing in REST...
... No doubt the contents have changed. The issue is that since I know the contents simply grow, if I prohibited the server from changing URLs, I could ...
... Not really. An HTTP server's URI-space has nothing whatsoever to do with its storage space, aside from that created by the handlers within that space. In...
From: "S. Alexander Jacobson" <alex@...> ... server ... will ... any ... could ... You would only need to use the redirection if you do not have direct...
I think I have figured out how to do this in a way that allows the server to move attachments to URLs on other servers on an ad-hoc basis and that does not...
... From: "S. Alexander Jacobson" <alex@...> ... I don't think it's abusive, but I think you are trying to do too much with HTTP. ... Why don't you just use...
Isn't adding a query term "received-since" unRESTful? -Alex- ___________________________________________________________________ S. Alexander Jacobson...
Using something like "receive-since" (I am assuming a timestamp here) means that you have to keep track of the time differences between the client and server,...
If you accepted receive-since, you could always refer to a particular message-id. I just think either version violates the opacity of URLs. The problem with...
Each client checks mail at different times so each client has a different set of messages it has read and messages it has not yet read. If the client changes...
... From: "S. Alexander Jacobson" <alex@...> ... I don't think so. But I am not bothered by constructing URIs on the client. Also, I meant 'modified-since'...
Isn't the whole point of REST that URIs should be opaque when describing a web service? Regarding what I am trying to do, I want to expose a mailfolder via...
... From: "S. Alexander Jacobson" <alex@...> ... So for #2 you want 'all messages I haven't seen', regardless whether there are messages that have been seen...
... No, the point of REST is to model a Web service. It wouldn't be complete if it neglected to include query parameters. However, it works best when query...
As a learning process, I've implemented several trivial examples of RESTful applications on top of Quixote. I've also written up a document that explains the...
Ok so I have read through all the Wiki pages but still have a question on when to use POST vs. PUT. I am going to post a few scenerios and what I think the...
Thanks Mike that helps, one question though. You say, "So, use PUT to do a 'partial update' of a resource". Did you mean to say POST because this contradicts...
Hi -- I'm building a simple order management web service which allows an order app in the field to submit orders, allows factory-side apps to access orders by...