Url rewrite, how?

2009-07-19 Thread Paulo Coutinho
Hi, how i can use url rewrite on GWT ? for example: www.prsolucoes.com/t...@gmail.com or www.prsolucoes.com/my/test -- Atenciosamente, Paulo Coutinho. Blog: www.prsolucoes.com/blog Site: www.prsolucoes.com Msn: pa...@prsolucoes.com --~--~-~--~~~---~--~~

Re: Determine implemented interfaces

2009-07-19 Thread Kwhit
And Class.isAssignableFrom. --~--~-~--~~~---~--~~ 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 unsubscribe from this group, send

Re: GWT 1.7.0

2009-07-19 Thread Gert Scholten
The javadoc suggests you to use .getTextBox.addClickHandler(). http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/SuggestBox.html#addClickListener%28com.google.gwt.user.client.ui.ClickListener%29 On Jul 18, 10:44 pm, twdarkflame darkfl...@gmail.com wrote: ah,

gwt + email

2009-07-19 Thread Petein
Hi. I made an RPC for sending an email this is the Impl file: package faceRecognition.server; import com.google.gwt.user.server.rpc.RemoteServiceServlet; import faceRecognition.client.EmailService; import faceRecognition.server.Email.SendMail.Gmail; @SuppressWarnings(serial) public class

Re: Creating Stand Alone Composite??

2009-07-19 Thread Nuno
If you create a new project with a module, dont add any entrypoint to this module.Then create all the composites you want in this module. after you may create a jar file of this project (to use anywhere) or you can just import this project into yours (click properties - java build path - projects

Re: Callin an URL from my application

2009-07-19 Thread Jeff Chimene
On 07/18/2009 09:54 AM, samuel wrote: Hi Group, I have a requirement where I am making use of an URL for sending mails. Some thing like this http://www.examplemailsending.com/messageapi.asp?username=usernamepassword=passworddestination=A1,A2,A3message=Hi Hi Abhiram, Would it be

How to persist data

2009-07-19 Thread Pham Tran Quoc Viet
Hi,I have a config.xml file that contains stuffs like domain name, username, password, connection string. This file is loaded into a signleton when the web application first contacts the server. How do I persist the signleton so that the app does not have to reread the xml file in the next

Re: How to persist data

2009-07-19 Thread Jeff Chimene
On 07/19/2009 11:37 AM, Pham Tran Quoc Viet wrote: Hi, I have a config.xml file that contains stuffs like domain name, username, password, connection string. This file is loaded into a signleton when the web application first contacts the server. How do I persist the signleton so that the

Re: How to persist data

2009-07-19 Thread Paul Grenyer
Singletons are evil. Sent from my Archimedes A3000 -Original Message- From: Jeff Chimene jchim...@gmail.com Date: Sun, 19 Jul 2009 12:15:35 To: Google-Web-Toolkit@googlegroups.com Subject: Re: How to persist data On 07/19/2009 11:37 AM, Pham Tran Quoc Viet wrote: Hi, I have a

Re: how to inherit external module jxl ? Problems working with excel sheets

2009-07-19 Thread Dalla
You could do this using a file upload to the server, do the excel work on the server side and then serialize the data and send it back to the client, displaying it in any way you want using GWT. --Dalla http://date-time.appspot.com/ On 17 Juli, 03:19, sly sly.wicker...@gmail.com wrote: So is

Re: HTML.getElement.setAttribute(style, background-color:...) not working in IE

2009-07-19 Thread bconoly
Awesome, thanks for the help, that should be exactly what I need. Another issue i was having was dealing with adding EventHandlers to certain elements such as the TableRowElement. Do you happen to know of a utility or something that I just can't find that I can use? I have a post at

Standard JSP + GWT Usage

2009-07-19 Thread Vince
Hello, My intro is a bit long but it would explain my case. Pls bear with me... Many thanks... I've started experimenting on a JSP + GWT coupling as part of a project I'm doing. This together with Struts 2.0 is a part of a project initiative that would expand the use of rich UI within a

Re: Callin an URL from my application

2009-07-19 Thread Donald W. Long
Hi, I had a similar issue and this is how I was shown to do it. public native void gotoURLscript(String url) /*-{ open(url); }-*/; Usage: public void gotoURL(String url) { gotoURLscript(URL.encode(url)); }

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-07-19 Thread Eduardo Nunes
For everyone following this thread, I would recommend to take a look in the presenter's implementation created by David http://gwt-presenter.googlecode.com I'm taking a look on it too, and it seems to be very interesting. I will port my little application as a proof concept. As soon as possible

Re: Hooking a GWT event onto an element in an external iframe

2009-07-19 Thread Mat Gessel
Hi Tin, There is a potential for memory leaks via event listeners due to cyclical references between DOM and JS. To avoid this, GWT manages the event listeners via the Widget lifecycle. When the widget is attached to the DOM (i.e. it or it's ancestor is attached to a RootPanel) the widget's

[gwt-contrib] noserver should be, well, -noserver

2009-07-19 Thread fabbott
Reviewers: Lex, jat, Description: Minor (but significant!) typo from r5094... Passes on my XP box, at least. Please review this at http://gwt-code-reviews.appspot.com/47821 Affected files: user/build.xml Index: user/build.xml

[gwt-contrib] [google-web-toolkit commit] r5752 - Checkstyle comment fix.

2009-07-19 Thread codesite-noreply
Author: fabb...@google.com Date: Sun Jul 19 09:52:17 2009 New Revision: 5752 Modified: trunk/user/test/com/google/gwt/core/client/impl/AsyncFragmentLoaderTest.java Log: Checkstyle comment fix. Modified: trunk/user/test/com/google/gwt/core/client/impl/AsyncFragmentLoaderTest.java

[gwt-contrib] [google-web-toolkit commit] r5753 - Checkstyle comment fixes (period on first sentence, a few extra @params).

2009-07-19 Thread codesite-noreply
Author: fabb...@google.com Date: Sun Jul 19 11:17:55 2009 New Revision: 5753 Modified: trunk/dev/core/src/com/google/gwt/core/ext/linker/CompilationResult.java trunk/user/src/com/google/gwt/dom/client/Document.java trunk/user/src/com/google/gwt/rpc/server/RpcServlet.java

[gwt-contrib] Re: noserver should be, well, -noserver

2009-07-19 Thread knorton
lgtm. http://gwt-code-reviews.appspot.com/47821 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r5754 - Making test.noserver actually use -noserver.

2009-07-19 Thread codesite-noreply
Author: fabb...@google.com Date: Sun Jul 19 11:38:45 2009 New Revision: 5754 Modified: trunk/user/build.xml Log: Making test.noserver actually use -noserver. Review by: knorton Modified: trunk/user/build.xml ==

[gwt-contrib] Re: Trouble building GWT 2.0 from svn

2009-07-19 Thread Kango_V
Same as Brett, that's all you need. Using ant 1.7.1 java 6u14 amd64. On Jul 19, 4:01 am, brett.wooldridge brett.wooldri...@gmail.com wrote: Not sure what the problem is.  This is all I did (literally): mkdir gwt-trunk cd gwt-trunk svn