Re: Direct-Eval Rpc

2010-05-25 Thread Gursel Koca
Thanks for your answer Stefan.. Well, self optimization is out of question..I would rather choose to implement my own serialization. the size of object graph is not huge. usual rpc mechanism produce 5kb payload, but the direct-eval rpc 350kb.. I do belive that they will correct this behaviour in

API needed to remove all selected rows in FlexTable

2010-05-25 Thread Thamizharasu S
Hi All, I have defined a FlexTable with checkbox as my first column. Based on the checkbox selection I need to delete all the selected rows in a single API call. I checked with the current FlexTable API, there is no API is available. removeRow(index) and removeAllRows() both the above methods

Re: Found bug in PopupPanel in IE6/7/8

2010-05-25 Thread stuckagain
Nobody seems to care about bugs nowadays ? On May 20, 9:17 am, stuckagain david.no...@gmail.com wrote: People, I reported a new issue on GWT in IE (6/7/8) where I no longer get keyboard events when closing down aPopupPanelby clicking on a textbox. In case somebody is bored and wants to fix

Re: New open source MVP(UiBinder) GWT Framework with GIN - Handlebars

2010-05-25 Thread wil.pannell
Tristan, Your work looks interesting and I'd like to find out more, but I was unable to get your sample app to run correctly. All I see is a sample page that says, Welcome to Handlebars. Can you upload eclipse project settings or a maven pom? Wil On May 1, 4:58 pm, Tristan

Re: On GWT I18N

2010-05-25 Thread mmoossen
Hi, we do also prefetch all messages in the host page and it works pretty well for us. Michael On May 24, 7:23 pm, Alexandros Papadakis alpa...@gmail.com wrote: On Mon, May 24, 2010 at 7:11 PM, Thomas Broyer t.bro...@gmail.com wrote: On 24 mai, 17:30, Alexandros Papadakis alpa...@gmail.com

Cancel submit form

2010-05-25 Thread Olivier
Hi, I'm trying to cancel a submit form event and it doesn't seems to work. I'm using UI Binder, this is the code I have : @UiHandler(form) void onSubmit(SubmitEvent event) { GWT.log(Submit); event.cancel(); } For some reason the form is still submitted, I'm not sure

Override annotation preventing compilation

2010-05-25 Thread mmoossen
Dear all, I have a serializable object that overrides the Object.clone() method and implements the cloneable interface. and i have the problem that eclipse (and me too) wants to have the Override annotation but while compiling the GWT compiler fails with following error message [java][ERROR]

Re: Override annotation preventing compilation

2010-05-25 Thread Sripathi Krishnan
I think it is the javac compiler failing, not GWTC. Also, I'd guess you are using JDK 1.5. In JDK 1.5, @Override annotation cannot be applied to methods that implement an interface; they can only be applied to a method that overrides a method from a class. In your case, the clone method is

null.nullField

2010-05-25 Thread jamesmikedup...@googlemail.com
I have been inspecting the generated code, and found code looking like this : null.nullField maxx (maxx = null.nullField); is there any way to catch this error at compile time? it should not be null.nullField thanks mike -- You received this message because you are subscribed to the

Re: Found interface com.google.gwt.user.client.Element, but class was expected

2010-05-25 Thread mmoossen
Hi Brian! no, sorry, we do not use any generation, injection or what so ever tools in our project. and as said, there is actually no big problem for us, it occurrs from time to time, so we just refresh and that is... i hope you can fix your problem. and if so please post about it. i still would

Re: Override annotation preventing compilation

2010-05-25 Thread mmoossen
hi Sri! i thought it was something like that but: - i am using java 1.6 - clone() is a method in Object and not in the interfac, and - as said, eclipse wants that annotation (if not i get a warning) and i get an error only when compiling client code. thanks anyhow Michael On May 25, 12:40 pm,

Re: UIObject getOffsetWidth() method returning absurd value for IE

2010-05-25 Thread mmoossen
Hi tapas! that is most likely a timing issue. what i mean is that you have to check that: - your widget is attached to the doc when calling that method, *AND* - that it is also visible! HTH Michael On May 25, 7:09 am, Tapas Adhikary tapas4...@gmail.com wrote: Hi all,, Can anybody give any

