Re: Hosted mode doesn't work at all on my Vista notebook under Eclipse

2009-08-04 Thread Rajeev Dayal
See the following thread: http://groups.google.com/group/google-appengine-java/browse_thread/thread/1bcb20225a985425 There have been some instances of Vista shipping with a hosts file that does not properly map localhost. Rajeev On Tue, Aug 4, 2009 at 2:35 AM, Trevis trevistho...@gmail.com

Re: GWT Compile Issue

2009-08-03 Thread Rajeev Dayal
GWT Compilation requires that the Java source be available for every type which is part of a GWT module. You'll need to get the source for the Apache Commons library and add it to your classpath. I'm sure that all of Apache Commons is not translatable, but perhaps the parts that you're using (such

Re: Getting Started on Tomcat server....kinda

2009-08-03 Thread Rajeev Dayal
com.gwtext.client.widgets.Window; did you forget to inherit a required module? On Jul 31, 11:30 am, Rajeev Dayal rda...@google.com wrote: On Fri, Jul 31, 2009 at 8:21 AM, Chris Bailey xcom...@gmail.com wrote: OK, my natual language would probably have to be PHP for web

Re: GWT Eclipse plugin Ant integration

2009-08-03 Thread Rajeev Dayal
Hey Eric, That's a reasonable suggestion. Do you mind filing a feature request for this at http://code.google.com/p/google-web-toolkit/issues ? Thanks, Rajeev On Mon, Aug 3, 2009 at 10:14 AM, Eric erjab...@gmail.com wrote: On Jul 31, 9:15 am, Rajeev Dayal rda...@google.com wrote: Hi

Re: GWT Eclipse plugin Ant integration

2009-07-31 Thread Rajeev Dayal
Hi, Unfortunately, the plugin does not have a way to generate ant scripts to mimic its actions, though this is on our feature list. What I would recommend is to use GWTs webAppCreator to generate a sample project. A build.xml file will be generated as well, and it will have targets for GWT

Re: GWT JAR Issue

2009-07-31 Thread Rajeev Dayal
Hi, Any java code that is used by GWT must be in some module's source path. The Interface that you're referencing in (2) from (1) is not part of any module's source path. One way to get around this without introducing a new module is to change the package of the interface so that from the

Re: problems with GWT plugin for eclipse.

2009-07-31 Thread Rajeev Dayal
You need to use a 32-bit JVM when running GWT. Install a 32-bit JVM, and change your project's JDK to use the 32-bit JVM. In future versions of GWT, it will no longer be necessary to use a 32-bit JVM. On Fri, Jul 31, 2009 at 8:04 AM, msan mrsan...@gmail.com wrote: Hallo. Sorry for my bad

Re: EXTERNAL JAR FILES ON SERVER SIDE

2009-07-31 Thread Rajeev Dayal
Did you copy the jar files to your war/WEB-INF/lib directory? On Fri, Jul 31, 2009 at 4:41 AM, Parmeet Kohli parmeet.ko...@gmail.comwrote: I'm hoping you someone can help me with this. I'm basically trying to make a web application using GWT. The code on the server end though uses classes

Re: Getting Started on Tomcat server....kinda

2009-07-31 Thread Rajeev Dayal
On Fri, Jul 31, 2009 at 8:21 AM, Chris Bailey xcom...@gmail.com wrote: OK, my natual language would probably have to be PHP for web development, but I really want to work in java and GWT. So I installed Eclipse and installed the gwt plugin but I'm still new with java and it's envirement.

Re: Help - multiple modules in the same Eclipse project

2009-07-31 Thread Rajeev Dayal
In your launch configuration for A, do you specify both the A and B modules on the command line when launching hosted mode? On Thu, Jul 30, 2009 at 2:08 PM, Petarian imran...@gmail.com wrote: Hi, I have two modules A and B in one eclipse project. Both have their own Launcher, which work

Re: oophm on a mac

2009-07-31 Thread Rajeev Dayal
Are you running from the command-line, or within Eclipse? Are you using the Google Plugin for Eclipse? On Fri, Jul 31, 2009 at 9:47 AM, Tom tomjmal...@gmail.com wrote: Built GWT from trunk and when I ran on my mac I get these error messages: oophm: [java] 2009-07-31 12:09:56.402

Re: problems with GWT plugin for eclipse.

2009-07-31 Thread Rajeev Dayal
it, the version of the plugin that we just released does support Out-of-process-hosted mode. On Fri, Jul 31, 2009 at 1:00 PM, Mauro mrsan...@gmail.com wrote: 2009/7/31 Rajeev Dayal rda...@google.com: You need to use a 32-bit JVM when running GWT. Install a 32-bit JVM, and change your

Re: oophm on a mac

