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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 6359 - 6388 of 14029   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6359
I'm considering making different URL's for retrieval of a list of sites vs. one site (sites are actual locations on the ground in my scenario): List of sites:...
Scott Chapman
chappie_mischko
Offline Send Email
Aug 1, 2006
8:27 pm
6360
Hi Scott, The same question came up a couple weeks ago -- you'll find several different opinions. But all were agreed that REST itself doesn't suggest one or...
Justin T. Sampson
justin_t_sam...
Offline Send Email
Aug 1, 2006
9:37 pm
6361
I think he was asking not only for a resource that is a collection, but also the client providing an explicit list of data elements to return. Although I...
S. Mike Dierken
mdierken
Offline Send Email
Aug 2, 2006
4:36 am
6362
Hi, I know it is a repeating topic how to correctly authenticate a client to a REST interface. Please first note, if I talk about client I do not mean browser,...
Sebastian Stein
steinchen802002
Offline Send Email
Aug 2, 2006
5:34 pm
6363
Hi Sebastian, We have a (very) little experience in providing web services as a finantial institution. We provide services to other financial institutions. We...
Miguel Covas O'Ryan
miguel.covas@...
Send Email
Aug 2, 2006
7:04 pm
6364
... I think it is not the problem to generate HTTP auth, but to handle it. But I might be wrong. On the server side I have a Tomcat handling the requests in a...
Sebastian Stein
steinchen802002
Offline Send Email
Aug 2, 2006
7:57 pm
6365
... Thanks for this lengthy description of your experience. I think it is the way I intended to go. I will first again check if HTTP auth might work, but if it...
Sebastian Stein
steinchen802002
Offline Send Email
Aug 2, 2006
8:01 pm
6366
Tomcat gives several options for implementing and patching in your own notion of "realm". Check the tomcat docs. Should be no problem. ... I ... in ... ...
Walden Mathews
waldenmathews
Offline Send Email
Aug 2, 2006
8:17 pm
6367
... Perhaps the discussion is going off topic, but anyway, as far as I know you can always retrieve the user / password even the Tomcat is handling the...
Miguel Covas O'Ryan
miguel.covas@...
Send Email
Aug 2, 2006
8:17 pm
6368
... I believe it can be configured either way, and potentially differently depending on the URL path. Our application handles all authentication inside Tomcat...
John Panzer
zwyrthrop
Offline Send Email
Aug 2, 2006
8:19 pm
6369
... HTTP Basic auth is definitely the way to go. If your framework doesn't help you, in the worst case you can just read and parse the Authorization header...
Justin T. Sampson
justin_t_sam...
Offline Send Email
Aug 2, 2006
8:58 pm
6370
... Any reason why not PUT? ... We've implemented just that using C# and Java restlets. Gives normal client login. ... We've done it as part of the application...
Dave Pawson
dpawson2000
Offline Send Email
Aug 3, 2006
6:54 am
6371
... HTTP Basic offers zero security unless encryption is coming from somewhere else (SSL). HTTP Digest is the way to go if you aren't going over a secure...
Jon Hanna
hack_poet
Offline Send Email
Aug 3, 2006
2:25 pm
6372
I am conducting research into the practices of enterprise architecture and software development and would love your participation. The URL to the survey is:...
jm04469
Offline Send Email
Aug 4, 2006
1:01 pm
6373
If hitting a URL with GET is supposed to give you a view of the resource and it's not a form by default, then how to do you get a <form...> view of it for ...
Scott Chapman
chappie_mischko
Offline Send Email
Aug 5, 2006
5:04 pm
6374
Scott, IMO forms should either be discovered while the client proceeds through the application's state machine or the MIME type that supports the desired...
Jan Algermissen
algermissen1971
Offline Send Email
Aug 5, 2006
7:06 pm
6375
... Not sure what you mean exactly. Any representation of a resource can contain a form if the data format supports it. If you want to edit the...
Mark Baker
gonga_thrash
Online Now Send Email
Aug 5, 2006
7:12 pm
6376
Jan, What I'm really interested in is how you handle this RESTfully? What URL should you hit to get the form to edit the resource. Say your resource is at: ...
Scott Chapman
chappie_mischko
Offline Send Email
Aug 5, 2006
7:28 pm
6377
... No sure I understand what you mean by 'this'. Can you explain. ... Either the MIME type prescribes this (like Atom PP defines that POSTing to collections...
Jan Algermissen
algermissen1971
Offline Send Email
Aug 5, 2006
7:50 pm
6378
... 1. You don't NEED to do that. There are other ways to change resources apart from a FORM. You can have some AJAX PUT something for example. 2. If you need...
Nic James Ferrier
nferrier_tap...
Offline Send Email
Aug 5, 2006
9:20 pm
6379
Scott, I know exactly what you were asking. Since these other guys are waxing too theoretical, I'm stepping in with some practical examples. :) 1. In my...
Jeoff Wilks
jeoffw
Offline Send Email
Aug 5, 2006
9:49 pm
6380
... This = the situation where you want the server to provide you with a <form> representation of the resource. ... So when I send a xmlhttprequest GET to the...
Scott Chapman
chappie_mischko
Offline Send Email
Aug 5, 2006
11:10 pm
6381
... Hitting /entries/1 with GET would give me back a xhtml view of the resource in non-editable form, just straight xhtml. I need to know how to hit a given ...
Scott Chapman
chappie_mischko
Offline Send Email
Aug 5, 2006
11:15 pm
6382
... Right, but in the case where you're using a FORM to do it, how do I GET that form? GETing the resource usually returns a 'view-only' version of it. There...
Scott Chapman
chappie_mischko
Offline Send Email
Aug 5, 2006
11:17 pm
6383
... These appear to me to not be RESTful. I understand that you're supposed to use only one URL for a resource whether to view, update, or delete it. Perhaps...
Scott Chapman
chappie_mischko
Offline Send Email
Aug 5, 2006
11:21 pm
6384
... I don't believe REST constrains a resource's state to being manipulated through its URL only. Given that GET and POST are the only HTTP methods reliably...
Adam Ratcliffe
adamratcliff...
Offline Send Email
Aug 5, 2006
11:47 pm
6385
... That is certainly one way. You don't NEED to turn the FORM off either. I have an accounting system that I wrote RESTfully. There is a url: /account/ which...
Nic James Ferrier
nferrier_tap...
Offline Send Email
Aug 6, 2006
12:06 am
6386
... But there's nothing to say that the page that the edit request COMES FROM has to be the resoure that is being edited. So your FORM could be written on any...
Nic James Ferrier
nferrier_tap...
Offline Send Email
Aug 6, 2006
12:06 am
6387
... I understand all the HTTP methods (GET, POST, PUT, DELETE, HEAD, ?) can be done correctly using xmlhttprequest in all modern browsers. Is this incorrect? ...
Scott Chapman
chappie_mischko
Offline Send Email
Aug 6, 2006
12:07 am
6388
Unfortunately not. Safari transparently converts PUT and DELETE requests into GETs. Cheers Adam...
Adam Ratcliffe
adamratcliff...
Offline Send Email
Aug 6, 2006
12:20 am
Messages 6359 - 6388 of 14029   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