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
- GWT AsyncCallback failing [1 Update]
http://groups.google.com/group/google-web-toolkit/t/9a3d7a49a8d65d19
- how to make communicate "two rootPanels"? [2 Updates]
http://groups.google.com/group/google-web-toolkit/t/f3f5c1c9bfce86db
- How to run GWT 2.0 RC2's hosted mode with another server? [1 Update]
http://groups.google.com/group/google-web-toolkit/t/f5c903255d896a03
- PopupPanel.center() not working in Firefox 3.5.5 [1 Update]
http://groups.google.com/group/google-web-toolkit/t/1ad5454918dfecda
- Default language [1 Update]
http://groups.google.com/group/google-web-toolkit/t/acd70fd8d88cb7bd
- Running GWTTestCase in Netbeans IDE and "Java heap space" error [2 Updates]
http://groups.google.com/group/google-web-toolkit/t/50085b6e1d0fdff8
=============================================================================
Topic: GWT AsyncCallback failing
Url: http://groups.google.com/group/google-web-toolkit/t/9a3d7a49a8d65d19
=============================================================================
---------- 1 of 1 ----------
From: "tony,benbrahim" <[email protected]>
Date: Nov 30 04:38AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/455876148559d6b3
Does your server side methid return 200 status code?
=============================================================================
Topic: how to make communicate "two rootPanels"?
Url: http://groups.google.com/group/google-web-toolkit/t/f3f5c1c9bfce86db
=============================================================================
---------- 1 of 2 ----------
From: philippe <[email protected]>
Date: Nov 30 01:56AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/3a8363ccfc21b8c8
Hi Olivier,
I suggest you rather use an object that will keep a reference to your
widget.
Thus, you can access them without going through the rootPanel.
ex:
class ElementsManager() {
private final TextBox myBox;
public ElementsManager() {
super();
myBox = new TextBox(...)
}
public String getTextOfMyBox() {
return this.myBox.getText();
}
...
}
On 30 nov, 06:29, Jose Luis Roberto Asuncion <[email protected]>
wrote:
---------- 2 of 2 ----------
From: loveley <[email protected]>
Date: Nov 30 12:48PM +0100
Url: http://groups.google.com/group/google-web-toolkit/msg/f2e4dd8f508be739
thanks, it is really what I was searching for.
olivier.
Jose Luis Roberto Asuncion a écrit :
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
___________________________________________________________________________
Yahoo! Mail réinvente le mail ! Découvrez le nouveau Yahoo! Mail et son
interface révolutionnaire.
http://fr.mail.yahoo.com
=============================================================================
Topic: How to run GWT 2.0 RC2's hosted mode with another server?
Url: http://groups.google.com/group/google-web-toolkit/t/f5c903255d896a03
=============================================================================
---------- 1 of 1 ----------
From: Jan Ehrhardt <[email protected]>
Date: Nov 30 11:59AM +0100
Url: http://groups.google.com/group/google-web-toolkit/msg/aaa17f2c3e01a514
Hi,
I'm currently looking how our existing project can be updated to GWT 2.0
when it's released, but I'm running into some trouble.
We use Eclipse with the Google plugin and currently we've got one web
project, which will be started as a web project running on an Eclipse server
runtime. This runtime can be a Tomcat or a WebSphere. We've got another
project, which contains the GWT stuff. Our GWT launch configuration is done
with the following properties:
- Run internal server is deselected
- The GWT URL is pointed to 'http://localhost:8080/our-app'
This worked well. We've to compile the GWT project once to JavaScript
contained in the web project. We launch the Eclipse server runtime on '
http://localhost:8080/' and then we start our hosted browser. The hosted
browser detects to module contained in the page '
http://localhost:8080/our-app' and replaces it with the stuff contained in
our GWT project.
Now I've installed GWT 2.0 RC2 and the required version of the plugin. I've
changed the GWT SDK in the project properties. The first point was, that the
text field for inserting my external URL was gone. Additionally, I got the
following Error:
Unknown argument: -style
Google Web Toolkit 2.0.0-rc2
GWTShell [-noserver] [-port port-number | "auto"] [-whitelist
whitelist-string] [-blacklist blacklist-string] [-logdir directory]
[-logLevel level] [-gen dir] [-codeServerPort port-number | "auto"] [-out
dir] [url]
where
-noserver Prevents the embedded web server from running
-port Specifies the TCP port for the embedded web server
(defaults to 8888)
-whitelist Allows the user to browse URLs that match the specified
regexes (comma or space separated)
-blacklist Prevents the user browsing URLs that match the specified
regexes (comma or space separated)
-logdir Logs to a file in the given directory, as well as
graphically
-logLevel The level of logging detail: ERROR, WARN, INFO, TRACE,
DEBUG, SPAM, or ALL
-gen Debugging: causes normally-transient generated types to
be saved in the specified directory
-codeServerPort Specifies the TCP port for the code server (defaults to
9997)
-out The directory to write output files into (defaults to
current)
and
url Automatically launches the specified URL
I tried some other configuration like adding the URL as a program argument,
which brought another error.
Can anybody tell me how to configure this scenario in the correct way? Or
won't there be any possibility with GWT 2.0?
Regards
Jan Ehrhardt
=============================================================================
Topic: PopupPanel.center() not working in Firefox 3.5.5
Url: http://groups.google.com/group/google-web-toolkit/t/1ad5454918dfecda
=============================================================================
---------- 1 of 1 ----------
From: Thomas Broyer <[email protected]>
Date: Nov 30 02:37AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/292fbb2999cda012
> But this doesn't work as the windowSize() method returns 0 for reasons
> I don't know.
You use 'window' and 'document', which refer to the hidden iframe's
window and document your GWT code is loaded in (your
<permutation>.cache.html). You should always use $wnd and $doc in JSNI
code.
(and I agree PopupPanel.center() should use window.innerHeight/Width
where possible; at least when the document is smaller than the window;
have you filed a bug?)
=============================================================================
Topic: Default language
Url: http://groups.google.com/group/google-web-toolkit/t/acd70fd8d88cb7bd
=============================================================================
---------- 1 of 1 ----------
From: Jan Ehrhardt <[email protected]>
Date: Nov 30 11:35AM +0100
Url: http://groups.google.com/group/google-web-toolkit/msg/5ce47503e553a5ec
We do it in a Java / Spring application by server side detection. The
HttpServletRequest object knows about the preferred language of the
requesting browser. Instead of a plain HTML page we return a JSP, that
allows us to set the language property as a meta tag. GWT's i18n mechanism
reads the property and choses automatically the correct language.
Of cause, i18n is done by GWT's mechanism.
Regards
Jan Ehhrhardt
=============================================================================
Topic: Running GWTTestCase in Netbeans IDE and "Java heap space" error
Url: http://groups.google.com/group/google-web-toolkit/t/50085b6e1d0fdff8
=============================================================================
---------- 1 of 2 ----------
From: danielgue <[email protected]>
Date: Nov 30 02:06AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/370bcb7d13a11d05
Hi pjulien, List!
Hey many thanks for your reply and also your blog posting. It
seems you have had the same problem like me and the company
I work for are having. Many thanks for dealing with that and also
specifically replying to my inquire.
The problem is still there although I deleted the default value from
'Exclude From WAR File' and also modified the 'Additional
Compiler Options' with values like
-Xmx512m
-Xms512m -Xmx512m
-XstartOnFirstThread -Xmx512M
Besides getting different ranges of seconds before the error
occurs I have no positive reaction to that changes and I still have
to run my very first GWTTestCase in Netbeans 6.7.1.
Is there anybody who successfully uses this GWTTestCase
class and is able to test it with "Right Click" and "Test File" in
Netbeans?
Maybe someone can give me a little detail what he uses in
'Additional Compiler Options' which makes this thing working.
Many thanks in advance and regards,
Daniel
---------- 2 of 2 ----------
From: danielgue <[email protected]>
Date: Nov 30 02:19AM -0800
Url: http://groups.google.com/group/google-web-toolkit/msg/d49b99978caa5f12
Hi and many thanks again. You can disregard my last post. I found the
solution. I simply confused "Additional Compiler Options" in Netbeans'
Build/Compiling menu with "VM options" under Run menu.
When I entered "-Xms512m -Xmx512m" into "VM options" I finally got a
green bar and everything works.
Thanks again to pjulien and regards,
Daniel
--
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 ---