2009-07-31 Thread Rajeev Dayal
See the following documentation for getting OOPHM working on the Mac: http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM Basically, you need to get rid of the -XstartOnFirstThread argument when launching the shell. On Fri, Jul 31, 2009 at 11:56 AM, Tom Malone tomjmal...@gmail.com wrote:

Re: XML / Module problem? (Just upgraded both Eclipse and the GWT plugin..errors appeared on projects reimporting)

2009-07-31 Thread Rajeev Dayal
A few questions -Can you post the source of the main module file that you're running? -Can you view your launch configuration, and ensure that all of your project modules that you expect are listed on the GWT tab? -Can you view your launch configuration's classpath? Expand the GWT Classpath

Re: Problems with hosted mode

2009-07-28 Thread Rajeev Dayal
, Rajeev Dayal rda...@google.com wrote: Actually, it is not necessary that the script tag be placed in the head section. You can place it in the body section. GWT's samples actually place the script reference in the body. Maybe you had placed it at a position in the body where the load was blocked

Re: Newbie Question. Windows 7 + Eclispe 3.4 + GWT 1.7 + Debug + Getting Started Tutorial.

2009-07-27 Thread Rajeev Dayal
There is an issue with JDK 1.6.0_14 and debugging. Are you using this JDK? If so, downgrade to 1.6.0_13 to workaround this problem. On Fri, Jul 24, 2009 at 5:44 PM, Howard Tan howard@gmail.com wrote: Hi, I've been combing through the Getting Started guide, and I got everything to work

Re: help on a servlet issue

2009-07-27 Thread Rajeev Dayal
module? I think that is the part I am confused. If I have two modules, how do I specify the association of the servlet and the module? it seems my servlet can only be used on the default module created by eclipse plugin Thanks On Jul 24, 5:40 am, Rajeev Dayal rda...@google.com wrote: Can

Re: Problems with hosted mode

2009-07-27 Thread Rajeev Dayal
Actually, it is not necessary that the script tag be placed in the head section. You can place it in the body section. GWT's samples actually place the script reference in the body. Maybe you had placed it at a position in the body where the load was blocked waiting for another script to finish

Re: Problems with hosted mode

2009-07-27 Thread Rajeev Dayal
Actually, it is not necessary that the script tag be placed in the head section. You can place it in the body section. GWT's samples actually place the script reference in the body. Maybe you had placed it at a position in the body where the load was blocked waiting for your other script for

Re: Problems with hosted mode

2009-07-24 Thread Rajeev Dayal
Hey Pavel, Can you post the contents of your web.xml file, and also the contents of your JSP page? Also, where is your JSP page located? Thanks, Rajeev On Thu, Jul 23, 2009 at 1:08 PM, Pavel Byles pavelby...@gmail.com wrote: I am using a JSP page as my startup page for my GWt/GAE project and

Re: java.lang.UnsupportedClassVersionError: Bad version number in .class file in eclipse-3.4 + mac osx

2009-07-24 Thread Rajeev Dayal
Also, check your compiler compliance level. Eclipse does not use javac from the JDK you are using; it uses its own compiler, and it will compile for a particular version of the JDK depending on your compiler compliance settings. They can be found under Preferences -- Java -- Compiler. On Thu, Jul

Re: help on a servlet issue

2009-07-24 Thread Rajeev Dayal
Can you post the code for the servlet you're trying to add? Also, when you say that you added a new servlet for the setup module, what exactly do you mean? How are you associating the servlet with your module? On Fri, Jul 24, 2009 at 3:07 AM, Simon xingzhi@gmail.com wrote: hi, sorry, I am

Re: In Hosted mode, GWT Stopped displaying Widgets

2009-07-24 Thread Rajeev Dayal
Hey Raju, It definitely sounds cookie related. What OS and Browser are you running with? Rajeev On Fri, Jul 24, 2009 at 9:04 AM, Raju raju.technol...@gmail.com wrote: I also tried creating running dummy 'HelloWorld' application out side of eclipse, it does not work. Looks like I am unable

Re: Eclipse plugin for Eclipse 3.5 (Galileo)

2009-07-22 Thread Rajeev Dayal
Hi, Yes, this has taken longer than expected, but we're now on the finishing touches. We should have something out there within the week. Thanks, Rajeev On Tue, Jul 21, 2009 at 10:28 PM, Nik nikcol...@gmail.com wrote: We're now heading towards months, not weeks. Any progress? On Jun 25,

Re: eclipse + gwt + getting started = Syntax error, annotations are only available if source level is 1.5

2009-07-21 Thread Rajeev Dayal
Do you see any errors in the Problems view? I think you need to set your source level to 1.5+. Go to Preferences-Java-Compiler and set your source level to at least 1.5. Post back here if that doesn't help. On Mon, Jul 20, 2009 at 9:36 AM, mem mem.name...@gmail.com wrote: Good afternoon all.

