Re: Something is worong with my app in GWT 1.6

2009-05-16 Thread Dean S. Jones
First: *.php URL's are typically handled by an Apache module ( mod_php ), so Apache needs to be intercepting those requests and processing them, the embedded Jetty server will not do this, or Tomcat, no way, no how. That being said, there are php engines written in Java (

Re: GWT 1.6 with Maven and build system questions/survey...

2009-05-16 Thread mgrouch
So far I got this. This seems just a beginning project xmlns=http://maven.apache.org/POM/4.0.0; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd;

Re: How to handle colliding IMPORT statements

2009-05-16 Thread Dean S. Jones
This is normal Java, the only way to disambiguate is to use full package qualification. On May 15, 7:26 pm, Jeff Chimene jchim...@gmail.com wrote: Hi, I realize this is probably a Java question, but: How does one handle colliding import statements? For example:      import

Re: Something is worong with my app in GWT 1.6

2009-05-16 Thread bencoder
Thank you, Jones. I think that I can accept solution B that I mentioned above. The root cause of this problem is just different file directory structure from GWT 1.5. If I follow solution B, the *.php files directory is actually outside of application when it is deployed to a web server.

Re: GWT capabilities for Dummies...

2009-05-16 Thread Salvador Diaz
Hi, 1. Yes, read the following section of the developer's guide: http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.html#DevGuideRemoteProcedureCalls 2. Here's the GWT widgets showcase: http://gwt.google.com/samples/Showcase/Showcase.html 3. See answer 1 4. Yes, there are

Re: History implementation and Kitchen sink example

2009-05-16 Thread 0710
Isee! thanks sumit. will check it out the showcase! On May 13, 7:05 pm, Sumit Chandel sumitchan...@google.com wrote: Hi imgnik, That's right, the Mail sample application doesn't support history, however, the Showcase sample application, as mentioned in my last post, does. You can find the

DisclosurePanel not working properly in Firefox

2009-05-16 Thread Nim
Hi All, I m using DisclosurePanel and setting some text on it.But when i click on it ,other text field in same widget become blank ,and once i close DisclosurePanel text field get populated again. Its working fine with IE Please help me out,thanks in advance. --Nimish

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

2009-05-16 Thread Alyxandor
You need a gwt.xml module in the Common package, anywhere below the code you want to include. These files don't need an EntryPoint in the java source, they just need to be present. You can even leave the source + classes {you MUST have source, classes aren't enough} in their jar, just create

Re: GWT Hibernate issue

2009-05-16 Thread Raul
Hi Jim Thanks for your reply. I want to mention that I have already spent a lot of energy in configuring hibernate. So wont wanna go for Leeonsoft for the time being. The main problem I am getting now is: INFO org.hibernate. impl.SessionFactoryObjectFactory - Not binding factory to JNDI, no

Re: Something is worong with my app in GWT 1.6

2009-05-16 Thread Alyxandor
Like dean said, just getting your php scripts present won't let you run php scripts in hosted mode. Even if you deploy to a php-enabled server, requesting .php returns text, namely, the php source. If you don't want to run caucho, you could try another somewhat underhanded approach... Use the

Getting started with gwt 1.6 and Intellij 8

2009-05-16 Thread Rakesh
hi all, I'm trying to learn GWT (well Ext GWT top be precise) and have lots of issues using Intellij. Firstly, I purchased a book but the examples are based on Eclipse. I'm trying to translate for Intellij but running into issues the main one being that Intellij doesn't seem to want to create

SIGSEGV in Ubuntu java 6 out the Wazoo!

2009-05-16 Thread Alyxandor
Hey all, I've been having a slight problem plaguing me of late, and thought to post this solution for anyone else experiencing the same issue. There's already a few bugs filed for variations of this, but they're a little different, on older builds of GWT, so rather than doing +1 on an old bug

Re: SIGSEGV in Ubuntu java 6 out the Wazoo!

2009-05-16 Thread Vitali Lovich
OpenJDK worked fine for me. Also, the newer Sun JDKs work fine too - there's instructionshttp://www.debianhelp.co.uk/debianjava.htmaround on how to convert the Sun package into a debian package. sudo apt-get install java-package fakeroot make-jpkg sun jdk.bin sudo dpkg -i sun-*.deb sudo

Re: History implementation and Kitchen sink example

2009-05-16 Thread imgnik
I don't understand how did the History.fireCurrentHistoryState() works. when i press the back button what actually happen? can someone advise me ? On May 16, 12:32 pm, 0710 ytbr...@gmail.com wrote: Isee! thanks sumit. will check it out the showcase! On May 13, 7:05 pm, Sumit Chandel

Re: SIGSEGV in Ubuntu java 6 out the Wazoo!

2009-05-16 Thread Alyxandor
Sweet! DANKE! --~--~-~--~~~---~--~~ 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 email to

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

2009-05-16 Thread Tim McCormack
On May 15, 5:16 pm, Rajeev Dayal rda...@google.com wrote: 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 need to be used for GWT RPC? There are two main projects. One is a big ol' database, which

Re: Getting started with gwt 1.6 and Intellij 8

2009-05-16 Thread Jim
1. go to http://www.eclipse.org/downloads/ to download the latest version of Eclipse. I recommend Eclipse IDE for Java EE Developers. 2. follow http://code.google.com/eclipse/docs/getting_started.html to install Google Eclipse Plugin. 3. Use Google Eclipse Plugin to create a simple application

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

