Re: Upgrade problem 1.7 -- 2.0

2010-02-04 Thread doopa
On Feb 4, 2:12 am, iaio81 stefano.taurie...@gmail.com wrote: Hi all, because of the slowness of GWT 1.7's hosted mode, I was trying upgrading GWT to 2.0 but after having done it I have problems running my projects created with 1.7. What I've to change? I had problems with Sun JDK as well.

Re: Does anyone worked with GWT connecting to Web Services in the server side?

2009-11-09 Thread doopa
Hi, I use tomcat to connect to a variety of webservices. Essentially it works as a client to them. I don't deploy to Google AppEngine though. But it does work if you control the server that you host the tomcat instance on. On Nov 8, 2:25 am, Sripathi Krishnan sripathi.krish...@gmail.com wrote:

Re: how to deploy gwt on apache

2009-08-13 Thread doopa
H, I don't quite understand your question. The script tag should look something like this: script language=javascript src=project/projectname.nocache.js/ script Are you sure you recursively copied all the files over? The guide is here:

Re: Invoking Web Services

2009-08-13 Thread doopa
On Aug 12, 8:37 am, Paul Grenyer paul.gren...@gmail.com wrote: Hi Make an RPC and the do it the Java way on the server. Thats what I do and it works pretty well. Send an rpc request to a tomcat (for example) server and then have it create the WS request. Paul --Original

Re: Google Application Engine w/ Java signup

2009-05-04 Thread doopa
Hi, I signed up last week, so I assume the limit has not been hit. It can take a couple of days though they say that explicitly on the site. As to reliablity, can't really comment on that, since I think the best one can say is: If you deploy an app it will work as programmed. Maybe others can

Re: How to use the new WAR file to deploy a simple web application.

2009-04-30 Thread doopa
For testing purposes I use tomcat to serve the static and dynamic portions of the application. To do so, I follow the example from GWT: http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideRPCDeployment Then navigate to

Re: Deploying App to Google Appengine

2009-04-28 Thread doopa
There is a plugin for eclipse and also a java version of the appengine available now. Perhaps you would be better off using that? http://code.google.com/appengine/docs/java/overview.html Let us know how you get on. On Apr 28, 6:05 am, Nitin Sawant nitin.sawant2...@gmail.com wrote: I

Re: How to design a web app with gwt

2009-03-06 Thread doopa
On Mar 5, 6:52 pm, Paul van Hoven paul.van.ho...@googlemail.com wrote: I'm having a question about the design of gwt web app. 1) Suffices it to have only one Index.html, or should there be other pages like for example fotos.html or guestbook.html instead of FotosWidget.java or

Re: which tools you have used for development of GWT?

2009-03-05 Thread doopa
As the others have said: Eclipse, maven, firebug, VMware (for other OSes to test compat). The web developer pulgin for firefox is also quite useful. On Mar 4, 2:14 pm, bamatico wes.br...@gmail.com wrote: I have only gotten as far as working through the StockWatcher tutorial but am getting the

Re: Best image preloading practice?

2009-02-04 Thread doopa
Hi, The key is to use ImageBundles or use one large image that contains all the icons you want to use and then draw only parts of them when you want it displayed. http://code.google.com/p/google-web-toolkit/wiki/ImageBundleDesign How that helps. On Feb 3, 5:50 pm, darkflame

Re: Client-side GChart 2.4 Released: Click events, pop-ups, selection brushes, etc.

2009-01-28 Thread doopa
Good work John. Congratulations on the new release. I'll be testing this later and will be sure to update you. Thanks, niall On Jan 28, 6:41 am, John Gunther johncurtisgunt...@yahoo.com wrote: Client-side GChart is an open source, 100% pure Java chart library for GWT supporting line, pie,

Re: How to log/audit/track GWT RPC calls?

2009-01-28 Thread doopa
On Jan 28, 5:34 am, hazy1 matt.egyh...@gmail.com wrote: Here are some options: 1)  Using a servlet filter mapped to the URL pattern of your GWT servlets 2)  Log yourself inside of the GWT servlet I'd go for the second option as it will allow you more flexibility in what you log. Matt

Wrapping text issue

2009-01-26 Thread doopa
Hi all, I am working on a GWT project that involves the display of protein sequences amongst other pieces of information about proteins. The problem I have relates to the fact the a sequence is typically a few hundred to a few thousand characters long - there are no breaks (whitespace

Re: What are you using for a backend??

2009-01-22 Thread doopa
I'm using java on the backend, accessed through RPC. It just makes life a lot easier. Also, since I'm using the tomcat server to access soap and rest services, using java makes all of this much easier. Also its nice to have the whole thing in one code base/language. Later I plan to make the RPC

Re: set fixed size for popup and enable scrolling within it

2009-01-19 Thread doopa
Hi, You should probably change the CSS to scroll rather than auto. Auto is not stable across browsers. On Jan 15, 10:19 am, aragorn sagar5...@gmail.com wrote: I have a popuppanel which wraps a flowpanel within itself. Now i want this popup to occupy only some portion of the screen. In case

Re: I need help please

2009-01-07 Thread doopa
On Jan 6, 8:54 pm, Loryto enfermo666a...@gmail.com wrote: So sorry my e-mail is : angel_ver2...@hotmail.com I appreciate your help These questions, or similar ones, have been answered many times in this discussion list. Have you tried searching through the archives. GWT has been implemented

Re: Any free UI designer available for Eclipse?

2008-11-14 Thread doopa
Its not free but GWT Designer is what you want. It doesn't cost 'that' much. On Nov 13, 3:43 pm, Lonifasiko [EMAIL PROTECTED] wrote: Hi all, Following the GWT tutorial available on the web, I've noticed almost all widgets (for me they are web controls) are added and configured in the .java

Re: Support of web services

2008-11-11 Thread doopa
I think the recommended way to do this is have a server handle the webservice side of things and have your GWT client speak to the server via an RPC call. Therefore, the user would click a btn on the client, this would fire a request to the server to run a webservice, and then the server would

Re: RPC Image

2008-10-29 Thread doopa
On Oct 23, 3:54 pm, Jason Essington [EMAIL PROTECTED] wrote: You could either return a URL from your RPC and then create an   imageWidget using that URL, or you could simply skip the RPC   altogether and create a GET request URL that presumably ends at a   servlet capable of returning your

Re: Problem with tomcat

2008-10-17 Thread doopa
Hi Jamer, This just means that tomcat will ignore the gwt-user.jar when its running. See the spec: http://www.jcp.org/aboutJava/communityprocess/final/jsr053/ On Oct 17, 10:43 am, jamer [EMAIL PROTECTED] wrote: It is the error of the log tomcat 06-oct-2008 10:52:08