Re: Dev plugin for firefox 3.7

2010-08-11 Thread a...@mechnicality.com
Hi Chris, I've found that FF 4 beta on Linux x86_64 (Ubuntu 10.04) doesn't seem to work with the BROWSER=ff40 version of the plugin. I've updated to 8516 and tried to repeat the steps in your last email but I can't seem to get the make to work. It worked fine with 3.7 but I urgently need to mo

Re: Dev plugin for firefox 3.7

2010-08-11 Thread a...@mechnicality.com
Thanks Chris and John I'll hold off switching platforms for a few days, I have other things to do which don't require the webgl stuff. I greatly appreciate all the work done on this and your responsiveness. Regards Alan On 08/11/2010 09:06 AM, John Tamplin wrote: On Wed, Aug 11, 2010 at 1

Re: Dev plugin for firefox 3.7

2010-09-14 Thread a...@mechnicality.com
John, Chris Its now 09/14/2010. Please could you update us on the status of this work? The plugin still doesn't seem to work with FF 4.06 beta. Regards Alan Chaney On 08/11/2010 09:06 AM, John Tamplin wrote: On Wed, Aug 11, 2010 at 10:46 AM, Chris Conroy > wrote:

Re: Dev plugin for firefox 3.7

2010-09-14 Thread a...@mechnicality.com
d outdated version of 3.7 and as my main interest is WebGL, which has now moved on a lot, I really need an FF40 version. Thanks in advance Alan On 09/14/2010 08:21 AM, John Tamplin wrote: On Tue, Sep 14, 2010 at 10:44 AM, a...@mechnicality.com wrote: Its now 09/14/2010. Please could

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread a...@mechnicality.com
Sadly, that doesn't work for me because I am developing a WebGL based app and that only works with Chrome or FF 4. I've reverted to an earlier nightly build until the issue is fixed. And, of course, I'm wondering when FF4 will be supported in GWT - but that's another story (and thread) entire

Re: FF4.0 DevMode [was: Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1]

2010-12-20 Thread a...@mechnicality.com
Hi John Thanks for that update - looking forward to seeing it all work. I also appreciate that its not an easy task! Regards Alan On 12/20/2010 11:30 AM, John A. Tamplin wrote: On Monday, December 20, 2010 11:44:11 AM UTC-5, alanmechy wrote: And, of course, I'm wondering when FF4 will

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread a...@mechnicality.com
y to go back to old Chrome? Doesnt get it to work in FF 4 beta also. On Dec 20, 5:44 pm, "a...@mechnicality.com" wrote: Sadly, that doesn't work for me because I am developing a WebGL based app and that only works with Chrome or FF 4. I've reverted to an earlier nightly b

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread a...@mechnicality.com
. 66202 is 9.0.584.0 (66202). As a matter of interest, I couldn't find *any* version with "10." in it which didn't show http://code.google.com/p/google-web-toolkit/issues/detail?id=5778 - but then, you probably already know that! Regards Alan On Mon, Dec 20, 2010 at

Re: FileUpload Cell

2010-12-20 Thread a...@mechnicality.com
Hi Daniel Ok, I may be telling you something that you've already taken care of, but you did ask... I realize that you may be wrapping the whole thing inside a form, but I'm just reminding you that you can only upload files under the following conditions: 1. the input type='file' is contained

Re: UiBinder or GWT Designer

2010-12-21 Thread a...@mechnicality.com
Totally agree with you comments, Jeff. I evaluated GWTDesigner because, generally speaking, I like RAD tools. However, I found it very slow to start - maybe a bug or something - but, being comparatively happy with XML, HTML and CSS I found that my workflow was smoother using UiBinder and it was

Re: Plugin fails to connect to hosted mode server

2010-12-21 Thread a...@mechnicality.com
Please show us the stack trace Thanks - Reply message - From: "Sethu" Date: Tue, Dec 21, 2010 2:36 am Subject: Plugin fails to connect to hosted mode server To: "Google Web Toolkit" Hi, When I try to run the GWTs sample application project in the hosted mode on chrome, the static

Re: Plugin fails to connect to hosted mode server

2010-12-21 Thread a...@mechnicality.com
inialises stuff and logs to the console). But when I go to the browser and try to connect, it throws the failed to connect to the hosted mode error. Actually, it fails to connect to any of the other servlets I had written as well. On Dec 21, 9:11 pm, "a...@mechnicality.com" wrote:

Re: Plugin fails to connect to hosted mode server

