Re: GWT hosted mode - socket connection

2010-04-07 Thread Manuel Carrasco Moñino
You have no restriction in a non app-eng application in eclipse. I think it is a configuration issue, after unchecking the appengine you have to remove all the appengine stuff in the war/WEB-INF/lib folder. Try to create a new gwt project (non appengine) from scratch using eclipse wizard, and you

form submits twice when using mvp presenter

2010-04-07 Thread Henry HO
hi, when i place the forms submit event handlers in the view, the form submits fine. but when i register the form submit event handler with the presenter (removed from view) the form submits twice when clicked. has anyone experienced this? thanks -- You received this message because you

Re: gwt-dispatch, gwt-presenter, mvp4g

2010-04-07 Thread Lars Erik Karlsen
Nice! Will check it out. - lars PhilBeaudoin wrote: I'll take this opportunity to shamelessly plug my own take on the MVP architecture: http://code.google.com/p/gwt-platform/ I started using gwt-presenter, but I ran into a number of problems with code-splitting, lazy-loading and

StackPanel child not rendering in IE7 quirks

2010-04-07 Thread Hamlet D'Arcy
Has anyone ever seen something like this before: I have a StackPanel in my application. On IE7 only, The first time I start my application in Tomcat, and navigate to the application in the browser, then the contents of the first stack panel renders correctly. If I hit refresh then the panel is

Re: Change output folder.

2010-04-07 Thread Dymytry
Ian, thank you very much for assistance. My problem was with the HTML file. After I replaced it with yours - its started to work. -- 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: Eclipse Run As GWT JUnit test generates garbage folders tomcat and www-test

2010-04-07 Thread Marc Guillemot
Hi John, John Tamplin wrote: ... EmbeddedTomcatServer creates a tomcat directory inside of the current working directory (via the user.dir system property) at line 340. It looks like you could maintain your own copy of com/google/gwt/dev/etc/tomcat and point the system property

Re: refresh page in every 5 sec

2010-04-07 Thread rudolf michael
I guess that he wants a POLL technique, Server Push is not supported over GAE and cloud hosting providers. For POLL, you just need to have a timer that calls back the remote service every 5 seconds and update your views accordingly. Just make the timer timer.scheduleRepeat(5000); regards, ruds

Re: StackPanel child not rendering in IE7 quirks

2010-04-07 Thread Hamlet D'Arcy
The problem only occurs when a DockLayoutPanel is within the StackPanel. Does anyone know of issues with mixing StackPanel and DockLayoutPanel? On Apr 7, 9:32 am, Hamlet D'Arcy hamlet...@gmail.com wrote: Has anyone ever seen something like this before: I have a StackPanel in my application.

Optional image in ClientBundle

2010-04-07 Thread Viliam Durina
Is there a way to make ClientBundle behave so that it returns null when some resource does not exist (image, in my case)? For example, it could be implemented through an annotation on the method. My use case: I have a skinning system which uses base ClientBundle and multiple sub-interfaces of it,

Re: OPTIONS method RequestBuilder

2010-04-07 Thread Thomas Broyer
On Apr 4, 8:26 pm, javaci aykacal...@gmail.com wrote: Hi, I am working on a basic GWT project. Application sends a GET methos HTTP request and gets the response back. It works fine on IE on Windows XP SP3. It shouldn't with a default config. You might have reconfigured IE to bypass the SOP

Re: Using with EnumSet on client side

2010-04-07 Thread Thomas Broyer
On Apr 4, 8:00 pm, zenMonkey numan.sal...@gmail.com wrote: It seems that client side code can't work with EnumSet class. Is this a known issue or am I doing something wrong? It's usable in client side code, but not with GWT-RPC. I don't recall having seen a bug report about it, but IMO it

Re: Managing file in GWT

2010-04-07 Thread Blessed Geek
Oy, now that is a different issue. You are using GAE? If you are developing GWT with no intentions of deploying to Google's App Engine servers, you should disable GAE option in Eclipse. Otherwise, if you are developing for deploying on GAE, you have to realign your programming habits and

Need to understand GWT DOM - on which frame does my module reside.

2010-04-07 Thread Blessed Geek
My GWT application has an entry point module Main. Main has a class method refresh() to refresh its menubar. Main also is able to be triggered to popup a DialogBox, where the DialogBox contains and NamedFrame. The NamedFrame is given the URL to another entrypoint module User within the same

