The original message was received at 2010-01-13 07:16:01 -0800
from postoffice.(null) [10.0.0.1]
----- The following addresses had permanent fatal errors -----
<[email protected]>
-----Transcript of session follows -----
... while talking to postoffice.(null).:
>>> RCPT To:<[email protected]>
<<< 550 5.1.1 unknown or illegal alias: [email protected]
550 <[email protected]>... User unknown
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.
Reporting-MTA: dns; postoffice.(null)
Received-From-MTA: DNS; postoffice.(null)
Arrival-Date: 2010-01-13 07:16:01 -0800
Final-Recipient: RFC822; [email protected]
Action: failed
Status: 5.1.1
Remote-MTA: DNS; postoffice.(null)
Diagnostic-Code: SMTP;550 5.1.1 unknown or illegal alias: [email protected]
Last-Attempt-Date: 2010-01-13 07:16:01 -0800
--- Begin Message ---
=============================================================================
Today's Topic Summary
=============================================================================
Group: [email protected]
Url: http://groups.google.com/group/google-web-toolkit/topics
- Nesting layouts with gwt 2.0 [1 Update]
http://groups.google.com/group/google-web-toolkit/t/c39b58f5d1c446f9
- MouseOver with previous MouseDown - problem in IE [1 Update]
http://groups.google.com/group/google-web-toolkit/t/3b69078cf136d627
- HtmlUnit seemly can not run JavaScript(GWT) on GoogleCodeSearch pages [1
Update]
http://groups.google.com/group/google-web-toolkit/t/860530d630d747aa
- Maven build error with GWT application (file not found) [1 Update]
http://groups.google.com/group/google-web-toolkit/t/44e2226a80b74647
- GWT using domain models /services from external module (jar) ? [1 Update]
http://groups.google.com/group/google-web-toolkit/t/57d76f43ee1a26c1
- GWT Hosted Mode [1 Update]
http://groups.google.com/group/google-web-toolkit/t/5c481228a6fbfc56
- how large of your GWT compiled code? My one is 850K [1 Update]
http://groups.google.com/group/google-web-toolkit/t/438bcf79781f20f7
- java.lang.NoClassDefFoundError:
org/apache/commons/fileupload/FileUploadException [1 Update]
http://groups.google.com/group/google-web-toolkit/t/3939376a350c9b12
- GWT Chat applications [1 Update]
http://groups.google.com/group/google-web-toolkit/t/e09553126e464253
- Install Speed Tracer on the Mac? [1 Update]
http://groups.google.com/group/google-web-toolkit/t/7da4678b33fd7549
- MVP, GIN, UiBinder [1 Update]
http://groups.google.com/group/google-web-toolkit/t/6e45529b7e763b82
- Anchor.wrap with GQuery [1 Update]
http://groups.google.com/group/google-web-toolkit/t/293a10dcaf6b7758
=============================================================================
Topic: Nesting layouts with gwt 2.0
Url: http://groups.google.com/group/google-web-toolkit/t/c39b58f5d1c446f9
=============================================================================
---------- 1 of 1 ----------
From: "P.G.Taboada" <[email protected]>
Date: Dec 09 04:55AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/ac995dbb4c9d0faf
Hi,
I am having trouble with nesting layouts.
My nested layout is:
DockLayoutPanel (main window)
TabLayoutPanel (tabs for modules on the main window)
Simple Hello World Tab (nothing special, fast forward pls)
SomeTreeBasedPanel (ok, here trouble begins)
DockLayoutPanel
west: tree
center: scrollpanel
In my app I need to select a node on the tree and get some content
displayed on the center area of the dock panel.
The nested DockPanel in the scrollpanel is not rendering properly and
I can't figure it out why.
I have uploaded the compiled app to:
http://static.pgt.de/nestedlayouts/NestedLayouts.html
The zipfile with the project is here:
http://static.pgt.de/nestedlayouts/NestedLayouts.zip
A screenshot of the app is here:
http://static.pgt.de/nestedlayouts/nestedlayout.png
Hope someone can help me out here,
brgds
Papick G. Taboada
=============================================================================
Topic: MouseOver with previous MouseDown - problem in IE
Url: http://groups.google.com/group/google-web-toolkit/t/3b69078cf136d627
=============================================================================
---------- 1 of 1 ----------
From: mh <[email protected]>
Date: Dec 08 11:25AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/c1f41af50c53e4ed
Hi,
I've created a Composite, consisting of a Panel and a FlexTable, along
with another Composite, consisting of a Panel and an Image, which was
supposed to be put in the FlexTable.
I wanted to create a simple dragging mechanism for the selection - so,
to each "cell" composite have mouse handlers.
The thing works fine in all the browsers, except for the IE.
When the mouse button is down, the proper cell's MouseDownHandler is
triggered. When the mouse button is still down, and the mouse is being
moved over another "cell", the MouseOverHandler is triggered, however,
for the cell that had had the MouseDown.
Is it the issue of the GWT, or I am doing something wrong?
Regards,
mh
=============================================================================
Topic: HtmlUnit seemly can not run JavaScript(GWT) on GoogleCodeSearch pages
Url: http://groups.google.com/group/google-web-toolkit/t/860530d630d747aa
=============================================================================
---------- 1 of 1 ----------
From: Phan The Dai <[email protected]>
Date: Dec 08 07:02PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/1aae24428511ada3
Hi everyone,
I am trying using HtmlUnit for parsing and checking a
GoogleCodeSearch's Url, for example
Url = "http://google.com/codesearch/p?hl=en#BDMVBjMQ9dM/developer/
technicalArticles/jini/javaspaces/HelloWorld.zip|0GBefwhg-XQ/
HelloWorld.java&q=HelloWorld%20lang:java"
But I could not get the content as that is displaying on the Web.
In the data (page.asXml) that HtmlUnit returned, I could not find
where content of file HelloWorld.java is.
This is my code:
final WebClient webClient = new WebClient();
webClient.setJavaScriptEnabled(true);
final HtmlPage page = webClient.getPage(Url);
webClient.waitForBackgroundJavaScriptStartingBefore(10000)
System.out.println(page.asXml);
I think HtmlUnit can not run some JavaScripts on the GoogleCodeSearch
Webpages which use GWT for create scripts.
It is right? Please show me some solution for this situation!
Thanks much!
Regards,
Dai Phan
=============================================================================
Topic: Maven build error with GWT application (file not found)
Url: http://groups.google.com/group/google-web-toolkit/t/44e2226a80b74647
=============================================================================
---------- 1 of 1 ----------
From: manish panwar <[email protected]>
Date: Dec 08 09:40PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/442ae763aaf47668
I am building GWT application in Linux box, and getting following
error.
Please note my project gets build successfully in Windows.
Here AdminHome.gwt.xml is my GWT config file, and I am able to see
this file in my directory.
I am attaching my POM file and GWT config XML file.
[exec] [INFO] Copying 2 resources to
[exec] [INFO]
------------------------------------------------------------------------
[exec] [ERROR] BUILD ERROR
[exec] [INFO]
------------------------------------------------------------------------
[exec] [INFO] /com/ihg/apps/easymeetings/admin/gwt/
AdminHome.gwt.xml (No such file or directory)
[exec] [INFO]
------------------------------------------------------------------------
[exec] [INFO] Trace
[exec] org.apache.maven.lifecycle.LifecycleExecutionException: /
com/ihg/apps/easymeetings/admin/gwt/AdminHome.gwt.xml (No such
file or directory)
[exec] at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals
(DefaultLifecycleExecutor.java:584)
[exec] at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle
(DefaultLifecycleExecutor.java:500)
[exec] at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal
(DefaultLifecycleExecutor.java:479)
[exec] at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures
(DefaultLifecycleExecutor.java:33
1)
[exec] at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments
(DefaultLifecycleExecutor.java:292)
[exec] at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute
(DefaultLifecycleExecutor.java:142)
[exec] at org.apache.maven.DefaultMaven.doExecute
(DefaultMaven.java:336)
[exec] at org.apache.maven.DefaultMaven.execute
(DefaultMaven.java:129)
[exec] at org.apache.maven.cli.MavenCli.main(MavenCli.java:
301)
[exec] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
[exec] at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
[exec] at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
=============================================================================
Topic: GWT using domain models /services from external module (jar) ?
Url: http://groups.google.com/group/google-web-toolkit/t/57d76f43ee1a26c1
=============================================================================
---------- 1 of 1 ----------
From: ashika umanga <[email protected]>
Date: Dec 08 06:35PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/d4a7e77634e4182b
Greetings,
We have been using our reusable "user-management" module which was
written using Spring/Hibernate(using Doman-Model Pattern).We have used
that module in several project integrating with Wicket,JSP and ZK
frameworks. Now I am going to develop an application using GWT.I am
completely new to GWT and I noticed that the domain objects should go
inside "xxx.xxxx.client" package. But I want to use our reusable
module (jar) and the domain model is in completely different package.
How can I use my domain-model object from this external library in
GWT? How about service interfaces? Do I have to write proxies for them
too?
thanks in advance
=============================================================================
Topic: GWT Hosted Mode
Url: http://groups.google.com/group/google-web-toolkit/t/5c481228a6fbfc56
=============================================================================
---------- 1 of 1 ----------
From: brett9897 <[email protected]>
Date: Dec 08 04:12PM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/e64b1d95eef24edd
I have a strange issue. I have no errors and no runtime errors occur
when loading but nothing but the html shows up in hosted mode. A test
project works just fine but, in order to use my project I have to
compile it. I am using App Engine 1.2.8 and GWT 1.7.1. If you could
let me know of any additional information that would be helpful I will
gladly give it.
=============================================================================
Topic: how large of your GWT compiled code? My one is 850K
Url: http://groups.google.com/group/google-web-toolkit/t/438bcf79781f20f7
=============================================================================
---------- 1 of 1 ----------
From: Luis Fernando Planella Gonzalez <[email protected]>
Date: Dec 09 04:39AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/8c1b87f4cf6ae2de
Sorry for taking so long to answer, but I haven't seen your post
before.
We haven't yet done any larger performance test, but it is very
acceptable.
Yesterday, in a first no-brainer attempt of GWT.runAsync(), I've
managed to get a 650K initial download and then a separate file per
module (for now, modules varies from few K to 180K).
I'll still try to reduce both the initial download and the modules.
It does takes more time to compile now. That's an issue to me as I
can't use the built-in server: we use EJB, so there's an external
server. Whenever anything changes in RPC (params, methods, even
classes) we need to recompile :-/
I still didn't implement gzip compression, but hope things can get
much better...
Ah, about IE6: as our app is targeted to late 2010, we won't support
IE6 \o/
--
Luis Fernando Planella Gonzalez
=============================================================================
Topic: java.lang.NoClassDefFoundError:
org/apache/commons/fileupload/FileUploadException
Url: http://groups.google.com/group/google-web-toolkit/t/3939376a350c9b12
=============================================================================
---------- 1 of 1 ----------
From: Henry <[email protected]>
Date: Dec 09 04:26AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/11652c4b0db6e93b
Oks :-), but running gwt in host mode, do where I've to move this jar
files? Where is placed the internal tomcat shipped with GWT?
Or I've to configure something else in the eclipse or in the GWT
project to be able to run in host mode?
=============================================================================
Topic: GWT Chat applications
Url: http://groups.google.com/group/google-web-toolkit/t/e09553126e464253
=============================================================================
---------- 1 of 1 ----------
From: abhiram <[email protected]>
Date: Dec 09 04:13AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/bc886a71423b25e0
Hi All,
Can someone tell me which is the best (and convenient) method to
implement a chat application for my web page using GWT?
I believed using the comet.jar would be neat but had lot of problem
implementin it. Can you please tell me which is the best possible
approach? with any working examples / links?
~ Abhiram
=============================================================================
Topic: Install Speed Tracer on the Mac?
Url: http://groups.google.com/group/google-web-toolkit/t/7da4678b33fd7549
=============================================================================
---------- 1 of 1 ----------
From: Jim Douglas <[email protected]>
Date: Dec 09 04:11AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/66a911ebf2b0df2d
I'm feeling a bit dense -- I see instructions here for installing
Speed Tracer on Windows, but no Mac instructions:
http://code.google.com/webtoolkit/speedtracer/get-started.html#downloading
But there are Mac screen shots on this page, so I'm assuming it's
supposed to work. What am I missing here? Specifically, what's the
Mac way to add the --enable-extension-timeline-api option to Chrome?
Jim.
=============================================================================
Topic: MVP, GIN, UiBinder
Url: http://groups.google.com/group/google-web-toolkit/t/6e45529b7e763b82
=============================================================================
---------- 1 of 1 ----------
From: "P.G.Taboada" <[email protected]>
Date: Dec 09 03:50AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/66c998ed7f83f976
Hi,
as many other GWT developers I really like the above mentioned
approaches.
I am having a little bit of pain when it comes down to embedding views
into views. UiBinder and GIN don't play well together, I am struggling
with ugly locator pattern usages to create my sub/ embedded views. My
code is now full of //WORKAROUND task tags, hoping to get it solved
somehow someday.
But that is the point: at which direction should I look? MVP tells me
to have views injected into my presenter, really nice. UiBinder on the
other hand needs the views, would create them properly, but then they
would not be available to GIN (compile-time vs. runtime).
If my feeling is right, we would need some way to hook up into the
UIBinder, providing a GIN based MVP resolver, quite similar to the
variable resolvers people use in JSF to get hands on Spring beans from
JSF. But as far I can see, UiBinder does not provide such extension
point.
Any thoughts here?
brgds,
Papick G. Taboada
=============================================================================
Topic: Anchor.wrap with GQuery
Url: http://groups.google.com/group/google-web-toolkit/t/293a10dcaf6b7758
=============================================================================
---------- 1 of 1 ----------
From: John Patterson <[email protected]>
Date: Dec 09 06:48PM +0700
Url: http://groups.google.com/group/google-web-toolkit/msg/800de63623c7c260
On 9 Dec 2009, at 16:59, Thomas Broyer wrote:
> subtree, so wrapping a widget's child element in another widget is
> prohibited, as the "parent" widget would be aware of it.
My question is _why_ is this element already owned and what can be
done about it.
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.
--- End Message ---