The original message was received at 2010-01-13 07:16:02 -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:02 -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:02 -0800
--- Begin Message ---============================================================================= Today's Topic Summary ============================================================================= - Problem: FormPanel / FileUpload - special characters and german umlauts [2 updates] http://groups.google.com/group/google-web-toolkit/t/e868c61da8410b04 - GWT Mysql Error - java.net.InetAddress is a restricted class. [2 updates] http://groups.google.com/group/google-web-toolkit/t/d8c643409c8a46b7 - Decent development hardware for GWT ? [2 updates] http://groups.google.com/group/google-web-toolkit/t/d200592d25190fe - Using different jars for GWT and server-side Java for same package in hosted mode [1 update] http://groups.google.com/group/google-web-toolkit/t/caf1be26f3ba99d5 - Serving the GWT files from a CDN? [1 update] http://groups.google.com/group/google-web-toolkit/t/2077fa04f154596c ============================================================================= Topic: Problem: FormPanel / FileUpload - special characters and german umlauts Url: http://groups.google.com/group/google-web-toolkit/t/e868c61da8410b04 ============================================================================= ------------------------- 1 of 2 ------------------------- From: Martin Trummer <[email protected]> Date: Nov 18 02:40AM -0800 Url: http://groups.google.com/group/google-web-toolkit/msg/a0b6eec7737dd97c what does request.getCharacterEncoding() show? if you use commons-file upload, you could try to manually set the encoding upload.setHeaderEncoding(encoding) --> to the same value you use in your meta tag ------------------------- 2 of 2 ------------------------- From: GWT-Newbie <[email protected]> Date: Nov 18 04:20AM -0800 Url: http://groups.google.com/group/google-web-toolkit/msg/d7787c193de19235 Yes, I'm using commons-file upload. My meta tag is: <meta http-equiv="content-type" content="text/html; charset=UTF-8"> request.getCharacterEncoding() shows "UTF-8" upload.getHeaderEncoding() now also shows "UTF-8" But still getting the wrong result. -.- ============================================================================= Topic: GWT Mysql Error - java.net.InetAddress is a restricted class. Url: http://groups.google.com/group/google-web-toolkit/t/d8c643409c8a46b7 ============================================================================= ------------------------- 1 of 2 ------------------------- From: Muthukumaran Balan <[email protected]> Date: Nov 18 03:25AM -0800 Url: http://groups.google.com/group/google-web-toolkit/msg/d69a2b1c84287503 Hi Sri, I am using Hibernate to access the database and used the example from http://code.google.com/webtoolkit/articles/using_gwt_with_hibernate.html. When i create a hibernate session from rpc servlet, it throws error "INetAddress is a restricted class". :( Even i tried GiLead library, even in that when i tried to create a hibernate session and set it to persistance manager it throws the same error. :( regards, Muthu On Nov 18, 12:25 pm, Sripathi Krishnan <[email protected]> wrote: ------------------------- 2 of 2 ------------------------- From: Sripathi Krishnan <[email protected]> Date: Nov 18 05:14PM +0530 Url: http://groups.google.com/group/google-web-toolkit/msg/d723ed01caff52e7 Short Answer : Just disable Google App Engine for your project, and things should start working. Its a setting in the Google Eclipse Plugin. Long Answer : GWT and Google App Engine (GAE) are two separate projects, and you don't have to use them together. If you enable GAE - you cannot use any other database. If you disable GAE and only use GWT - you can use whatever you want on the server side. Client side restrictions still apply. Many, many users have accidentally enabled GAE (or is it enabled by default?) and have faced this issue, so this isn't new. --Sri 2009/11/18 Muthukumaran Balan <[email protected]> ============================================================================= Topic: Decent development hardware for GWT ? Url: http://groups.google.com/group/google-web-toolkit/t/d200592d25190fe ============================================================================= ------------------------- 1 of 2 ------------------------- From: hjo1620 <[email protected]> Date: Nov 18 02:52AM -0800 Url: http://groups.google.com/group/google-web-toolkit/msg/264a2340a797a5e7 My compiles are getting slower and slower (4 mins currently). It's a not a huge app, master detail input forms, grids, tabs, menubar and status bar, one servlet, ca 10 RPC calls. Third party grid, compiled separetly. Common classes in a separate project, compiled separetly. WinXP SP3, AMD Athlon Dual Core, 2.71 GHz, 7200 rpm disks Could someone please share a hardware setup that you are happy with ? Getting compiles down to at least 1 minute would be nice... Would a recent and decent Dell Precision model reduce the compile time ? (I know that splitting the project into smaller parts is also part of a total solution, but currently I'm mainly interested in what can be achieved with hardware) ------------------------- 2 of 2 ------------------------- From: Paul Robinson <[email protected]> Date: Nov 18 11:20AM Url: http://groups.google.com/group/google-web-toolkit/msg/d395669e48878858 The javac compiles are a small fraction of the total time taken - that you have third party stuff and common classes javac-compiled separately is probably not very important to the time taken overall. It's the monolithic compile to javascript that's slow. What is most important is the number of permutations done in the compilation. For development, you should only have one permutation most of the time - until you need to test on multiple browsers/languages. Your gwt.xml file should have something of the form: <set-property name="user.agent" value="gecko1_8"/> for compilation only on firefox. You can use user agents "safari", "opera", "ie8" and "ie6". If you have a very old firefox, you can also use "gecko". How many permutations do you have? You can also compile more quickly by using fewer optimisations if you're using trunk or one of the pre-release 2.0 versions. The option is "-draftCompile" on my slightly old copy of trunk. It does make the javascript quite a bit slower though. As for hardware - first make sure you have enough RAM that you don't need to use virtual memory. If it's still slow after all the above, then a faster computer is always going to help (it made a big difference for me). HTH, Paul hjo1620 wrote: ============================================================================= Topic: Using different jars for GWT and server-side Java for same package in hosted mode Url: http://groups.google.com/group/google-web-toolkit/t/caf1be26f3ba99d5 ============================================================================= ------------------------- 1 of 1 ------------------------- From: Bruno Harbulot <[email protected]> Date: Nov 18 11:18AM Url: http://groups.google.com/group/google-web-toolkit/msg/15cf346e25390375 Hello, Is it possible to use different jar files for the same package, depending on whether this jar is used for server-side Java or if it's used for GWT code? This problem occurs with the latest development version of Restlet, which provides two different editions of the same package (this is part of an ongoing discussion [1]). For example, org.restlet.Request is available in both the JSE and the GWT editions of org.restlet.jar. Their implementations differ only slightly (what's not supported by GWT isn't available in the GWT version). This causes problems when developing with the Google Eclipse plugin, using the GWT Servlet, because both jars are on the classpath, so either the GWT side works or the server side does, but not both. Would there be a way to tell the plugin that, for GWT matters, another jar should be used (maybe with GWT 2, if necessary)? This would be similar to what is done for the java.lang package with GWT. Best wishes, Bruno. [1] http://restlet.tigris.org/ds/viewMessage.do?dsForumId=7458&dsMessageId=2419385 ============================================================================= Topic: Serving the GWT files from a CDN? Url: http://groups.google.com/group/google-web-toolkit/t/2077fa04f154596c ============================================================================= ------------------------- 1 of 1 ------------------------- From: lowecg2004 <[email protected]> Date: Nov 18 02:18AM -0800 Url: http://groups.google.com/group/google-web-toolkit/msg/ab80dc17197ba511 It's definitely possible to serve GWT static assets from a CDN, see comments from an earlier discussion: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/92ec90538cb4453a/a4dfe85c81c2e8ce?q=#a4dfe85c81c2e8ce I've not tried the JS technique you describe nor have I used the proxying technique described by Sri. I just used a subdomain for my static assets which is served from the CDN. Then I served the webpage that hosts the GWT app from the same place serving RPC to satisfy Same Origin Policy (SOP). Good luck, C. -- 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=.
--- End Message ---
