Re: help : Search engine

2010-02-11 Thread Cristian Nicanor Babula
GWT is javascript. How would you implement a search engine in javascript? RTM and ask again. On 02/10/2010 04:34 PM, Rijin wrote: how can use gwt for creating a search engineand there is any way to use google's search database. This is for my final year project...please help me...

Re: gwt navigation

2010-01-31 Thread Cristian Nicanor Babula
Take a look at Window.open or Window.location. Kinda RTM. On 1/31/2010 9:33 AM, joe7935 wrote: Hello all, I want to navigation between two urls. I have a button the check user details , if the input true i want to go to http://www.google.com for example , if false to go to another url , how

Re: stockwatcher with RPC calls don't run correctly on TOMCAT

2010-01-31 Thread Cristian Nicanor Babula
Make sure that the servlet mappings and the @RemoteServiceRelativePath urls match. On 1/30/2010 11:02 PM, Mathias wrote: Hello, I've compiled the stockwatcher webapp with eclipse and generated the stockwatcher.war file. In developpement mode everything is okay. The stockwatcher.war is

Re: How do I make the server RPC to client?

2010-01-31 Thread Cristian Nicanor Babula
It's not possible, because the browser closes the connection as soon as the server responds. The only way is to keep pooling the server. Even though http is not udp, from a javascript point of view, it acts like udp. On 1/30/2010 3:38 AM, JA wrote: Might be a silly question, but how do you

Re: Where does YourProject.gwt.xml go when you want to export to jar?

2010-01-31 Thread Cristian Nicanor Babula
Remove from your Test.gwt.xml the tag entry-point class=com.me.test.client.Test/. And yes, in your case, the xml file must be at the same level with the client package. On 1/31/2010 9:01 PM, markww wrote: Hi, I have a typical project structure that I'd like to export into a jar for import as

Re: Where does YourProject.gwt.xml go when you want to export to jar?

2010-01-31 Thread Cristian Nicanor Babula
The xml file has to be on the same level with the client package, but not inside it! Also make sure that the .java files are in the .jar file. On 1/31/2010 9:28 PM, markww wrote: Ok so I moved Test.gwt.xml into the client package, so it looks like this now: src com.me.test

Re: can't call my servlet on Tomcat 6 (Error 404)

2010-01-31 Thread Cristian Nicanor Babula
I don't see how this could be related to GWT. On 1/31/2010 9:30 PM, hbral wrote: Hi everyone. I have a serlvet that reads a file from disk and then starts streaming the file. i have mapped the servlet to url in the web.xml file. it works perfect on my local machine but when i deploy it on my

Re: Feature Request - Improve Visual Look

2010-01-30 Thread Cristian Nicanor Babula
The widgets are perfect how they are now. They fit perfectly in both websites and enterprise applications. Besides, a fancy design is not always a good design. I always use the simple googlish style in both websites and web apps and the customers are very pleased with the results. On

Re: GWT and java mail api

2010-01-30 Thread Cristian Nicanor Babula
You want your application to run on appengine? If not, please make sure to disable appengine integration for your project. On 1/30/2010 8:16 PM, Jeff Schnitzer wrote: You should try the AppEngine mailing list. Your problem is unrelated to GWT. Jeff On Sat, Jan 30, 2010 at 8:14 AM,

Re: GWT Tomcat in Eclipse: Tomcat loads its classes from gwt-dev.jar instead of its own.

2010-01-27 Thread Cristian Nicanor Babula
So it works now? On 01/27/2010 03:13 PM, Bob Luo wrote: Hi Cristian, Thank you for your answer! You are right, the wizard did copy gwt-servlet.jar in my WEB-INF/lib. I am sorry if I my post was not 100% clear, as I am new to GWT. This is what I did: When I created the project, I used Google

Re: GWT and MySQL Connection! Help!

2010-01-27 Thread Cristian Nicanor Babula
No offence man, but RTFManuals. Designing your application's mysql layer is not related to gwt. Basically you would design the mysql layer as for a standard jsp app. The only thing that differs from a standard jsp application is that instead of sending to the browser full html, you only send

Re: How to wait until the user clicked a button in a PopupPanel???

2010-01-26 Thread Cristian Nicanor Babula
When the user clicks the ok button, you generate delete all event. On 01/26/2010 12:10 PM, ojay wrote: Hi, I have user editor and when somebody clicks the delete button I show a popup in which the user has to confirm that all the data should be deleted. Only if this will be confirmed with yes,

Re: GWT Tomcat in Eclipse: Tomcat loads its classes from gwt-dev.jar instead of its own.

2010-01-26 Thread Cristian Nicanor Babula
Hi, I actually got lost at the part where you said that you disable the google appengine server. It doesn't make sense, because if you intend to deploy your application to an application server not equal to GAE you must disable GAE support on your eclipse project. In fact, when you create a

Re: Saving page and running it locally breaks the functionality

2010-01-25 Thread Cristian Nicanor Babula
Maybe compile the gwt project? It's advisable to use the command line tools instead of eclipse. On 01/25/2010 11:35 AM, Martin Trummer wrote: I've never done this before, and I'm not sure it will work, but these things come to my mind: * you have to take a look at what other files your html

Re: GWT hosting

2010-01-22 Thread Cristian Nicanor Babula
Take a look at Google Application Engine. It is free. Of course, if you get high traffic, then it will cost you. On 01/22/2010 04:38 PM, gengstrand wrote: While it is true that you could just use the javascript generated by GWT and hook it to any back end (assuming that you are using REST or

Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Cristian Nicanor Babula
Hi everyone. Why Hyperlink.addClickHandler() is deprecated? I can't see a reason. How am I supposed to handle the onClick event of a Hyperlink? Thanks, Cristian. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Cristian Nicanor Babula
Ok. Thanks. On 01/22/2010 05:38 PM, Paul Robinson wrote: As the javadoc for Hyperlink.addClickHandler() says, you should use an Anchor instead of Hyperlink if you want to add a handler. Hyperlinks are intended as history event inducing widgets only. Paul Cristian Nicanor Babula wrote: Hi

Re: About user logged

2010-01-20 Thread Cristian Nicanor Babula
On 01/21/2010 02:40 AM, nacho wrote: Hi, i want to make an application in wich the user must log in. What i do for it is i have filter defined in the web.xml wich filters all the request like /myapplication/* If your application filters all the requests like /myapplication/*, you could