Re: GWT PHP HTML 5 interaction

2009-10-08 Thread skorpiostinger
Great !!! I have already downloaded eclipse, gwt plugin for eclipse, Tomcat, ANT. Also I have Apache/PHP/MYSQL are up and running at my RHE 5 Linux server machine. The only conclusion I have right now how they would be interacting between each other. I do not want to maintain to servers

Re: GWT PHP HTML 5 interaction

2009-10-08 Thread skorpiostinger
Hi! In my case, I run PHP via Apache, and I use straightforward AJAX calls from GWT. PHP never knows about GWT; it just delivers XML or JSON. GWT doesn't mind about PHP; it just receives the XML or JSON data, processes it, and goes on. You won't need Tomcat (or JBoss or anything like that)

Re: GWT PHP HTML 5 interaction

2009-10-07 Thread Dominik Steiner
on our project our GWT frontend (running on tomcat) was talking with the php backend (on another server) via hessian protocol and it was working good. HTH Dominik On Oct 6, 11:26 am, Takalov Rustem takalov.rus...@gmail.com wrote: Hey Guys, I have been researching on GWT and PHP integration a

Re: GWT PHP HTML 5 interaction

2009-10-07 Thread Takalov Rustem
Thank you, Dominik for your prompt reply. It is sounds great to me. I have a feeling I could provide connection through the hessian web service to PHP application to get some of the services from the PHP/Apache application. Also I have researched in the web and found the Hessian PHP

Re: GWT PHP HTML 5 interaction

2009-10-07 Thread Dominik Steiner
Hi, to be honest I'm no php guy, so I'm not sure about the implementation details of the hessian control on php side. on gwt side you simply implement an interface, for example like this public interface HelpHessianService { public ListString getHelpTopics(String search);

GWT PHP HTML 5 interaction

2009-10-06 Thread Takalov Rustem
Hey Guys, I have been researching on GWT and PHP integration a while. The reason is - I need a simple, flexible client - side AJAX based Framework to develop and integrate web - based application into existing PHP application running @ Rackspace (Linux, PHP, MySQL). Is anyway to integrate GWT