Google reCAPTCHA v.2 && GWT-PHP application

2017-04-19 Thread 'gitzzz87' via GWT Users
Hello, I want to create a login form in my GWT project using Google reCAPTCHA v.2. Is it possible to use Google reCAPTCHA v.2 in my GWT-PHP application without using servlets? Only HTTP requests. Any ideas? I tried to use a FormPanel and a submit button that make a request to my php file via

Re: GWT + PHP

2013-05-10 Thread Tim Hill
I have been using RestyGWT in my project with success - pretty good too, once I got my head around it!! On Thursday, 9 May 2013 15:11:42 UTC+1, Larissa Costa wrote: Good morning! I have a php script like this: *? php* * for ($ i = 1, $ i = 10, $ i + +) {* * echo Line. $ i.

GWT + PHP

2013-05-09 Thread Larissa Costa
Good morning! I have a php script like this: *? php* * for ($ i = 1, $ i = 10, $ i + +) {* * echo Line. $ i. br;* * }* *?* And a variable in my GWT code: *String = **responsePHP = ;* Is there a simple way (or not) to get the response from PHP script and put in variable GWT?

Re: GWT + PHP

2013-05-09 Thread Juan Pablo Gardella
Try with http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/i18n/client/Dictionary.html . 2013/5/9 Larissa Costa larissa.n.co...@gmail.com Good morning! I have a php script like this: *? php* * for ($ i = 1, $ i = 10, $ i + +) {* * echo Line. $ i. br;*

Re: GWT + PHP

2013-05-09 Thread Larissa Costa
Sorry Juan, But I want to get the response from PHP script. This PHP script is only a sample. 2013/5/9 Juan Pablo Gardella gardellajuanpa...@gmail.com Try with http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/i18n/client/Dictionary.html . 2013/5/9 Larissa Costa

Re: GWT + PHP

2013-05-09 Thread Alberto Mancini
Hi, if you need to call the php script from a GWT app and get the response you may use RequestBuilder: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/http/client/RequestBuilder.html look at

Re: GWT + PHP

2013-05-09 Thread Israel Erick Limachi Ortiz
El 09/05/2013 10:14, Alberto Mancini ab.manc...@gmail.com escribió: Hi, if you need to call the php script from a GWT app and get the response you may use RequestBuilder: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/http/client/RequestBuilder.html look at

Re: GWT + PHP

2013-05-09 Thread Israel Erick Limachi Ortiz
Example gwt+php http://www.merpf.com.ar/download/gwt/ El 09/05/2013 12:51, Israel Erick Limachi Ortiz israel.er...@gmail.com escribió: El 09/05/2013 10:14, Alberto Mancini ab.manc...@gmail.com escribió: Hi, if you need to call the php script from a GWT app and get the response you may use

need help in GWT, PHP, response getStatusCode()

2011-06-16 Thread Zhanibek
Hello to everyone! I communicate PHP with GWT using json on my wamp, status code of response is 200. everything is works fine. but when i upload to host Status code of response become 406(not acceptable) and gives me the following message: !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN htmlhead

gwt + php + mysql = confusion?

2010-05-18 Thread dino
Every time I learn something new I want to make as much applications as possible just to test myself and become a bit more experienced. I want to make a simple flex table binded to a database via php. I have already a php script reading my whole database and parsing it into json format. The flex

gwt + php + mysql = confusion?

2010-05-18 Thread dino
Always when I learn something new I make as much as possible applications to test myself and to get a little bit better. The goal of my current project is to have a flextable filled with records from a mysql database you can edit and as you are typing it gets submitted into the database. the back

Re: gwt + php + mysql = confusion?

2010-05-18 Thread Christian Goudreau
Don't worry, I have it... twice :) Christian On Tue, May 18, 2010 at 2:37 PM, dino dinos...@gmail.com wrote: Always when I learn something new I make as much as possible applications to test myself and to get a little bit better. The goal of my current project is to have a flextable filled

Re: gwt + php + mysql = confusion?

2010-05-18 Thread Blessed Geek
Response from GWT RPC is asynchronous. Asynchrony (condition of being asynchronous), is a desirable form of communication between browser and server because it allows avoiding your web page from becoming unresponsive while waiting for the response from the server. Therefore, you have to take

Re: gwt + php + mysql = confusion?

2010-05-18 Thread dino
@christian goudreau thank you very much :) @blessed geek I find more often a server with php support then servlets support. my host doesn't support servlets but I'll consider it. because I only have to transfer plain text and not any serious calculations on the server side, its not a problem I'll

Re: gwt + php + mysql = confusion?

2010-05-18 Thread Blessed Geek
I don't understand why you would face a problem. Isn't your json response like this { cell5:bigtoe, cell12:smalltoe } so that, you know which cell to update when the response comes back. And you might even consider a similar param-value pair json structure when the client sends the request to

gwt php hosted mode

2010-02-27 Thread mibtar
hi, i want to use php in hosted mode. this link is really confusing: http://code.google.com/webtoolkit/doc/1.6/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT%27s is there a more detailed set of instructions, or probably a tutorial to do this? i've really

Re: gwt php hosted mode

2010-02-27 Thread mibtar
i'm using gwt 2.0 and netbeans -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

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

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

GWT, PHP, HTML 5

2009-10-06 Thread skorpiostinger
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

glassfish,gwt,php

2009-08-26 Thread Bhayat
ı made configration my glassfish server to use php and gwt,but i dont know how can i get or post from gwt to php. how can i do that ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

glassfish,gwt,php

2009-08-26 Thread Bhayat
ı made configration my glassfish server to use php and gwt,but i dont know how can i get or post from gwt to php. how can i do that ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

glassfish,gwt,php

2009-08-26 Thread Bhayat
ı made configration my glassfish server to use php and gwt,but i dont know how can i get or post from gwt to php. how can i do that ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: GWT+PHP

2009-02-24 Thread keyur1277
Thanks. there is one more issue with 1.5.3 wrt same origin restrictions. have by passed by modifying gwt.xml for the timebeing. On Feb 23, 11:09 am, Mahavir Jain vir.j...@gmail.com wrote: Try giving absolute path and not relative path.. GWT runs tomcat on port while LAMP runs on 8080.

Re: GWT+PHP

2009-02-22 Thread Mahavir Jain
Try giving absolute path and not relative path.. GWT runs tomcat on port while LAMP runs on 8080. if your PHP file is on LAMP /www/test/myfile.php then give absolute url like this.. http://localhost/test/myfile.php This is the best way as PHP hosting is cheap.. client side in GWT. server

Re: Help with GWT + PHP + Eclipse setup

2009-01-18 Thread Arthur Kalmenson
Have you tried putting the server side PHP code into a separate project? Have one project for the client side GWT code and one project for the server side PHP code. That might help with the debugging problem too. -- Arthur Kalmenson On Fri, Jan 16, 2009 at 8:46 AM, ScoPi skn...@gmail.com

Re: Help with GWT + PHP + Eclipse setup

2009-01-18 Thread Tom Schindl
You only need to open the .project-file and add the missing pdt-nature to it though I'm not sure if this will have any side effects. We are doing GWT+PHP development by having 2 projects where and the GWT one sources in the PHP-Files by using Subversions svn:externals. Tom Arthur Kalmenson

Help with GWT + PHP + Eclipse setup

2009-01-16 Thread ScoPi
I have a good setup in Eclipse for debugging the client-side of a GWT application that uses Apache/PHP on the backend. However, I can't figure out how to debug the server-side PHP from Eclipse as well. I do have the PDT installed (PHP Development Tools), but since the GWT application creator

Re: Gwt Php Framework

2008-10-06 Thread Kango_V
We are still writing the the back end of our app at the moment, so have not made a decision on which client api to use. Currently we are leaning towards GwtExt (GXT), but like the look of your framework. We have some questions: 1. Are you still on target for an end of October release? 2. Can

Re: Gwt Php Framework

2008-09-03 Thread MN
did you have a special layout for the google chrome browser and IE6? (i not see in chrome a desktop. only the start-menu as a static navigation and each frame as a part of the right content with no windows style) how did you solve this different layouts? On 2 Sep., 17:13, Andrej [EMAIL

Re: Gwt Php Framework

2008-09-02 Thread MN
i think your framework could be in seperate 2 frameworks, because there are have diffenet goals: one for the GUI Widgets one for the php server part On 2 Sep., 12:38, Andrej [EMAIL PROTECTED] wrote: Hi Alex, 1. What are your reasons for coding server side in PHP? Didn't you use GWT's RPC

Re: Gwt Php Framework

2008-09-02 Thread Alejandro D. Garin
Hi Andrej How do you serialize Java objects to and from JSON ? GWTApps in the Database Editor example uses a very nice technique to do that but It works with gwt 1.4. Thanks. On Tue, Sep 2, 2008 at 7:38 AM, Andrej [EMAIL PROTECTED] wrote: Hi Alex, 1. What are your reasons for coding

Re: Gwt Php Framework

2008-09-02 Thread Andrej
Hi Алексей, I'm sorry I don't speak Russian; this group language is English. Andrej On Sep 2, 10:21 am, Junnyjourney [EMAIL PROTECTED] wrote: Андрей, привет. у тебя есть онлайн контакты? Простоинтересно было бы пообщатся по поводу вашей разработки. Спасибо. Алексей On 28 авг, 22:05,

Re: Gwt Php Framework

2008-09-02 Thread Junnyjourney
Андрей, привет. у тебя есть онлайн контакты? Простоинтересно было бы пообщатся по поводу вашей разработки. Спасибо. Алексей On 28 авг, 22:05, Andrej [EMAIL PROTECTED] wrote: Hi, I'd like to introduce our new web application framework called GPF (Gwt Php Framework). Server part is completely

Re: Gwt Php Framework

2008-08-29 Thread Andrej
Hi Vivek, All GUI elements are part of our GPF framework, written using GWT (no JSNI). I plan to post our experiences/solutions with data exchange, multilanguage support, template/theme system, etc... used in our GWT-PHP applications. Andrej On Aug 29, 7:34 am, Vivek Singhwal [EMAIL

Re: Gwt Php Framework

2008-08-29 Thread Vivek Singhwal
Hi Andrej, When are you planning to release GPF framework? It is going to be open source? Vivek --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Gwt Php Framework

2008-08-29 Thread jhulford
support, template/theme system, etc... used in our GWT-PHP applications. Andrej On Aug 29, 7:34 am, Vivek Singhwal [EMAIL PROTECTED] wrote: Hi, Fantastic, Are you using any GUI framework (like GWT-EXT) along with GWT? We earlier tried using GWT-EXT with PHP at server but somehow

Re: Gwt Php Framework

2008-08-29 Thread Roger Marin
The widgets are awesome! perhaps the most slick GWT UI i've seen so far. congrats! 2008/8/28 Andrej [EMAIL PROTECTED] Hi, I'd like to introduce our new web application framework called GPF (Gwt Php Framework). Server part is completely written in PHP5. We plan to release it as soon as we

Re: Gwt Php Framework

2008-08-28 Thread Vivek Singhwal
-- From: Andrej [EMAIL PROTECTED] Date: Fri, Aug 29, 2008 at 12:35 AM Subject: Gwt Php Framework To: Google Web Toolkit Google-Web-Toolkit@googlegroups.com Hi, I'd like to introduce our new web application framework called GPF (Gwt Php Framework). Server part is completely written in PHP5