Search the web
Sign In
New User? Sign Up
rest-discuss · REST Discussion Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 7342 - 7371 of 14021   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7342
... Commenting over here; I don't want to get an account over there just to add a comment... Anyway: the issue of PUT and DELETE when being repeated...
Julian Reschke
JulianReschke
Offline Send Email
Jan 1, 2007
1:34 pm
7343
Hi Juilian, ... I don't like creating accounts everywhere either, but requiring accounts for forum postings at Artima allows me among other things to better...
Bill Venners
billvenners
Offline Send Email
Jan 1, 2007
4:44 pm
7344
... From the RTF Dissertation: http://www.ics.uci.edu/~fielding/pubs/webarch_icse2000.pdf ===== Connectors REST uses various connector types to encapsulate the...
S. Mike Dierken
mdierken
Offline Send Email
Jan 1, 2007
9:07 pm
7345
... I disagree. The generality refers to all resources having the same interface, not all resources having an artificially limited interface. It isn't even...
Roy T. Fielding
roy_fielding
Offline Send Email
Jan 1, 2007
10:01 pm
7346
... REST does not constrain the available methods to GET, PUT, POST, DELETE. It does, however, constrain the available methods to be some ...
Benjamin Carlyle
fuzzybsc
Offline Send Email
Jan 1, 2007
11:16 pm
7347
... Sorry? REPORT be definition isn't as bad as POST, being a safe method. Thus, it can *not* tunnel arbitrary methods, at least as long as the people using it...
Julian Reschke
JulianReschke
Offline Send Email
Jan 1, 2007
11:28 pm
7348
... I suspect PATCH is most effectively rephrased as it is now: a PUT of the entire resource rather than a diff file. For most use cases there just isn't...
Elliotte Harold
elharo@...
Send Email
Jan 2, 2007
12:08 am
7349
... Sorry - I used PATCH in that example without knowing the actual semantics. I think I had it confused with PROPPATCH. Or I was simply confused. I've been...
S. Mike Dierken
mdierken
Offline Send Email
Jan 2, 2007
3:00 am
7350
... PUT maybe I can live without; tunneling DELETE over POST is nauseating. But this thing about firewalls is a tad backways. Firewall admins don't really want...
Bill de hOra
bdehora
Offline Send Email
Jan 2, 2007
4:07 am
7351
... Not in HTTP. But you can express "Hesperus is Phosphorus" class equivalence with OWL using sameAs and you can expose a query service that can answer yes or...
Bill de hOra
bdehora
Offline Send Email
Jan 2, 2007
4:19 am
7352
... 'Cos if you had your firewall configured properly, you'd block POST first. cheers Bill...
Bill de hOra
bdehora
Offline Send Email
Jan 2, 2007
4:25 am
7353
... It doesn't. According to [1] (section 3.3), the '@' character is legal in the URI path and does not require escaping. Cheers, - Steve [1]...
Steve G. Bjorg
steve_bjorg
Offline Send Email
Jan 2, 2007
5:12 am
7354
... To do input validation. Let me explain: I'm currently pondering how to best deal with resources that are pure behaviors (i.e. only accept POST) in Dream,...
Steve G. Bjorg
steve_bjorg
Offline Send Email
Jan 2, 2007
5:23 am
7355
I've created a short tutorial on REST and some common resource/service patterns. The tutorial is based on my experience with designing the API for our...
Steve G. Bjorg
steve_bjorg
Offline Send Email
Jan 2, 2007
5:31 am
7356
... I didn't check rfc 2396, but rfc 3986 obsoletes it. Reading from "Reserved Characters" section[1] it appears that you should percent encode the '@' ...
Mike Schinkel
mikeschinkel
Offline Send Email
Jan 2, 2007
12:03 pm
7357
I've been reflecting a little on this issue with versioned resources and the fact that a straightforward PUT would not be idempotent (or at least not exactly),...
Chris Burdess
dog@...
Send Email
Jan 2, 2007
12:18 pm
7358
... When using DeltaV (RFC3744), a PUT will always be idempotent unless you enable auto-versioning. ... I would think so. The server would immediately send the...
Julian Reschke
JulianReschke
Offline Send Email
Jan 2, 2007
2:10 pm
7359
... I'm not familiar with with the original discussion, but why should a 302 be necessary? If I PUT several times to <http://example.com/mydocument>, is it ...
Benjamin Carlyle
fuzzybsc
Offline Send Email
Jan 2, 2007
2:24 pm
7360
... "@" is legal in most parts of a uri, since it is part of the pchar set. As for the RESTfulness or not of dream, I suppose I have some comments. I am...
Benjamin Carlyle
fuzzybsc
Offline Send Email
Jan 2, 2007
2:25 pm
7361
... Because the resource the client intended to update remains unapdated, thus the expectation implied by PUT fails and therfore a 2xx is inappropriate. ... ...
Jan Algermissen
algermissen1971
Offline Send Email
Jan 2, 2007
2:46 pm
7362
... Well, all the problems go away if the resource *is* changed. I have the feeling of "not-invented-here". Can anybody please explain why it's so bad to just...
Julian Reschke
JulianReschke
Offline Send Email
Jan 2, 2007
3:05 pm
7363
... Because it violates idempotency, see http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.2 'Silently' creating a new copy (on a public URI) as you...
Alan Dean
alan_james_dean
Offline Send Email
Jan 2, 2007
3:24 pm
7364
... The issue IMO is that the client needs no knowledge whatsoever about versioning, it just understands PUT and the server uses plain HTTP facilities...
Jan Algermissen
algermissen1971
Offline Send Email
Jan 2, 2007
3:33 pm
7365
... Can you please explain how that would work with existing clients that follow HTTP/1.1 with respect to not following redirects for unsafe methods?...
Julian Reschke
JulianReschke
Offline Send Email
Jan 2, 2007
3:49 pm
7366
... See the thread http://tech.groups.yahoo.com/group/rest-discuss/message/7254 ... It does seem to be a bit of a bone of contention. If we assume that ...
Chris Burdess
dog@...
Send Email
Jan 2, 2007
3:56 pm
7367
... The problem with this is that it only works with linear versioning; branching is not possible. Jan...
Jan Algermissen
algermissen1971
Offline Send Email
Jan 2, 2007
4:04 pm
7368
You are absolutely right!!! It was a logical error in my php code!!!! Thanks a lot for your support :) Now I have another problem, I don't know how to handle...
Stelios Eliakis
asoee20022003
Offline Send Email
Jan 2, 2007
4:20 pm
7369
... Are you refering to section 10.3? I am not sure how much this constraint is targeted towards software user agents (as it specificaly mentiones the user)....
Jan Algermissen
algermissen1971
Offline Send Email
Jan 2, 2007
4:24 pm
7370
This is from my log file 127.0.0.1 - - [30/Dec/2006:14:11:34 +0200] "DELETE /RestFull/in_user/1/ HTTP/1.1" 405 276 so there is a 405 error My php script runs...
Stelios Eliakis
asoee20022003
Offline Send Email
Jan 2, 2007
4:27 pm
7371
... Well, I personally think that a redirect here is the wrong approach. If only if user agents only may follow a redirect without user interaction if the...
Julian Reschke
JulianReschke
Offline Send Email
Jan 2, 2007
4:55 pm
Messages 7342 - 7371 of 14021   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help