Re: GWT with PHP

2020-09-03 Thread Thomas Broyer
GWT can be used with PHP the same as jQuery, Angular, React, Babel, TypeScript, etc. can be used with PHP. You won't be able to use GWT-RPC or RequestFactory to communicate with your server, but most people have moved away from these for new projects anyway: you can use GWT's RequestBuilder, ra

Re: GWT with PHP

2020-09-03 Thread poseidonjm
Hello In the past I made a small example of gwt and php and I wrote a blogpost https://vivagwt.blogspot.com/2012/12/gwt-and-php.html While the blog is outdated and the example code may not run but You could use it as reference. The example use GXT for UI and GWT's RequestBuilder and AutoBeans for

GWT with PHP

2020-09-03 Thread SIERRA ODC
Hi I noted that GWT can be used with PHP. Could you please share reference links of basic tutorial for using PHP with GWT. Thanks -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, sen

Re: Working in development mode in GWT with php

2010-01-18 Thread Thomas Broyer
On Jan 17, 8:33 pm, Djay wrote: > I have also the same problem. > On a global aspect, the question is how to setup the dev environment > (most of people using eclipse) with GWT and PHP? It's as easy as deploying your app *once* (to get the *.cache.js and hosted.html on your server) and then pas

Re: Working in development mode in GWT with php

2010-01-17 Thread 张扬
张扬 - Original Message - From: Djay To: Google Web Toolkit Sent: Monday, January 18, 2010 3:33 AM Subject: Re: Working in development mode in GWT with php I have also the same problem. On a global aspect, the question is how to setup the dev environment (most of people

Re: Working in development mode in GWT with php

2010-01-17 Thread Djay
I have also the same problem. On a global aspect, the question is how to setup the dev environment (most of people using eclipse) with GWT and PHP? On 7 jan, 02:34, dleins wrote: > I have ths exact problem with another JSON application using GWT > 2.0. > It works fine when compiled but the exact

Re: Working in development mode in GWT with php

2010-01-08 Thread dleins
I have ths exact problem with another JSON application using GWT 2.0. It works fine when compiled but the exact same code does not work in hosted mode. I am using SmartGWT, but do not think that is the problem... Doug On Jan 6, 7:35 pm, Skeezix wrote: > also when I compile and deploy the compile

Re: Working in development mode in GWT with php

2010-01-07 Thread FKereki
I'm guessing you are running into the "Same Origin Policy" problem -- your application (in development mode) connects to port , but your service is at port 8080. Your easiest way out would be using Internet Explorer, which is more lax regarding port changes. Good luck! F.Kereki -- You receiv

Re: Working in development mode in GWT with php

2010-01-06 Thread Skeezix
also when I compile and deploy the compiled output (inside the war folder) to the server, it operates properly...hope someone can help me set this up properly so i can test/debug my app without recompiling and uploading it to the server On Jan 6, 4:59 pm, Skeezix wrote: > Hi, >   I've recentl

Working in development mode in GWT with php

2010-01-06 Thread Skeezix
Hi, I've recently started on the "Client-Server Communication" part of the tutorial of GWT.I've done everything that is said in the "JSON" and "JSON - PHP" part of the tutorial, yet im unable to get the JSON data from the php script.My setup uses XAMPP and the Stockwatcher project is located at C

Re: Debuuging GWT with PHP as the back end cant talk to the server

2009-10-14 Thread Dimitrijević Ivan
When you set -noserver option and start debuging process, you should refresh your application. Aftrer that debuger will be avaliable. On Oct 14, 12:04 am, Ian Bambury wrote: > The easiest way to develop with PHP that I've found is to use -noserver and > -port to point to a lightweight web server

Re: Debuuging GWT with PHP as the back end cant talk to the server

2009-10-13 Thread Ian Bambury
The easiest way to develop with PHP that I've found is to use -noserver and -port to point to a lightweight web server with the document root set to your war directory. I use Abyss, but anything would work. That way, you keep everything in the project structure, don't have to use any workarounds, a

Re: Debuuging GWT with PHP as the back end cant talk to the server

2009-10-13 Thread Sripathi Krishnan
Yes, UI must talk to the same server. There are a few workarounds. You can use hidden iFrames or other techniques to load data from a different server. Or you can setup a proxy server. Or you can use flash to handle the communication for you. Just google up "Same Origin Policy Workarounds" -- you

Debuuging GWT with PHP as the back end cant talk to the server

2009-10-13 Thread tedpottel
Hi, I am writing a program using gwt for the ui and PHP for tbhe back end. I use the RequestBuilder to communicate with the back end. At first I had a simple text file to see if the RequestBuilder would worked, worked fine. I then change the url to point to my Apache webserver so I could test

Re: Gwt with php

2008-09-30 Thread John
On 9/29/08, stymie <[EMAIL PROTECTED]> wrote: > > Hi, > > I cannot figure out how to get gwt working with php on the server > side. I can describe my setup, if it helps. First, I have Xampp (linux, but Windows would be the same) set up on my computer, and apache is configured so that http://l

Re: Gwt with php

2008-09-29 Thread Ian Bambury
Forget the 'Framework.' bit I should have removed that. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscri

Re: Gwt with php

2008-09-29 Thread Ian Bambury
Another way to get PHP responses in hosted mode is like this Create the url... String url = Framework.getBaseUrlWithSlash() + filePathAndName; where getBaseUrlWithSlash() is public static String getBaseUrlWithSlash() { String url = GWT.getModuleBaseURL(); String base

Re: Gwt with php

2008-09-29 Thread Jim Freeze
On Mon, Sep 29, 2008 at 7:56 PM, stymie <[EMAIL PROTECTED]> wrote: > I cannot figure out how to get gwt working with php on the server > side. I know the tomcat server shell will not work. I am using eclipse > and gwt designer. > > Does anyone know of any good resources for getting gwt to work wit

Re: Gwt with php

2008-09-29 Thread Ian Bambury
RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, url); builder.setHeader("Content-Type", "application/x-www-form-urlencoded"); builder.sendRequest(parameters, callback); Ian http://examples.roughian.com 2008/9/30 stymie <[EMAIL PROTECTED]> > > Hi, > > I

Gwt with php

2008-09-29 Thread stymie
Hi, I cannot figure out how to get gwt working with php on the server side. I know the tomcat server shell will not work. I am using eclipse and gwt designer. Does anyone know of any good resources for getting gwt to work with php? Thanks --~--~-~--~~~---~--~~ Yo