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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 5125 - 5155 of 14021   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5125
Hi, I am just getting into this REST thinking, and kicking around theoretical questions and basic puzzlers seems to help tremendously in getting the thinking...
Dimitri Glazkov
dimitriglazkov
Offline Send Email
Jul 8, 2005
12:41 pm
5126
... The state of the resources is unchanged....
Jon Hanna
hack_poet
Offline Send Email
Jul 8, 2005
12:52 pm
5127
... No, because it is the state of the resource on which you invoke GET that matters. Jan ... ...
Jan Algermissen
algermissen1971
Offline Send Email
Jul 8, 2005
12:54 pm
5128
... What if my resource is the list of server log entries? I know I am getting into nitpicking here, but this is a mission of learning for me, so nitpicking is...
Dimitri Glazkov
dimitriglazkov
Offline Send Email
Jul 8, 2005
12:58 pm
5129
... Going back to what RFC 2616 says (in section 9.1.1): "Naturally, it is not possible to ensure that the server does not generate side-effects as a result of...
Jim Ancona
scarhill
Offline Send Email
Jul 8, 2005
1:17 pm
5130
... Then you could have a RESTfull interface to it. But a server log entry's production would not be part of the RESTfull interface since the log is coming...
Nic Ferrier
nferrier_tap...
Offline Send Email
Jul 8, 2005
1:28 pm
5131
The safety of GET is not an interoperability requirement (and therefore not a MUST), since the client still gets their data if the server changes state as a...
Mark Baker
gonga_thrash
Offline Send Email
Jul 8, 2005
1:46 pm
5132
There is of course a difference between logical and physical models of what a computer is doing......
Jon Hanna
hack_poet
Offline Send Email
Jul 8, 2005
1:51 pm
5133
... This makes sense. Thanks for pointing this out....
Dimitri Glazkov
dimitriglazkov
Offline Send Email
Jul 8, 2005
1:58 pm
5134
Hi all, When you're passing representations around - let's say you have defined some XML dialects - should you err on the side of defining new MIME types for ...
Hugh Winkler
hwinkler99
Online Now Send Email
Jul 10, 2005
3:55 am
5135
In my experience, we had a specific XML-based file type that, when downloaded by the user, needed to be opened in a specific application. Initially we tried...
Jeoff Wilks
jeoffw
Offline Send Email
Jul 10, 2005
12:33 pm
5136
Hmmm. There have been long and noisy discussion about how user agents should handle content with a specified content-type. Some developers want the client...
S. Mike Dierken
mdierken
Offline Send Email
Jul 10, 2005
7:05 pm
5137
... A new media type is the only way to maintain self-descriptive messages. ... Probably a good idea. Better would be "don't do that". 8-) ... The issue is...
Mark Baker
gonga_thrash
Offline Send Email
Jul 11, 2005
2:43 pm
5138
Is it a great sin if a server implementation does something like this: GET /test/test.html returns Content-Type: text/html GET /test/test.html?type=xml return...
Dimitri Glazkov
dimitriglazkov
Offline Send Email
Jul 15, 2005
2:17 pm
5139
Conceptually, the content doesn't stay the same, even if the message body is byte-to-byte identical. So, no problem here that I can see....
Jon Hanna
hack_poet
Offline Send Email
Jul 15, 2005
2:38 pm
5140
Which of the implementations "feels" better?...
Dimitri Glazkov
dimitriglazkov
Offline Send Email
Jul 15, 2005
2:51 pm
5141
... Neither feel good to me, If a resource is HTML, then you should it's content-type should be HTML. If it's some XML other than XHTML or well-formed HTML...
Nic Ferrier
nferrier_tap...
Offline Send Email
Jul 15, 2005
3:08 pm
5142
... HTML is only sometimes XML. If the HTML has one of the W3 DTDs it is likely that it is not XML compliant. Having said that, it is possible to produce...
Nic Ferrier
nferrier_tap...
Offline Send Email
Jul 15, 2005
3:09 pm
5143
... I probably should've stated more clearly in my original post: the body of response is indeed XHTML. I am trying to work around a very specific issue, which...
Dimitri Glazkov
dimitriglazkov
Offline Send Email
Jul 15, 2005
4:06 pm
5144
here's some ideas to share.. In the _ideal_ REST world, a good resource identifier, URL should not contain representation-specified information, "Accept"...
Stupid idiot
iamstupidiot
Offline Send Email
Jul 17, 2005
4:05 pm
5145
... It's quite obvious as Jan said, a better alternative would be providing a search form, ex. https://example.com/Customer/searchForm and use to POST plus...
Stupid idiot
iamstupidiot
Offline Send Email
Jul 17, 2005
4:15 pm
5146
... This is all very good advice. Remember though, that REST is *really* useful for webservices where HTML is not an issue. If you're designing a web...
Nic Ferrier
nferrier_tap...
Offline Send Email
Jul 17, 2005
6:50 pm
5147
... Yes, the entire HTTP interaction is encrypted when running over SSL. The URL is still displayed in the browser, though. And of course the entire request...
Justin T. Sampson
justin_t_sam...
Offline Send Email
Jul 18, 2005
2:29 am
5149
Currently, I'm working on a PHP5 framework which implements REST in design. Hopefully, it will provide an easier way to build RESTful web applications. The...
iamstupidiot
Offline Send Email
Jul 18, 2005
3:15 pm
5150
I've noticed these cases are not the correct way to deal with content negotiation after started to read HTTP/1.1 spec in details yesterday. i'm now seeking for...
Stupid idiot
iamstupidiot
Offline Send Email
Jul 19, 2005
12:40 am
5151
... Could you post the details of your research here? I am very interested in this topic, as well. ... The browsers don't, but the XMLHttpRequest allows that...
Dimitri Glazkov
dimitriglazkov
Offline Send Email
Jul 19, 2005
1:05 am
5152
... i'm doing a study on practical REST implementation in current web application. IMHO, it might be a good start to introduce REST to public, by showing...
toydi
iamstupidiot
Offline Send Email
Jul 19, 2005
3:07 am
5153
... In what way were the scenarios you outlined incorrect? ... I'd say Accept is the way to do it... but a browser is primarily an HTML rendering tool. I'm not...
Nic Ferrier
nferrier_tap...
Offline Send Email
Jul 19, 2005
4:19 am
5154
... I'm still trying to study more details about content negotiation in HTTP/1.1 But as far as i know now, an appropriate way for server to handle Accept tag...
toydi
iamstupidiot
Offline Send Email
Jul 19, 2005
9:41 am
5155
... Ah right... I see. Clearly the Accept header applies to any HTTP client. I don't think that makes your examples wrong. ... No. I don't think <a...
Nic Ferrier
nferrier_tap...
Offline Send Email
Jul 19, 2005
10:49 am
Messages 5125 - 5155 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