submitting GWT code

2008-10-02 Thread deanhiller
I haven't seen the code, but I have noticed that nearly every exception in GWT side is an InvocationException and alot of those do not have what caused it. I would really like there too kind of be a few different exceptions possibly like TimeoutException(no response from server)

Re: Ajax on a server that does not support servlet

2008-10-02 Thread slow
I am a newbie in Java. The commented code was suggested by the eclipse editor. I have no idea what it means. However, when I compiled it brought the same error. I tried to instantiate RequestCallback somewhere else but it still hates that. My dilemma is that it is shown like that on the

Re: Standard themes not crossbrowser?

2008-10-02 Thread mattscape
I am sorry but I have to disagree: If I start with a GWT theme I assume that the UI is looking the same in the different browsers. Especially with the GWT-Buttons. Well we could argue about the fonts, but what about the missing icons? --~--~-~--~~~---~--~~ You

Remove all rows from FlexTable

2008-10-02 Thread hezjing
Hi I'm populating a FlexTable using setText(row, column, text). Here is what I did to clear the entire contents of a FlexTable, int count = myFlexTable.getRowCount(); for (int i = 0; i count; i++) { myFlexTable.removeRow(i); } Is there a more

Re: Best GWT canvas (vector graphics) library?

2008-10-02 Thread Robbie Vanbrabant
On Thu, Oct 2, 2008 at 8:33 AM, joseanquiles [EMAIL PROTECTED] wrote: * and, it is the worst, it is very very slow in Internet Explorer I am also looking for another canvas library. Is that the canvas library's fault? My guess is that it's because they emulate canvas on IE using VML, as

Re: Read external file

2008-10-02 Thread obesga
- On hosted mode, just use a new test servlet that reads the file, configured 'by hand' directly in code. Or type the file into a java class. On 1 oct, 19:14, emdafe [EMAIL PROTECTED] wrote: Hi, I am new with gwt; i built an application and at start up i must to read a configuration file.

Re: Read external file

2008-10-02 Thread obesga
Quick method: just do a new testing servlet that has the contents on the file staticaly defined , or read a file staticaly defined on code. When you have your client code tested, then move the html/js code to the real server. Alternate method: Search documentation and forums, there's a way to

Re: Remove all rows from FlexTable