Re: Override annotation preventing compilation

2010-05-25 Thread Paul Robinson
GWT does not emulate the clone() method on Object, so when you compile client-side code there is no method for your clone() to override. Paul mmoossen wrote: hi Sri! i thought it was something like that but: - i am using java 1.6 - clone() is a method in Object and not in the interfac, and

Re: compile problems with GWT 2.1

2010-05-25 Thread Thomas Broyer
On 24 mai, 01:53, Blessed Geek blessedg...@gmail.com wrote: I went into bikeshed jar in gwt2.1m1 plugin directory in eclipse and edited ValueStore.gwt.xml to insert the line   inherits name='com.google.gwt.requestfactory.RequestFactory'/. After which, GWT copiulation proceeded without

Re: GWT Hibernate Project Structure

2010-05-25 Thread Maurice Nee
Thanks Gabriel, I've read differing opinions on whether client and server code should be split into two projects. At this point, I really don't care which about which approach I use as long as I get something up and running that is error free. Could someone explain to me a specific procedure for

large project mvp

2010-05-25 Thread alf
I have a doubt suppuse a very large project with hundred of windows so thousand of files according mvp patter will be: eje. project contacts src/ com.google.gwt.sample.contacts com.google.gwt.sample.contacts.client controller/services com.google.gwt.sample.contacts.client.event

Re: New session created on server side for every RPC request.

2010-05-25 Thread DK
Thanks for your reply Michael. I could buy into that argument if I had multiple resin servers on the server side. We only have one. It should not cause multiple sessions to be created. Also ... I do see the following code in the resin.conf file for session management : !-- Renamed from

Re: Override annotation preventing compilation

