Re: Passing JSON data error

2009-02-01 Thread Shawn Brown
But I get a No source code is available for type GetProductTree; did you forget to inherit a required module? Any clues to where I'm going wrong? Are you sure it's in your classpath. Are you using hosted mode? If so, have you confirmed your class is in the shell script to launch

Re: Servlets and web.xml

2009-02-06 Thread Shawn Brown
Well you have to specify a valid url. You are configuring /fileServlet to go to your servlet and then asking requesting a url of /FileServlet. Aren't you? I am not sure but think capitalization is significant. Best, Shawn On Sat, Feb 7, 2009 at 9:42 AM, Jonathan jonathan.delf...@gmail.com

Re: Google ( App Engine + Web Toolkit )

2009-02-06 Thread Shawn Brown
I wanted to know what are the prospects of using Google App Engine with the Web Toolkit. I did some searches and read up on the documentation, it seems that the only way is to do JSON data transmission layer in the middle. What about Django then? Have you read the docs on using Django to

Re: Google ( App Engine + Web Toolkit )

2009-02-06 Thread Shawn Brown
and questions before I jump in. Both of them are really powerful alone, but together, do they make a good system or is it just too much hassle? Thanks in advance for your input and thoughts. On Fri, Feb 6, 2009 at 7:41 PM, Shawn Brown big.coffee.lo...@gmail.com wrote: I wanted to know what

Re: Servlets and web.xml

2009-02-07 Thread Shawn Brown
Hi, So what is the value for GWT.getHostPageBaseURL()? What is your app called? By that I mean under Jetty_home/webapps/, in what dir is your app. Probably it's not com.tergwt.Main, but that is what you were asking in http://localhost:8080/com.tergwt.Main/FileServlet

Re:

2009-02-08 Thread Shawn Brown
Do you have the Spring jar in your classpath ( MyApplication-shell) I have never run spring hosted. I run my app hosted but specify the server that I know I have spring configured on. Let me know if it works. Shawn On Mon, Feb 9, 2009 at 3:20 PM, GWT GWT rdforj...@gmail.com wrote: Hi , I

Re: Third party libraries for GWT

2009-02-14 Thread Shawn Brown
I came across GWT EXT, EXT GWT, SmartGwt, and a ton of other third party libraries. 1. Which third-party libraries would you recommend in general and why. 2. Which third-party libraries would you want to stay away from and why. Well anyone can correct me if I am wrong but I think GWT EXT

Re: Third party libraries for GWT

2009-02-15 Thread Shawn Brown
Hello, Ext GWT is a commercial, paid for library, Smart GWT is free and open source. This is currently inaccurate. EXT GWT is GPL v3. It is dual licensed actually so if you do need a commercial license... http://www.extjs.com/products/license-faq.php If your organization won't pay

Re: howto? return types in jsni methods

2009-02-16 Thread Shawn Brown
On the other hand, I tried printing out the return value of $wnd.__getMapJs() and that turns to be a huge JavaScript Object and I have no idea how to iterate through it. So an example will help tremendously.

Re: How do you build together GWT and, for example, grails?

2009-02-17 Thread Shawn Brown
In vc-grails/lib I've to put all others jar, and change them everytime something changes, manually. And also copy the html, css and js files generated by gwt to vc-grails/web-app. Is there a way to automate this process? Something like before compile or run copy the necessary files from the

Re: Want to call a GWT page by servlet

2009-02-19 Thread Shawn Brown
I haven't noticed something like that. But you might search for GWT Comet with the search-engine of your choice if there are other implementations of newer age. You could also try DWR. http://directwebremoting.org/ The trick was using the same iframe to make an initial call to the server,

Re: (JSNI) Accessing this instance from inner JS functions

2009-03-01 Thread Shawn Brown
HI, Is there any way I can access enclosing this instance (that would be PageToolbar)? Pass it in, and call your method. It works for me. patch(this); //method call class PageToolbar extends PagingToolbar { private native void patch(PageToolbar pt) /*-{ /class of whatever gets passed in

Re: Deploying to a Shared TOMCAT

