Ajax forum??
Moderator: General Moderators
Ajax forum??
Ajax questions can sometimes be posted in PHP - Code, sometimes in Javascript. Note Luke's post in viewtopic.php?f=13&t=112234&p=591186#p591186. Would it make sense to have a separate Ajax forum to centralize all Ajax issues?
Re: Ajax forum??
I would say no because it overlaps existing forums we have. Ajax is a buzz word anyways. What about those using plain text, or JSON?
Also that thread is a recurring question. I don't think we should make a new forum just to house such a basic fundamental question (a simple search already turns up TONS of threads, do we need more?). In that thread the poster did not know what ajax even was at all. In that case he probably would have missed the ajax forum thinking its a dish cleaning substance
http://signaturesterling.files.wordpres ... 1/ajax.jpg
Also that thread is a recurring question. I don't think we should make a new forum just to house such a basic fundamental question (a simple search already turns up TONS of threads, do we need more?). In that thread the poster did not know what ajax even was at all. In that case he probably would have missed the ajax forum thinking its a dish cleaning substance
Re: Ajax forum??
Yes, it's really a mixture of client and server side technologies. If someone is having an issue, it's either one or the other.. and we do have forums for both.
Re: Ajax forum??
Idea for better name: Rich Internet Applications?
Re: Ajax forum??
Not to mention the more forums we have, the less clear it is which forum a question goes into.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Re: Ajax forum??
"Rich" could mean lots of graphics and flash. I think the odds are that an AJAX replacement is just around the corner and that it will be embraced fairly quickly.josh wrote:Idea for better name: Rich Internet Applications?
Re: Ajax forum??
Glad I asked.
I certainly can't disagree with any of those points. Just thought maybe it would make it easier for someone new to the forums to find discussions of Ajax related questions. Anyway, that's an interesting thought, about the possibility that Ajax may soon be replaced by something different.
Re: Ajax forum??
HTML 5 will supposedly provide a native API for server-client communication after page load. http://www.w3.org/TR/html5/comms.html#comms
Re: Ajax forum??
We really need a way to be able to PUSH data to the browser, rather than request or poll for it. I'm hedging my bets on that.
Re: Ajax forum??
The channel messaging is two-way - you can send and receive to/from the server / other clients. It remains to be seen how this would be implemented in practice.
Re: Ajax forum??
That scares me. Wouldn't that provide the baddies a whole new world of ways to annoy or attack us?astions wrote:We really need a way to be able to PUSH data to the browser, rather than request or poll for it. I'm hedging my bets on that.
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
Re: Ajax forum??
Most applications of comet are not real server push, it is mostly a hack to simulate it through either long-polling or periodic polling