Re: Strange compilation errors on linux platform

2017-03-24 Thread nik
e time to worry about it now... Settled on building this component manually on windows :( On Wednesday, March 22, 2017 at 12:49:11 PM UTC-4, Jens wrote: > > > Same result, i guess u can fix it by not using gwt... >> > > Have you tried increasing the max number of open fi

Re: Strange compilation errors on linux platform

2017-03-22 Thread Jens
> Same result, i guess u can fix it by not using gwt... > Have you tried increasing the max number of open files on linux as mentioned in this thread? Alternatively try upgrading to GWT 2.8 which fixed a file handle issue, see: https://github.com/gwtproject/gwt/

Re: Strange compilation errors on linux platform

2017-03-22 Thread nik
:43:40 AM UTC-5, Sai Siddarth Muralidharan wrote: > > I am running into the same issue now. Any idea how to fix this? > > On Friday, October 15, 2010 10:44:59 AM UTC-4, bananos wrote: >> >> We have a pretty heterogeneous team which works with GWT on Mac, >> Windows &a

Re: [GWT developer plugin is not support on linux]

2015-03-16 Thread Rogelio Flores
I use ubuntu 14.04, and just wanted to reiterate that indeed SDM works the same and equally fast. I also have a copy of Firefox 24 ESR with the GWT plugin where I can run GWT apps without issues. On Sunday, March 15, 2015 at 2:35:32 PM UTC-4, Jens wrote: > > > I see on Windows, if run as web ap

Re: [GWT developer plugin is not support on linux]

2015-03-15 Thread Jens
> I see on Windows, if run as web application normally within the helping > of gwt developer plugin, after I run my project, then I edit my codes, just > refresh the browser and everythings will change follow my code changing, > it's so convenient > Super Dev Mode works the same if you use G

[GWT developer plugin is not support on linux]

2015-03-15 Thread itpro1211
within the helping of gwt developer plugin, after I run my project, then I edit my codes, just refresh the browser and everythings will change follow my code changing, it's so convenient. So I'm wondering why did you disable gwt dev plugins on Linux? and may I install this plugin on Linux on

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-09 Thread Magnus
Finally, it works for me! It seems to be normal that there is no source code at the beginning, not before a click on "DevMode On". In addition, after a while the Bookmarklet "DevMode On" did not work anymore. I struggled with this problem until I deleted recreated them by dragging them onto my

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-07 Thread Magnus
I removed the -bindAddress 0.0.0.0 option and now the code server says: The code server is ready. Next, visit: http://localhost:9876/ I guess that now no devModeUrlWhitelistRegexp option should be necessary. Compiled wit GWT compiler, started code server, started app, but still no source cod

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-07 Thread Magnus
I understand that by default only localhost is supported. This would be sufficient for me. I want to stay on my local machine, so that no white listing is necessary. However, when starting SDM the console writes: The code server is ready. Next, visit: http://magnus:9876/ I don't need "magnus"

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-07 Thread Magnus
I understand that by default only localhost is supported. This would be sufficient for me. I want to stay on my local machine, so that no white listing is necessary. What However, when starting SDM the console writes: The code server is ready. Next, visit: http://magnus:9876/ I don't need "m

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-07 Thread Magnus
And why don't I see my sources in chrome dev tools? Magnus -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-07 Thread Jens
In GWT 2.6.x devModeRedirectEnabled is enabled by default, so you can remove it from your module. Because it is enabled by default GWT restricts SDM to 127.0.0.1 and localhost for security. If you need to access your app through "myhost" then you have to whitelist that host explicitly using .

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-06 Thread Magnus
Hi, thank you, good explanation! I think I got it now. The code server is running and I am able to run my app. But there is one limitation: I cannot see my sources! According to a howto that I found on the web, the

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-05 Thread Jens
> > I remember having created this bookmarklet when reading some SDM document, > but I never understood how to use it. Why should one use it to recompile > the app, instead of running the GWT compiler in eclipse? And what exactly > is the SDM code server (remember, I started my app in eclipse b

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-04 Thread Magnus
On Monday, August 4, 2014 8:57:32 PM UTC+2, Jens wrote: > > Remember where I am standing: >> >> *In eclipse I call "run as web application", and in the generated link >> (http://127.0.0.1:/index.html?gwt.codesvr=127.0.0.1:9997 >>

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-04 Thread Jens
> > Remember where I am standing: > > *In eclipse I call "run as web application", and in the generated link > (http://127.0.0.1:/index.html?gwt.codesvr=127.0.0.1:9997 > ) I cut off > the portion after and including the "?" charac

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-04 Thread Magnus
On Monday, August 4, 2014 1:19:11 AM UTC+2, Thomas Broyer wrote: > > > On Sunday, August 3, 2014 11:56:49 PM UTC+2, Magnus wrote: >> >> Indeed, when I open the dev tools in chrome (F12) and go to the "Sources" >>> tab, I can open a lot of JS code and I can set breakpoints there. But I >>> cannot

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-03 Thread Thomas Broyer
On Sunday, August 3, 2014 11:56:49 PM UTC+2, Magnus wrote: > > To debug the JavaScript in your browser you can either use your browsers >> dev tools or try using the experimental SDBG plugin for eclipse. When you >> use your browsers dev tools then you have to set breakpoints inside the >> bro

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-03 Thread Magnus
> > To debug the JavaScript in your browser you can either use your browsers > dev tools or try using the experimental SDBG plugin for eclipse. When you > use your browsers dev tools then you have to set breakpoints inside the > browser, when you use SDBG you can set them in eclipse. It is impo

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-03 Thread Jens
> > I cannot even debug by "tracing", i. e. do some System.out.println > commands. I cannot see any output. > On client side use GWT.log or the GWT emulation of java.util.logging (http://www.gwtproject.org/doc/latest/DevGuideLogging.html). Both log to your browser console. -- J. -- You rece

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-03 Thread Jens
> > Using the browser's dev tools. For eclipse there is a proof-of-concept >> plugin to allow debugging in the IDE: https://github.com/sdbg/sdbg >> > > Do the two sentences indicate two debugging methods? > When you use SDM you have your app compiled to JavaScript running in your browser and y

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-03 Thread Vassilis Virvilis
It's console.log to send it to browser's console (F12 opens the browser's dev tools usually). Check http://www.gwtproject.org/doc/latest/DevGuideLogging.html Vassilis On Sun, Aug 3, 2014 at 10:03 AM, Magnus wrote: > I cannot even debug by "tracing", i. e. do some System.out.println > command

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-03 Thread Vassilis Virvilis
For server side code you can use your standard logging facilities. I understand that may tedious to get right log4j vs slf4j vs commons logging vs java.util.logging but it is standard plumbing in every project. I am using only logging for debugging in server side but AFAIK you can do step by step

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-03 Thread Magnus
I cannot even debug by "tracing", i. e. do some System.out.println commands. I cannot see any output. Magnus -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-08-02 Thread Magnus
How can I debug step by step in SDM? >> > > Using the browser's dev tools. For eclipse there is a proof-of-concept > plugin to allow debugging in the IDE: https://github.com/sdbg/sdbg > Do the two sentences indicate two debugging methods? If so, what are the browser's dev tools? If not: Why

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-29 Thread Manuel Carrasco Moñino
Here you have a post about what is coming in eclipse to run superdev mode with just a click. For inpatients, just use GWT-2.7.0-SNAPSHOT and include the gwt-codeserver.jar in your project classpath, run dev mode as usual in your project, and finally edit the launcher configuration and add the -su

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-29 Thread Manuel Carrasco Moñino
Forgot the link to the post: http://www.sencha.com/blog/getting-started-with-gwt-super-dev-mode On Tue, Jul 29, 2014 at 8:48 PM, Manuel Carrasco Moñino wrote: > Here you have a post about what is coming in eclipse to run superdev mode > with just a click. > > For inpatients, just use GWT-2.7.0-

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-28 Thread Thomas Broyer
I think the goal is to eventually replace all mentions of DevMode in gwtproject.org with SuperDevMode with up-to-date information (now that DevMode is only usable in IE and GWTTestCase, but because of GWTTestCase we still need to talk about how code is executed in the JVM with a JS/JVM bridge, rath

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-27 Thread Blake McBride
Embarrassing. Yes, that is exactly what I was looking for. I've seen the link but never followed it because I thought it was meant to go into highly technical details that I wasn't yet up to. It is clear that a lot of people are having a lot of trouble with SDM. There are a few good pages that

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-27 Thread Thomas Broyer
On Sunday, July 27, 2014 5:22:53 PM UTC+2, Blake McBride wrote: > > I spent a little time many months ago trying to get SDM working. I think > I succeeded but was very surprised about the number of steps required. The > thing that surprised me most, however, was discovering that I had to have

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-27 Thread Blake McBride
I spent a little time many months ago trying to get SDM working. I think I succeeded but was very surprised about the number of steps required. The thing that surprised me most, however, was discovering that I had to have two servers running (if I am correct) - an app server, and a code server.

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-27 Thread Jens
> > my GWT compiler does not recognize a "-draft" option. I am running GWT > 2.6.0. > I think it is -draftCompile . Doesn't the GWT compiler help (which is automatically shown on console when you provide an unknown parameter) doesn't show the correct option? However, I changed my code (added

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-27 Thread Magnus
Hi Thomas, my GWT compiler does not recognize a "-draft" option. I am running GWT 2.6.0. I remember some problems with GWT designer after upgrading GWT the last time, which forced me to go back to an older version. I think it was 2.6.0. However, I changed my code (added a cell view into my spl

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-26 Thread Thomas Broyer
On Sunday, July 27, 2014 1:49:35 AM UTC+2, Magnus wrote: > > Hi, > > thanks, after all, I am able to get my app running in whatever mode, I > think it's Super Dev Mode... > > >- call eclipse's "Run as Web Application" command >- open the URL displayed by eclipse, but omit the "gwt.codesv

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-26 Thread Magnus
Hi, thanks, after all, I am able to get my app running in whatever mode, I think it's Super Dev Mode... - call eclipse's "Run as Web Application" command - open the URL displayed by eclipse, but omit the "gwt.codesvr=127.0.0.1:9997" suffix However, after changing some code, a sim

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-07 Thread Thomas Broyer
On Monday, July 7, 2014 12:47:18 AM UTC+2, Magnus wrote: > > For the moment, I am just happy to get my app running with the URL above: > > http://127.0.0.1:/index.html > > > I cannot see why I need a run configuration. I can run my app, but I still > don't know how to set breakpoints and do

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-06 Thread Magnus
this: http://127.0.0.1:/index.html?gwt.codesvr=127.0.0.1:9997 And this would produce the error message shown in my initial posting: "Sorry, the GWT Developer Plugin no longer works with Chrome on Linux" It's your comment that solved this: In your case, I'd say: just ke

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-06 Thread Thomas Broyer
On Sunday, July 6, 2014 8:27:29 PM UTC+2, Henrik wrote: > > On Saturday, July 5, 2014 11:29:10 PM UTC+2, Magnus wrote: >> >> I never managed to get SuperDevMode work, because I don't understand it's >> basic architecture and I was missing some detailed tutorial. So >> SuperDevMode now is the on

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-06 Thread Henrik
On Saturday, July 5, 2014 11:29:10 PM UTC+2, Magnus wrote: > > I never managed to get SuperDevMode work, because I don't understand it's > basic architecture and I was missing some detailed tutorial. So > SuperDevMode now is the only development mode with GWT and Eclipse then I > finally need a

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-06 Thread Thomas Broyer
On Sunday, July 6, 2014 4:25:41 PM UTC+2, Magnus wrote: > > > > On Sunday, July 6, 2014 12:53:41 AM UTC+2, Jens wrote: >> >> https://stackoverflow.com/a/18333050/116472 >>

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-06 Thread Magnus
On Sunday, July 6, 2014 12:53:41 AM UTC+2, Jens wrote: > > https://stackoverflow.com/a/18333050/116472 > Thanks, but the "big picture" is still intransparen

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-06 Thread Thomas Broyer
Thanks Jens for the link ;-) I just wanted to add that Manolo has been working this week on making it it easier to do the switch by making it (almost) as easy as DevMode (if not easier): just launch DevMode with an additional -superDevMode flag. This will ship in 2.7. And Brandon has been worki

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-07-05 Thread Jens
https://stackoverflow.com/a/18333050/116472 -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. T

GWT Developer Plugin no longer works with Chrome on Linux

2014-07-05 Thread Magnus
Hello, after upgrading my Debian box (to jessie) I noticed that chrome (chromium) fails to install the GWT developer plugin: "Sorry, the GWT Developer Plugin no longer works with Chrome on Linux" Is this because people should use SuperDevMode instead? Well, I never mana

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-06-23 Thread Jens
> > Does this mean GWT itself is on its way to be dropped by Google? > No. GWT is not a real Google product anymore, it is managed by the GWT steering group. It just happens that most commits still come from Google employees. Chrome dropped support for NPAPI plugins in general. A lot of them c

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-06-23 Thread Javier Artiles
For some reason this Chrome message has just popped up for me today. I already had to downgrade Firefox to be able to continue using the development plugin there. I've been developing with GWT on Linux/Chrome for a long time and I'm quite shocked that Google would stop supporting

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-06-10 Thread Robert M
On Thursday, May 22, 2014 4:15:10 AM UTC-6, Abel Barbosa wrote: > > Hi. > > I've been developing some web applications with GWT. > > Yesterday I updated my Google Chrome on Linux Ubuntu and now I get the > following message when trying to use Development Mode: >

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-06-05 Thread DanielM
Congratulations - you are turning into Microsoft. On Saturday, May 24, 2014 1:01:30 AM UTC+3, Jens wrote: > > So what's the solution now for GWT developers who were using chrome? How >> are we going to develop with chrome now? >> > > User SuperDevMode or use an older Chrome version and turn off a

Re: Chrome on Linux no longer supported, really?

2014-05-28 Thread Thomas Broyer
On Tuesday, May 27, 2014 8:30:24 PM UTC+2, Federico Diaz wrote: > > Is this permanent? > Yes. See http://blog.chromium.org/2013/09/saying-goodbye-to-our-old-friend-npapi.html And before you ask: no, the plugin cannot be rewritten with PPAPI or anything else (I once proposed using the debugger

Chrome on Linux no longer supported, really?

2014-05-28 Thread Federico Diaz
Is this permanent? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to go

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-05-23 Thread Jens
> > So what's the solution now for GWT developers who were using chrome? How > are we going to develop with chrome now? > User SuperDevMode or use an older Chrome version and turn off autoupdate. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web T

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-05-23 Thread google400
So what's the solution now for GWT developers who were using chrome? How are we going to develop with chrome now? On Thursday, May 22, 2014 3:52:38 PM UTC+5, Jens wrote: > > Chrome on Linux dropped NPAPI support which is needed for the GWT browser > plugin, thus the plugin won

Re: GWT Developer Plugin no longer works with Chrome on Linux

2014-05-22 Thread Jens
Chrome on Linux dropped NPAPI support which is needed for the GWT browser plugin, thus the plugin won't work anymore on Linux unless you use an older version of Chrome. Windows and Mac users will have the same issue in a couple of month. Firefox 24 ESR and the non ESR version up to versi

GWT Developer Plugin no longer works with Chrome on Linux

2014-05-22 Thread Abel Barbosa
Hi. I've been developing some web applications with GWT. Yesterday I updated my Google Chrome on Linux Ubuntu and now I get the following message when trying to use Development Mode: "Sorry, the GWT Developer Plugin no longer works with Chrome on Linux" Is this lack of sup

Re: Strange compilation errors on linux platform

2014-02-03 Thread Sai Siddarth Muralidharan
I am running into the same issue now. Any idea how to fix this? On Friday, October 15, 2010 10:44:59 AM UTC-4, bananos wrote: > > We have a pretty heterogeneous team which works with GWT on Mac, > Windows & linux machines. > One of our latest commit crashed the automatic bui

Problems with dev plugin on firefox 26, Linux(Fedora 19/64 bit)

2013-12-24 Thread Thomas Broyer
Are you using the Fedora package or an archive downloaded from Mozilla? It might be a packaging issue (have a look at the GWT issue tracker, there's something about this) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe fro

Problems with dev plugin on firefox 26, Linux(Fedora 19/64 bit)

2013-12-24 Thread mtils...@gmail.com
I can't get the gwt plugin to work with Firefox 26 on Linux. I have the "Google Web toolkit Developer Plugin for Firefox 1.26" installed and if I downgrade to Firefox 24 anything works as expected. But in firefox 26 I just get the "Development Mode requires the GWT Develop

Re: Gwt Application Hosting in Linux with Apache tomcat

2013-12-02 Thread Michael Prentice
Looks like a Tomcat configuration issue and not a GWT problem. There are lots of discussions out there about how to build and deploy your application for production. I recommend searching this group and/or Googling something like 'GWT war production deploy' On Friday, November 29, 2013 11:48:42

Gwt Application Hosting in Linux with Apache tomcat

2013-11-29 Thread siva kumar
Hi I am new to gwt .. i developed the gwt webapplication with mysql. In local machine i deployed the application and compile into war and rename the file into tomcat web apps folder its working fine in local but while deploy the files into hosting server i get this kind of Exception.but jsp pa

Emulator Performance and Benchmarks : Windows and Linux : AMD and Intel

2013-01-28 Thread Hanasaki Jiji
Are there any benchmarks of emulator vs specific device performance? Emulator on Windows vs Linux with the same hardware / win/lin on amd vs intel? A table like : CPU | OS | Emulator | real hardware One of the key things I am looking for is indicators of if the 6 core and 8 core AMD CPU's

Re: RequestFactory ValidationTool works on Linux but not on Windows

2012-12-26 Thread Aldo Neto
2 at 9:53 AM, Aldo Neto wrote: > Hi, > > I'm still facing this problem, so does anyone know how to fix this > problem? Any suggestions? > > Tks > > On Sat, Oct 6, 2012 at 7:30 PM, Aldo Neto wrote: > >> I'm using Java 1.6 on both, but Oracle on Windows and

Re: RequestFactory ValidationTool works on Linux but not on Windows

2012-10-12 Thread Aldo Neto
Hi, I'm still facing this problem, so does anyone know how to fix this problem? Any suggestions? Tks On Sat, Oct 6, 2012 at 7:30 PM, Aldo Neto wrote: > I'm using Java 1.6 on both, but Oracle on Windows and OpenJDK on Linux. > > The command is the same and the classpat

Re: RequestFactory ValidationTool works on Linux but not on Windows

2012-10-06 Thread Aldo Neto
I'm using Java 1.6 on both, but Oracle on Windows and OpenJDK on Linux. The command is the same and the classpath should not be the problem, as I have other requests in the same directory as this one (the ContratoUsuarioRequest) and they present no errors. Thanks On Sat, Oct 6, 2012 at 7:

Re: RequestFactory ValidationTool works on Linux but not on Windows

2012-10-06 Thread Thomas Broyer
ting my project to GWT 2.4 (I was using GWT v2.3) and when > running the ValidationTool I'm getting an error, but that error is only > displayed on Windows. When I run the same project on Linux, I get no error. > > The output message is below. > > I checked the ContratoUsuar

RequestFactory ValidationTool works on Linux but not on Windows

2012-10-06 Thread Aldo Neto
Hi, I'm migrating my project to GWT 2.4 (I was using GWT v2.3) and when running the ValidationTool I'm getting an error, but that error is only displayed on Windows. When I run the same project on Linux, I get no error. The output message is below. I checked the ContratoUsuarioRequest

An error occurred while attempting to contact the server Linux Deployment

2012-04-07 Thread Vikram Kohli
Hi All, I have deployed a simple test application(sample code generated in GWT project) in a Linux(Ubantu 10.4). When ever I enter the name and click on the Send button, I am getting error in the popup. Server replies: An error occurred while attempting to contact the server. Please check your

Immediate required Linux System Administrator for contract position in Detroit, MI

2012-03-29 Thread Gopal Sharma
Greetings! Please help me on this with your available consultants. Please reply to gopal.sha...@idctechnologies.com only Immediate required Linux System Administrator for contract position in Detroit, MI Job Roles: Solaris System Administrator Location: Detroit, MI Job Roles

Re: GWT plugin on FF10 Linux spewing log output

2012-03-23 Thread Alan Leung
It is a compile time flag. I accidentally turned it on in one of the build. It should go away if you update or download the latest one from SVN. -Alan On Fri, Mar 23, 2012 at 3:59 PM, Steve J wrote: > When I run my application in devmode on Firefox10 (Linux x86_64) I get > debug spam

GWT plugin on FF10 Linux spewing log output

2012-03-23 Thread Steve J
When I run my application in devmode on Firefox10 (Linux x86_64) I get debug spam in the window where I ran firefox: Waiting for response, flushed output Socket::emptyWriteBuf: len=3 Waiting for response, flushed output Socket::emptyWriteBuf: len=29 Waiting for response, flushed output Socket

Re: Best VPN for Linux based GWT development

2012-01-10 Thread mukut
Hi We use upenVPN and it works very well with windows, linux, and othe OS with or without SSL and certficiate etc. Infact I have been using openVPN for last 5yrs and never see any issue with it. Client OS we used are windows, xp, vista, windows 7, Linux, debian, ubuntu etc. Thanks, Mukut On Tue

Re: Best VPN for Linux based GWT development

2012-01-09 Thread Konstantin Zolotarev
I'm using openvpn + ubutnu server 11.04. Works great. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/sW19Ieg6okQJ. To post to this group, send

Best VPN for Linux based GWT development

2012-01-09 Thread sachin sreenivasan
Hi, This might not really be a GWT related question. But I wanted to know which is the best VPN for a linux based environment. Have to do things like CVS, sharing the GWT app in hosted mode etc. Tried openvpn and hamachi. Not able to install those properly. So looking at other options. Please

GWT project in eclipse corrupted when Linux is restarted

2011-12-14 Thread sachin sreenivasan
Hi all, I have a really wierd problem. I setup the eclipse in my Linux virtual machine and then installed GWT in the eclipse. But after I create the GWT project, whenever I restart my linux VM, the eclipse is corrupted and I am not able to see my project at all.. Can someone please let me know

Re: GWT for Eclipse on linux

2011-12-06 Thread Lukasz Plotnicki
Just download and use the eclipse version from eclipse.org. I work only on linux (ubuntu) and had no problems whatsoever with eclipse and the google plugin for eclipse. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Re: GWT for Eclipse on linux

2011-12-06 Thread Derek
I always just download eclipse separately into my own home directory and run it from its own ~/eclipse directory. Package managers never seem to set things up the way I want them to. I've never had any problems using GWT with Eclipse on Linux. I'm doing it even now. :) Derek On Dec 6

Re: GWT for Eclipse on linux

2011-12-06 Thread darrell pfeifer
gle update sites afterwards. darrell On Dec 5, 9:28 pm, sachin sreenivasan wrote: > Hi ppl, > >    I had GWT working fine on windows. then i decided to try it on > linux. I gave the command  "yum install eclipse-fedorapackager" and > the eclipse got installed on Linux. Bu

GWT for Eclipse on linux

2011-12-05 Thread sachin sreenivasan
Hi ppl, I had GWT working fine on windows. then i decided to try it on linux. I gave the command "yum install eclipse-fedorapackager" and the eclipse got installed on Linux. But when I gave the GWT link in the Install Software it failed saying some prerequisites were missing. Then

Re: onsubmit complete called in windows but problem in linux

2011-08-11 Thread Alex Dobjanschi
What isn't working -- upload (you don't see the call), server processing, there isn't any response? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolk

Re: onsubmit complete called in windows but problem in linux

2011-08-11 Thread karim duran
Hi Aman I'm very surprised about your issue : "FileUpload works under Window not Linux". It smells file READ/WRITE permission Have a reflection about this : 1) From point of view of client ( browser), an upload is no more than a HTTP form POST with . The browser let you cho

Re: onsubmit complete called in windows but problem in linux

2011-08-10 Thread aman
Thanks for your reply,though I am not using gwt-upload but I tried initially but it did not worked according to my expectations so now I am using the simple FileUpload control.It is working well in windows but not in linux can you suggest me some reason why this is happening because at the moment

Re: onsubmit complete called in windows but problem in linux

2011-08-10 Thread Jeff Chimene
On 08/10/2011 04:26 AM, aman wrote: > Hi, > > I have created a file upload system which allows the user to > upload .txt,.xls and .csv formats.When I executed in windows it is > running fine but now when I deployed the application in linux(Debian) > using tomcat server I am

onsubmit complete called in windows but problem in linux

2011-08-10 Thread aman
Hi, I have created a file upload system which allows the user to upload .txt,.xls and .csv formats.When I executed in windows it is running fine but now when I deployed the application in linux(Debian) using tomcat server I am facing this issue: The onsubmit method is called for all the file

Gwt installation on Linux Ubuntu

2011-05-30 Thread Mayank Jain
I am getting below mentioned errors while installing GWT plugin on my Linux box. uname -a Linux mayank-Inspiron-1525 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Eclipse IDE for Java Developers Version: 1.3.2.20110218-0812 Build id: 20110218

Re: Problem with GXT not running on Linux machines

2011-04-20 Thread sridevi macherla
Hi Phani, The problem I am facing is that I am trying for lookup for Java objects class to get the BeanModel class and now I am getting different javascript errors when we are executing on Linux machines. Nt sure why i am getting even i tried to compile in Pretty version as well but no use

Re: Problem with GXT not running on Linux machines

2011-04-20 Thread phani kumar
Hi Sri, Can you please be little clear about your problem? Application is not getting built or its not loading the application? please specify the module descriptors you are using? On Wed, Apr 20, 2011 at 12:42 PM, sridevi macherla < sridevimache...@gmail.com> wrote: > Hi, > > I am facing an issu

Problem with GXT not running on Linux machines

2011-04-20 Thread sridevi macherla
Hi, I am facing an issue with GXT no getting executing especially with BeanModelFactory, Module itself is failing to load, Can someone please help me in this regard. Thanks Sri -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to

Re: Strange compilation errors on linux platform

2011-04-14 Thread paxdei
I ran into the same problem (compile fails only on linux) with GWT version 2.2.0 With hacking some log statements into the GWT compiler I finally found the reason: java.io.FileNotFoundException: /XXX/calendar.year.gif (Too many open files) at java.io.FileInputStream.open(Native

Re: GWT 2.2 on linux: Designer not wokring

2011-03-30 Thread Michael Howard
Andy, I reinstalled Java EE and Eclipse IDE for Java EE Developers on my CentOS 5.5 machine. Spent several hours and made several unsuccessful attempts. I moved to a Win32 XP machine and installed there. Everything went fine and I was able to successfully run GWT Designer. I am disappointed that

Re: GWT 2.2 on linux: Designer not wokring

2011-03-29 Thread Michael Howard
Andy, Thank you for your response. I just checked and I did *not* install the Eclipse IDE for Java EE Developers. I am downloading it now and will try again. Q: Was there someplace in the GWT doc that told me I should use the Java EE version of Eclipse? Or should that just have been "common kno

Re: GWT 2.2 on linux: Designer not wokring

2011-03-29 Thread Andy Nguyen
Micheal did you use: Eclipse IDE for Java EE Developers? On Mon, Mar 28, 2011 at 10:21 PM, MichaelUFL wrote: > > Summary: GWT Designer Beta crashes eclipse after initialization > timeout > > Detail: > > I am a GWT newbie setting up on CentOS 5.6. > Fresh Eclipse Helios 3.6 SR2 install. > I instal

Re: GWT 2.2 on linux: Designer not wokring

2011-03-29 Thread MichaelUFL
Summary: GWT Designer Beta crashes eclipse after initialization timeout Detail: I am a GWT newbie setting up on CentOS 5.6. Fresh Eclipse Helios 3.6 SR2 install. I installed GWT Designer to go through tutorials. I encountered problem with: No GWT support found for this system I did my best to

Re: PNGs breaking the build on Linux (GWT 2.1.0)

2011-03-14 Thread Petru Dimulescu
d it to > our TeamCity CI box (Linux, Ubuntu 9.01) with the same pom.xml, same > local Maven repo, etc., I get the following error on build (see > below). It's complaining about some PNGs that have the following > attributes (from ImageMagick 'identify' command): > &g

Re: GWT 2.2 on linux: Designer not wokring

2011-03-01 Thread Eric Clayberg
I'm glad that worked. That was our recommendation here as well... http://code.google.com/p/google-web-toolkit/issues/detail?id=6029#c26 On Feb 28, 3:20 pm, Richard van der Wath wrote: > Problem disappeared after I installed GWT Designer BETA > fromhttp://code.google.com/intl/af/webtoolkit/tools

Re: GWT 2.2 on linux: Designer not wokring

2011-02-28 Thread Richard van der Wath
Problem disappeared after I installed GWT Designer BETA from http://code.google.com/intl/af/webtoolkit/tools/download-gwtdesigner-beta.html Thanks for everybody's help! Richard On 28 February 2011 21:17, Richard van der Wath wrote: > I see the discussion refers to 64 bit systems. I have the issu

Re: GWT 2.2 on linux: Designer not wokring

2011-02-28 Thread Richard van der Wath
I see the discussion refers to 64 bit systems. I have the issue on a 32 bit system and libwebkit seems to be fine: /usr/lib> ls -l libweb* lrwxrwxrwx 1 root root 23 2011-02-28 21:12 libwebkit-1.0.so -> libwebkit-1.0.so.2.17.8 lrwxrwxrwx 1 root root 23 2011-01-12 21:58 libwebkit-1.0.so.2

PNGs breaking the build on Linux (GWT 2.1.0)

2011-02-25 Thread Nick
Hi, I've got a GWT 2.1 project that has some transparent 8-bit PNGs as resources. I'm developing on Mac OS X Snow Leopard, and building/ packaging my project (with Maven) works fine. But when I upload it to our TeamCity CI box (Linux, Ubuntu 9.01) with the same pom.xml, same local Maven

Re: GWT 2.2 on linux: Designer not wokring

2011-02-25 Thread Eric Clayberg
See the discussion and suggestions here... http://code.google.com/p/google-web-toolkit/issues/detail?id=6029 -- 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 unsu

Re: GWT 2.2 on linux: Designer not wokring

2011-02-25 Thread Filipe Sousa
I'm having exactly the same problem. The problem started to show up after I updated java to version 1.6.0_24 $ java -version java version "1.6.0_24" Java(TM) SE Runtime Environment (build 1.6.0_24-b07) Java HotSpot(TM) 64-Bit Server VM (build 19.1-b02, mixed mode) $ cat /etc/redhat-release Fedo

Re: GWT 2.2 on linux: Designer not wokring

2011-02-24 Thread Mannemarak
On Thursday, February 24, 2011 1:08:08 PM UTC+8, Mosheh EliYahu wrote: > > Hi > I am using Ubuntu 10.10 with Eclipse 3.6 and the GWT designer works > fine. > Do you have an installation of Ubuntu to try it on? > No unfortunately not. I'm using OpenSuse 11.3 and Fedora C 12. The previous vers

Re: GWT 2.2 on linux: Designer not wokring

2011-02-24 Thread Mosheh EliYahu
Hi I am using Ubuntu 10.10 with Eclipse 3.6 and the GWT designer works fine. Do you have an installation of Ubuntu to try it on? Shalom Mosheh On Feb 24, 9:14 am, Mannemarak wrote: > Dear all. > > I'm having trouble getting GWT designer running with the new GWT 2.2 > on my

  1   2   3   4   5   >