2009-05-16 Thread Tim McCormack
On May 16, 9:10 am, Alyxandor a.revolution.ultra.b...@gmail.com wrote: Your com.example.web and com.example.shared approximations aren't actually in the same package, are they? Not the same Project, no. Think of the gwt.xml module definition files as GWT's way of saying import

i need help regarding linking two pages

2009-05-16 Thread J.Sunil Kumar
Hi, i am creating two pages for example 1)login.java page -having username , password and submit button 2) after clicking the submit button i need to open welcome.java page how i can do this.plz mention

Re: i need help regarding linking two pages

2009-05-16 Thread Jim
The following is an example I use in GWT mail: // Add a click handler that displays a ContactPopup when it is clicked. link.addClickHandler(new ClickHandler() { //Similar to Your login page public void onClick(ClickEvent event) {

Compiling permutations Analyzing permutation #1 error when I used smartgwt components inside a gwt project.

2009-05-16 Thread ayo...@gmail.com
Hi, I trying to used smartgwt components inside an existing gwt project, but when I call a class that uses smartgwt components I get the following error: Compiling permutations Analyzing permutation #1 [ERROR] Errors in jar:file:/C:/Users/projectRoute/trunk/lib/smartGwt/

Re: how to make gwt eclipse plugin compiler see other projects

2009-05-16 Thread Tim McCormack
On May 15, 9:15 pm, Donald.W.Long donald.w.l...@thelongsfamily.com wrote: First lets look at the depent project. You must create this project as a GWT project. But then I can't choose the package name I want, correct? It'll be something.client, right?

Re: Compiling permutations Analyzing permutation #1 error when I used smartgwt components inside a gwt project.

2009-05-16 Thread vetal
Hello! What version of smartgwt you use? I use smartgwt-1.0b2 and don't get error like you On 16 май, 23:08, ayo...@gmail.com ayo...@gmail.com wrote: Hi, I trying to used smartgwt components inside an existing gwt project, but when I call a class that uses smartgwt components I get the

@gwt.TypeArgs gwt 1.6 specification documentation

2009-05-16 Thread Blessed Geek
Dear GWT team, This may seem trivial but I think even if it is worth just a paragraph or two, you should document the new requirements rather than just referring to unlike pre-gwt1.5, you have to used parameterised types in blogs and discussions. Having proper documentation makes it

Re: @gwt.TypeArgs gwt 1.6 specification documentation

2009-05-16 Thread Blessed Geek
I suppose the actual word is hearsay rather than heresay. Furthering my engagement in trivial semantics, so my other question is, begging your pardon for indulging in technical jargon purism, Is GWT RPC can really be called RPC. If it can be called RPC, then every time I time into my browser

Re: NullPointerException in the StockWatcher on gwt-mac-1.6.4

2009-05-16 Thread Pavel
Hi Sumit, I have solved the problem by updating Mac OS X to version 10.5.7. Thank you, Pavel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Problems with ImageBundle in IE8 when not in compatibility mode

2009-05-16 Thread Alex Epshteyn
BE CAREFUL when copying code from this page - Thomas Broyer's comment has an error. The correct meta tag to add is meta http-equiv=X-UA-Compatible content=IE=EmulateIE7 / be sure the first attribute is http-equiv, not name! (wasted 20 minutes on this) I can confirm that this tag fixes the

To deploy GWT1.6 app on my own local web server issue

2009-05-16 Thread bencoder
Dear all I use EasyPHP, a kind of WAMP, to build my own local server (http:// localhost:80/). Then, I create a application using Eclipse with GWT1.6 plug at localhost/myAPP directory. This application, myAPP, needs to request JSON data from json.php file which locates at localhost/json

Re: Compiling permutations Analyzing permutation #1 error when I used smartgwt components inside a gwt project.

2009-05-16 Thread Google™ Web Toolkit Applications
I solved, the problem. I was using a previous version of gwt-1.5.3. Thanks anyway On 16 mayo, 16:09, vetal vitaly.parfo...@gmail.com wrote: Hello! What version of smartgwt you use? I use smartgwt-1.0b2 and don't get error like you On 16 май, 23:08, ayo...@gmail.com ayo...@gmail.com wrote:

Re: Compiling permutations Analyzing permutation #1 error when I used smartgwt components inside a gwt project.

2009-05-16 Thread Google™ Web Toolkit Applications
I solved, the problem. I was using a previous version of gwt-1.5.3. Thanks anyway On 16 mayo, 16:09, vetal vitaly.parfo...@gmail.com wrote: Hello! What version of smartgwt you use? I use smartgwt-1.0b2 and don't get error like you On 16 май, 23:08, ayo...@gmail.com ayo...@gmail.com wrote:

[gwt-contrib] gwt TRUNK seems to be to restrictive for what GWT.create can return

2009-05-16 Thread Cameron Braid
I am tryng gwt trunk r5406 and have run into issues with GWT's rebinding. here are some errors from my different modules : [java][ERROR] Errors in 'jar:file:/media/home/cameronbraid/.m2/repository/gwtquery/gwtquery/0.3-a/gwtquery-0.3-a.jar!/gwtquery/client/SelectorEngine.java'