2008-10-02 Thread obesga
myFlexTable.clear() will remove the widgets on the table, I don't now if this will be usefull to you Or simlpy remove the flextable from the parent widget and atach a new flextable Oskar On 2 oct, 09:55, hezjing [EMAIL PROTECTED] wrote: Hi I'm populating a FlexTable using setText(row,

Re: Remove all rows from FlexTable

2008-10-02 Thread hezjing
Hi Oskar Unfortunately the clear() does not work, the Javadoc explained that clear() removes all widgets from the table, but does not remove other HTML or text contents of cells. On Thu, Oct 2, 2008 at 4:16 PM, obesga [EMAIL PROTECTED] wrote: myFlexTable.clear() will remove the widgets on

Re: Safe to make *ServiceAsync a singleton?

2008-10-02 Thread obesga
Just a point: If you use GWT1.5 with Java5 semantics, just do @RemoteServiceRelativePath(myservice) public interface MyService extends RemoteService { ... } when you code like this private static MyServiceAsync = GWT.create(MyService.class); It'll automatically point to '/myService' path,

Re: Remove all rows from FlexTable

2008-10-02 Thread Lothar Kimmeringer
hezjing schrieb: Unfortunately the clear() does not work, the Javadoc explained that clear() removes all widgets from the table, but does not remove other HTML or text contents of cells. Sounds strange. Can you post a small example what exactly you mean? Especially what you mean with other

Re: Remove all rows from FlexTable

2008-10-02 Thread hezjing
OK, I don't want to pollute this mailing list with my messy codes and so, I thought showing the following callback is sufficient: private AsyncCallbackListCustomer callback = new AsyncCallbackListCustomer() { public void onFailure(Throwable caught) { } public void

Re: RPC application and isolated classpaths

2008-10-02 Thread Kieron Wilkinson
Ah, great. Thanks for that, yes that does all make sense. So ultimately, its just a development-time dependency. Good to know! On Oct 1, 1:56 pm, Isaac Truett [EMAIL PROTECTED] wrote: servlet tags provide request mapping information for hosted mode's embedded Tomcat server. If you don't use

Re: Change ListBox-Item style: don't work correctly

2008-10-02 Thread Schimki86
I found the reason: the ListBoxis not updated. If I use setVisible() to hide it and show it again the list is updated correctly. Any Idea? Is this a bug and is there a clean way to fix this? 2008/10/2 Schimki86 [EMAIL PROTECTED] I have a ListBox (select) with items (options). Now i have to

Re: Standard themes not crossbrowser?

2008-10-02 Thread Ian Bambury
OK then, we disagree. My personal opinion is that if I was adding one tiny widget to an existing web page, I'd be extremely miffed if GWT changed all my CSS settings. Or if it didn't respect my settings and just went it's own way with fonts, font sizes, weights, and so on and thereby looked out of

Re: redirect problem

2008-10-02 Thread falafala
The gwt client cannot interpret the redirect or invalid response (hence invocation exception). I do it this way... I use GWT server library so I can implement the service as POJO in Spring container and published as gwt service. I cannot use servlet filter bcoz it cannot handle the marshaling

GWT compiler and Hibernate4GWT problem

2008-10-02 Thread mig
Hello all, I posted this in the H4GWT forum and have been redirected here, as this may be a problem of the GWT compiler. I just paste here parts of the original message: --- I have a RPC module with all serviceasync interfaces and entity classes. There is also another module, that represents

GWT in netbeans 6.0.1

2008-10-02 Thread prabesh shrestha
I have installed the GWT plugin in my netbeans IDE .But when i start a new project in comes to a hold when i select the installation folder for gwt.It says this is not a valid installation folder for gwt. I am using netbeans in windows XP.What is the valid installation folder?

Re: Sorting Script HELP!!!

2008-10-02 Thread Ian Bambury
What has this got to do with GWT? --~--~-~--~~~---~--~~ 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 unsubscribe from this group,

Including a deployed GWT project (just a form) from another project?

2008-10-02 Thread FFenril
Hello, I'm currently developping an application at work using for the first time Google Web Toolkit. For now, the application works this way : When it's launched, it makes an HTTPRequest (using the RequestBuilder and Request classes) to a PHP script which sends back data from a database formated

GWT Developer Resources feedback

2008-10-02 Thread Sumit Chandel
Hello everyone, The Google Developer Relations team is trying to get feedback on how we're doing so far with support for our APIs, including the Google Web Toolkit. So without further ado, may I present to you the Developer Resources Feedback survey (link below)! This is a chance for GWT

Re: add-linker name=xs / vs compiler switch

2008-10-02 Thread Isaac Truett
What is it that you find inconvenient about having two module definitions? How would a compiler option simplify things? On Wed, Oct 1, 2008 at 9:15 PM, sluramod [EMAIL PROTECTED] wrote: That's what I do at the moment, however it is not very convenient. Alex On Oct 1, 5:27 am, Isaac Truett

Re: RichTextToolbar

2008-10-02 Thread Sumit Chandel
Hi Michael, The reason why the RichTextArea doesn't have an accompanying Toolbar included in the GWT libraries is because we wanted to leave the choice open for developers and not have the RTA locked into our own toolbar. For any developers who do want to use a toolbar with the same look as

Re: ListBox: Drop-Down Images using CSS?

2008-10-02 Thread Isaac Truett
Kevin, There's a DropDownListBox widget in the Incubator that might be more in line with what you're trying to achieve here. It uses a PushButton and a PopupPanel to simulate the behavior of a standard select element. The use of widgets gives you a lot more control over appearance and function.

Re: GWT compiler and Hibernate4GWT problem

2008-10-02 Thread noon
Hi, I just want to add that Hibernate4Gwt uses GWT generator to create entity proxy, so an explicit GWT.create() call is needed. But in this case, it looks like return values in are not always replaced with gwt.rpc files by the generated proxy. Does anybody knows why ? Regards Bruno On 2 oct,

Re: This UIObject's element is not set

2008-10-02 Thread Isaac Truett
I don't think an anonymous subclass of Panel is what you're looking for here. Can you explain what you're trying to accomplish? On Wed, Oct 1, 2008 at 7:21 PM, fsilva [EMAIL PROTECTED] wrote: i have this code: import com.google.gwt.core.client.EntryPoint; import

Re: Newbie question - adding GWT to my existing application

2008-10-02 Thread walden
Suri, Let's take it one step at a time. The first problem is your source directive. It should look like this: source path=./ The path is the folder at the root of a hierarchy, not a single file. Since your path was defective, the Client1 source was not found, and that caused the import

Re: Is it caching ?

2008-10-02 Thread Amit Dhingra
I have done something similar here... if(!HTTPRequest.asyncGet(url + index_select.php?tosearch=3id= + new Date().getTime(), new JSONResponseTextHandler())) { Window.alert(Error accessing index_select.php); } The new Date().getTime() returns a new timestamp everytime...

Re: redirect problem

2008-10-02 Thread walden
Hi Dean, In my earliest prototypes with GWT RPC, I decided I didn't want to bother with failed calls, so I implemented my own AsyncCallbackAdapter which stubs out the onFailure with a Window.alert(). Then I extend that for the specific RPC cases. Strangely enough, I haven't had to revisit that

Re: submitting GWT code

2008-10-02 Thread walden
Dean, Are you talking about the exceptions that are generated within the RPC framework code itself? It seems to me what you want is better control over the exceptions thrown on the server, and of course that's up to you. Walden On Oct 2, 2:14 am, deanhiller [EMAIL PROTECTED] wrote: I haven't

Downloading a file from the server

2008-10-02 Thread Halabe
Hi, In my GWT application, the user can upload a file from any type. He should be able to download the file ( a window with save as option should be opened) when he presses a button. I looked in the group and did not find how I can do that. Can anyone help?? Thank you,

GWT Timers - say no to it with IE

2008-10-02 Thread Ivan
Hello everybody, I have encountered one problem: it's well known that there's a Timer class: com.google.gwt.user.client.Timer and of cource it is not a secret that it works in Firefox, Opera, and Google Chrome without any problems, but what's about Internet Explorer ? Well, the answer is

Re: Remove all rows from FlexTable

2008-10-02 Thread walden
Yes there is. myFlexTable = new FlexTable(); // code to plug the new instance in where the old instance used to be Walden On Oct 2, 3:55 am, hezjing [EMAIL PROTECTED] wrote: Hi I'm populating a FlexTable using setText(row, column, text). Here is what I did to clear the entire contents of a

Re: Best GWT canvas (vector graphics) library?

2008-10-02 Thread joseanquiles
Hi Robbie, you're right. GWTCanvas is based on IE Canvas, which is very very slow. GWTCanvas is not obviously the guilty :-) But I'd like to know if there exist another javascript implementation(s) not based in IE Canvas. So, we can build a new GWTCanvas, faster... Regards José Antonio

Making indexed images using ImageBundle / AbstractImagePrototype

2008-10-02 Thread Ibmurai
Would it be possible to have an array of images in an imagebundle? I'm thinking something that would look like this: MyImageBundle myImageBundle = GWT.create(MyImageBundle.class); panel.add(myImageBundle.images[0].createImage()); images[0] being the important bit... Maybe there is some other

Re: GWT Timers - say no to it with IE

2008-10-02 Thread Isaac Truett
Just saying something doesn't work won't get you very far. This is especially true when the thing you claim doesn't work actually does work. How about providing code that demonstrates the problem? On Thu, Oct 2, 2008 at 9:19 AM, Ivan [EMAIL PROTECTED] wrote: Hello everybody, I have

Re: Newbie question - adding GWT to my existing application

2008-10-02 Thread Suri
Ah, gotcha. Thanks Walden. I had the initial idea of having the '.' But then refrained thinking I could point to the single class. I mis- understood the first reply then. Thanks for the reply to the second question as well. I'll go ahead and see how this works out. Appreciate the patience. Suri

Re: GWT Timers - say no to it with IE

2008-10-02 Thread Ian Bambury
I think this is probably something you are doing. I feel that someone else would have mentioned it before now, don't you? But without any code only the telepathic will respond, but probably not by email. Ian http://examples.roughian.com 2008/10/2 Ivan [EMAIL PROTECTED] Hello everybody, I

Re: Downloading a file from the server

2008-10-02 Thread Isaac Truett
Look again? http://groups.google.com/group/Google-Web-Toolkit/search?group=Google-Web-Toolkitq=download+fileqt_g=Search+this+group On Thu, Oct 2, 2008 at 9:19 AM, Halabe [EMAIL PROTECTED] wrote: Hi, In my GWT application, the user can upload a file from any type. He should be able to

Re: Issues with dynamic binding

2008-10-02 Thread Sumit Chandel
Hi Madhu, Could you post up more details about what you're trying to create a deferred binding rule for? I imagine you have differing implementations of a given widget based on the sparkDetailScreen property? In any case, you might want to double check and make sure that you've defined a

Re: Version 1.5.2 much slower on all browsers except Crome

2008-10-02 Thread Sumit Chandel
Hi Manuel, Did you notice a decrease in speed as you moved from GWT 1.4 to 1.5, or from some RC build of 1.5 to the final release of 1.5.2? Also, how slow are the RPC calls (i.e. how long do they take to return once the RPC call is made?) As far as I know, most developers have reported faster

How to accept dynamic URL for a servlet in .gwt.xml

2008-10-02 Thread Charan
hi, i have requirement to accept multiple URL's to single servlet file for example: /projectName/access/files/1234 /projectName/access/files/1235 /projectName/access/files/1236 /projectName/access/files/1237 /projectName/access/files/1238 /projectName/access/files/1239

Re: How to accept dynamic URL for a servlet in .gwt.xml

2008-10-02 Thread olivier nouguier
hi, Those mapping are only for GWT-RPC request !! You should not put this servlet in the gwt.xml ! On Thu, Oct 2, 2008 at 4:16 PM, Charan [EMAIL PROTECTED] wrote: hi, i have requirement to accept multiple URL's to single servlet file for example: /projectName/access/files/1234

Re: GWT in netbeans 6.0.1

2008-10-02 Thread YoeZ
installation folder is where you extracted the GWT (ex. C:\GWT\gwt- windows-1.5.2) On Oct 2, 1:10 pm, prabesh shrestha [EMAIL PROTECTED] wrote: I have installed the GWT plugin in my netbeans IDE .But when i start a new project in comes to a hold when i select the installation folder for

Re: GWT Timers - say no to it with IE

2008-10-02 Thread Tom Hjellming
Timer works fine for me in both IE and Firefox. Tom Ivan wrote: Hello everybody, I have encountered one problem: it's well known that there's a Timer class: com.google.gwt.user.client.Timer and of cource it is not a secret that it works in Firefox, Opera, and Google Chrome without

Re: Remove all rows from FlexTable

2008-10-02 Thread Thomas Broyer
On 2 oct, 09:55, hezjing [EMAIL PROTECTED] wrote: Hi I'm populating a FlexTable using setText(row, column, text). Here is what I did to clear the entire contents of a FlexTable,             int count = myFlexTable.getRowCount();             for (int i = 0; i count; i++) {                

Re: How to accept dynamic URL for a servlet in .gwt.xml

2008-10-02 Thread Charan
i have configured in tomcat/webapps/root/WEB-INF/web.xml as follows servlet servlet-nameFileAcess/servlet-name servlet-classcom.capgent.server.MyServer/servlet-class /servlet servlet-mapping

Re: common stuff

2008-10-02 Thread sumanth s
Hi walden Any answer to my question thanks in advance rty On Wed, Oct 1, 2008 at 12:56 PM, sumanth s [EMAIL PROTECTED] wrote: so do I need to implement all this in the layer to which we make RPC calls(singleton).?or do u think there is some better way of doing this? On Wed, Oct 1, 2008 at

Re: Newbie question - adding GWT to my existing application

2008-10-02 Thread Suri
An updated attempt.. I changed my classpath to point to the applications 'src' folder and not the file directly and updated the Gwt_test.gwt.xml file to include the line as inherits name='package.subpackage.subpackage'/ Now when trying to compile I get this error Loading module

Re: Troubles linking GWT and php server using JSon

2008-10-02 Thread Ian Bambury
Hi Raml, I'm not sure I understand your setup exactly. If you run your GWT app in hosted mode, it will try to get the php file from your public/php/ directory (or wherever you put your php). It won't be processed as php before it is sent to the browser, so you will get the raw script ?php and

XML Document to string (for displaying and saving)

2008-10-02 Thread WebDude
I have an XML Document object on the client side that the user would like displayed and/or saved to disk (in proper XML formatting). I'm having trouble figuring out how to convert a whole Document object to an XML string. How might I go about getting an XML string from a Document object? I've

Re: Troubles linking GWT and php server using JSon

2008-10-02 Thread RamI
alright, I will re-explain everything from the beginning Context : I am developing a personal application portal, in which I want to add various application made in GWT. This portal will run on a php server. For this, I began with the identication module, so I have a database 'user' with two

Re: GWT Timers - say no to it with IE

2008-10-02 Thread Andrej Harsani
in gwt 1.5 Timers works OK in IE7. what IE and GWT version are you using? could you post test case? our application use Timers, you can check it here: Andrej http://www.gwtphp.com/ On Oct 2, 3:19 pm, Ivan [EMAIL PROTECTED] wrote: Hello everybody, I have encountered one problem:  it's

Re: Troubles linking GWT and php server using JSon

2008-10-02 Thread RamI
Pavel, I tried String url = http://localhost:/com.op.Portail/authenticate.php? name=\'RamI\'pwd=\'+pass+\'; but the result is the same :s RamI --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Troubles linking GWT and php server using JSon

2008-10-02 Thread Ian Bambury
Hi Raml, Using port wil always point you to your Tomcat server and therefore the PHP won't be interpreted. Look at Pavel's email agin - there is no : in there. This is important because it determines which server is targeted. Ian http://examples.roughian.com 2008/10/2 RamI [EMAIL

Re: Problems with List of Object in GWT 1.5

2008-10-02 Thread Jason Essington
You are going to get this from quite a few people, but Don't return Object. when you do that GWT is forced to generate serializers for every serializable type in the known world ... whether you use it or not. This will cause quite a bit of extra code to be generated. Do a search on this

Re: Remove all rows from FlexTable

2008-10-02 Thread walden
That depends on the nature of the parent. For example, with a SimplePanel as parent, you wouldn't. On Oct 2, 10:27 am, olivier nouguier [EMAIL PROTECTED] wrote: Hi,  IMHO it's also necessary to remove the old myFlexTable from is parent ? no ? On Thu, Oct 2, 2008 at 3:20 PM, walden

Re: Troubles linking GWT and php server using JSon

2008-10-02 Thread Andrej Harsani
Hi, I suggest to use your Apache (with configured php) instead of tomcat running at port . Open you module's *.launch file and use something like this: stringAttribute key=org.eclipse.jdt.launching.PROGRAM_ARGUMENTS value=-out www com.op.Portail/{module}.html -noserver -port 80/ -noserver

Re: Same origins policy

2008-10-02 Thread Charlie Collins
As to part 2 here Ok, now for the second thing. How can I make the non-ssl - ssl protocol switch and not break the Same Origins rules? - you can't (or at least you shouldn't be able to, if you do it would be a huge hole ;)). The page you linked there shows the policy pretty clearly. The

