MVC + Ajax Continued
Well I have been successful at implementing my ajax model into my MVC framework. I think over time it will change drastically, I ran into issues actually getting the asynchronous calls to pass through my front controller without throwing errors. The reason being, that ajax was not on my mind when I built the framework, so my MVC code is looking for a specific call structure that of course the ajax post packets do not follow.
My fix / workaround for this was to build a bypass layer that the MVC framework ignores allowing my ajax calls to pass through. I think future implementations of this will have a more seamless approach allowing my ajax calls to utilize the efficiency of the framework.
16 Oct 2007 vMonkey