Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does GWT support php?

Tags:

php

gwt

does GWT support php ?

like image 291
Harsha M V Avatar asked Jul 06 '10 05:07

Harsha M V


2 Answers

Useful links:

  • http://www.ibm.com/developerworks/xml/library/x-gwtphp/ (07 Apr 2009 )

and

  • http://www.gwtphp.com/
  • http://sourceforge.net/projects/gwtphp/)
  • http://code.google.com/p/gwtphp/

Havent used, so I can't tell if it's any good

like image 143
Gordon Avatar answered Oct 12 '22 15:10

Gordon


To a certain extent, yes.

The heart of GWT is some magic for converting Java source code for a Web client into JavaScript. There's no wiggle room there; it's either Java or nothing.

But a GWT-translated client can interoperate with a server written in any language. You'd be missing out on some of the special remote calling capabilities offered by the GWT framework, but if you're willing to transfer XML or JSON back and forth, a PHP-based server could work with your Java/JavaScript-based client.

like image 24
Carl Smotricz Avatar answered Oct 12 '22 16:10

Carl Smotricz