Re: Child browser not responding...

2008-10-02 Thread Maddy
Narrowed down the issue. The issue is 1) Open IE and click CTRL+N, whcih opens a new browser window but with same session. 2) Now try to access the GWT application, once the resposne comes from the server, GWT compiled javascript gets executed on the browser. 3) Now close the browser, when the

Re: Troubles linking GWT and php server using JSon

2008-10-02 Thread Jim Freeze
This is a server configuration inside Eclipse issue (mostly). I posted earlier on how to set that, in this thread. You don't need GWT to debug this. You can test this whole thing from a web browser. Start by browsing to the URL in question. Let's assume it is a restful URL to get a user:

self-removing LoadListener

2008-10-02 Thread D L H
Hello. I'm trying to create an Image LoadListener that will remove itself from the image once the image is finished loading. I tried using image.removeLoadListener(this); but that gave me a ConcurrentModificationException. Then I tried making the LoadListener a final and using

Re: Newbie question - adding GWT to my existing application

2008-10-02 Thread Suri
Hi Walden Did what you said and also modified the xxx-compile.cmd file to add the class path for the gwt.xml file so the new class path is @java -Xmx256M -cp %~dp0\src;%~dp0\bin;C:/app/src/package/subpackage/ subpackage.gwt.xml;C:/.../gwt-user.jar;C:/.../gwt-dev-windows.jar

