Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-16 Thread Romeo Sanchez
Yes, this is what I want to do. I was hoping we could do it directly from hosted mode. I do not know if I understood well, but what you are basically saying is that We can not run an application/project that involves multiple modules, each one having a different entrypoint in hosted mode? Did I

Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-16 Thread Davis Ford
Actually, you can, but you'll have to compile them both first. To clarify what I mean...if I do this: mvn clean mvn gwt:run -DrunTarget=package.namespace.App1/App1.html Then try to switch URL to App2, it will fail b/c that is not compiled yet. but if I do this: mvn clean mvn gwt:compile mvn

Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-15 Thread Ian Bambury
I'm still not really clear on what you are doing, but is this any help? In 1.7 you can run 2 individual projects at the same time from within Eclipse if you use -noserver. You'll need 2 local web servers (I use Abyss) each having their document root pointed at one of the war folders of the

Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-15 Thread Romeo Sanchez
Thanks a lot for your help. I am going to take a look at your pointers. Sincerely, RSN On Thu, Oct 15, 2009 at 4:53 AM, Ian Bambury ianbamb...@gmail.com wrote: I'm still not really clear on what you are doing, but is this any help? In 1.7 you can run 2 individual projects at the same time

Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-15 Thread Ian Bambury
Just shout if you get stuck. It's one of those situations where you just need to get it working and then you can ignore it, if you get it working, you don't actually need to *understand* it :-) Ian http://examples.roughian.com 2009/10/15 Romeo Sanchez romeo.sanc...@gmail.com Thanks a lot for

Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-15 Thread Davis Ford
Hi, I'm not sure you can do this in hosted mode, but I had a similar situation that I solved, and now it is a set and forget. To be up front -- I am a maven bigot. I think Ant is fine if it is done right, but maven makes my life so much easier that I use it for all new projects. That said, I

Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-14 Thread RSN
I am kind of new with GWT, and I was hoping someone could clarify my following questions, or at least point me out to some light. Thanks for any help. The setting is as follows: - Eclipse 3.4.2 , GWT 1.7.1 and plugin. - Created two basic GWT modules with GWT Plugin under Eclipse. Both are just

Re: Mutiple EntryPoint Modules in Hosted Mode under Eclipse? is it Possible?

2009-10-14 Thread Ian Bambury
I think you need to (or, anyway, I need you to) take a step back and explain what you are trying to achieve here. Why do you need two projects? The usual reason is that you need to reuse code and widgets from the included project in two or more others (e.g. you are building a framework of some