Re: Dose GWT 1.7 support debug on java 6?

2009-07-20 Thread Rajeev Dayal
) I recompile my GWT_TRUNK, with the new java version 1.6.0_14 and again work debugging. I hope this helps, greetings On Jul 18, 2:42 pm, Rajeev Dayal rda...@google.com wrote: Hi, Are you talking about debugging your GWT Application in Eclipse when it's running in hosted

Re: why GWT hosted mode showed a blank page?

2009-07-20 Thread Rajeev Dayal
What version of IE are you using? Are you still running into the problem? Also, try the suggestion mentioned above - clear IE's cache. On Fri, Jul 17, 2009 at 7:42 PM, Adam S servic.a...@gmail.com wrote: I have similar problem. I use gwt with with smartGwt, eclipse (google plugin) and embeded

Re: Image Bundle not working in IE

2009-07-20 Thread Rajeev Dayal
It is odd that it works in hosted mode, but not in web mode - because the IE settings (security even) should be the same for IE6 hosted mode, and the normal IE6 browser. Actually, here is one thing you can test - try hitting your deployed app with the hosted browser. Launch hosted mode with the

Re: Image Bundle not working in IE

2009-07-17 Thread Rajeev Dayal
Do the ImageBundles work in hosted mode? Or is this a problem that you're seeing in web mode? What platform (OS and Browser) are you on? On Thu, Jul 16, 2009 at 10:32 AM, Sean slough...@gmail.com wrote: I was just wondering if the lack of response is because people use ImageBundles and don't

Re: why GWT hosted mode showed a blank page?

2009-07-17 Thread Rajeev Dayal
What version of GWT are you using, and what platform are you on (OS/Browser)? When you run ant hosted on the Hello sample, is it completely unmodified? On Fri, Jul 17, 2009 at 2:39 AM, sharetop share...@gmail.com wrote: i use eclipse+gwt-plugin,run web application,,,but a blank page be

Re: GWT eclipse plugin fix req

2009-07-17 Thread Rajeev Dayal
for a way to run it manually. However during the process I've found another solution - it's in comments in: http://code.google.com/p/google-web-toolkit/issues/detail?id=3645 On Jul 13, 4:04 pm, Rajeev Dayal rda...@google.com wrote: Are you using ORM in your project? If you are not, you can disable

Re: Dose GWT 1.7 support debug on java 6?

2009-07-17 Thread Rajeev Dayal
Hi, Are you talking about debugging your GWT Application in Eclipse when it's running in hosted mode? What is the problem that you're experiencing. We've heard reports of people running into problems with debugging when using JDK 1.6.0_14. What JDK are you using? Rajeev On Fri, Jul 17, 2009 at

Re: Google plugin for Eclipse 3.5 Galileo

2009-07-13 Thread Rajeev Dayal
is ready for Galileo, Steven On Jul 9, 12:09 pm, Rajeev Dayal rda...@google.com wrote: Hey Steven, Thanks for pointing this out! We tried out the distribution that you sent, and it seems that the plugin sort of works. The New Web Application Wizard and GWT

Re: Will Google Plugin for Eclipse lineup with Eclipse Galileo Release ?

2009-07-13 Thread Rajeev Dayal
The problem is that GWT bundles the 32-bit version of SWT, which it requires in order to run the hosted browser. So, you can install the plugin under a 64-bit version of Eclipse. However, you'll have to use a 32-bit JDK for your GWT projects in Eclipse. The next version of GWT (or, if you build

Re: Starter Problem GWT Plugin inside Eclipse 3.4.2

2009-07-13 Thread Rajeev Dayal
Hi Ekki, Can you view our Error Log (Window - Show View - Error Log) and see if there are any exceptions/errors listed at the time when you installed the plugin? What distribution of Eclipse are you using (classic, java, j2ee,..)? Rajeev On Fri, Jul 10, 2009 at 5:15 AM, CI-CUBE

Re: New GWT user has a simple qustion using eclipse

2009-07-13 Thread Rajeev Dayal
As an FYI, there is a feature request to have the New Web Application Wizard create an empty project with no files. On Sat, Jul 11, 2009 at 11:24 PM, Rakesh rake...@gmail.com wrote: The cleanup is really very minimal. Clean the EntryPoint class Clean RPC: delete the three files: async,

Re: GWT eclipse plugin fix req

2009-07-13 Thread Rajeev Dayal
Are you using ORM in your project? If you are not, you can disable the Datanucleus builder. See http://code.google.com/eclipse/docs/faq.html#disabledatanucleus On Mon, Jul 13, 2009 at 8:51 AM, george9 juraj.vi...@gmail.com wrote: this bug is steadily driving me mental - anyone knows how to

Re: Google plugin for Eclipse 3.5 Galileo