Re: tooltip box

2008-10-02 Thread Adler
hey, I downloaded and tried to get the hang of this GWT. but couldn't really figure out how i'm supposed to use some of the features in my website. the sourse code seems to be so complicated and doesn't bring up a thing. you have any idea?!!! thanks. On Oct 1, 1:31 pm, Adler [EMAIL

Re: How to accept dynamic URL for a servlet in .gwt.xml

2008-10-02 Thread Thomas Broyer
On 2 oct, 17:04, Charan [EMAIL PROTECTED] wrote: i have configured in tomcat/webapps/root/WEB-INF/web.xml as follows          servlet                 servlet-nameFileAcess/servlet-name                 servlet-classcom.capgent.server.MyServer/servlet-class         /servlet        

Trouble with GWTShell and Maps

2008-10-02 Thread RubberBaron
(BTW, I posted this question on the Maps forum, they said to post here...) I am using gwt-linux-1.5.2 and gwt-maps-1.0.0 with some very simple Java code: import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.ui.RootPanel; import com.google.gwt.maps.client.MapWidget;

Re: Running Windows-built GWTTestCase on Sparc/Solaris ??

2008-10-02 Thread Ajay Reddy
Did you ever fix it. I am running into the same issue. Ajay On Sep 24, 2:44 pm, Paul [EMAIL PROTECTED] wrote: I have some GWTTestCase's that run in both hosted and web mode on my Windows dev laptop. I'd like to also have them run on our build machine during builds, just like the plain JUnit