2009-03-01 Thread Shawn Brown
Hi, It looks to me like you have 2 problems. #1 The requested URL /Foo was not found on this server Did you restart the tomcat or restart your app? What url are you using to access it. What is your app called? Are you using something like serverurl/app_name/foo? And this is the

Re: Project dependencies in GWT 1.6.1

2009-03-01 Thread Shawn Brown
Hi, GWT 1.6 seems to require a JAR of the required project be put in the war/WEB-INF/lib directory, even for hosted mode. Has anybody been able to work around this? (not using additional build tools) Have you tried to modify build.xml for example I have: path id=project.class.path

Re: Jsni Help

2009-03-01 Thread Shawn Brown
Have you read http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideJavaScriptNativeInterface On Mon, Mar 2, 2009 at 3:21 PM, jagadesh jagadesh.manch...@gmail.com wrote: HI Guys, i just started working with Jsni and Gwt. my requirement is i will

Re: Deploying to a Shared TOMCAT

2009-03-03 Thread Shawn Brown
I want to know if I am understanding this correctly. I outputted GWT.getModuleBaseURL()+/Foo and I get: http://www.celticlock.com//Foo Now if I understand this correctly, the /Foo at the end should be picked up because of the url-pattern/Foo/url-pattern to map to the Servlet-name. And the

Re: No source code is available for type java.io.File; did you forget to inherit a required module?

2009-03-03 Thread Shawn Brown
I have imported java.io.File but the GWT compiler gives me the following error.plz help               No source code is available for type java.io.File; did you forget to inherit a required module? How are you compiling? shell script or ant build? In either case, your .java file

Re: Quest about Push and Socket

2009-03-05 Thread Shawn Brown
Is there any method to make push from server? Well, here is how I use DWR (reverse ajax) to push data to GWT. http://things-that-i-noticed.blogspot.com/ Actually, in this example I do stuff to get data out of json like: s =

Re: GWT + JSON + PHP

2009-03-06 Thread Shawn Brown
http://code.google.com/webtoolkit/tutorials/1.5/JSONphp.html I would like to create a website with an interface made by gwt and a server in PHP and make communicate them by JSON(or XML). Do you have any ideas how to make it or some tutorials and docs? Josse

Re: JSONValue class not found

2009-03-06 Thread Shawn Brown
Can you use the client api in server code? On Fri, Mar 6, 2009 at 11:54 PM, Ber berh...@gmail.com wrote: Hi all I'm using Netbeans 6.5 to develop a GWT (1.5.3) GWTExt (2.0.5) app. Every time I start my app in Glassfish v2, though, I get this error: java.lang.ClassNotFoundException:

Re: Using GWT To Create Pure Java Client

2009-03-06 Thread Shawn Brown
format. However, I am  trying to leverage GWT, to parse the JSON files and have run into difficultly. So, I have two questions. Can you use client side api on the server? Client side code will be compiled into javascript if you deploy it that way. Can you just use the api as straight java

Re: what is the smartgwt equivalent of fitlayout from gwt ext?

2009-03-08 Thread Shawn Brown
You might have luck asking on one of the mailing lists/ forums. I think gwtext has a thread about migration. Have you checked there? On Mon, Mar 9, 2009 at 10:31 AM, ytbryan ytbr...@gmail.com wrote: hi all, does anybody know what is the smartgwt equivalent of fitlayout from gwt ext?

Re: what is the smartgwt equivalent of fitlayout from gwt ext?

2009-03-08 Thread Shawn Brown
Sorry, I meant those lists/forums smartgwt gwt ext --~--~-~--~~~---~--~~ 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

Re: GWT 1.6 and the new com.google.gwt.dev.HostedMode problem

2009-03-09 Thread Shawn Brown
web.xml goes in war/WEB-INF On Mon, Mar 9, 2009 at 5:45 PM, Doru virgil.tra...@gmail.com wrote: Hi Vitaly,     I am not an expert in HostedMode but what I observed is that HostedMode is generating the WAR with the JS output of the compilation. The problem is that it's not putting any

Re: Java Script File

