gwt tomcat unix doesn't work

2014-02-21 Thread fedex
Hi everyone I am using tomcat version 6 in the unix server. When I try to run the sh version.sh file I get an error saying bad version. bin/bootstrap is not working i believe. I checked the jdk and jre version . They are compatible . I used commands java -version and javac -version to check the

gwt compilation issue

2014-02-19 Thread fedex
For my current Gwt project when I compile the project it creates web-inf folder outside the war folder. Initially While working on project I accidentally deleted war folder and I kind of setup the folder manually by copying the files from my backup folder. I am not sure if this is the reason

static methods question

2013-09-23 Thread fedex
Static methods executes at compile time then it executes before the object construction (as they get constructed during run time). But in our main method we create a class object and invoke class methods right . How does this happen when the method execution is happening at compile time it shou

Question regarding keydownhandler event

2013-08-26 Thread fedex
Hi everyone, For my first keydownevent for the suggestbox How i can get the char value of the key I pressed. Currently I am obtaining the null value ? How can I avoid this -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe fr

suggest box with rpc call - question

2013-08-26 Thread fedex
Hi everyone, I am placing an suggestbox on the front interface whhere upon typing any value or letter corresponding list matching to that letter needs to appear. I am using keydownhandler event to obtain this.As you can see the below code I am making an RPC call to obtain the list of data from

SuggestBox with keydownhandler event - Question