Multiple *.gwt.xml in One Module

2008-10-02 Thread sshark
Hi, I was following Solution #6 (Drag and Drop) example from the book Google Web Toolkit Solutions: More Cool Useful Stuff. I used Intellij 7 with GWT 1.5 to compile the example but failed with the errors reported. I tried a few things unsuccessfully and finally I removed the line inherits

Re: Trouble with GWTShell and Maps

2008-10-02 Thread Eric Ayers
Hi Chris, There is a minimum rev of the Maps API required. What does your line to include the Maps API look like? I think I recently determined the minimum required version is 2.118 (it should be in the release notes) -Eric. On Thu, Oct 2, 2008 at 3:33 PM, RubberBaron [EMAIL PROTECTED] wrote:

Re: GWT compiler and Hibernate4GWT problem

2008-10-02 Thread Charlie Collins
You might try asking this one on the hibernate4gwt forum (I don't use it so I can't answer it, but I know they do have a forum and will answer your questions generally if they see them - might get more traction there): http://sourceforge.net/forum/forum.php?forum_id=689608. On Oct 2, 7:45 am,

Re: redirect problem

2008-10-02 Thread deanhiller
This combined with the post just after sounds like the best solution so far(though educating developers on using the adapter is a pain, it will have to do). In that case though, if I am using tomcat with straight GWT, can I still do this? I don't know much about spring at all. Can I get more