2009-07-09 Thread Rajeev Dayal
they messed with your plugin to get it to work? Steven On Jul 9, 10:34 am, Rajeev Dayal rda...@google.com wrote: No, unfortunately there is no URL to track the status of the plugin, and we're not planning on sending out a beta release of the plugin at this time. You do make a good point

Re: JSP Compile Errors. Can't find compile error output

2009-07-08 Thread Rajeev Dayal
Are you hitting the JSP page in your browser? The error output should be displayed there. On Tue, Jul 7, 2009 at 3:58 PM, puddlesofjoy jcrowe.u...@gmail.com wrote: With latest version of GWT and Google Eclipse Plugin. I have created a project with GWT only (no App Engine) If I have any

Re: GWT 1.6.4: Exception in DriverManager.getConnection

2009-07-08 Thread Rajeev Dayal
Hi, When you say that the JSP files would not compile, how were you trying to compile them? Were you hitting the JSP in a browser? Rajeev On Tue, Jul 7, 2009 at 10:37 PM, puddlesofjoy jcrowe.u...@gmail.com wrote: Additional information for those who have this same problem and find this post

Re: Converting gwt project in Windows to Mac with eclipse gwt plugin

2009-07-07 Thread Rajeev Dayal
Hey Eric, See http://code.google.com/eclipse/docs/existingprojects.html Post back on this thread if you have any other questions. Rajeev On Tue, Jun 30, 2009 at 3:35 PM, EricM mibu...@gmail.com wrote: I am trying to convert a web-application project originally created in the following

Re: hosted mode compile error from eclipse

2009-06-25 Thread Rajeev Dayal
Hey Chris, Thanks for the information. It should not be the case that all of the source folders defined in the project are included on the classpath by default. It is true that all of the source files in all of your source folders will be compiled and dumped in the same output directory, and these

Re: How do i fix this problem?

2009-06-25 Thread Rajeev Dayal
I'm not an expert in the area, but this link seems helpful: http://code.google.com/p/gwt-examples/wiki/project_MySQLConn On Thu, Jun 25, 2009 at 3:11 PM, flyingb...@gmail.com flyingb...@gmail.comwrote: I am using the eclipse gwt 1.6 plugin and trying to run in hosted mode. I get this

Re: Eclipse plugin for Eclipse 3.5 (Galileo)

2009-06-25 Thread Rajeev Dayal
We're currently working on Eclipse 3.5 support. We don't have an exact release date for an Eclipse 3.5-compatible version of the plugin, but it will be coming soon (weeks, not months). On Thu, Jun 25, 2009 at 4:31 PM, Rob Tanner caspersg...@gmail.com wrote: When will a version of the plugin be

Re: GWT client files in WEB-INF/classes

2009-06-24 Thread Rajeev Dayal
Hi Clanusse, You are right - the only class files that are needed are those that are used by RPC, which are: -your sync interface -any types that can be passed across the wire over RPC -your server-side classes (including the implementation of your sync interface) Unfortunately, the plugin's

Re: hosted mode compile error from eclipse

2009-06-24 Thread Rajeev Dayal
Hi Chris, Right now, we use a heuristic to exclude test directories from your project's classpath on execution. If the folder containing your test source is named test, then we will not add it to your project's runtime classpath. We use this heuristic because the plugin currently has no

Re: hosted mode compile error from eclipse

2009-06-24 Thread Rajeev Dayal
is to remove the entire project from the classpath.. I see no option to remove an individual source folder. --Chris On Jun 24, 11:04 am, Rajeev Dayal rda...@google.com wrote: Hi Chris, Right now, we use a heuristic to exclude test directories from your project's classpath on execution

Re: GWT client files in WEB-INF/classes

2009-06-24 Thread Rajeev Dayal
Hey Thomas, Responses inline: On Wed, Jun 24, 2009 at 12:19 PM, Thomas Broyer t.bro...@gmail.com wrote: On 24 juin, 17:00, Rajeev Dayal rda...@google.com wrote: Hi Clanusse, You are right - the only class files that are needed are those that are used by RPC, which are: -your

Re: GWT client files in WEB-INF/classes

2009-06-24 Thread Rajeev Dayal
, you're right - it is a tricky problem. If we had a notion of shared client and server code in a GWT module, this problem would be much easier. On Wed, Jun 24, 2009 at 1:48 PM, Rajeev Dayal rda...@google.com wrote: Hey Thomas, Responses inline: On Wed, Jun 24, 2009 at 12:19 PM, Thomas Broyer

Re: hosted mode compile error from eclipse

2009-06-24 Thread Rajeev Dayal
included in the gwt config file\(...)\ I have since moved it to the default package in \MyProject\source \JunitTests\ and it has fixed the compile error.. but this seems the wrong way to fix it, and effects how i would design tests. On Jun 24, 1:20 pm, Rajeev Dayal rda...@google.com wrote