2013-08-26 Thread fedex
Hi everyone, For my application, I am adding a suggestbox on the front interface so when user types in any letter corresponding list (we won't add the list to the interface. It will be shown as the user types in and changes correspondingly when the letters changes as we generally see in online

doesn't allow to create a keydownhandler for the suggest box

2013-08-23 Thread fedex
Hi, I am trying to create a keydownhandler event for the suggest box but it won't allow me to do so? why It shows this error " The method addKeyDownHandler(KeyDownHandler) in the type SuggestBox is not applicable for the arguments (new KeyDownHandler(){})" Here is my code: private MultiWordS

Re: issue with tomcat server

2013-08-21 Thread fedex
is rather small. >> >> >> On Tue, Aug 20, 2013 at 4:56 PM, fedex >> > wrote: >> >>> For my application I am writing 1 million records to the csv file. It >>> works fine when I run in dev mode but when I deploy the application on >>> t

Re: issue with tomcat server

2013-08-21 Thread fedex
how to change it? any idea? On Wednesday, August 21, 2013 9:10:22 AM UTC-5, Michael Joyner wrote: > > You need to change how much memory java is allowed to allocate for the > tomcat process. The default is rather small. > > > On Tue, Aug 20, 2013 at 4:56 PM, fedex >

exception when deployed on tomcat - Please help

2013-08-21 Thread fedex
I built an application where I write 1 million row of data to the csv file. It works great when I deploy the application on dev mode(jetty server) but when I deployed the same application on tomcat I get the below exception.Please Can anyone suggest what could be the reason? Exception in thre

issue with tomcat server

2013-08-20 Thread fedex
For my application I am writing 1 million records to the csv file. It works fine when I run in dev mode but when I deploy the application on tomcat it throws java heap memory issue? why? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

need to send any value from server to client to stop the display page loading

2013-08-14 Thread fedex
i, In my current application I am writing a huge data to write the csv file. For passing the values from client to server I used GWT-RPC call to send the data to server. Now, I need to send some value from server to client once the query is executed to stop the display page loading. How can I

Re: Export CellTable's selected rows into a csv file

2013-08-13 Thread fedex
one way to achieve this is to use the session object to store the values that you sent to the server side and in your httpservlet class obtain them and write to the excel file On Monday, January 31, 2011 9:22:37 AM UTC-6, Ido wrote: > > Hi, > > I'm about to implement a new feature in my web appl

animated gif not animating

2013-08-13 Thread fedex
Hi, Animation gif is not animation while loading the GWT application. here is the code I used HTML: DATAMART Loading CSS #Loading-Message { display: block; position: absolute; top: 40%; left: 55%; text-align: center; margin-left: -100px; } Entry Clas

my GWT application doesn't open in chrome or firefox.

2013-07-31 Thread fedex
Hi, My GWT application doesn't work with the chrome or firefox. It works only in IE explorer. I was thinking if it has to do anything with the meta tag definition in the html this is how I defined it currently. Please let me know. Thanks, -- You received this message because you are subscrib

ERROR: to help protect your security internet explorer blocked this site from downloading

2013-07-31 Thread fedex
In my application I will be downloading a csv file. When the run the GWT application in dev mode and copy the url to IE it shows this message. I was told to add the dev mode url to the trusted sites but in the trusted sites it won't accept http portals. How can I change the dev mode URL to https

only RPC call completes rest of my code should execute - how should I do it - very urgent please

2013-07-29 Thread fedex
Hi everyone, I have an interface where the user selects the values and upon clicking the download button the selected values runs in the sql query and the obtained data is written to csv file. I am doing an RPC call to send the user selected values from the interface to the server. And on the

only RPC call completes rest of my code should execute - how should I do it

2013-07-29 Thread fedex
I am storing the values in the session by making an rpc call. So, to get the values of this first the rpc call has to omplete and there by i can get the sored values and write my own condition. I can I acheive this? What condition can I have to make sure that first RPC call completes and execute

Re: rpc call - static methods is not working

2013-07-29 Thread fedex
sorry correction , at the end I mean the senddomesticdata method On Monday, July 29, 2013 2:17:17 PM UTC-5, fedex wrote: > > Hi everyone, > > I am trying to define a static method in the service interface to make an > rpc call. But it doesn't allow me to do so. here

rpc call - static methods is not working

2013-07-29 Thread fedex
Hi everyone, I am trying to define a static method in the service interface to make an rpc call. But it doesn't allow me to do so. here I am pasting my code Client class public void sendDomesticData(String product,String dma,String yrmnths,String dist,String metrics) { String url = GWT.getMo

Re: how to send huge list of data to the server side from client interface in GWT

2013-07-25 Thread fedex
I don't want to use RPC call because since I have to just send the list to server and don't need any response back. is it possible using RPC? On Thursday, July 25, 2013 1:21:58 PM UTC-5, Jens wrote: > > Why don't you use any of GWT's server communication features? > RequestFactory, GWT-RPC, Requ

how to send huge list of data to the server side from client interface in GWT

2013-07-25 Thread fedex
Hi everyone, In my current application I have to send huge list of data to the server side which will be passed to the oracle query. Currently I am using window.Location.replace(quertstring) method to pass the list where by using request parameters we can obtain the client interface values. B

Re: Google GWT with Eclipse eats up disk space -

2013-07-24 Thread fedex
> On Jul 24, 2013, at 12:15 PM, fedex > > wrote: > > Before I started working on the GWt project I have 50 to 60 GB space in > hard disk. I am currently building an application using GWT. I found that > my hard disk space is keep getting reduced every day and now i am left w

Google GWT with Eclipse eats up disk space -

2013-07-24 Thread fedex
Before I started working on the GWt project I have 50 to 60 GB space in hard disk. I am currently building an application using GWT. I found that my hard disk space is keep getting reduced every day and now i am left with only 200 MB. I have folder users in which i have all my project files and

Re: How to use connection pooling in gwt

2013-07-16 Thread fedex
make an rpc call..you have many examples online on how to make a rpc call On Tuesday, July 16, 2013 4:05:11 AM UTC-5, Prabhu wrote: > > > Hi, > I need to use the connection pooling in gwt.How can i configure and > how to write application.If any one have the example please provide to me. >

cursor movement should show the fullform of abbreviation

2013-07-16 Thread fedex
I have a listbox with the abbreviations of the database table name. When I move my cursor on any particular table name it should show its full form. How to do it. Thanks, -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe fro

Re: GWT 2.4 & Jetty nocache.js files

2013-06-27 Thread fedex
hey can I use the same code for my application? what else will change if I have to use for mine? This filter will help us with cache issues right? On Wednesday, July 18, 2012 10:57:41 AM UTC-5, brent...@gmail.com wrote: > > I figured out the answer. All I had to do was add this to my web.xml fil

Re: Caused by: java.io.IOException: An existing connection was forcibly closed by the remote host - while writing to the csv file

2013-06-27 Thread fedex
would you mind if you can show me some sample code how to do it, Please. Thanks On Tuesday, June 25, 2013 4:51:33 PM UTC-5, jhulford wrote: > > It's because the browser is closing the connection, that's what the > wrapped exception means. The user is either hitting the stop button or > navigat

date in the csv file doesn't update unless I stop the application and restart it

2013-06-27 Thread fedex
Hi everyone, I am writing a huge data list to the csv file. When I start the application and click on download the csv file open with the time and date. If i select different options on my interface and click download without closing the server (jetty -inbuilt for GWT) the time still shows the