Re: Ajax on a server that does not support servlet

2008-10-02 Thread slow
Thank you Jason for your help. That was a bad mistake. Anywhere I used other code and it worked. The problem i have is that I have conficting results. One statement tells me I have the data and the other says the same data is null. Worse enough, if I call the same statement twice i get different

Package/Source Problem

2008-10-02 Thread Justin Thomas
I have an existing Java web application. I am trying to add a GWT component. I have a main source folder called src. I have a GWT package under src as well in com.vzb... My main source for the app is in com.wcom... The GWT application compiles and works great with my test app, however, when

upgrade and OutOfMemoryError

2008-10-02 Thread deanhiller
Every few months, I have been trying to upgrade. Every time, I end up with OutOfMemoryErrors either during compile or during running the shell. I have seen lots of posts on these issues. I keep downgrading to 1.4 and not being able to upgrade because of these issues. I can't trim down the test

Re: upgrade and OutOfMemoryError

2008-10-02 Thread deanhiller
never mind, this time increasing the memory a bit actually worked - Xmx512m. I am suprised this takes so much more memory than before but then maybe I was at the threshold before. A few months ago, that didn't seem to help at all. On Oct 2, 9:00 pm, deanhiller [EMAIL PROTECTED] wrote: Every

how to proxy all the methods in my RemoteServiceServlet