2010-12-21 Thread a...@mechnicality.com
art up servlet that inialises stuff and logs to the console). But when I go to the browser and try to connect, it throws the failed to connect to the hosted mode error. Actually, it fails to connect to any of the other servlets I had written as well. On Dec 21, 9:11 pm, "a...@mechnicality.com

Re: Is there a way to get have GWT not compile a method into JS?

2010-12-21 Thread a...@mechnicality.com
Sorry for jumping in, but you could use: public void yourMethod(...) { if (!GWT.isClient()) { everything in your method. } } The complier should then ignore everything inside the conditional. However, it seems a bit of a kludge to exclude the whole method. Another option is sub-

Re: Is there a way to get have GWT not compile a method into JS?

2010-12-21 Thread a...@mechnicality.com
l times and it works just fine. It may even simplify your unit tests. Alan On 12/21/2010 11:05 AM, kevin wrote: Yes. I agree it will be optimized out but the problem is I need to use a class thats only on the server. So the compiler says the class is not in a module. On Dec 21, 1:43 pm, &quo

Getting a CellTree to show a specific node

2010-12-27 Thread a...@mechnicality.com
Hi Could someone point me at an example of how to get a CellTree to open up to show and select a specific node? I have a multi-level tree where I want to be able to programmatically open the tree at a specific (leaf) node and select that node. I've found this: http://groups.google.com/gr

Re: uibinder widget creation time

2010-12-30 Thread a...@mechnicality.com
Er.. why not swap the order of the two statements? Generally speaking the initWidget statement should come first, but there are other options. It is possible to create widgets and contribute them to the ui - see @UiConstructor and @UiFactory and: http://code.google.com/webtoolkit/doc/latest/Dev

Re: Best way to integrate GWT with existing Spring services?

2010-12-31 Thread a...@mechnicality.com
Hi I've very successfully used a scheme for making a HandlerAdaptor for a GWT RemoteServiceServlet. I based my code on: http://blog.digitalascent.com/2007/11/gwt-rpc-with-spring-2x_12.html (Chris Lee) but I found that Chris's original code had a problem with 2.+ RemoteServiceServlets in 3 w

Re: How to write file with GWT?

2011-01-03 Thread a...@mechnicality.com
The stack trace says it all... com.example.foobar.client.RPCInterface.testRPC (java.lang.String)' Threw an unexpected exception: java. lang.NoClassDefFoundError: java.io.FileWriter is a restricted class. Please see the Google App Engine developer's guide for more details. You appear to have you

Re: How to write file with GWT?

2011-01-03 Thread a...@mechnicality.com
7;s package right? I'm working with Eclipse and I use Google Apple Engine.. You know give me a hand? Or know of a tutorial that explains how it works? I'm desperate .. Thanks very much Regards On Jan 3, 4:46 pm, "a...@mechnicality.com" wrote: The stack trace says it all

Re: Asyncronous calls in RCP behaves wierd.

2011-01-03 Thread a...@mechnicality.com
If I understand your code correctly, its actually doing exactly what you've asked it to do. You are calling a method called 'setCurrentBook(..))' which doesn't seem to do anything very much. You are then defining a callback 'public void setCurrentBook(String bookname)' blah... You are th

Re: How to write file with GWT?

2011-01-03 Thread a...@mechnicality.com
Hi Thomas On 1/3/2011 1:41 PM, Thomas Broyer wrote: On Monday, January 3, 2011 4:46:38 PM UTC+1, alanmechy wrote: The stack trace says it all... com.example.foobar.client.RPCInterface.testRPC (java.lang.String)' Threw an unexpected exception: java. lang.NoClassDefFoundError:

Re: How to write file with GWT?

2011-01-03 Thread a...@mechnicality.com
On 1/3/2011 2:05 PM, Matthew Hill wrote: Can't you store it in the DB? -- According to the GAE docs: maximum entity size 1 megabyte Most of my entities *start* at 1 MB and go up to maybe 500+ (its 3D data) So, I assumed that, no, I couldn't store it in the DB :-) Alan You received

Re: How to write file with GWT?

2011-01-03 Thread a...@mechnicality.com
, I suppose, but that isn't very attractive, requiring an extra processing step on the client. I think I'll just stick to using Amazon EC2 for my web services! Thanks for the suggestions, however. Regards Alan On Mon, Jan 3, 2011 at 2:12 PM, a...@mechnicality.com

Re: How to write file with GWT?

2011-01-03 Thread a...@mechnicality.com
t 2:29 PM, A. Stevko mailto:andy.ste...@gmail.com>> wrote: Can you use com.google.appengine.api.datastore.Text ? |Text| wraps around a string of unlimited size. http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/Text.html On Mon, Jan 3, 2011 at 2:12