2009-03-10 Thread Shawn Brown
http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=FAQ_JavaScriptGibberish If you prefer not to have GWT obfuscate its output, then you can use the -style flag on the GWT Compiler. This flag has one of three possible values: * OBF (for obfuscated),

Re: Google App Engine GWT

2009-04-08 Thread Shawn Brown
No Threads? A Java application cannot create a new java.lang.ThreadGroup nor a new java.lang.Thread. These restrictions also apply to JRE classes that make use of threads. For example, an application cannot create a new java.util.concurrent.ThreadPoolExecutor, or a java.util.Timer. An

Re: java.lang.StackOverflowError with GWT

2009-04-13 Thread Shawn Brown
What about using something like: java fork=true maxmemory=1024m classname=com.google.gwt.dev.GWTCompiler jvmarg line=-XstartOnFirstThread / ... Shawn --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: SMart GWT API

2009-04-17 Thread Shawn Brown
I am new to smart GWT i need the API for this try http://lmgtfy.com/?q=smartGWT+api --~--~-~--~~~---~--~~ 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: New bie question: import com.google.appengine cannot be resolved

2009-05-08 Thread Shawn Brown
Have a look at http://fredsa.allen-sauer.com/2009/04/1st-look-at-app-engine-using-jdo.html I gave his solution a try and couldn't get it to work for me but easily had a workaround and so soon gave up. I think I am missing something very basic here. Is there any restriction that I cannot

Re: Preventing JavaScript Injection cient/server side solutions

2009-06-11 Thread Shawn Brown
It's a good question, but it's not really GWT related. Sure it is. You're talking about server-side code. The  JS code generated by GWT executes in the browser. RPC calls execute where? http://code.google.com/webtoolkit/articles/security_for_gwt_applications.html

Re: Community announcements on GWT blog

2009-06-15 Thread Shawn Brown
Because it's just a community announcement. I use ExtGWT too so understand your question. They're just pointing out related projects like Gilead which I do use! If ExtGWT wants to announce a release but the blog says no, then let's raise a ruckus. I bet it won't ever happen though. Shawn On

Re: Thinking about learning GWT

2009-06-16 Thread Shawn Brown
I bet it will. I deployed a GWT app to appengine before it had java support and it worked fine there. No rpc though like you say ... Shawn On Tue, Jun 16, 2009 at 2:03 PM, tedpotteltedpot...@gmail.com wrote: Hi, I'm thinking about using GWT.  Quastion, will GWT run ok on my current web

Re: Who is using smartgwt?

2009-08-19 Thread Shawn Brown
Hi, the lack of documentation is a serious issue. 4) i found the ext architecture to be overly complex 5) I might be wrong , but Ext feels to me just like Spring, their open source code is just a way to drive , sales of books, trade shows , and support contracts. I went with GXT and am

Re: Confused about GWT + App Engine

2009-08-22 Thread Shawn Brown
On Sat, Aug 22, 2009 at 12:18 AM, philipmacphilipmacmena...@gmail.com wrote: Just to clarify, all of the AppEngine stuff runs exclusively upon Google Hardware, correct? That is, I cannot get my own local instance of an AppEngine. Well yes and no. Yes you can run in hosted mode on a local

Re: ext-GWT vs GWT-ext

2009-08-30 Thread Shawn Brown
i wanna choose one of these libraries to start my project... i am searching for a good comparison between those two or any other library that may do the job... I think gwt-ext is dead. Ext-GWT was the basis for gwt-ext but Ext-GWT went gpl and gwt-ext got killed. The developers of

Re: ext-GWT vs GWT-ext

2009-09-03 Thread Shawn Brown
Hi, ExtGWT --which contains the JS underlying GWTExt - upto 2.0.2-- did a dirty move a year or so ago when they changed their licensing model; as a result there was a falling out between the two projects. Um, ExtJS was underlying GWTExt - no? ExtJS went GPL - no? I guess if you are of a

Re: ext-GWT vs GWT-ext

2009-09-03 Thread Shawn Brown
I don't think your response attacking me is productive. I wish you would stop your personal attacks. Please show me where I attacked you personally and I will rephrase it (just consider it a bug). Great, another clueless response. Maybe, maybe not. There's a huge difference between a