2008-10-02 Thread deanhiller
I saw someone talking about proxying all the methods to add code(like an aspect or filter) using spring and I am wondering how I can do this(hopefully without spring as I don't feel like learning that right now and just want a quick solution). Basically, if my GWT servlet has these methods

[gwt-contrib] [google-web-toolkit commit] r3696 - wiki

2008-10-02 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 2 05:50:22 2008 New Revision: 3696 Modified: wiki/RpcAuth.wiki Log: Edited wiki page through web user interface. Modified: wiki/RpcAuth.wiki == --- wiki/RpcAuth.wiki

[gwt-contrib] Issue 940 patch

2008-10-02 Thread Emily Crutcher
Modifies the DOM.get/setInnerText for Mozilla to use textContent. Modeled on DOMImplIE6's implementation using innerText. -- There are only 10 types of people in the world: Those who understand binary, and those who don't --~--~-~--~~~---~--~~

[gwt-contrib] Re: RR: remove deprecated image base method from tree

2008-10-02 Thread Alex Rudnick
+1, let's take it out! We should encourage ImageBundling, and if somebody really doesn't want to use TreeImages, they could just serve the tree image urls from somewhere else. On Thu, Oct 2, 2008 at 10:22 AM, Emily Crutcher [EMAIL PROTECTED] wrote: The Tree.setImageBase method was deprecated

[gwt-contrib] [google-web-toolkit commit] r3698 - in changes/jat/oophm-branch: plugins/xpcom user/src/com/google/gwt/dom/client

2008-10-02 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 2 08:28:44 2008 New Revision: 3698 Modified: changes/jat/oophm-branch/plugins/xpcom/FFSessionHandler.cpp changes/jat/oophm-branch/user/src/com/google/gwt/dom/client/DOMImplMozilla.java Log: Fix DOM issue in OOPHM branch, GC crash because

[gwt-contrib] Re: GWT Issue 343 and the JSR-303 Draft (Implementing in GWT)

2008-10-02 Thread chris.ruffalo
Another release has been made @ http://code.google.com/p/google-web-toolkit/issues/detail?id=343 Please review and send me your comments. I'd like to target this for the GWT Incubator so I can get some more eyes on and stuff. My CLA has been electronically submitted and I'm ready to go.

[gwt-contrib] Re: Issue 940 patch

2008-10-02 Thread John LaBanca
LGTM Two minor nitpicks: 1. There is an extra new line above getInnerText that causes a checkstyle info 2. Since you are modifying the file, can you add @Overrides to getBodyOffsetTop/Left to get rid of the warnings Thanks, John LaBanca [EMAIL PROTECTED] On Thu, Oct 2, 2008 at 9:20 AM, Emily

[gwt-contrib] RR: make HTTPRequestImplIE6 try to gracefully fallback when building its XHR

2008-10-02 Thread Alex Rudnick
Hey Joel :) Would you take a look at this patch for HTTPRequestImplIE6? In the case where there's a native XMLHttpRequest on the window object (IE7), we'll use that, and failing that (IE6), we'll first try MSXML2.XMLHTTP.3.0 (recommended over on MSDN) and finally Microsoft.XMLHTTP. I've seen