Re: Write document in Server-side

2011-01-04 Thread a...@mechnicality.com
Sebe On 1/4/2011 9:40 AM, Sebe wrote: HI, I have already discussed here but did not find what I was looking for (http://groups.google.com/group/google-web-toolkit/browse_thread/ thread/e7a880a22a129bfa?hl=en). For my web application I use GWT 2.1.0 with Eclipse 1.3.8 and App Engine. I would lik

Re: Write document in Server-side

2011-01-04 Thread a...@mechnicality.com
On 1/4/2011 10:35 AM, Sebe wrote: I want to create a custom user profile using the Google Search API (http://code.google.com/p/gwt-google-apis/wiki/ AJAXSearchGettingStarted). With these APIs can retrieve the results of a Google's search engine (web, image, video ). Here's what I do: when the

Re: How to write file with GWT?

2011-01-04 Thread a...@mechnicality.com
Yes, but that doesn't actually 'write' the file does it? It just generates a String which contains the XML representation of the java object. Its not persisted anywhere. You can generate a String representation of an object on the client with a few StringBuilder calls if you want to. I believe

Re: Write document in Server-side

2011-01-04 Thread a...@mechnicality.com
7;the only possible solution for my case? Its the only real solution. If this is a university project maybe you should discuss it with your supervisor. GIGYF. Really Thanks Sebe On Jan 4, 7:53 pm, "a...@mechnicality.com" wrote: On 1/4/2011 10:35 AM, Sebe wrote: I want to create a

Re: Message: "For security purposes, this type will not be deserialized."

2011-01-04 Thread a...@mechnicality.com
Its worth reading this: http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html#DevGuideSerializableTypes There a number of odd little issues that can catch you out. Alan On 1/4/2011 1:35 PM, Ben Imp wrote: Serializable should work, post GWT 1.4 anyway. http://code.goog

Re: Eclipse heap space during build

2011-01-12 Thread a...@mechnicality.com
On 1/12/2011 8:12 AM, bond wrote: Hi, I've a gwt projet and I converted to facet project in order to use Axis2. When I compile the project all works fine, but when I reopen the project Eclipse go to heap space during building workspace and in particular analysing the folder where there are the co

Re: Eclipse heap space during build

2011-01-12 Thread a...@mechnicality.com
And another thought. If you don't need the GWT project, just close it. On 1/12/2011 8:12 AM, bond wrote: Hi, I've a gwt projet and I converted to facet project in order to use Axis2. When I compile the project all works fine, but when I reopen the project Eclipse go to heap space during buildi

Re: Eclipse heap space during build

2011-01-12 Thread a...@mechnicality.com
ccurred during: "Building workspace". Java heap space" Thanks very much! On 12 Gen, 17:30, "a...@mechnicality.com" wrote: And another thought. If you don't need the GWT project, just close it. On 1/12/2011 8:12 AM, bond wrote: Hi, I've a gwt projet and I converte

Re: Sample Application RPC Problems with Tomcat

2011-01-21 Thread a...@mechnicality.com
@Bill Morrisson What hakito says is correct and a perfectly valid approach, but; What platform will your server be deployed to? If its windows, you can just change the port from the default of 8080 to 80 (unless, of course you *must* also run apache.) If its linux, you can use jsvc (part of t

Re: JPA query date setParameter

2011-01-23 Thread a...@mechnicality.com
On 1/23/2011 5:29 AM, javabuddy wrote: In the above scenario, I am trying to get the assignments that are due on the current day, thats the reason I am sending new Date() as parameter value. A java Data object is a wrapper for a time in milliseconds. If a and b are Date objects, then a.equals(b)

Re: JPA query date setParameter

2011-01-23 Thread a...@mechnicality.com
On 1/23/2011 7:33 AM, Jeff Schwartz wrote: You need to query on a 24 hour time range Yes, and, of course, you have to decide on what 'day' you are looking for - the users' day, the server's day, UTC, or some arbitrary spot on Earth. And then there's day light saving... its surprising how diff

Re: RequestFactory does not preserve owned 1-to-many list order

2011-01-24 Thread a...@mechnicality.com
Sorry to jump in, but the issue below affects a decision I need to take in the next couple of days... @David On 1/24/2011 4:40 PM, QkQk wrote: Hi David, Thanks for the reply. What i want is support for 'collection' of embedded classes. I am *not* using appengine, but I have a persistent clas