2010-05-25 Thread mmoossen
hi Paul! thanks for the insight! but would it make more sense to have that method throwing by default an UnsupportedOperationException or something similar so that people that override that method can compile their classes? (btw, i now that you should not use the clone() pattern, but this is a

Re: Override annotation preventing compilation

2010-05-25 Thread Paul Robinson
You should be able to implement clone(), you just can't have the @Override annotation on it. mmoossen wrote: hi Paul! thanks for the insight! but would it make more sense to have that method throwing by default an UnsupportedOperationException or something similar so that people that

Format Double to String

2010-05-25 Thread StrongSteve
Hello Everybody, Our application puts out a lot of double values. Unfortunately it is not ok to output the double value using the exponent - for example: 12E-7 we want the the whole number - for example 0.00012 I am really stuck, as GWT does not support the DecimalNumberFormat and I do

Re: Format Double to String

2010-05-25 Thread rudolf michael
formatted = NumberFormat.getFormat(#.#).format(value); http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/i18n/client/NumberFormat.html http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/i18n/client/NumberFormat.htmlMost of the methods are the same as

Re: MMLc: a Tool to convert HTML in GWT widgets

2010-05-25 Thread Davi Pires
Thanks, all! MMLc uses, by default, only lightweight widgets, already included in the default GWT package (or a few bundled along with it). However, we designed it to be extensible, meaning you can design your templates with placeholders for other widgets you wish, such as a MapWidget (from

Re: On GWT I18N

2010-05-25 Thread Stefan Bachert
Hi Alexandros, On 24 Mai, 17:30, Alexandros Papadakis alpa...@gmail.com wrote: Spring MVC, has a very nice way to handle this: Just put the properties file in a specific directory and everything works more or less ok.. When you want to do the same, do it with GWT. Make a service loading your

Re: Smart GWT - renaming node

2010-05-25 Thread Stefan Bachert
Hi arkady, did you realized that you are in the mailing list for gwt core? No all of us are using smartGWT. Stefan Bachert http://gwtworld.de On 25 Mai, 06:13, arkady arkad...@gmail.com wrote: Folks, Does anyone have an example of how I could rename the node of a TreeGrid.  I am performing

Re: GWT Compile Issue

2010-05-25 Thread jayanth
I am on GWT 2.0.3. I am mentioning this because someone had asked if I was on GWT 2.1 M1. By the way, I've tried all the options mentioned: 1. Added the following lines: inherits name=com.google.gwt.core.Core/ inherits name=com.google.gwt.user.History/ 2. Moved my gwt.xml directly under the src

Re: New open source MVP(UiBinder) GWT Framework with GIN - Handlebars

2010-05-25 Thread Tristan
Hey Wil, Actually it sounds like it ran perfectly :) . That's all it did initially. Since it is not very interesting, today, because of your feedback, I added a very rudimentary login presenter to the landing page which will now take you (no matter what credentials you provide) to the dashboard

Button vs FocusPanel. Which one is faster in CPU-intense GUIs?

2010-05-25 Thread outsource lucas
If you fully set your own css style, then there is a difference between a Button (button) or FocusPanel (div): they both look exactly the same in the browser. But how is it performance wise I have a very CPU intense GUI, something like windows explorer (hover on item, item dragging, item

UIBinder, Refresh and binding

2010-05-25 Thread Artem
Hi! I am really enjoin using of UIBinder! But still some of my code looks a bit strange and unpleasant in comparison with what I would like to see... I'll explain in details: Imagine I have a UIBinder component with some Label inside: ... g:Label ui:field=label ... In that case I can set a

Using preemptive basic authentication with GWT-RPC.

2010-05-25 Thread Jorel
Hi. I have a GWT application running on tomcat that will be using GWT- RPC to talk to a proxy (gwt servlet). On the proxy I plan on using preemptive basic authentication to communicate with the backend server, also running on tomcat. I have figured out how to send the credentials 'preemptively'

GWT DevMode and gwt.codesvr parameter

2010-05-25 Thread Adam
Hey Gang, I'm having an issue with DevMode working properly. We're using noserver option and instead connecting to our JBoss application. I've configured the GWT Plugin in Eclipse to point to our entrypoint page. The issue is that container security redirects us to authenticate to the

Re: equivalent GWT Runtime in Java

2010-05-25 Thread cretz
I have not tried this, but you may be able to grab the emul folder out of the gwt-user.jar (http://google-web-toolkit.googlecode.com/svn/ trunk/user/super/com/google/gwt/emul/) and make a new JAR out of it. The only problem you have here is that if you don't keep the JRE on the classpath you can't

How to make a TextBox without the focus bar around it (the yellow/orange bar in Chrome)

2010-05-25 Thread outsource lucas
I know that you can edit text areas in google wave without getting the default yellow focus bar (yellow/orange in Chrome) around the area and google wave was made in GWT. So how to make a TextBox without the focus bar around it? How to turn focusable off? Some CSS style of any help maybe? --

XMLParser failure in IE7

2010-05-25 Thread Thad
I'm trying to adapt Jaxen for GWT and having some success: My simple test works in devmode with Firefox 3.6 on Linux, and with Safari 4 when I point it at the GWT devmode on my Linux box. However I'm not getting past XMLParser.parse(String) in IE7. My test XML file is simple enough: ?xml

Re: Using preemptive basic authentication with GWT-RPC.

2010-05-25 Thread Sripathi Krishnan
Although it can be accomplished, please don't. *How it can be done?* 1. RPC async interface implements ServiceDefTarget. Using this interface, you can set a custom RpcRequestBuilder 2. In your custom RpcRequestBuilder, override the doCreate() call super.doCreate() and get an instance

Re: Button vs FocusPanel. Which one is faster in CPU-intense GUIs?

2010-05-25 Thread Sripathi Krishnan
I'd certainly use Buttons. Performance wise, calling innerHTML is a lot faster than doing DOM manipulations. If you are using GWT widgets for every button, it is going to slow down the site. Usability wise - use a button when you mean a button. It makes your website more accessible and

Re: UIBinder, Refresh and binding

2010-05-25 Thread Gal Dolber
If you are looking for a two lines solution, this is the wrong place... But still what you want to do its possible.. take a look at the UiBinder generator code and make your own binder 2010/5/25 Artem nikulche...@gmail.com Hi! I am really enjoin using of UIBinder! But still some of my code

what inherit to use for com.google.gwt.dev.shell.remoteui.MessageTransport.RequestException?

2010-05-25 Thread jamesmikedup...@googlemail.com
Error is : 00:00:16.998 [ERROR] Line 190: No source code is available for type com.google.gwt.dev.shell.remoteui.MessageTransport.RequestException; did you forget to inherit a required module? My inherits include what I see as needed: inherits name=com.google.gwt.xml.XML / inherits

I need help getting Objectify to work with GWT

2010-05-25 Thread Michael
I am using GWT +GAE for my current project. I am doing all of the coding in eclipse. I want to add objectify to communicate with the datastore and to use the POJO that I use for the datastore/objectify as objects passed back via RPC as described here:

Pass event through?

2010-05-25 Thread bcw
Hi, I'm not sure of the terms to search for yet, so if this is a well- asked question, please point me in the right direction. If I lay an AbsolutePanel with a listener over HTML, the panel gets the mouse events. After I consider, and perhaps act on the event, I may want to pass it on to the

Re: Using preemptive basic authentication with GWT-RPC.

2010-05-25 Thread Jorel
ok. I understand the disadvantages, primarily the avoidance of keeping credentials on the client. We were planning on using HTTPS, so passing creds in cleartext would not have been an issue. So, can you elaborate a bit more on standard session techniques? I'm a little unclear on how to maintain a

Re: GWT DevMode and gwt.codesvr parameter

2010-05-25 Thread Jeff Chimene
On 05/25/2010 01:14 PM, Adam wrote: Hey Gang, I'm having an issue with DevMode working properly. We're using noserver option and instead connecting to our JBoss application. I've configured the GWT Plugin in Eclipse to point to our entrypoint page. The issue is that container security

Silverlight Style Navigation

2010-05-25 Thread oliverw
Is there anything available for GWT that comes close to http://www.silverlightshow.net/items/The-Silverlight-3-Navigation-Framework.aspx? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Confused newbie: some pieces not visible

2010-05-25 Thread Donald McLean
We're doing a technology evaluation and one of the candidate technologies is GWT. I'm working on implementing some basic features of our new application and so far things mostly make sense but I'm seeing some behavior that I don't understand. Below I have included the relevant class file. I'm

Unsatisfied Link Error

2010-05-25 Thread Brian
Hi Everyone, Pretty new to servers so this may simply be a stupid set up error. I have the built in server from Eclipse trying to communicate with another Tomcat server, whose url is passed to the Implementation code on the backend. The result spits out the following: SEVERE: [1274724792506000]

gwt dnd event handling

2010-05-25 Thread Nabeel Ali Memon
Hi i am using gwt-dnd library for drag/drop functionality. I hope drag/drop functionality will be available first-class in GWT API soon. But since currently it isn't, i'll have to stick to gwt-dnd. I have overriden a drop controller's onDrop() method in which i'm checking for a condition, and if

Re: Using preemptive basic authentication with GWT-RPC.

2010-05-25 Thread Sripathi Krishnan
You don't necessarily need multiple web.xmls / war files. Your GWT RPC Servlets (proxy servlet, as you call it) can reside in the same war file as your back-end services; you just need to package it appropriately. If you do that, you have the same session across both the servlets. --Sri On 26

[gwt-contrib] Re: TextField does not get keyboard events after using a PopupPanel

2010-05-25 Thread stuckagain
Now that Google IO is over: Nobody seems to care ? Not here, not in de GWT group or even in bug database. I guess if I wait long enough the problem (IE) will go away by itself :-) ? David On May 17, 9:25 am, stuckagain david.no...@gmail.com wrote: People, I reported a new issue on GWT in

[gwt-contrib] Re: When SoycReportLinker looks for report files, it now tolerates (issue545801)

2010-05-25 Thread spoon
Kathrin, it sounds like you have more time than Ray to look at SOYC problems. Can you review this patch? http://gwt-code-reviews.appspot.com/545801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8205 committed - Fixes a bug with the path to allow the default JUnit test created by W...

2010-05-25 Thread codesite-noreply
Revision: 8205 Author: gwt.mirror...@gmail.com Date: Tue May 25 08:12:25 2010 Log: Fixes a bug with the path to allow the default JUnit test created by WebAppCreator to invoke the service. GWT.getModuleBaseURL necessarily returns a url with a trailing slash. Adding an additional slash makes

[gwt-contrib] Re: Added null checks to MenuItem.setSubMenu(null) so it doesn't throw an NPE. Also made sure that ... (issue556801)

2010-05-25 Thread rice
LGTM http://gwt-code-reviews.appspot.com/556801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Firing MenuItem commands using a finally command instead of a deferred command so that the comma... (issue543804)

2010-05-25 Thread jlabanca
Reviewers: jgw, Description: Firing MenuItem commands using a finally command instead of a deferred command so that the command executes within the event loop. If the command is not executed in the event loop, popup blockers will prevent the code from opening popups. It seems like it could be

[gwt-contrib] Re: Firing MenuItem commands using a finally command instead of a deferred command so that the comma... (issue543804)

2010-05-25 Thread jgw
On 2010/05/25 15:42:00, jlabanca wrote: LGTM. http://gwt-code-reviews.appspot.com/543804/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: When SoycReportLinker looks for report files, it now tolerates (issue545801)

2010-05-25 Thread kprobst
LGTM http://gwt-code-reviews.appspot.com/545801/diff/1/3 File dev/core/test/com/google/gwt/core/linker/SoycReportLinkerTest.java (right): http://gwt-code-reviews.appspot.com/545801/diff/1/3#newcode80 dev/core/test/com/google/gwt/core/linker/SoycReportLinkerTest.java:80: } This test is good,

[gwt-contrib] Fixes a bug where parsing a month using DateTimeFormat is affected by the current day of the mon... (issue525802)

2010-05-25 Thread jlabanca
Reviewers: Dan Rice, Description: Fixes a bug where parsing a month using DateTimeFormat is affected by the current day of the month. For example, parsing Feb2006 on January 31 results in a date in March. Please review this at http://gwt-code-reviews.appspot.com/525802/show Affected files:

[gwt-contrib] Re: Firing MenuItem commands using a finally command instead of a deferred command so that the comma... (issue543804)

2010-05-25 Thread jlabanca
committed as r8206 http://gwt-code-reviews.appspot.com/543804/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8206 committed - Firing MenuItem commands using a finally command instead of a deferred...

2010-05-25 Thread codesite-noreply
Revision: 8206 Author: gwt.mirror...@gmail.com Date: Tue May 25 09:43:21 2010 Log: Firing MenuItem commands using a finally command instead of a deferred command so that the command executes within the event loop. If the command is not executed in the event loop, popup blockers will prevent

[gwt-contrib] [google-web-toolkit] r8207 committed - This patch adds to webAppCreator the ability to create maven configura...

2010-05-25 Thread codesite-noreply
Revision: 8207 Author: jlaba...@google.com Date: Tue May 25 06:21:53 2010 Log: This patch adds to webAppCreator the ability to create maven configuration file (issue 4878). Also fixes issue 4652 where build.xml compiles test classes in the same directory as the source. Adds tests to

[gwt-contrib] Re: Fixes a bug where parsing a month using DateTimeFormat is affected by the current day of the mon... (issue525802)

2010-05-25 Thread jat
Not on VPN at the moment, but I have already fixed a similar problem, and even if this is a different bug the fixes would need to be merged together or they would conflict. http://gwt-code-reviews.appspot.com/525802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixes a bug where parsing a month using DateTimeFormat is affected by the current day of the mon... (issue525802)

2010-05-25 Thread jlabanca
Issue 4798 discusses whether this fix should be included at all: http://code.google.com/p/google-web-toolkit/issues/detail?id=4798 While it isn't technically broken, its very easy to make a mistake, so I vote that we fix it. http://gwt-code-reviews.appspot.com/525802/show --

[gwt-contrib] Re: Fixes a bug where parsing a month using DateTimeFormat is affected by the current day of the mon... (issue525802)

2010-05-25 Thread John LaBanca
@jat - Can you point me to your changes? I only added a few lines, so I can't imagine the conflict would be that difficult. What issue were you fixing? Thanks, John LaBanca jlaba...@google.com On Tue, May 25, 2010 at 12:51 PM, jlaba...@google.com wrote: Issue 4798 discusses whether this

[gwt-contrib] Re: Have IE's DOMImpl invoke its event dispatching function via a (issue543801)

2010-05-25 Thread jgw
On 2010/05/18 20:01:26, Lex wrote: This is ready for review. It is absolutely stunning that this is necessary to avoid leaking on IE, but LGTM. Good work! http://gwt-code-reviews.appspot.com/543801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Reapplying r5742 and r5747 to fix RichTextArea issues 3133, 3176, 3503. The original version of... (issue555801)

2010-05-25 Thread jgw
On 2010/05/24 20:40:56, jlabanca wrote: LGTM. Feel free to commit, but allow me to point out that we don't actually support old mozilla anymore :) http://gwt-code-reviews.appspot.com/555801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: When SoycReportLinker looks for report files, it now tolerates (issue545801)

2010-05-25 Thread spoon
Thanks! http://gwt-code-reviews.appspot.com/545801/diff/1/3 File dev/core/test/com/google/gwt/core/linker/SoycReportLinkerTest.java (right): http://gwt-code-reviews.appspot.com/545801/diff/1/3#newcode80 dev/core/test/com/google/gwt/core/linker/SoycReportLinkerTest.java:80: } From face to face

[gwt-contrib] Re: Have IE's DOMImpl invoke its event dispatching function via a (issue543801)

2010-05-25 Thread spoon
Thanks for walking me through how all this works! http://gwt-code-reviews.appspot.com/543801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8208 committed - Reapplying r5742 and r5747 to fix RichTextArea issues 3133, 3176, 3503...

2010-05-25 Thread codesite-noreply
Revision: 8208 Author: jlaba...@google.com Date: Tue May 25 07:34:51 2010 Log: Reapplying r5742 and r5747 to fix RichTextArea issues 3133, 3176, 3503. The original version of this patch was reverted because it failed in FF. There is a small delay between the time an iframe is attached to

[gwt-contrib] Re: Reapplying r5742 and r5747 to fix RichTextArea issues 3133, 3176, 3503. The original version of... (issue555801)

2010-05-25 Thread jlabanca
committed as r8208 http://gwt-code-reviews.appspot.com/555801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Adding an override to tab based widgets to allow users to choose whether or not an event is fired. (issue559801)

2010-05-25 Thread jlabanca
Reviewers: jgw, Description: Adding an override to tab based widgets to allow users to choose whether or not an event is fired. http://code.google.com/p/google-web-toolkit/issues/detail?id=4834 Please review this at http://gwt-code-reviews.appspot.com/559801/show Affected files: M

[gwt-contrib] [google-web-toolkit] r8209 committed - Have IE's DOMImpl invoke its event dispatching function via a...

2010-05-25 Thread codesite-noreply
Revision: 8209 Author: gwt.mirror...@gmail.com Date: Tue May 25 11:50:14 2010 Log: Have IE's DOMImpl invoke its event dispatching function via a round-trip through the window object. That way, the only reference from DOM objects into GWT's code is on the window object, a place IE is careful to

[gwt-contrib] Re: Added benchmark task to ant in user/ (issue547801)

2010-05-25 Thread rchandia
http://gwt-code-reviews.appspot.com/547801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Added benchmark task to ant in user/ (issue547801)

2010-05-25 Thread rchandia
http://gwt-code-reviews.appspot.com/547801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Added benchmark task to ant in user/ (issue547801)

2010-05-25 Thread rchandia
http://gwt-code-reviews.appspot.com/547801/diff/5001/6003 File /user/build.xml (right): http://gwt-code-reviews.appspot.com/547801/diff/5001/6003#newcode664 /user/build.xml:664: unless=test.web.remote.disable This should rather be benchmark.web.remote.disable