Re: GWT import external jar

2014-04-24 Thread Iqbal Singh
Hi I am also facing this same problem. i have a jar file that contains .class files which I need for my project How do I import them to my GWT project? On Sunday, May 24, 2009 8:27:24 PM UTC-4, vogella wrote: Hi, I included a example description for including external jars / Java projects

Re: GWT import external jar

2014-04-24 Thread Juan Pablo Gardella
If you want to use this jar to be converted to javascript you need to add the sources no the .class. If you are using maven is easy: dependency groupIdcom.foo/groupId artifactIdfoo/artifactId version/version !-- Probably provided if you only use in the client side.--

Re: GWT import external jar

2009-05-25 Thread vogella
Hi, I included a example description for including external jars / Java projects into GWT projects (client side) in this tutorial: http://www.vogella.de/articles/GWT/article.html Best regards, Lars On 22 Apr., 18:53, Qing zq.zhangq...@gmail.com wrote: Oh, i see. Thankyou! It works. On Apr

Re: GWT import external jar

2009-04-22 Thread Qing
Oh, i see. Thank you! It works. On Apr 6, 10:06 am, Jason Essington jason.essing...@gmail.com wrote: That is correct, if your external library is only used on the server   side (Hibernate, axis, etc) then there is no need to reference it in   your gwt.xml file. However, if you do need to

Re: GWT import external jar

2009-04-06 Thread Jason Essington
That is correct, if your external library is only used on the server side (Hibernate, axis, etc) then there is no need to reference it in your gwt.xml file. However, if you do need to use it in your client code then it must contain source (.java files) as well as have a gwt.xml file of its

Re: GWT import external jar

2009-04-04 Thread Qing
I added FinancialToolkit.gwt.xml into the jar. Doesn't work. do I need to put this file to the folder of OnlineBanker as well? On Apr 4, 12:16 am, Nicanor Babula nicanor.bab...@gmail.com wrote: Hi,         It looks like you have to add to your jar file FinancialToolkit.gwt.xml. This may

GWT import external jar

2009-04-03 Thread Qing
Hi, I'm now using gwt develop my web application. I create a gwt project 'OnlineBanker' in command line and import it into eclipse. The server side code of OnlineBanker need to use the class in another java project 'FinancialToolkit'. I export FinancialTookit as a jar file, and import it into