Re: Eclipse is not stopping on breakpoints in GWTTest. Why?

2009-06-22 Thread Rajeev Dayal
Actually, just to clarify, this is a problem with the JDK itself; it is a not a bug in Eclipse. On Fri, Jun 19, 2009 at 11:22 AM, Igor Moochnick igor.moochn...@gmail.comwrote: Wow. I spent all this time and endless hours debugging because Eclipse doesn't work correctly with Java 6.14???

Re: Getting Started Guide NullPointerException

2009-06-17 Thread Rajeev Dayal
Hi, This problem usually happens when you have the Xerces classes bundled along with your application classes. You don't need to bundle Xerces, since it is already provided through the JRE. Are any of your application libraries (in war/WEB-INF/lib) including Xerces? Can you tell me which

Re: How do I run my GWT application on tomcat?

2009-06-17 Thread Rajeev Dayal
Also, see the Deploying RPC section of the following article: http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.html http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.htmlIt describes how to deploy to Tomcat. On Wed, Jun 17, 2009 at 12:44 PM, abhiram

Re: Fedora Core 10 64 bit problems with GWT hosted mode in Eclipse

2009-06-17 Thread Rajeev Dayal
Hey Jesse, Thanks very much for the detailed post. It seems like you went through a lot to get GWT up and running on your system. I'm happy that it's finally working for you. We'll review the information that you've provided. If others are running into this problem, it probably makes sense to

Re: Configure Eclipse to Deploy my gwt web app to Tomcat 6.0

2009-06-17 Thread Rajeev Dayal
See the Deploying RPC section of the following document for instructions on how to deploy to Tomcat: http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.html http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.htmlPost back on this thread if you run into any

Re: Can't debug in Eclipse

2009-06-12 Thread Rajeev Dayal
See http://code.google.com/p/google-web-toolkit/issues/detail?id=3724 Let me know if you have other questions. On Fri, Jun 12, 2009 at 10:54 AM, Max max.blumena...@googlemail.com wrote: Hi! I just started using the gwt. I followed the instructions in the getting started tutorial but i cant

Re: GWT in Eclipse spontaneously stopped working

2009-06-12 Thread Rajeev Dayal
What JVM is your project using? Can you look at your project properties and take a look? On Fri, Jun 12, 2009 at 2:33 AM, skeemer skee...@gmail.com wrote: I'm running Leopard with Eclipse 3.4.2 and GWT 1.6.4. I was able create the first Getting Started app and everything worked fine. I then

Re: ClassNotFoundException when have reference to another project

2009-06-12 Thread Rajeev Dayal
Hi, Good question! This is a known issue right now. Check this thread out for a discussion: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/951499c5773693c9 Post back here if you have any other questions. Rajeev On Fri, Jun 12, 2009 at 9:47 AM, ailinykh

Re: Gwt Component Works in Hosted, but not in Tomcat.

2009-06-12 Thread Rajeev Dayal
What version of GWT are you using? What type of error are you seeing? On Fri, Jun 12, 2009 at 12:20 PM, Patrick www...@gmail.com wrote: I am new to GWT as of 3 weeks. I have a component running in hosted mode. It is a table. It works in hosted mode, but not when I deploy it to tomcat. My

[gwt-contrib] Re: ant improvements, round 1