[gwt-contrib] Re: Patch for issue 2853

2008-10-02 Thread John LaBanca
LGTM I'm not sure why I was setting the cellpadding and cellspacing to 0, but thanks for fixing it. Thanks, John LaBanca [EMAIL PROTECTED] On Thu, Oct 2, 2008 at 11:58 AM, Emily Crutcher [EMAIL PROTECTED] wrote: John, In what turns out to be one heck of a coninsidence, bug *28*53 was

[gwt-contrib] Re: Patch for issue 2853

2008-10-02 Thread Emily Crutcher
Commited at 3699. On Thu, Oct 2, 2008 at 2:10 PM, John LaBanca [EMAIL PROTECTED] wrote: LGTM I'm not sure why I was setting the cellpadding and cellspacing to 0, but thanks for fixing it. Thanks, John LaBanca [EMAIL PROTECTED] On Thu, Oct 2, 2008 at 11:58 AM, Emily Crutcher [EMAIL

[gwt-contrib] [google-web-toolkit commit] r3700 - trunk/user/src/com/google/gwt/dom/client

2008-10-02 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 2 13:15:46 2008 New Revision: 3700 Modified: trunk/user/src/com/google/gwt/dom/client/DOMImplMozilla.java Log: Fix for issue 940, not using innerContent for mozilla text nodes. Modified: trunk/user/src/com/google/gwt/dom/client/DOMImplMozilla.java

[gwt-contrib] Re: Issue 940 patch

2008-10-02 Thread Emily Crutcher
Thanks, Committed at 3700 On Thu, Oct 2, 2008 at 2:19 PM, John LaBanca [EMAIL PROTECTED] wrote: LGTM Two minor nitpicks: 1. There is an extra new line above getInnerText that causes a checkstyle info 2. Since you are modifying the file, can you add @Overrides to getBodyOffsetTop/Left to

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

2008-10-02 Thread Scott Blum
On Thu, Oct 2, 2008 at 4:56 PM, Lex Spoon [EMAIL PROTECTED] wrote: 2. Attaching a method to its overrider parent seems to mix two separate meanings of ancestor. In most of SOYC, the ancestors of a node are previous versions of the same node, only before some transformation had occurred. In

[gwt-contrib] Re: review request: factor out liveness analysis from the pruner

2008-10-02 Thread Scott Blum
Sorry for sitting on this so long, but now I'm wondering if Bob wouldn't be the best person to review this now? --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Api compatibility checker patch

2008-10-02 Thread Amit Manjhi
I think it should be okay to commit. Committed as r3703. Thanks! On Thu, Oct 2, 2008 at 5:17 PM, Scott Blum [EMAIL PROTECTED] wrote: Looks fine via glance over, but I didn't do a detailed review. Feel free to either commit or get a second opinion as you see fit. On Wed, Oct 1, 2008 at 6:17