Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a Computer Science Student. This academic semester I'm starting to study XML, DOM, and Web Services. I have a project to do, and can anyone of you give me an idea where a Web Service would fit in?

Last semester, studying basic web concepts (HTML,CSS,Javascript,PHP,AJAX) I did a project on a restaurant. Do you think this title would still fit in as a web service?

I don't need a title which is not so much complicated like google maps or anything like that (Not too simple too). I just need a title where I can apply a web service where I can make quite a good use of it.

I'll be using WSDL, SOAP, REST as web service.

share|improve this question

closed as not a real question by Juhana, FelipeAls, Mark O'Connor, Celada, Derek Kromm Aug 29 '12 at 4:05

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

How about a javascript/jQuery/Ajax web client that could run on an iPad or smart phone, that is held by restaurant waiters.

The waiters enter table orders into the webpage, which makes an ajax call (JSON) to a REST based web service.

There could even be a callback when the chef has completed the order?

share|improve this answer

If you have a restaurant project using AJAX, you are one step from turning it into a REST API. You'll learn what REST is, just make your AJAX services use JSON XML and proper HTTP verbs. You're done.

For SOAP part read about APIs (all major web sites provide an API these days). Provide SOAP web services so that other systems can use your restaurant project (whatever it does). Think about desktop or mobile client, other web site, etc.

share|improve this answer
He said hes studying XML though. So he would just need to use Dojo rather than JQuery. – Corwin01 Aug 28 '12 at 17:23
@Corwin01: thanks, fixed my answer. But what has jQuery/Dojo to do here? Neither me nor OP is mentioning about it. Easier XML parsing? – Tomasz Nurkiewicz Aug 28 '12 at 17:25
Pretty much, yea. From everything I've heard JQuery is built to deal with JSON, and Dojo is one of the few frameworks that was built to deal with XML. – Corwin01 Aug 28 '12 at 17:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.