2009-06-11 Thread Rajeev Dayal
Nice job Freeland! You're an ant-master! On Thu, Jun 11, 2009 at 10:40 AM, Freeland Abbott fabb...@google.comwrote: Well, if I've saved serious time by 10:30am, I'm happy indeed. I've got another depends-on-your-hardware-but-I-saw-4min-saving (for work-to-do rebuild of samples, so no gain if

Re: Eclipse - GWT - ClassNotFoundException in StockWatcher RPC tutorial

2009-06-09 Thread Rajeev Dayal
Hey Paul, If you don't mind, can you send me a zip of your source, and I can play around with it on this side and see what might be going on? That might be the most expedient way to get you going. Thanks, Rajeev On Tue, Jun 9, 2009 at 4:25 AM, Paul Hargreaves cbassthef...@yahoo.co.ukwrote:

Re: Issue with compiling GWT with many libaries

2009-06-08 Thread Rajeev Dayal
Ah, nice tip! On Mon, Jun 8, 2009 at 4:39 AM, mars1412 martin.trum...@24act.at wrote: another (temporary) workaround is to use SUBST command on windows to reduce the path length (http://en.wikipedia.org/wiki/Subst) On Jun 3, 5:31 pm, Pandaman p4nda...@gmail.com wrote: Hello all, I am

Re: Eclipse - GWT - ClassNotFoundException in StockWatcher RPC tutorial

2009-06-08 Thread Rajeev Dayal
class path order and exported entries: [] StockWatcher/src [] GWT SDK [GWT - 1.6.4] [] JRE System Library [jre1.6.0] (The first option above is checked and the second two are unchecked) That is about it Thanks Paul -- *From:* Rajeev Dayal rda

Re: war file for GWT 1.5

2009-06-08 Thread Rajeev Dayal
Hi, Responses inline: On Sun, Jun 7, 2009 at 5:49 PM, bhomass bhom...@gmail.com wrote: thanks. that clarifies quite a lot, but not everything. first I assume it would be ok for me to add any servlet context to the path and create the WEB-INF directory accordingly. for the static files,

Re: Gwt Built-in application server Configuration

2009-06-07 Thread Rajeev Dayal
Hi, Did you use the Eclipse Plugin to create your project? If so, did you check the Use Google App Engine checkbox? That may be your problem. You should only check this box if you plan on deploying your project to Google's servers. Those types of projects do not allow access to all of Java's

Re: Error While Creating New Web Application Project.

2009-06-07 Thread Rajeev Dayal
Hi, That definitely sounds odd! Can you check your error log (Window - Show View - Error Log) and tell me if you see any errors? If so, can you post the full error trace for each error? Also, can you tell me what version of Eclipse you're using, and which distribution (Java, J2EE, classic, etc)?

Re: how to convert a project from gwt-1.5.2 to gwt-1.6.4?

2009-06-07 Thread Rajeev Dayal
Hi Linda, Unfortunately, there is no conversion wizard to upgrade your project to GWT 1.6 from GWT 1.5. However, it's not too hard to do! Take a look at the Working with GWT 1.5 and Earlier Projects section of this document: http://code.google.com/eclipse/docs/existingprojects.html Post back on

Re: war file for GWT 1.5

2009-06-07 Thread Rajeev Dayal
Hi, Ignore the tomcat directory that is generated by GWT. That is generated when running in hosted mode, as it starts up an embedded instance of Tomcat as a test server. Deploy the application as you normally would - take your java classes and put them under WEB-INF/classes, and take the contents

Re: war file for GWT 1.5

2009-06-07 Thread Rajeev Dayal
Not sure what you mean. Are you asking if you can use the port 8080 for your application in production? On Fri, Jun 5, 2009 at 3:28 PM, bhomass bhom...@gmail.com wrote: btw, is it ok to use the default port 8080? --~--~-~--~~~---~--~~ You received this

Re: Reference to interface in another project

2009-06-07 Thread Rajeev Dayal
Hi Barry, Issac is correct. Please try out his approach, and post back on this thread if you have any other questions or problems. Rajeev On Fri, Jun 5, 2009 at 5:03 PM, Isaac Truett itru...@gmail.com wrote: Everything you use on the client has to be part of a GWT module. Just create a

Re: Issue with compiling GWT with many libaries

2009-06-07 Thread Rajeev Dayal
Hi, All of Isaac's suggestions are good ones. Another option would be to set the fork option on the java task to false. This means that the java task will be executed WITHIN ant's process space (though using a separate classloader). This will work around the problem, but you may have to increase

Re: Eclipse - GWT - ClassNotFoundException in StockWatcher RPC tutorial

2009-06-07 Thread Rajeev Dayal
Hi Paul, Sorry that responses have been slow for you on this forum. They are definitely monitored, but I think that we're playing catchup on this end due to the Google I/O conference. First of all, are you using Eclipse, or are you trying to run this from the command line? If you're trying to do

Re: Hosted mode

2009-06-05 Thread Rajeev Dayal
Hi, I'm currently looking into this issue, and what I've found is that this problem is cropping up when using JDK 1.6.0_14. When using JDK 1.6.0_13, the problem does not seem to happen - all breakpoints are hit. So, as an alternate workaround, use a different JDK other than 1.6.0_14. A bit more

Re: Debug not working with 1.6 in eclipse ganymede (3.4) on Ubuntu Jaunty (9.04)

2009-06-05 Thread Rajeev Dayal
Hi, I'm currently looking into this issue, and what I've found is that this problem is cropping up when using JDK 1.6.0_14. When using JDK 1.6.0_13, the problem does not seem to happen - all breakpoints are hit. So, as an alternate workaround, use a different JDK other than 1.6.0_14. See the

Re: Hosted mode

2009-06-05 Thread Rajeev Dayal
this thread where there is a resolution on this issue. On Fri, Jun 5, 2009 at 10:04 AM, Rajeev Dayal rda...@google.com wrote: Hi, I'm currently looking into this issue, and what I've found is that this problem is cropping up when using JDK 1.6.0_14. When using JDK 1.6.0_13, the problem does not seem

Re: @Resource path is OS-gnostic ( \ or / depending on the Win/Linux). What is a workaround?

2009-06-04 Thread Rajeev Dayal
It would be great if you could file the RFE :). On Tue, Jun 2, 2009 at 3:07 PM, Igor Moochnick igor.moochn...@gmail.comwrote: Guilty as charged. I was on the road for some time and had no chance to file the RFE. Should I still do it? On May 29, 6:11 pm, Rajeev Dayal rda...@google.com

Re: Getting an error saying Did you forget to inherit

2009-06-01 Thread Rajeev Dayal
Generally, you should not have any dependencies from code in src on code in test. I believe that the problem here is that the Utils class is in the test folder, but the source path for your module is client. You can add test to your module's source path, but I'd recommend that you move the Utils

Re: dependencies on GWT project in eclipse gives exception..whats problem?

2009-06-01 Thread Rajeev Dayal
There are a couple things to be aware of here. There are some issues with having a WebApp project depend on a Java project. The crux of the problem is that the artifacts from the Java project are not automatically copied over to the WebApp's war directory. See the following thread for more

Re: GWT and backend technology

2009-06-01 Thread Rajeev Dayal
Can you provide a bit more information on how you're launching the debug session? Is it a remote-debugging session, can you provide some more information about the listening process (the one being debugged) and the one connecting to the listener (which would be in your IDE)? I'm specifically

Re: Login

2009-06-01 Thread Rajeev Dayal
Did you copy the Postgres libraries into your war/WEB-INF/lib folder? On Fri, May 29, 2009 at 9:28 PM, nagileon pkirklew...@gabaedevelopment.comwrote: Hi there I'm following this tutorial:http://www-lehre.inf.uos.de/~btenberg/misc/

[gwt-contrib] Re: possible ant changes

2009-06-01 Thread Rajeev Dayal
Hey Freeland, All of this sounds great. The build scripts have been in severe need of tweaking for a while, and I'm glad that you've decided to tackle this tricky issue. I've got a couple of comments about the ant test behavior. If it is the case that a subsequent ant build after running ant

Re: @Resource path is OS-gnostic ( \ or / depending on the Win/Linux). What is a workaround?

2009-05-29 Thread Rajeev Dayal
Hi Abby, No, I don't think that an RFE has been filed for this. Would you mind filing one? Yes, the best workaround right now would be to place the images in the same package as the Bundle interface (or the Bundle interface in the same package as the images). Rajeev On Wed, May 27, 2009 at

Re: Regarding GWT Application deployment

2009-05-26 Thread Rajeev Dayal
access information as firewall will any one from outside to access it. Thanks, Avinash On Fri, May 22, 2009 at 6:40 PM, Rajeev Dayal rda...@google.com wrote: When you say that you're developing an application for your intranet, can you elaborate on that? Do you want the application to only

Re: Regarding GWT Application deployment

2009-05-22 Thread Rajeev Dayal
Hey Avinash, With regard to your first question, are you using GWT with App Engine, or just App Engine by itself? If you're using GWT with App Engine, then JS and HTML files will be produced from your client-site java code. But, App Engine allows you to run server code on Google's infrastructure,

Re: RPC Help

2009-05-22 Thread Rajeev Dayal
You're getting the first celticlock in becuase you're appending GWT.getModuleBaseURL() to the front of observationServiceURL. Since you know that your servlets are hosted at /servlets, change: String observationServiceURL = GWT.getModuleBaseURL() + servlets/celticlock/greet; to String

Re: Eclipse Plugin Compile Button Stack Overflow

2009-05-21 Thread Rajeev Dayal
Hi, With regard to the proxy issue, I'll have to do some experimentation locally to see if there is actually a way to pass the username and password for an authentication-requiring proxy via the command line. I'll post back on this thread with my results shortly. Thanks, Rajeev 2009/5/21

Re: Eclipse Plugin Compile Button Stack Overflow

2009-05-21 Thread Rajeev Dayal
:18 PM, Rajeev Dayal rda...@google.com wrote: Hi, With regard to the proxy issue, I'll have to do some experimentation locally to see if there is actually a way to pass the username and password for an authentication-requiring proxy via the command line. I'll post back on this thread with my

Re: DataNucleus Enhancer (version 1.1.0) : Enhancement of classes throws java.lang.UnsupportedClassVersionError: Bad version number in .class file, when creating a new GWT project in Springsource To

2009-05-19 Thread Rajeev Dayal
Hi Helmers, Yes, in your case, this is a legitimate bug related to Mac OS X. See the bug for more details; I've posted them there. Thanks, Rajeev On Sun, May 17, 2009 at 2:17 PM, Helmers guido.helm...@gmail.com wrote: I'm having the same problem. See

Re: Hosted mode servlets in GWT 1.6

2009-05-19 Thread Rajeev Dayal
Yes, Thomas is correct. At the moment, servlets that are needed for unit testing must be defined via module files. Hopefully we'll be able to read from a web.xml file for testing in the future. On Tue, May 19, 2009 at 3:59 AM, Thomas Broyer t.bro...@gmail.com wrote: On 19 mai, 07:38, Raman

Re: Eclipse GWT: How to include source from other projects?

2009-05-18 Thread Rajeev Dayal
this, you'll need to define a GWT module in your DB project so that you can pull in the source. Does that make sense? On Sat, May 16, 2009 at 2:29 PM, Tim McCormack ti...@ccs.neu.edu wrote: On May 15, 5:16 pm, Rajeev Dayal rda...@google.com wrote: So, it seems that you client project needs

Re: No source code is available for type Error on Web Mode Compile

2009-05-18 Thread Rajeev Dayal
in another project or a single module that is defined in package com.domain.packageA with an element like source path='com.domain.packageB / -John On May 15, 4:45 pm, Tim McCormack ti...@ccs.neu.edu wrote: On May 15, 3:00 pm, Rajeev Dayal rda...@google.com wrote: Now, suppose that project B

Re: Cleaning GWT project with Google plugin

2009-05-18 Thread Rajeev Dayal
Hi, On Sun, May 17, 2009 at 11:31 PM, hezjing hezj...@gmail.com wrote: Hi Salvador On Sun, May 17, 2009 at 9:14 PM, Salvador Diaz diaz.salva...@gmail.comwrote: The myproject\war\WEB-INF\classes directory is in fact deleted by Eclipse. When you clean a project with Eclipse, it has to be

Re: @Resource path is OS-gnostic ( \ or / depending on the Win/Linux). What is a workaround?

2009-05-15 Thread Rajeev Dayal
failures On May 4, 5:21 pm, Rajeev Dayal rda...@google.com wrote: Actually, the documentation says that GWT uses ClassLoader.getResource(..) to locate images. As a result, the syntax that you use in the annotation *should* be OS-agnostic. You should always use forward slashes

Re: No source code is available for type Error on Web Mode Compile

2009-05-15 Thread Rajeev Dayal
Hi John, What version of the plugin are you currently using? We just released a new version of the plugin (1.0.1) a couple of days ago that may fix this problem. Here are the release notes: http://code.google.com/eclipse/docs/release_notes.html Although the problem that you're having is not

Re: @Resource path is OS-gnostic ( \ or / depending on the Win/Linux). What is a workaround?

2009-05-15 Thread Rajeev Dayal
15, 1:45 pm, Rajeev Dayal rda...@google.com wrote: Hi Igor, The problem is that the resource annotation will only understand either: 1) A file name relative to the package. This must only be a file name, not a path 2) A fully qualified path The problem is that you're using

