how to solve unknown entity in Hibernate

2008-10-14 Thread rsund
Hi. how to solve unknown entity in HIbernate.i will try to run my gwt-ext apln the following error in shown. ERROR: --- org.hibernate.MappingException: Unknown entity: java.lang.String This my xml configuration, --- property name=address

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread Jason Morris
I personally use Tomcat a lot more, mainly because it started as the reference implementation (though I know it no longer technically holds that position). The few times I've wanted to use Jetty I've had to switch back to Tomcat due to lack of system admin knowledge (ie: the various admins I

Re: Using Selenium for GWT tests.

2008-10-14 Thread siva
Thanks for the information and references to your blogs, Dan. Really helps. If somebody is looking for a way to set ids to GWT widgets UIObject.ensureDebugId(Element, String) is supported starting GWT 1.5 which greatly helps in integration with Selenium using object identifiers. The best part is

Re: Deferred binding result type gone after refresh in hosted mode

2008-10-14 Thread Ivo
I'm bumping this discussion, in the hopes that someone who has a clue about the problem sees it. Best regards, -- Ivo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread Fred Janon
I use Tomcat for all our customer deployments and as a server to host the development. If Tomcat is used as the server for development, there are probably less chances that something would not work when deployed. I am not sure of how popular is Jetty for real deployments compared to Tomcat, but I

error inheriting own module (No source code is available)

2008-10-14 Thread pepgrifell
hi, I have created a module with some classes needed in client side and server side but GWT 1.5.2 compatible. When I inherit this module in another module, I get this error: No source code is available for type Class1 In the other module I add: inherits name=aaa.bbb.MyModule / The structure

Re: Problem with tomcat

2008-10-14 Thread jamer
Ok, thank you But if i use the javax library?? Pd:My english so it is horrible Javier --~--~-~--~~~---~--~~ 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: how to call RPC from an HTMLPanel's content anchor

2008-10-14 Thread walden
The HTML* widgets are basically tunneling HTML through GWT. Don't use them for anything but the simplest non-extensible non-event-enabled stuff. If you will say what elements your have built through these widgets, you will get more focused advice on how to implement them in a way that makes GWT

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread El Mentecato Mayor
I think it is broken in the sense that it does take a lot of time to get the app running when in development mode (and hosted mode), or at least more time that I would like it to. I would welcome Jetty if that improves the performance. I have nothing specific to tomcat so far, so nothing should

Re: GWT + iText + Eclipse Problem

2008-10-14 Thread prof3ta
The content type is correctly set from the server, as I can see from the firebug logs. If I make the browser pointing to the correct address, the pdf open/ save dialog is showed and everything works fine. But, if I make a request from within gwt, the callback mechanism seems to override the

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-14 Thread darkflame
Thanks for claifying that for me. Its sort-of a relief to know my system is set up right, even if it does mean putting a halt to this line of development. Its still interesting that it works in IE7 under 1.6.0_05-b13 (at least on an XP laptop), but sadly they dont seem to keep the sub- versions

-noserver 1.5 RPC Help

2008-10-14 Thread Christopher Venning
I cannot seem to get the -noserver mode working with RPCs. I got it to work in 1.4 but have changed environments in the last year. There don't appear to be any Group postings about getting it going since 1.5 was released. Bruce Johnson's original posting (http://

Re: Google Maps API Library for GWT 1.0 Release Candidate 1 now available

2008-10-14 Thread ben
I know you probably may not know, but is there an expected release date for an official (non RC) version? My company has a policy to only use products that are an official release. I'm trying to determine at what point we might put in the request to start using the maps api. It should be

Re: -noserver 1.5 RPC Help

2008-10-14 Thread Isaac Truett
You're use GWT RPC, which means you have a RemoteServiceServlet somewhere that implements the server side of that RPC service. You need to compile that servlet to a Java .class file and deploy it to your web server. You also need a web.xml file to map request URLs to your servlet. On Tue, Oct

Re: -noserver 1.5 RPC Help

2008-10-14 Thread Ian Petersen
On Tue, Oct 14, 2008 at 12:34 PM, Christopher Venning [EMAIL PROTECTED] wrote: Relevant module code --- from TestService.java (extends RemoteService): @RemoteServiceRelativePath(/testService) I don't know what difference it makes, but my @RemoteServiceRelativePath doesn't have a leading /.

Re: -noserver 1.5 RPC Help

2008-10-14 Thread Isaac Truett
You'll want to set yourself up with a proper build process. I suggest Ant. It's simple, powerful, and there are a number of examples you can borrow from this forum. Have your Ant script build a .war file and copy it to your tomcat/webapps directory. Tomcat's default configuration is to

Re: DisclosurePanel

2008-10-14 Thread gregor
can you post a code snippet for this? On Oct 14, 11:31 am, jamer [EMAIL PROTECTED] wrote: Hi group i create a Widget with a disclosurePanel, and this head it is a other widget with button. The problem is that when i press the button the disclosurepanel open or close, but i don't like it. I

Re: -noserver 1.5 RPC Help

2008-10-14 Thread Christopher Venning
Will do. As an aside, does the Documentation need to be more explicit about this or am I the exception here? If so, I can submit a change, if documentation updates are something non-Google contributors are allowed. Any moderators listening? Thank you again for your assistance. On Oct 14,

How to disable a disclosure panel

2008-10-14 Thread Iván
Hello, I'm trying to disable a disclosure panel in order not to open it when I click on the header, but I don't know how to do that. I've try to set the header with a button and a label and hide the button but if I click on the label the disclosure panel is open. Is there any way to disable

Atom and Rss feeds not working

2008-10-14 Thread [EMAIL PROTECTED]
The feeds don't work: This feed does not validate. * line 306, column 244: XML parsing error: unknown:306:244: not well-formed (invalid token) [help] ... he real parameter. lt;brgt; lt;pgt;4�0�5�lt;a target=quot;_blankq ...

rpc error

2008-10-14 Thread Ryan
Hi, I'm trying to implement my gwt application with rpc service I wrote a simple java application for testing, it does simple String message passing from server to client But it doesn't work and return with 'com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException' error. I have no idea

Late-loading parts of a GWT app

2008-10-14 Thread jared
I've seen a number of threads about GWT apps that are comprised of multiple modules. Because the modules are compiled separately, though, there's no code reuse between them. If we could give the GWTCompiler all of our modules at once and specify the load order constraints that we'll enforce,

Re: Problem running GWTComplier in an ant script

2008-10-14 Thread Stefan Schwarzbach
I had exactly the same problem. Adding the fork=true parameter to the java command solved this problem for me. Don't know why, but it seems to work now. On 11 Sep., 15:45, walden [EMAIL PROTECTED] wrote: By the way, where are your source files?  Within the module, the default source path is

GWT + Netbeans 6.1 + Multiple modules in one project

2008-10-14 Thread jh
Hi all, does anyone know how to create GWT project in NetBeans 6.1 with multiple modules in one project? So far, I was using the GWT4NB plug- in which creates the template with all necessary files, but it only supports one module in project. I would appreciate some existing example project with

RPC problem

2008-10-14 Thread Ryan
Hi group, I'm writing a gwt-rpc application, it does simple String message passing from server to client. But I got a runtime error com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException and nothing can be received from the server. I have no idea what is the reason of this error. Does

Deploy GWT Project to Tomcat

2008-10-14 Thread Michi_de
Hi! I'm actually trying to deploy my very first GWT Project StockWatcher, just like in the tutorial i found on googles website. I can deploy my .war to the tomcat and visit the page. But when it comes to servlets, the server is throwing exceptions. So here is the code, i copied everything from

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread Yegor
Whichever lets you release out-of-process hosted mode (OOPHM) sooner :) (I am using -noserver option anyway) Thanks, Yegor On Oct 13, 4:48 pm, Bruce Johnson [EMAIL PROTECTED] wrote: Hi everyone, Hope you're enjoying 1.5. The GWT team has started putting together a 1.6 roadmap, which we'll

GWT Session problem

2008-10-14 Thread mk
I use the following method to get session ID in my [RemoteServiceServlet] class: protected String getSessionId() { return getThreadLocalRequest().getSession().getId() ; } It used to work nicely. Then all of a sudden, it started returning a different ID with

GWT and Firefox

2008-10-14 Thread Taff
Hi I'm sure this has been raised before, however I'm new to the product and can't find any threads on this MY new app works fine in IE and not in Firefox. For some reason the app does not pick up the app stylesheet in firefox like it does in IE. I've tried every which way, but to no avail.

Re: Search API

2008-10-14 Thread Sumit Chandel
Hi Max, You would have more luck finding answers relating to the Google Ajax Search API by posting up on its official developer forum: http://groups.google.com/group/Google-AJAX-Search-API Hope that helps, -Sumit Chandel On Fri, Oct 10, 2008 at 10:14 AM, RichBrains [EMAIL PROTECTED] wrote:

Re: GChart: Can i have gray dotted gridlines and solid axes?

2008-10-14 Thread John Gunther
Sorry, you cannot style a client-side GChart's gridlines. You can use the setGridColor method, which may help do part of what you are looking for: http://gchart.googlecode.com/svn/trunk/doc/com/googlecode/gchart/client/GChart.html#setGridColor%28java.lang.String%29 If you must have dotted

Re: GWT1.4 and Loadrunner9.0

2008-10-14 Thread Isaac Truett
The reason *may* be that your server spontaneously combusted after the 39th page load. I consider that unlikely, but I can't do more than guess until you provide more information, such as the error message. On Tue, Oct 14, 2008 at 10:05 AM, i-friends [EMAIL PROTECTED]wrote: Hi all Developed

Re: error inheriting own module (No source code is available)

2008-10-14 Thread pepgrifell
Solved !!! It was a problem with eclipse and not with GWT. It seems that ant build file it was not refreshing properly (although I was refreshing it...). After trying different things, I closed eclipe and opened it and then it worked... On 14 oct, 14:12, pepgrifell [EMAIL PROTECTED] wrote: hi,

Re: GWT and Firefox

2008-10-14 Thread grasshopper
I am having exactly the same problem. GWT 1.5, IF 7, FF 3 On Oct 14, 11:26 am, Taff [EMAIL PROTECTED] wrote: Hi I'm sure this has been raised before, however I'm new to the product and can't find any threads on this MY new app works fine in IE and not in Firefox.  For some reason the app

Re: Google Maps API Library for GWT 1.0 Release Candidate 1 now available

2008-10-14 Thread Eric Ayers
Hi Ben, The Maps API is currently in release candidate stage. After the RC1 release, I got a number of bugs reported which I've been busily addressing. I am working on a second RC for Maps soon. If the bug reports slack off, I expect to do the GA release a few weeks after. -Eric. On Tue, Oct

Re: GWT 1.5 on Java 1.4

2008-10-14 Thread gregor
Hi CFS, I think the biggest problem to look at is whether the GWT 1.5 RPC mechanism uses Java 1.5 syntax server side (and since e.g. it serializes generic collections, it must do). In which case your RPC servlets probably won't run and you'd have to look at e.g. JSON to communicate with the

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread Matt Bishop
Jetty +1 I am all for anything that speeds up hosted mode development. --~--~-~--~~~---~--~~ 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: GChart and Maven 2

2008-10-14 Thread John Gunther
Appreciate the complement. I understand that a Maven2 repo makes it easier for Maven2 users to include GChart as one of their project's libraries, but I have not a clue as to how to set up a Maven2 repo. So, unless its really easy to set up a repo if you've never used Maven2 before, or unless

Hiding a custom Widget and then showing does not work anymore

2008-10-14 Thread jfey
Hi all GWTficiondos I am working on a rather complex environment (say OS) based on GWT. I use a widget based on SimplePanel which owns the real widget to be shown. My problem is that after hiding that outer SimplePanel once i can not get it to be shown any more at a later stage. I show the

Re: Late-loading parts of a GWT app

2008-10-14 Thread jared
Thanks, Isaac! That's exactly the kind of code splitting I was looking for. Can't wait for the next GWT release. Here's are three related threads that I found in that forum, for the curious:

GWT + JSON + Server-side code....... RPC ???

2008-10-14 Thread Suri
Hey people, I'm not sure if I understand this correctly and figured I could use some help. I have an existing Java Struts based application that I'm trying to integrate GWT as a module into. I created some simple client code and wanted to make a call to the server side to see if it would work

Re: Question about racing condition with refresh in linux.

2008-10-14 Thread shaselai
Hi kozura, That is almost exactly what i am doing: public class Mypage { Listbox list; public Mypage() { //generates panels.. setListBoxValues(); //generate restof panels, buttons etc. } public setListBoxValues() { AsyncCallbackListString lboxCall = new

Re: HTML inside a text box

2008-10-14 Thread Sumit Chandel
Hi Steve, Have you checked out the RichTextArea widget? You can see it in action in the Showcase sample application (link below). Showcase sample app: http://gwt.google.com/samples/Showcase/Showcase.html The RTA doesn't do auto-detection of things like hyperlinks where if I type something of the

store data in temp file before saveing into database

2008-10-14 Thread avd
hello sir, i made five web pages using gwt for insert data into the database but i want to save data of all fields of five pages after showing all inserted values at another web page with a button save and after click at the save button the whole data is stored into the database.Please

how to call RPC from an HTMLPanel's content anchor

2008-10-14 Thread Tanzeem
Hi Can anyone help me with a sample code for the following i have a HTMLPanel with its contents as HTML including a javascript function onClick() from which i expect to call an RPC. Is this possible? If ny solutions please help me. --~--~-~--~~~---~--~~ You

Re: GWT implementation of java.text.*, Collator equivalent is missing!

2008-10-14 Thread Ian Petersen
On Tue, Oct 14, 2008 at 10:01 AM, JohnnyBGood [EMAIL PROTECTED] wrote: Google has done a great job when created internationalization support for GWT apps. Its i18n capabilities are however far from exhaustive. One of the features I'm missing most is a support of java.text.* JRE subpackage,

Re: Need help with using GWT on Linux

2008-10-14 Thread Sumit Chandel
Hi Pete, The GWT distribution for Linux contains its own instance of a Mozilla installation (mozilla-1.7.12). You would need to use that Mozilla installation in order to get GWT hosted mode up and running. You can safely remove the mozilla-1.7.13 line unless it's available on your system, as well

Problem in showing the items in Flextable

2008-10-14 Thread baalu aanand
Hi all, I am updating the Mail App. I have gave some related items under the sent folder. While i click the sent in Mailboxes.java, the Flex table in MailList.java not showing the corresponding items. I have calling the MailList.update() function from the Mailboxes.java while clicking

Re: GWT + JSON + Server-side code....... RPC ???

2008-10-14 Thread [EMAIL PROTECTED]
Well google can send serialable objects. So it does not have to be json. It would be a whole new class of objects that you created. google's json code itself is not serialable. You can however have two liberaries for json and past the format from one to another. On Oct 14, 12:39 pm, Suri [EMAIL

Re: GWT 1.5 on Java 1.4

2008-10-14 Thread [EMAIL PROTECTED]
it could work. if you have the client side just submit stuff in the normal form submit. dont try to use RPC though. Just normal form post and ajax post On Oct 14, 5:51 am, gregor [EMAIL PROTECTED] wrote: Hi CFS, I think the biggest problem to look at is whether the GWT 1.5 RPC mechanism uses

StackOverflowError with OOPHM GWTCompiler

2008-10-14 Thread Thad
I'm running GWT OOPHM, which I most recently downloaded and build from the main branch yesterday, Oct 14th. I'm running on SuSE Linux 10.3 (2.6.22.18-0.2-default #1 SMP) and Java 1.6_10 For the most part, the OOPHM behaves correctly. However, when I attempt to build my admittedly large

Re: PopupPanel used as tooltip with animation causes incorrect position

2008-10-14 Thread Joe Cole
I am just bumping this as I think this is a bug in gwt and want to make sure that the correct people are aware. Should I file a bug? On Sep 11, 3:25 am, Joe Cole [EMAIL PROTECTED] wrote: Platform: Using GWT1.5 (release) and linux When I have a single instance of a popup panel, and it has it's

Re: Unable to clone a local reference in a function being inlined

2008-10-14 Thread hofmanndavid
Sorry, I forgot to say the it perfectly works in hosted mode. But when compiling it produces this error. If I whould be able to know that the compiler is complaining about and how to evade that it will be enough for now Thank you On Oct 14, 12:13 pm, hofmanndavid [EMAIL PROTECTED] wrote: Any

Re: Google Maps API Library for GWT 1.0 Release Candidate 1 now available

2008-10-14 Thread ben
Thanks Eric. Looking forward to it. On Oct 14, 3:20 pm, Eric Ayers [EMAIL PROTECTED] wrote: Hi Ben, The Maps API is currently in release candidate stage. After the RC1 release, I got a number of bugs reported which I've been busily addressing. I am working on a second RC for Maps soon.

RE: GWT and Firefox

2008-10-14 Thread Perelman Nathan (Nathan)
Try using Firebug (it's a Firefox plugin) to find out what styles (if any) are being applied and where they come from. -Original Message- From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Taff Sent: Tuesday, October 14, 2008 17:47 To: Google Web Toolkit

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread Jason Essington
Since creating a usable server side configuration in the embedded servlet container is all but impossible for anything but the simplest projects, I think that the choice of embedded server is a non-issue. Since complicated configurations aren't really something you want to address in the

DOM.scrollIntoView()

2008-10-14 Thread Ed
Hellu, Please some advice on the usage of the method: DOM.scrollIntoView(). I like to use this with an Y offset, which isn't possible in the current implementation. Any advice on how to easy realize this ? Why ? I show a flow of questions to the member on the screen, the next question will

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread Jason Essington
It already is! have a look at -noserver My project requires a full blown JEE container, not just a servlet engine, so neither tomcat nor jetty would be enough. I have been using -noserver since the beginning and it works great. If the embedded server doesn't fit your needs (no matter what

Re: GWT + iText + Eclipse Problem

2008-10-14 Thread prof3ta
So, any hint on how to generate a pdf file withi gwt? On Oct 14, 10:32 am, Paul Robinson [EMAIL PROTECTED] wrote: GWT compiles java into javascript client-side. That means you can't use any old java library in the client, only translatable java. prof3ta wrote: Pardon me, Dean. What do you

Re: Enter the Container

2008-10-14 Thread archimechanical
Ok, main concept is that there is real need to CREATE widgets not only by combining existed widgets. Example 1: I need create widgets from the hand created DOM Element complex (Diego case described here http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/78c45552015ea220) or

passing parameters to gwt application

2008-10-14 Thread Tanzeem
hi i have a non-gwt applicaton's html page from which i have to pass parameters trhough a href definition like a href=http://localhost: 7070/MyGWTApp?key=value to a gwt application.How do i make changes in the GWT application to enable parameter recieving? Any help please.

Re: GWT + iText + Eclipse Problem

2008-10-14 Thread prof3ta
Ok, I'm creating the PDF file in the server. I'm using a HTTP POST request (through the RequestBuilder object) to get the file in the client. The problem now is that I can just see the content of the file in the callback function as a string, but I'm not able to write this string into the file

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread Ian Petersen
I use -noserver so, for me, effort spent on switching from Tomcat to Jetty is wasted, but I wouldn't begrudge the team for satisfying demand. Ian --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: run gwt project with eclipse

2008-10-14 Thread [EMAIL PROTECTED]
hello Dean, thank you for your response.In fact i didn't have MyApplication.launch and i genereted it with the flag -eclipse when i entered applicationCreator and so i have the good result.i won't mind comming back for another questions. see you Arnaud Dean S. Jones a écrit : I'm going to

How to use the applicationCreater on windows

2008-10-14 Thread Talha
Hey guys i jus downloaded the google web toolkit on my windows computer and i have been following the get started section from samples onwards but when i come up to creating a new application from scratch im having dificulties as the applicationCreator does not open so that i can enter the

Re: Speed-Up the loading of gwt module in jsp

2008-10-14 Thread [EMAIL PROTECTED]
Nope. My google project doesnt take long to load. depends on how you write it i guess On Oct 14, 2:41 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: In a jsp I have a gwt module and other normal html content. Gwt module takes a long time to load when compared to other content on the page, It

Re: passing parameters to gwt application

2008-10-14 Thread Jason Morris
If you're on GWT 1.5, you can just use Window.Location.getParameter(key); rudolf michael wrote: you just have to parse the http URL in your address bar. in your onModuleLoad method just call the following method public static native String getHref() /*-{ return $wnd.location.href;

Re: -noserver 1.5 RPC Help

2008-10-14 Thread Christopher Venning
Err, sorry. Didn't answer you. No, the changes detailed are the only changes made to a fresh extract of a freshly-downloaded (MD5-checked) package of Tomcat (Windows binaries). If there is something else that needs to be deployed, I have not done that. On Oct 14, 12:55 pm, Christopher

Re: GWT and Firefox

2008-10-14 Thread Taff
Top Tip!! thanks OK, so that partially answers the question, at least now I can see that my overiden css elements are being ignored for the standard.css ones. So, question - does this mean that I have to rename mine and then use the SetStyle method to get this working? .gwt-StackPanel { }

RE: GWT and Firefox

2008-10-14 Thread Perelman Nathan (Nathan)
I'm pretty sure that if you remove or comment out (with !-- comment -- since this is xml) the following line in your .gwt.xml file, it will stop including standard.css: inherits name=com.google.gwt.user.theme.standard.Standard/ I'm not sure that this is really your problem though. Make sure

Re: Search API

2008-10-14 Thread Ben Lisbakken
Hey Max -- Unfortunately you cannot limit the Search API to a specific country's Google search engine. However, you can limit the search to a language: webSearch.setRestriction(GSearch.RESTRICT_EXTENDED_ARGS, { lr :lang_FR}); Hope that helps, Ben On Fri, Oct 10, 2008 at 10:14 AM, RichBrains

Re: GWT and Firefox

2008-10-14 Thread Taff
yea, I did that and it didnt change anything sadly, now it says it using the .gwt-StackPanel { but it's just blank in firebug. I suspect it's just not loading my css file. I'll retire hurt for today and try again tomorrow, just frustrating that this is so different between IE and FF and tips

Re: Most efficient way to transfer larger amounts of data via RPC?

2008-10-14 Thread mtwomey
Ok - I'm going to work with the request builder for now and see how that goes. Really my only issue at this point is the slow RPC transfer. On the client side, the data is parsed into a structure upon receipt, consisting of several different kinds of HashMaps and ArrayLists of a few basic object

Re: Speed-Up the loading of gwt module in jsp

2008-10-14 Thread maheshm1206
Thanks Buzz, Let me clarify, Here the long time means - If the total page is loading in 10 seconds, the gwt part of the content is loading in the 9th and 10th seconds i.e. after the other html content is loaded. What I am looking is for, if GWT module loads in between.

[gwt-contrib] Re: FF3 winxp on OOPHM rev 3747 branch fails with No GWT plugin found

2008-10-14 Thread John Tamplin
On Tue, Oct 14, 2008 at 2:48 AM, gslender [EMAIL PROTECTED] wrote: Re the warning - loading both plugins fixes the warning. I don't get it anymore. Right, since Firefox thinks it has a plugin to match the embed tag, even though hosted.html will never use it because it finds the XPCOM plugin

[gwt-contrib] Code Review: Visualization API, improved hello world example

2008-10-14 Thread Uwe Maurer
Hi, I added a TabPanel to the hello world example, with a tab for each example. I added an example for the new DataView. Thanks, Uwe --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: [gwt-team] Release Notes for review

2008-10-14 Thread John LaBanca
Rajeev / Alex - Can you summarize what the problem with RequestBuilder and RPC? I don't see an issue associated with the fix, and it would be good to use something more descriptive than it was broke. Here is the commit log: For IE7, we should be instantiating an XHR with the native

[gwt-contrib] Re: [gwt-team] Release Notes for review

2008-10-14 Thread John Tamplin
On Tue, Oct 14, 2008 at 10:04 AM, Rajeev Dayal [EMAIL PROTECTED] wrote: Time.valueOf no longer tries to determine radix values... Instead of mentioning the radix problem, say that Time.valueOf correctly parses values with leading zeros Well, it would incorrectly accept 0xc:0xF:0x25 before,

[gwt-contrib] Code Review: Visualization API, added DataView

2008-10-14 Thread Uwe Maurer
Hi, I added the new DataView class that allows read only access to a DataTable for selected columns. Thanks, Uwe --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~--- Index:

[gwt-contrib] code review requested for 1.5, issues 2836, 2894, 2911 - various I18NSync issues

2008-10-14 Thread John Tamplin
Please review this change for 1.5.3 which fixes a number of small issues. The patch is larger than you might expect because it includes parts copied from elsewhere (and then simplified) for choosing what characters to quote and how to quote them, but at this point I felt it was safer to copy them

[gwt-contrib] Re: [gwt-team] Release Notes for review

2008-10-14 Thread Alex Rudnick
We'd gotten a report that for some IEs, when you instantiate the XHR with new ActiveXObject(Microsoft.XMLHTTP), if you try to do a GET with that object, it does a POST. This patch fixed that problem by using a different string (or just the native XMLlHttpRequest object). I was able to reproduce

[gwt-contrib] redirect results

2008-10-14 Thread deanhiller
1st issue I am interested in looking at the code that handles errors coming back from an XmlHttpRequest. After checkout, where would I look for this? Basically, in seam using AJAX, if the response to an XmlHttpRequest is a redirect message, the entire page redirects. I kinda wanted the

[gwt-contrib] [google-web-toolkit commit] r3752 - in releases/1.5/user: src/com/google/gwt/user/client/rpc/impl src/com/google/gwt/user/ser...

2008-10-14 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Oct 14 11:51:17 2008 New Revision: 3752 Modified: releases/1.5/user/src/com/google/gwt/user/client/rpc/impl/AbstractSerializationStream.java releases/1.5/user/src/com/google/gwt/user/client/rpc/impl/ClientSerializationStreamWriter.java

[gwt-contrib] Re: [gwt-team] Release Notes for review

2008-10-14 Thread Scott Blum
I don't think anything I did merits explicit release notes call out; let's remember to include a query link for all fixed issues. --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: code review requested for 1.5 branch, RPC quoting, issues 1137, 1906, and more

2008-10-14 Thread Joel Webber
LGTM. All the tests seem to work properly on the emulator. Would you mind entering an issue to come back and loosen up the escaping regex, once the Android encoding bug gets fixed? On Tue, Oct 14, 2008 at 6:37 AM, John Tamplin [EMAIL PROTECTED] wrote: On Mon, Oct 13, 2008 at 11:27 AM, Joel

[gwt-contrib] Re: code review requested for 1.5 branch, RPC quoting, issues 1137, 1906, and more

2008-10-14 Thread John Tamplin
On Tue, Oct 14, 2008 at 3:22 PM, Joel Webber [EMAIL PROTECTED] wrote: LGTM. All the tests seem to work properly on the emulator. Would you mind entering an issue to come back and loosen up the escaping regex, once the Android encoding bug gets fixed? Committed to releases/1.5 at r3752, issue

[gwt-contrib] Re: code review requested for 1.5, issues 2836, 2894, 2911 - various I18NSync issues

2008-10-14 Thread Alex Rudnick
Alright, taking a look! The code looks good (one typographical nit), but I'm pretty sure you should change the comments in the tests that reference local files on your machine. Also, all the test files should have copyright notices (don't they?), but it looks like you took some of them out. Let

[gwt-contrib] Re: RR: SOYC Correlation work

2008-10-14 Thread Lex Spoon
Kathrin and I reviewed this together. In general, this solves an important use case, so let's move forward on it aside from minor issues. The following use cases are the ones we could think of: - Seeing what amount of output code (and in fact the actual code if you want) corresponds to what

[gwt-contrib] Re: [gwt-team] Release Notes for review

2008-10-14 Thread Rajeev Dayal
HTTPRequests no long POST instead of GET in some IE installs because of incorrect XHR selection should be HTTPRequests no longer POST instead of GET in some IE installs because of incorrect XHR selection On Tue, Oct 14, 2008 at 4:20 PM, John LaBanca [EMAIL PROTECTED] wrote: Alright, please

[gwt-contrib] Re: [gwt-team] Release Notes for review

2008-10-14 Thread John LaBanca
Alright, please take a final look at the changes you all recommended and give a LGTM if the release notes look good. http://www.corp.google.com/~jlabanca/release_notes.htmlhttp://www.corp.google.com/%7Ejlabanca/release_notes.html Thanks, John LaBanca [EMAIL PROTECTED] On Tue, Oct 14, 2008 at

[gwt-contrib] Re: [gwt-team] Release Notes for review

2008-10-14 Thread Scott Blum
Just formatting nitpicks.1) All code needs to use the HTML for code. 2) Any code that refers to a method should be postfixed with parentheses. See the formatting in 1.5.2 notes. Specifically: HTTPRequests - make singular to match class name, use code style getAbsoluteTop/Left -

[gwt-contrib] Re: code review requested for 1.5, issues 2836, 2894, 2911 - various I18NSync issues

2008-10-14 Thread John Tamplin
On Tue, Oct 14, 2008 at 3:41 PM, Alex Rudnick [EMAIL PROTECTED] wrote: The code looks good (one typographical nit), but I'm pretty sure you should change the comments in the tests that reference local files on your machine. Also, all the test files should have copyright notices (don't they?),

[gwt-contrib] Re: FF3 winxp on OOPHM rev 3747 branch fails with No GWT plugin found

2008-10-14 Thread gslender
Comments below... On Oct 14, 6:25 pm, John Tamplin [EMAIL PROTECTED] wrote: Can you reproduce this with the samples? Say, run Hello-shell then refresh the page? For me, it shows the old one disconnected and creates a new connection, as expected. Where do you get the out of bounds

[gwt-contrib] Re: Code Review: gwt-google-apis gears Add support for message types other than String()

2008-10-14 Thread Alex Rudnick
Hey Eric :) I'll take this one. LGTM, save the (formatting) comments below and a question about documentation. gears/test/com/google/gwt/gears/client/workerpool/WorkerPoolTest.java: 388: Should probably take out the commented-out testReceiveMessageObject. Unless you wanted to put this one in?

[gwt-contrib] Re: code review requested for 1.5 branch, RPC quoting, issues 1137, 1906, and more

2008-10-14 Thread John Tamplin
On Mon, Oct 13, 2008 at 11:27 AM, Joel Webber [EMAIL PROTECTED] wrote: Running RPCSuite, it looks like everything passes except for UnicodeEscapingTest.testClientToServer[Non]BMP(), which cause the exceptions described below, on the server. Ok, here is a revised patch, which adds quoting for

[gwt-contrib] Re: FF3 winxp on OOPHM rev 3747 branch fails with No GWT plugin found

2008-10-14 Thread gslender
So is there any way to find out where/what is really causing this array IndexOutOfBoundsException ?? It must be the JS parser within GWT I'm guessing? Cheers, Grant --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Code Review: gwt-google-apis gears Add support for message types other than String()

2008-10-14 Thread Eric Ayers
Thanks for the comments. On Tue, Oct 14, 2008 at 5:43 PM, Alex Rudnick [EMAIL PROTECTED] wrote: Hey Eric :) I'll take this one. LGTM, save the (formatting) comments below and a question about documentation. gears/test/com/google/gwt/gears/client/workerpool/WorkerPoolTest.java: 388: Should

[gwt-contrib] Re: FF3 winxp on OOPHM rev 3747 branch fails with No GWT plugin found

2008-10-14 Thread John Tamplin
On Tue, Oct 14, 2008 at 6:30 PM, gslender [EMAIL PROTECTED] wrote: So is there any way to find out where/what is really causing this array IndexOutOfBoundsException ?? It must be the JS parser within GWT I'm guessing? java.util.ArrayList.get(Unknown Source) at

[gwt-contrib] Patch for TreeMap serialization

2008-10-14 Thread Amit Manjhi
Hi all, I have attached a patch for TreeMap Serialization. The patch has been reviewed by John Tamplin. Most of the code is similar to the way we do serialization/deserialization for HashMap. The deserialization is done element by element and the tree is being built incrementally. John pointed

[gwt-contrib] Re: RR:JS collections

2008-10-14 Thread Damon Lundin
I realize I may be jumping in late to this discussion, but Bruce just introduced me to this fine contributors group. At a talk during the Google I/O conference, I mentioned the benefit of using the GWT FastStringMap implementation over the HashMap implementation and I decided to re-run my

  1   2   >