Re: Need to understand GWT DOM - on which frame does my module reside.

2010-04-07 Thread Blessed Geek
Certainly this is a trivial matter but for all the efforts put in to write a fairly comprehensible JSNI explanation in the GWT docs, I am unable to find any clarification on how the DOM is mapped by GWT. Because, when I do the following (instance of user using a static reference to Main to call

Re: can not read or write to a file on the server side

2010-04-07 Thread Giovanni Gaglione
Hi. I haven't here some link or other about tutorial or guide. However, if you have problems with permission on linux filesystem, i know that you can set file permission with command chmod 777 -R /your_path but i think that your problems are only tomcat, like you have told, so i don't know in

Re: Need to understand GWT DOM - on which frame does my module reside.

2010-04-07 Thread Sripathi Krishnan
The code fragment you pasted will all reside in the same frame. Because it is all part of the same module, there is nothing mysterious about it - (other than the fact that GWT will minify and obfuscate the generated js code). Your earlier question was about two different GWT Modules (one on the

Re: Need to understand GWT DOM - on which frame does my module reside.

2010-04-07 Thread Blessed Geek
Then, the next question that begs to be answered is, Is maintaining a static reference a good practice for inter-frame communication? If I used only one browser session, I invoked Main entrypoint on two separate Firefox tabs, will both instances of Main be contending to write to static public

Re: Need to understand GWT DOM - on which frame does my module reside.

2010-04-07 Thread Blessed Geek
I thought, I did not need to expose the innards of my app. The namedframe housed in the dialogbox is actually a google or open id login. Since both google and open id login/outs require uri and callbacks, I cannot possibly eliminate the frame so that Main and User could refer to each other in any

Re: FileUpload widget trouble

2010-04-07 Thread BimboJones
Hi Manolo, does it work with App Engine? Specially the progressbar stuff, thanks On 6 Abr, 23:53, Manuel Carrasco Moñino man...@apache.org wrote: I dont think it is a GWT issue, try to use gwtupload library, it simplifies a lot the code and adds cool features. Manolo On Mon, Mar 22, 2010 at

Re: ScrollPanel Problem

2010-04-07 Thread gadaleta.marco
noone? On 6 Apr, 15:03, gadaleta.marco gadaleta.ma...@gmail.com wrote: Hi, I'm developing an application using gwt and gears and i test it on android. But if i use a ScrollPanel element, it doesn't run on android. How i can resolve this problem? Thx, Marco -- You received this message

Re: refresh page in every 5 sec

2010-04-07 Thread mram
Rudolf is right. In your page presenter constructor you should write something like this: Timer t = new Timer() { public void run() { eventBus.fireEvent(new LoadDataEvent()); } };

Re: Need to understand GWT DOM - on which frame does my module reside.

2010-04-07 Thread Sripathi Krishnan
If I used only one browser session, I invoked Main entrypoint on two separate Firefox tabs, will both instances of Main be contending to write to static public Main mainref? No. Each tab is a different context altogether. They will not interfere with each other at all. Or does a static

Using GlassPanel with DockLayoutPanel

2010-04-07 Thread Jochen Schnaidt
Hi everybody, I have a question about the GlassPanel from the incubator. At the moment I have a layout this way … RootLayoutPanel myRootLayoutPanel = RootLayoutPanel.get(); // Initializing the DockLayoutPanel DockLayoutPanel myDockLayoutPanel = new DockLayoutPanel(Unit.PX); public void

popup container background image

2010-04-07 Thread Raghunath
Hi I'm trying to add background image to popup panel. But it's not getting displayed. Is there any way to add some background image to popup panel in gwt. plz help me.. -raghu -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: can not read or write to a file on the server side

2010-04-07 Thread andrew19881123
now have done in this way.. try { String fileXml = new String(); String s = new String(); FileReader f = new FileReader(vini.xml); BufferedReader br = new BufferedReader(f); do { s =

CloseHandlerWindow and Window.ClosingHandler() working differently in IE than Firefox?

2010-04-07 Thread Stuff22
It seems that CloseHandler and Window.ClosingHandler() are not working or are not triggering the events in the same way under IE as opposed to Firefox. Window.addWindowClosingHandler(new Window.ClosingHandler() { @Override public void

Dynamic layout using the DockLayoutPanel

2010-04-07 Thread larsbjo
There might be a very simple answer to this in the forum already. If so please have me apologized. I'm making a GWT app using DockLayoutPanel adding 3 panels; A header, a content panel and a footer. More or less like this: -- header

production mode exception handling

2010-04-07 Thread hacker
After compiling my project through the Exclipse Plug In and deploying the code to tomcat-5.5.26, try/catch blocks make my application fail without further notice. Any idea why this happens? Eclipse 3.4.2 GWT SDK 2.0.3 Google Plugin for Exlipse 3.4 1.3.1v201003191028 Thank you, Sabine -- You

Upgrade 1.7 to 2.0.3 : Unknown argument: -style

2010-04-07 Thread Aff
Hello everybody, I'm new on GWT I've some problems to upgrade with 2.0.3. I'm actually on GWT 1.7 with : Eclipse Galileo Jdk 1.5 The maven-googlewebtoolkit2-plugin 2.0-beta24 To upgrade with the 2.0.3, I changed my pom.xml with gwtVersion2.0.3/gwtVersion and the maven-googlewebtoolkit2-plugin

Avoid multiples callbacks...

2010-04-07 Thread FB
Hello, I'm new on GWT... I'm reading the tutorial (form GWT site) about making the remote procedure call, and I read that code: private void refreshWatchList() { . // Set up the callback object. AsyncCallbackStockPrice[] callback = new AsyncCallbackStockPrice[]() { public

Re: can not read or write to a file on the server side

2010-04-07 Thread Giovanni Gaglione
It seems that application doesn't find the file. Where is your file? It's possible that you must specify the file path better. Where are you from? What are you doing with GWT? Who are you? regards 2010/4/7 andrew19881123 andrew19881...@gmail.com now have done in this way.. try {

Re: How to access a web service using GWT?

2010-04-07 Thread Pravin
Hi, I am trying to develop an application which would read an some data from a local excel file, but gwt does not allow accessing local files. So I thought 'd make a web service that would do the reading (of the excel file) for me and return the values that I need. I have deployed this webservice

Compiled JS more readable?

2010-04-07 Thread nacho
Is there anyway to make that GWT when compiles the JS code uses more human readable vars? For example when i have an error like this: this.a.s.g is null The only thing that i know is that i have a null over there but i don't any idea where to search :( -- You received this message because you

Re: Dynamic layout using the DockLayoutPanel

2010-04-07 Thread Ian Bambury
You could use a flowpanel instead - no need to complicate things unnecessarily. Ian http://examples.roughian.com On 7 April 2010 11:06, larsbjo lars.bjorkh...@gmail.com wrote: There might be a very simple answer to this in the forum already. If so please have me apologized. I'm making a

Re: Google's new Making AJAX Crawable Spec - Question/Problem re: Sitemaps

2010-04-07 Thread Katharina Probst
Hi, we're looking into this, I'll update this thread once I know more. Thanks, kathrin On Wed, Apr 7, 2010 at 12:00 AM, Sripathi Krishnan sripathikrish...@gmail.com wrote: When someone hits your site with a url containing _escaped_fragment_ , do you - - Redirect to a HTML page OR

Re: Documentation for GWT-RPC Format

2010-04-07 Thread Nathan Wells
For deRPC it's JSON. For the older GWT-RPC, it's a custom encoding that is, I think, undocumented. On Apr 6, 10:07 pm, Sripathi Krishnan sripathikrish...@gmail.com wrote: http://code.google.com/p/google-web-toolkit/wiki/RpcDirectEval --Sri On 7 April 2010 08:03, Subhrajyoti Moitra

Re: Supporting mysite.com/[username] urls with a gwt app?

2010-04-07 Thread markww
Got a solution working for app engine, posting here: http://groups.google.com/group/google-appengine-java/browse_thread/thread/702805bede93842e thanks all On Apr 6, 4:08 pm, markww mar...@gmail.com wrote: That would be perfect! I tried to make a brand new project using it and pushed it to

Highlight flextable row when tabbing

2010-04-07 Thread Bonor
I want to highlight the current row in a FlexTable (the cells contain TextBoxes). If a user tabs through the cells, how can I highlight the current row? Thanks in advanced -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Compiled JS more readable?

2010-04-07 Thread Katharina Probst
Yes, if you do a GWT compile with the argument -style PRETTY or -style DETAILED (or you can set this in the Google Plugin for Eclipse when you do right-click on project- Google- GWT compile), the JS code will not be obfuscated, which can be helpful for debugging -- note, though, that for

Re: Compiled JS more readable?

2010-04-07 Thread mariyan nenchev
If you are using Google eclipse plugin when you go to Run Configuration and create new Web Application configuration on the second GWT tab there are settings for compilation type. If you are using gwt-maven plugin just add -Dgwt.style=DETAILED (or something like that, see the plugin documentation

Re: can not read or write to a file on the server side

2010-04-07 Thread andrew19881123
the file is perfectly localized in the correct directory, i know because the debug in eclipse works...!! it's here /var/lib/tomcat6/ webapps/rpcTest0 where rpcTest0 is the project.. boh i'm from italy.. near modena, im a student of computer science at unibo, it's about 3 weeks that i try to learn

Re: clean compile gives the parameter is incorrect

2010-04-07 Thread Miguel Méndez
FWIW, there is already an issue filed against the GWT Compile action in GPE. CreateProcess Error On GWT Compile With Long Classpath - http://code.google.com/p/google-web-toolkit/issues/detail?id=4395. It uses the same process launching infrastructure that the enhancer uses. Feel free to add to

Re: can not read or write to a file on the server side

2010-04-07 Thread Giovanni Gaglione
auhauha Io pure sono italiano di roma però. sto facendo la tesi per la laurea triennale in informatica...e utilizzo gwt da un mesetto o di più. Hai settato i permessi per il filesystem come ti avevo suggerito? Se il file non ha il permesso di essere letto, tomcat non lo trova. Che io sappia,

Re: can not read or write to a file on the server side

2010-04-07 Thread andrew19881123
il mio e' un progetto x tecnologie web.. anche io sn alla triennale.. i permessi di linux li ho settati senza problemi.. ho provato agirare un po su google x cercare come sbloccare i file su tomcat.. e ho letto che c'e' da aggiungere grant{...} dentro alle policy solo che nn ho concluso nnt..

Re: Managing file in GWT

2010-04-07 Thread bitliner
Thanks. I think to deploy my app on my server, not Google App Engine. So, as you say, i will disable GAE option and then i will try my application. i will try this evening. Thanks for the answer regards On Apr 7, 11:40 am, Blessed Geek blessedg...@gmail.com wrote: Oy, now that is a different

Re: can not read or write to a file on the server side

2010-04-07 Thread bitliner
Non posso provare ora il codice, nè penso stasera. Troppo impegnato. E' probabile che devi configurare meglio tomcat, ma non hai trovato nulla di qualcuno che affrontasse il tuo stesso problema? Indipendentemente da gwt? non so come altro aiutarti saluti On Apr 7, 4:03 pm, andrew19881123

Re: Documentation for GWT-RPC Format

2010-04-07 Thread kozura
I could never find a direct answer, has deRPC actually been incorporated into GWT yet? Didn't notice it in any release notes.. On Apr 7, 7:02 am, Nathan Wells nwwe...@gmail.com wrote: For deRPC it's JSON. For the older GWT-RPC, it's a custom encoding that is, I think, undocumented. On Apr 6,

Re: Avoid multiples callbacks...

2010-04-07 Thread kozura
The example is uses anonymous or local classes which are convenient for many, but there is no reason that you can't create a regular sub- class, or instantiate it as a class member, to use for the async callback anywhere within a given class multiple times. private class MyCb implements

Possible ways to invoke web services with objects in GWT client

2010-04-07 Thread Deep Chand
Hello, As mentioned in my previous posts, I am a newbie to GWT and working on a GWT client which needs to invoke RESTful web services. I need to use POST methods with user defined objects in the web svc calls over http (for e.g. User bean with personal data at the time of registration). The web

Re: production mode exception handling

2010-04-07 Thread kozura
On the client or on the server side, these should work the same when deployed as in dev mode. Were they working correctly in dev mode? Otherwise maybe post the non-working code snippet. On Apr 7, 3:47 am, hacker sabine.grab...@gmail.com wrote: After compiling my project through the Exclipse

Re: Dynamic layout using the DockLayoutPanel

2010-04-07 Thread kozura
Yes, you want the flowpanel. The DockLayoutPanel as a top level layout panel is intended for when you want your app to take up 100% of the browser height, and use internal scrolling vs full browser scrolling to manage overflow. On Apr 7, 6:42 am, Ian Bambury ianbamb...@gmail.com wrote: You

Re: popup container background image

2010-04-07 Thread kozura
What have you tried... Should be able to add it in css styling to .gwt-PopupPanel .popupContent, or to the styling of the widget you set to be the content of the popup panel. On Apr 7, 6:11 am, Raghunath visuma...@gmail.com wrote: Hi I'm trying to add background image to popup panel.  But

Re: Using GlassPanel with DockLayoutPanel

2010-04-07 Thread kozura
What are you displaying your preview in? If you use a PopupPanel or Dialog, they have a method included for using a glasspanel around the popup/dialog. I'm not sure about the incubator GlassPanel, things in there are experimental and not necessarily brought up to date with new GWT code. On Apr

Re: popup container background image

2010-04-07 Thread mariyan nenchev
Hi, Just set the image as background to the widget you add in popup panel and set some none existing css to the popup like popup.setStyleName(none); It worked for me. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Entry Points -- can you replace them in module.xml?

2010-04-07 Thread Skyfort
Sorry, I should have mentioned -- the supported_browser property already exists in the HTML (created by a JSP) so it's already set. The problem seems to be that we can't have a conditional entry point that changes class based on a property. Does anyone know if that's true? On Mar 31, 2:17 am,

Re: StackPanel child not rendering in IE7 quirks

2010-04-07 Thread kozura
You should be using a StackLayoutPanel if you're using DockLayoutPanels. Otherwise your issue may be similar to this: http://code.google.com/p/google-web-toolkit/issues/detail?id=4694 On Apr 7, 2:34 am, Hamlet D'Arcy hamlet...@gmail.com wrote: The problem only occurs when a DockLayoutPanel is

Re: can not read or write to a file on the server side

2010-04-07 Thread andrew19881123
ma guarda.. gwt o no cmq sto programmando in java su lato server con le api d java x cui e' come se nn lo usassi proprio... sto odiando tomcat... On Apr 7, 4:07 pm, bitliner giovanni.gagli...@gmail.com wrote: Non posso provare ora il codice, nè penso stasera. Troppo impegnato. E' probabile

Re: Upgrade 1.7 to 2.0.3 : Unknown argument: -style

2010-04-07 Thread Chris Conroy
I'm not a maven user, so I didn't verify this, butTry: -Dgwt.style=PRETTY see: http://mojo.codehaus.org/gwt-maven-plugin/user-guide/compiler.html On Wed, Apr 7, 2010 at 4:46 AM, Aff froissart.anto...@gmail.com wrote: Hello everybody, I'm new on GWT I've some problems to upgrade with

Passing form data to server

2010-04-07 Thread Vik
Hie I am using gwt with app engine. I have a big form like: http://www.sakshum.com/ui/page/DonorRegister.jsp On submit i have to pass the user entered data to server to process it. So how should I pass the entire data? Please advise Thankx and Regards Vik Founder www.sakshum.com

example code for marking a component

2010-04-07 Thread Vik
Hie I am new to gwt and looking for some sample code to mark a component in red and show error message. For example say there is a text box with label First Name when some one fill it and tab out i may validate it and in case of issue can mark the first name text box component as red and display

Re: Upgrade 1.7 to 2.0.3 : Unknown argument: -style

2010-04-07 Thread Aff
My problem was I used the wrong maven plugin. Thanks Chris, i had to use the mojo plugin. But i've an other problem on my RPC servlet-name generation in my web.xml. Before, my servlet-names was : ***Impl/dependencies/***.rpc Now it's ***Impldepencendies/***.rpc The / is missing and i don't

Re: Passing form data to server

2010-04-07 Thread kozura
This was answered in http://groups.google.com/group/google-web-toolkit/browse_thread/thread/6d959e0de08b8d8/62282e2b232e8faa... Unless you have a good reason like you have to use an existing server handling form posts, then you probably don't want to use forms in GWT. Gather the data from the

Re: example code for marking a component

2010-04-07 Thread kozura
setStyleProperty(widget, backgroundColor, red); You might use a popupPanel or something similar if you also want to display a message. On Apr 7, 10:44 am, Vik vik@gmail.com wrote: Hie I am new to gwt and looking for some sample code to mark a component in red and show error message. For

value change listener not firing

2010-04-07 Thread Vik
Hie I am using following code: final TextBox firstName = new TextBox(); firstName.setFocus(true); firstName.addValueChangeHandler(new ValueChangeHandlerString(){ @Override public void onValueChange(ValueChangeEvent event) { if (firstName.getText().length() == 0) {

Re: Passing form data to server

2010-04-07 Thread Vik
Hie Thanks which of the mentioned apps on examples page uses the stuff i need i.e passing the large data? Plz advise Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On Wed, Apr 7, 2010 at 10:41 PM, kozura koz...@gmail.com wrote: This was answered in

Re: value change listener not firing

2010-04-07 Thread Ian Bambury
this does not get fired if i simply tab out from the text box. It fires in the case when i put some char and delete it and then tab out. is it a bug? No. If the value has changes then, when it loses focus, the ValueChange event will fire. If it hasn't changed, then it hasn't changed and so it

Re: Passing form data to server

2010-04-07 Thread kozura
Looks like Sticky uses appengine, although its source is actually in the appEngine SDK. On Apr 7, 11:29 am, Vik vik@gmail.com wrote: Hie Thanks which of the mentioned apps on examples page uses the stuff i need i.e passing the large data? Plz advise Thankx and Regards Vik

Re: Passing form data to server

2010-04-07 Thread Katharina Probst
You might just want to look at the RPC documentation here: http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html It should have enough sample code to get you going. kathrin On Wed, Apr 7, 2010 at 1:44 PM, kozura koz...@gmail.com wrote: Looks like Sticky uses appengine,

GWT Login/ Logout/ Remember Me (with concern in preventing Cross-Site Request Forgeries) Example

2010-04-07 Thread yccheok
Does anyone have a good code example, on how to implement login/logout/ remember me feature, using GWT, with concern on Cross-Site Request Forgeries. My plan is to use HttpOnly : http://www.codinghorror.com/blog/2008/08/protecting-your-cookies-httponly.html However, I am not sure whether that

Re: Widget's CssResource parameterization/customization

2010-04-07 Thread Tsukasa
hi, as far as I know and used declarative UI in GWT the only thing you have to do is documentation. The user just needs to know, how you named your styles, create his own styles named similar and thats it. If he uses your widget declarativly he can always use

JSONP support and memory leaks?

2010-04-07 Thread markww
Hi, I'm reading through this excellent article about supporting jsonp in our gwt apps: http://code.google.com/webtoolkit/articles/using_gwt_for_json_mashups.html I'm not that familiar with javascript, and the following function is worrying me: public native static void setup(Hax0r h,

Re: GWT Login/ Logout/ Remember Me (with concern in preventing Cross-Site Request Forgeries) Example

2010-04-07 Thread Manuel Carrasco Moñino
GWT (client side) has nothing to do with HttpOnly cookies because the browser can not read them using javascript. You have to face it in the server side, sending a cookie from your servlet to the browser with the HttpOnly attribute set, the browser will remember it, and the next time it loads the

Re: FileUpload widget trouble

2010-04-07 Thread Manuel Carrasco Moñino
Yes, version 0.5.7 works with App-Engine (use AppEngineUploadServlet), but there are a bunch of issues, - Because GAE doesn't support writing to file-system, the servlet stores fileitems in memory using MemoryFileItemFactory. - Then you have to make it persistent, but there are a limitation of

Re: GWT Login/ Logout/ Remember Me (with concern in preventing Cross-Site Request Forgeries) Example

2010-04-07 Thread Sripathi Krishnan
For general ideas on how to implement remember me, the thread you started on stackoverflowhttp://stackoverflow.com/questions/2594960/best-pratice-to-implement-secure-remember-meshould get you answers. I will try to answer the GWT specific things you should be doing over here. If you haven't

Re: Entry Points -- can you replace them in module.xml?

2010-04-07 Thread Sripathi Krishnan
I don't know if its possible or not .. ..but there are easier ways to do the same thing. Just create a new interface MyEntryPoint with a single method onMyModuleLoad. Your real entry point will just delegate to this method. Then, use deferred binding in the normal (and simple, easy) way to

Re: JSONP support and memory leaks?

2010-04-07 Thread Sripathi Krishnan
You should use the class - JsonpRequestBuilder See http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/jsonp/client/JsonpRequestBuilder.html --Sri On 8 April 2010 02:14, markww mar...@gmail.com wrote: Hi, I'm reading through this excellent article about supporting jsonp

Re: Passing form data to server

2010-04-07 Thread Vik
Hie Well this doc suggests to pass all the data elements individually in the method call. My concern is it will be kind of painful to pass say 20 data values like this. I am looking if there is an easier way to do that? Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com

Re: Passing form data to server

2010-04-07 Thread kozura
The doc shows a simple example, with the expectation that you can expand on it for your own solution. Create a serializable class that you fill from all the GUI values and pass it. Make the function with many parameters. Use one of the several infrastructures built on top of GWT that associate

Re: Generated CSSResource not injected when using UIBinder

2010-04-07 Thread Ian Bambury
I'm on 2.0.3 and I've been getting this. It works in production mode, but not in dev mode Adding styles in the ui.xml file using - ui:style - addStyleNames or in the java file using - elem.setClassName(classname); - elem.getStyle().setBackgroundColor(blue); doesn't work if you

Re: OPTIONS method RequestBuilder

2010-04-07 Thread javaci
Hi, Thanks for the answer... I have to avoid any custom filed in header.. such as Content-Type: text/html; charset=ISO-8859-1 to prevent OPTIONS method in request or web server must support Access-Control-Allow-Origin in response. I think Access-Control-Allow-Origin should be provided by the

Re: Possible ways to invoke web services with objects in GWT client

2010-04-07 Thread rjcarr
Hi Deep- Could you elaborate on this a little bit? I need to use POST methods with user defined objects in the web svc calls User defined objects where ... in javascript? In java? If the latter, why not use gwt-rpc to move around these beans? You would just need to make sure they are

[gwt-contrib] Re: Issue 4027: TextBox fires JSException in IE on double click (issue151804)

2010-04-07 Thread jlabanca
This patch will be in GWT 2.1. If you compiled it into the GWT 1.7.1 jar and it works, then it should be fine as the change was isolated to that one file. http://gwt-code-reviews.appspot.com/151804/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe, reply

[gwt-contrib] Changes CustomizedShell to use the new Table widget. (issue318801)

2010-04-07 Thread jgw
Reviewers: Ray Ryan, Description: Changes CustomizedShell to use the new Table widget. Please review this at http://gwt-code-reviews.appspot.com/318801/show Affected files: M bikeshed/src/com/google/gwt/bikeshed/cells/client/DateCell.java M

[gwt-contrib] Re: Changes CustomizedShell to use the new Table widget. (issue318801)

2010-04-07 Thread jgw
http://gwt-code-reviews.appspot.com/318801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe, reply using remove me as the subject.

[gwt-contrib] Added method to change the size of a MutableArray. Added factory method to construct a nonempty ... (issue319801)

2010-04-07 Thread rchandia
Reviewers: fabbott, Dan Rice, Description: Added method to change the size of a MutableArray. Added factory method to construct MeutableArray of specific size. These provide a O(n) way to initialize a MutableArray as shown by com.google.gwt.collections.MutableArrayBenchmarkTest Please review

[gwt-contrib] Fix checkstyle sort order. (issue316802)

2010-04-07 Thread rice
Reviewers: rchandia, Description: Fix checkstyle sort order. Review by: rchan...@google.com Please review this at http://gwt-code-reviews.appspot.com/316802/show Affected files: M bikeshed/test/com/google/gwt/collections/ImmutableArrayTest.java Index:

[gwt-contrib] [google-web-toolkit] r7886 committed - Fix checkstyle errors and remove some whitespace.

2010-04-07 Thread codesite-noreply
Revision: 7886 Author: r...@google.com Date: Wed Apr 7 05:28:43 2010 Log: Fix checkstyle errors and remove some whitespace. http://code.google.com/p/google-web-toolkit/source/detail?r=7886 Modified: /trunk/bikeshed/src/com/google/gwt/bikeshed/list/client/IdentityColumn.java

[gwt-contrib] Checkstyle fixes. (issue320801)

2010-04-07 Thread rice
Reviewers: Ray Ryan, Description: Checkstyle fixes. Review by: rj...@google.com Please review this at http://gwt-code-reviews.appspot.com/320801/show Affected files: M bikeshed/src/com/google/gwt/requestfactory/shared/RequestFactory.java M

[gwt-contrib] Re: Fix checkstyle sort order. (issue316802)

2010-04-07 Thread rchandia
LGTM Thanks! It seems I need to check my Eclipse Checkstyle setup. http://gwt-code-reviews.appspot.com/316802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Added method to change the size of a MutableArray. Added factory method to construct a nonempty ... (issue319801)

2010-04-07 Thread rice
LGTM http://gwt-code-reviews.appspot.com/319801/diff/1/3 File bikeshed/src/com/google/gwt/collections/MutableArray.java (right): http://gwt-code-reviews.appspot.com/319801/diff/1/3#newcode150 bikeshed/src/com/google/gwt/collections/MutableArray.java:150: * truncated. If {...@code newSize} is

[gwt-contrib] [google-web-toolkit] r7887 committed - Changes ListRegistration to carry information about its associated han...

2010-04-07 Thread codesite-noreply
Revision: 7887 Author: gwt.mirror...@gmail.com Date: Wed Apr 7 09:03:27 2010 Log: Changes ListRegistration to carry information about its associated handler and range of interest. This allows ListListModel (and theoretically other models) to call back directly to views whose range of interest

[gwt-contrib] [google-web-toolkit] r7888 committed - Fix checkstyle sort order....

2010-04-07 Thread codesite-noreply
Revision: 7888 Author: r...@google.com Date: Wed Apr 7 06:00:18 2010 Log: Fix checkstyle sort order. Review at http://gwt-code-reviews.appspot.com/316802 Review by: rchan...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=7888 Modified:

[gwt-contrib] Re: Adds ProvidesKey and makes the ListModel the source of the key (issue307801)

2010-04-07 Thread jlabanca
committed as r7866 http://gwt-code-reviews.appspot.com/307801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe, reply using remove me as the subject.

[gwt-contrib] Re: Checkstyle fixes. (issue320801)

2010-04-07 Thread Ray Ryan
Lgtm On Apr 7, 2010 11:36 AM, r...@google.com wrote: Reviewers: Ray Ryan, Description: Checkstyle fixes. Review by: rj...@google.com Please review this at http://gwt-code-reviews.appspot.com/320801/show Affected files: M bikeshed/src/com/google/gwt/requestfactory/shared/RequestFactory.java

[gwt-contrib] [google-web-toolkit] r7889 committed - Checkstyle fixes....

2010-04-07 Thread codesite-noreply
Revision: 7889 Author: r...@google.com Date: Wed Apr 7 06:59:56 2010 Log: Checkstyle fixes. Review at http://gwt-code-reviews.appspot.com/320801 http://code.google.com/p/google-web-toolkit/source/detail?r=7889 Modified:

[gwt-contrib] node.getNodeValue() limited in FireFox to 4096 characters. If length is longer it gets truncated. (issue325801)

2010-04-07 Thread markovuksanovic
Reviewers: Ray Ryan, Description: Fix for issue http://code.google.com/p/google-web-toolkit/issues/detail?id=719 Please review this at http://gwt-code-reviews.appspot.com/325801/show Affected files: user/src/com/google/gwt/xml/XML.gwt.xml

[gwt-contrib] [google-web-toolkit] r7890 committed - Clean up mail sample app; simplify table refresh for selection changes...

2010-04-07 Thread codesite-noreply
Revision: 7890 Author: r...@google.com Date: Wed Apr 7 11:20:20 2010 Log: Clean up mail sample app; simplify table refresh for selection changes Review at http://gwt-code-reviews.appspot.com/324801 Review by: j...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=7890

[gwt-contrib] Re: Fixes a couple of issues with the RemoteUI and GPE DevMode view interaction. The problem is GPE... (issue323801)

2010-04-07 Thread rdayal
LGTM. http://gwt-code-reviews.appspot.com/323801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe, reply using remove me as the subject.

[gwt-contrib] Re: Fixes a couple of issues with the RemoteUI and GPE DevMode view interaction. The problem is GPE... (issue323801)

2010-04-07 Thread jat
LGTM http://gwt-code-reviews.appspot.com/323801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r7891 committed - Rename libraries to all-lowercase.

2010-04-07 Thread codesite-noreply
Revision: 7891 Author: j...@google.com Date: Wed Apr 7 17:19:42 2010 Log: Rename libraries to all-lowercase. http://code.google.com/p/google-web-toolkit/source/detail?r=7891 Added: /changes/jat/csproto/jni/linux/prebuilt/libshmfutex_linux_x86.so

  1   2   >