Re: Irony: GWT Showcase demo does not work with Chrome

2010-04-09 Thread Shawn Brown
With the latest Chrome, running on Mac OS X, the Google Web Toolkit Showcase of Features at  http://gwt.google.com/samples/Showcase/Showcase.html It's fine on chrome 5.0.371.0 dev OSX 10.6.3 Shawn -- You received this message because you are subscribed to the Google Groups Google Web

Surely a nasty bug! in RPCServletUtils.readContentAsUtf8

2010-07-12 Thread Shawn Brown
Hi, Can anyone suggest a work around for http://code.google.com/p/google-web-toolkit/issues/detail?id=5109 I'll have to look at the src when I get time but this is nuts to me. Does this work for you? private String showRequestedMethod(ServletRequest request) throws IOException,

Re: Surely a nasty bug! in RPCServletUtils.readContentAsUtf8

2010-07-13 Thread Shawn Brown
Search the archives for Client did not send nn bytes as expected. OK figured it out. A HttpServletRequest can be read a total of one time. Any attempts to use RPCServletUtils.readContentAsUtf8(((HttpServletRequest) request)); will fail. The error message is misleading because the client in

sessions - configured but don't work on first call

2010-07-13 Thread Shawn Brown
Hello, A call to my app invokes a filter which starts a session via request.getSession(true); here is the id: czbgfo2bp5vs Then it proceeds to serve a page, but the client shows no JSESSION id. Then the client make an rpc call which again generates a new session via the filter. id:

Re: Tomcat not finding ServiceImpl

2010-07-17 Thread Shawn Brown
       servlet                servlet-nameiFathomServiceImpl/servlet-name                 servlet-classagt.fathom.ifathom.server.IFathomServiceImpl/servlet- class        /servlet Should agt.fathom.ifathom.server.IFathomServiceImpl above be agt.fathom.ifathom.server.iFathomServiceImpl

Re: sessions - configured but don't work on first call

2010-07-17 Thread Shawn Brown
Why can't a filter start a session? this.getThreadLocalRequest().getSession(); will find a session created by a filter via request.getSession(true); but  request.getSession(true); doesn't seem so send a cookie to the client. I really can't understand this.  Help please How can I start

Re: Caution: SmartGwt loadup size is big

2010-07-21 Thread Shawn Brown
Is GXT any different in this aspect? Does it support code-splitting? (Unless it is only an alias of one of those you mentioned.) Yes it does. http://things-that-i-noticed.blogspot.com/2010/07/gxt-mvc-code-splitting-on-gae-appengine.html Shawn -- You received this message because you are