Re: @Resource path is OS-gnostic ( \ or / depending on the Win/Linux). What is a workaround?

2009-05-15 Thread Rajeev Dayal
that make sense? Thanks. On May 15, 3:30 pm, Rajeev Dayal rda...@google.com wrote: You are correct - if you end up refactoring, you'll have to change the references in the @Resource annotation. The only other way around this is to place the images themselves in the same package

Re: No source code is available for type Error on Web Mode Compile

2009-05-15 Thread Rajeev Dayal
On Fri, May 15, 2009 at 4:45 PM, Tim McCormack ti...@ccs.neu.edu wrote: On May 15, 3:00 pm, Rajeev Dayal rda...@google.com wrote: Now, suppose that project B only has GWT client source in it (no RPC) - then the new version of the plugin will handle this case - it will automatically pull

Re: Eclipse GWT: How to include source from other projects?

2009-05-15 Thread Rajeev Dayal
Ah, I see on this thread that you've provided more details about your project in this thread. Disregard my request for more details in the other thread. So, it seems that you client project needs access to classes in your Java-only project (the shared classes). Why is this? Are these classes that

Re: @Resource path is OS-gnostic ( \ or / depending on the Win/Linux). What is a workaround?

2009-05-15 Thread Rajeev Dayal
('.', '/') + / + imgFileName; } } How about this? On May 15, 4:03 pm, Rajeev Dayal rda...@google.com wrote: Hi Igor, Responses inline: On Fri, May 15, 2009 at 3:47 PM, Igor Moochnick igor.moochn...@gmail.comwrote: You mean PACKAGE or MODULE? In fact I do use PACKAGEs. I mean

Re: I installed the GEP and now...

2009-05-14 Thread Rajeev Dayal
http://examples.roughian.com 2009/4/21 Rajeev Dayal rda...@google.com Hey Ian, On Tue, Apr 21, 2009 at 5:17 PM, Ian Bambury ianbamb...@gmail.comwrote: If I get a spare time-slot I'll give it a go again, but as I said a couple of emails ago, I did that 2 days ago to remove the GEP after I

<    1   2   3   4   5   >