I am designing a Java web application that makes heavy use of AJAX (for user experience - no reloads, etc.). I also have the need to expose a large number of web services because there will be many different clients (not just web browsers) connecting to the JEE backend.
This got me thinking that it might just make sense for my AJAX XmlHttpRequests to somehow (magically) envelope a SOAP message and talk directly with my existing web servers, so I'm not writing duplicate code. Although I don't really know how I'll do that at this point, I know its possible because I've already found a few articles on doing just that.
I'm not concerned with whether or not I can have AJAX content post to a Java web service; I'm concerned with whether or not I should be doing this.
Is this a discouraged practice? Are there security vulnerabilities or performance issues I need to be aware of? It makes sense to do this from a reusability and system consistency point of view, but I'm neither an AJAX or JEE expert to know any better here.
I guess I'm just interested in some educated opinions. And, as always, thanks!