(Random can't be used in a static method) ?????

2010-07-22 Thread Shawn Brown
is this as expected (Random can't be used in a static method) ? public static void test() { // static method Log.info(random int +Random.nextInt(6)); } -throws a java.lang.UnsatisfiedLinkError: com.google.gwt.user.client.Random.nextInt(I)I BUT ...

Re: (Random can't be used in a static method) ?????

2010-07-22 Thread Shawn Brown
Actually if com.google.gwt.user.client.Random is in a static method called by a static method it fails. com.google.gwt.user.client.Random in a static method called by a non-static method works fine. Seems a little flakey to me but ... I'm probably just not as smart as you! Shawn -- You

Re: HTML5 Offline GWT APP

2010-07-27 Thread Shawn Brown
Hi Julio, Thanks Arthur, the linker works perfectly. Did you use the com.google.gwt.core.ext.linker.AbstractLinker and just override the link method? If so, are we just outputting the file names to make a suitable manifest in the link method. Will this compile the project and make the

Re: HTML5 Offline GWT APP

2010-07-27 Thread Shawn Brown
It seems to be working, but debugging is not easy. Why is that? Can't you use Firebug, the Error console in Safari or the Dev console in chrome to display logging? Sorry if it's a dumb question but ... Anyway thanks! Shawn -- You received this message because you are subscribed to the

Re: HTML5 Offline GWT APP

2010-07-28 Thread Shawn Brown
Hi, The problem is finding out which files are cached and how... i don't know if there is any tool that show you that. I tried to see what would happen if a file wasn't cached by using a whitelist of things to load off the network. CACHE MANIFEST ...list of files... NETWORK: index.html

Re: HTML5 Offline GWT APP

2010-07-29 Thread Shawn Brown
Hey Julio, The problem is finding out which files are cached and how... i don't know if there is any tool that show you that. Here's one way... Go to the The Application Cache Database section http://building-iphone-apps.labs.oreilly.com/ch06.html Shawn -- You received this message because

Re: How does Google earn money from GWT?

2010-08-02 Thread Shawn Brown
Surely one way could be via appengine. no? -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: How does Google earn money from GWT?

2010-08-02 Thread Shawn Brown
During my GWT presentation, I was being asked this question which I could not answer. It goes, How does Google earn money from GWT? AdWords is a small product at Google. You may have heard of it. And it's recently been--the user interface of that has been revamped from the ground up as a GWT

Re: How does Google earn money from GWT?

2010-08-02 Thread Shawn Brown
@Frank A I hate stupid spammy sites like yours that steal content and load their site with ads. Here's the original source of the IO session Me too. Didn't have the proper original link. Sorry about that. Please don't accuse me though without knowing the facts first. But I do hate those

Re: Wave Demise.........sad day for GWT

2010-08-04 Thread Shawn Brown
I just worry about GWT itself.  Google may kill GWT some day. Our project heavy uses it:(. Not anytime soon I imagine. Look Google just acquired instantiations which makes the gwtdesigner. http://www.instantiations.com/ -- You received this message because you are subscribed to the Google

which permutation which user.agent HTML5 manifest help!!!

2010-08-04 Thread Shawn Brown
How can I know which which permutation (exactly which files) are for which user.agent? I assume that information is available if I look for it during compile time by extending an AbstractLinker, adding it my xxx.gwt.xml config file. I need to know because in order to make a cache.manifest for

Re: instance of Servlet in web.xml

2010-08-05 Thread Shawn Brown
I need to get and instance of the servlet specified in web.xml. I have a main running in the same JVM as the servlet. I think you need to understand GAE. I don't think you know what JVM you are running in GAE and that it can be killed at any time and that what your client sends may be handled

Re: Anyone know of any Android History token problems?

2010-08-06 Thread Shawn Brown
I've noticed the browser on my Android phone doesn't seem to fire some history events for my little online game; I wondered if this was a Android issue, or something with my code that only shows up on Android. I've seen it too but haven't gotten to the bottom of it. Sometimes it works

Unmatched /embed encountered. in script from dev mode

2010-08-09 Thread Shawn Brown
Hi, **[safari plugin seems broken]** In Dev mode when accessing my page, I immdiately see [The HTML that caused this error was generated by a script.] Unmatched /embed encountered. Ignoring tag. Then inexplicably, I see .gif files not being resolved. They are there when deployed and I can

Re: GWT, web service and reverse ajax/Comet

2010-08-09 Thread Shawn Brown
I have found StreamHub, GWT-Comet (and more) online but I'm not sure if I can use these libaries in the manner I am proposing... I don't think you can because you can't keep a connection open to the client so polling would be your only option. Personally I liked DWR. If you have a 2rd server

Re: why we probably won't use GWT for a large UI project

2010-08-10 Thread Shawn Brown
I'm looking to get this group's feedback before I present my findings to the team. What do you think? If open source is nice then go for gpl and ExtGWT (GXT). If you don't pay the commercial fee, then you have to open source your project I believe. Shawn -- You received this message because

Re: GWT, web service and reverse ajax/Comet

2010-08-10 Thread Shawn Brown
I don't think you can because you can't keep a connection open to the client so polling would be your only option. Sorry I was thinking you were using GoogleAppEngine too. My bad... If not , yeah. -- You received this message because you are subscribed to the Google Groups Google Web

Re: Detecting mobile phones browser

2010-08-15 Thread Shawn Brown
I wont to know if by checking the user.agent property in the gwt.xml I don't know what that returns but have seen this in my servlets with Android 2.1 GET /myCache.manifest HTTP/1.1 200 1120 - Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; HTC Magic Build/EPE54B) AppleWebKit/530.17 (KHTML,

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-27 Thread Shawn Brown
Unfortunately, we have to manually approve posts from new members to . We typically review postings from new members several times a day. After that, your posts should appear immediately. Please, consider removing this manual control spam. It is slowing down the community. We have to wait

Re: Reusing GWT Localization in Server Side Code

2010-08-27 Thread Shawn Brown
all localisation should be done on client side in a clean architecture, even notifications. Localisation is presentation logic which belongs to the client Server should only hold persistence and business logic. Send error/warning/information codes plus parameters to the client. That's a

Re: Digest for google-web-toolkit@googlegroups.com - 25 Messages in 14 Topics

2010-08-30 Thread Shawn Brown
Please stop emailing me. No more. I have so many emails from this To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: GWT Designer not available ...

2010-09-01 Thread Shawn Brown
The email address dev-tools-sa...@google.com is not valid. What is the actual email address to use? What I did was check the original message I got when I purchased a license. There was an email address of an individual there to contact if there were any questions. He was out of town but

Re: Gwt module may need to be (re)compiled

2009-12-18 Thread Shawn Brown
However after I login and the location of the window changes, I see nothing but an error-boxon the screen: Gwt module 'secondApp' may need to be (re)compiled. I just have 2-months experience on gwt and I feel really desperate about this problem. Can anyone please help me? So did you

Re: Hosted mode won't work since 2.0 upgrade

2009-12-19 Thread Shawn Brown
Also, if you GXT it will not work with GWT 2.0 That does not seem right. It works for me and I can't do magic. It works. -- 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: GWTShell dev mode problem

2009-12-19 Thread Shawn Brown
I have war/WEB-INF/web.xml in my project but GWT-plugin still launches GWTShell instead of DevMode. What should I do? Hi, There may be more than one answer and your issue may be different than mine especially since I am using appengine but... DevMode wouldn't launch for me either so... I

Re: GWTShell dev mode problem

2009-12-21 Thread Shawn Brown
Hi Miguel, Is the war directory at the root of your project? yes If you look at your .project file does it have the web app nature? Can you post what a .project file should look like? Originally mine was of web app nature but (please understand I never set it to be like this -- others have

Re: Problem switching to GWT 2.0 from GWT 1.6 (mysql related I think)

2009-12-24 Thread Shawn Brown
I don't think you can make calls to mysql from appengine. Can you? Anyway that is your issue not 1.6 -- 2.0. -- 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-tool...@googlegroups.com. To

Re: Getting RuntimeException in development mode for gwt2.0

2009-12-24 Thread Shawn Brown
inherits name=com.allen_sauer.gwt.log.gwt-log-ERROR / I'm using that with 2.0 fine. What version do you have. I've got 2.6.2 which is I think for gwt 1.7 but ...seems ok. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Problem switching to GWT 2.0 from GWT 1.6 (mysql related I think)

2009-12-24 Thread Shawn Brown
. so I think the problem might be with GWT 2 somehow... I really doubt it. You are trying something that appengine won't let you do AFAIK. You expect it to work locally? I suspect the local appengine environment is closer to the real thing than you think. You may want to check if what you

Re: Use smartgwt or not

2010-01-04 Thread Shawn Brown
The problems with GXT are basically summed up by: Not to dismiss your experience in anyway, but actually GXT to me seems easier than Google's appengine. At least with GXT I can see the source (well not of the current master branch but ...) to clarify what something does. App-Engine is much

Re: Eclipse locks up when opening GWT project

2010-01-04 Thread Shawn Brown
I'm running identical environments pm my MacBook Pro (Leopard) and my iMac (Snow Leopard). Snow Leopard will run 64 bit java by default - no? Is GWT 64 bit compatible? What did you do to make Snow Leopard use a 32 bit vm? -- You received this message because you are subscribed to the Google

Re: Problem switching to GWT 2.0 from GWT 1.6 (mysql related I think)

2010-01-21 Thread Shawn Brown
Hello, Did you find the solution? There is none. AppEngine doesn't support using mysql and so it was throwing an error. Unless AppEngine adds mysql support I don't see anything that can be done. Use the storage api offered by AppEngine. Shawn -- You received this message because you are

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-16 Thread Shawn Brown
Well I use GXT but like the smartgwt grids better so am looking at this datasource issue. It's worrysome: Thread http://forums.smartclient.com/showthread.php?t=3012 Bug report asking for RPC datasource http://code.google.com/p/smartgwt/issues/detail?id=303 I see there is an api but it states:

Re: Does anyone worked with GWT connecting to Web Services in the server side?

2009-11-07 Thread Shawn Brown
Have you looked at http://code.google.com/appengine/docs/java/urlfetch/overview.html --~--~-~--~~~---~--~~ 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: GWT.log on GWT 2.0

2009-12-12 Thread Shawn Brown
Where did the GWT.log() output go on GWT 2.0? I see it in the Developer Mode console under the tab for my app that appears after I hit launch default browser. What did I do wrong? Not sure but to log in firebug I use: http://code.google.com/p/gwt-log/ Shawn -- You received this message

Re: i8N edge case: user change to browser language settings amidst GWT app use?

2009-12-12 Thread Shawn Brown
Anyone care to comment on the need to anticipate that a user will switch their browser's language settings mid-use in a GWT app, thereby encountering the problem that i8N constants are compile-time? That only seems to reload the application which could be dealt with by using history to get you

Re: Mac, GWT Hosted Mode does not work after switching to gwt 2.0 and back to 1.7.1

2009-12-15 Thread Shawn Brown
Now, I remain with only one issue: why does it give Invalid memory access of location 0x8 eip=0x4a8aeb. Any clue, what it could be? I have a similar environment -- OSX Leopard, GWT 2, Gxt 2.1. It's fine. A user on the GXT forums complained GXT2.1 and GWT didn't work so I tried the simple

Re: GWT FileUpload crashes on Mac in Safari (and Hosted Mode), works in Firefox

2009-12-15 Thread Shawn Brown
Has anyone experienced something similar to the below post? Safari crash? Yeah after the most recent upgrade it crashed everytime on Leopard. The apple java dev. list suggested using a nightly build of web kit which worked.

2.1 linker changes

2010-10-29 Thread Shawn Brown
Hi, On upgrade to 2.1, a linker I used to catch the projectName.nocache.js file that I need. I used to find it in the link method but now it doesn't appear in the ArtifactSet. @Override public ArtifactSet link(TreeLogger logger, LinkerContext context, ArtifactSet artifacts) throws

Re: 2.1 linker changes

2010-10-29 Thread Shawn Brown
Later the log reports  Emitting resource projectName.nocache.js Just to clarify. Version 2.0.4 includes appName.nocache.js in the ArtifactSet passed into the link method of a class that extends AbstractLinker AND reports writing it to disk Emitting resource appName.nocache.js and writes it to

Re: Announcing GWT 2.1

2010-10-31 Thread Shawn Brown
That being said, I'm not a Spring (nor Guice) fan, so would actually enjoy seeing numbers that show, say, your stack w/Spring takes x% more time than the same stack w/o Spring. Here's what I read... I’ve been able to reduce my cold start time on AppEngine from an average of 8.1s to 2.5s, a

Re: 2.1 linker changes

2010-10-31 Thread Shawn Brown
Should appName.nocache.js be one of the Artifacts obtained via artifacts.find(EmittedArtifact.class)? In 2.04 it was emitted in the link method but in 2.1 it isn't Is this by design? If so, what is the design?!? Shawn Later the log reports  Emitting resource projectName.nocache.js

Re: Announcing GWT 2.1

2010-10-31 Thread Shawn Brown
That being said, I'm not a Spring (nor Guice) fan, so would actually enjoy seeing numbers that show, say, your stack w/Spring takes x% more time than the same stack w/o Spring. One more: http://www.streamhead.com/google-appengine-java-loading-request-analysis/ Shawn -- You received this

Re: 2.1 linker changes (solved)

2010-11-02 Thread Shawn Brown
Hi, In 2.04 appName.nocache.js was emitted in the link method but in 2.1 it isn't Yes it is, but the SelectionScriptLinker now supports shardability (and all built-in linkers are shardable), so the linker is called once per permutation and then a last time after all permutations have

Re: GWT + JDO (GAE)

2010-11-07 Thread Shawn Brown
Hi, I've been using JDO these weeks. I've followed the tutorial at GAE Docs, and I learned how to create and get entity objects. It just my opinion based on struggling with JDO that objectify is much easier to use. Much much much easier. http://code.google.com/p/objectify-appengine/ Shawn

Re: Problem with Google App Engine

2010-11-16 Thread Shawn Brown
thanks for the good news. I haven't actually seen the Spring Roo framework so far and I don't really need it. Can anyone point out how I can deploy my App so that all used classes, including javax.swing.event.EventlistenerList will be supported? Deploy my App means to Tomcat right? I don't

Re: Problem with Google App Engine

2010-11-16 Thread Shawn Brown
so I followed your advice to set up a completely new GWT project in eclipse without App Engine support (unchecked during creation of the project). When I linked the classes i need that are not supported by GAE, I did no longer get an error from Eclipse. So I thought: success. After running the

Re: Problem with Google App Engine

2010-11-16 Thread Shawn Brown
What is the error? Are you sure javax.swing.* is supported in GWT? Shawn -- 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-tool...@googlegroups.com. To unsubscribe from this group, send

Re: Problem with Google App Engine

2010-11-17 Thread Shawn Brown
Any ideas? Get the libraries in your path obviously. Beyond that though, I can see no purpose for running a swing application on a server. How is anyone going to see it? Anyway, I concede you may be using the class somehow that I can not fathom, so just look at the error to see what you need.

Re: GWT-EXT Store is not working in server side

2010-11-22 Thread Shawn Brown
I am using GWT-EXT. I am having trouble initializing GWT-EXT Store in a RPC call in server side. I use all my Stores client side. I can't see the purpose of using it server side. Of course I load the data into the store via RPC... Shawn -- You received this message because you are

Re: Several Servlets Help

2010-11-28 Thread Shawn Brown
http://lmgtfy.com/?q=servlets On Mon, Nov 29, 2010 at 2:14 PM, Noor baken...@gmail.com wrote: HI, in almost every tutorial I have seen only on servlets, Is it possible to have several servlets. if yes how to manage the several servlets -- You received this message because you are subscribed

Re: Is there a way to use i18n in a shared class that works on client and server too?

2010-12-09 Thread Shawn Brown
Hi, How can I handlei18nin a class that I use in server classes and in client classes? Here is a recent thread on the topic. http://www.mail-archive.com/google-web-toolkit@googlegroups.com/msg48015.html I think you'll find GWT doesn't do this well. Shawn -- You received this message

Re: Problems while installing Google Updates for Eclipse 3.6

2011-02-18 Thread Shawn Brown
Hi, I'm also facing the same problem. Any help would be appreciated. Try http://code.google.com/eclipse/docs/install-from-zip.html I also had to uninstall the stuff from instantiations such as GWTDesigner, windowsBuilder etc. [help -- install new software -- what is already installed --

Re: Many problems when updating from 2.1.1 to 2.2

2011-02-23 Thread Shawn Brown
Try http://code.google.com/eclipse/docs/install-from-zip.html I also had to uninstall the stuff from instantiations such as GWTDesigner, windowsBuilder etc. [help -- install new software -- what is already installed -- uninstall GWTDesigner, windowsBuilder etc.] Seems to works with Ext GWT

does the Google AppEngine or WebToolkit replace the bootclasspath of the running Java runtime?

2011-03-12 Thread Shawn Brown
Hi, I used the open-jdk workaround to solve the problems introduced by the latest apple java sdk update but have a question an Apple engineer asked me about the following: http://code.google.com/p/googleappengine/issues/detail?id=4712

Re: [appengine-java] does the Google AppEngine or WebToolkit replace the bootclasspath of the running Java runtime?

2011-03-13 Thread Shawn Brown
Hi, Do you have the contact information for the Apple Engineer? He's contacted you, Toby, off list now. I got cc'd on the mail. Let me know if for some reason you didn't get it. Shawn -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

  1   2   >