Re: Problems migrating GWT 1.5 2030 to GWT 1.5 official release

2008-09-19 Thread ZhangJianshe

hello,guys, i encount the same problem,whould you like share your
solutions?

but ,i need you help.

On 8月31日, 下午10时03分, Gabriel Thiesen [EMAIL PROTECTED] wrote:
 Thank you adm.dfs,

  Was exactly this indeed, so thank you very much

 Gabriel Thiesen

 On Aug 30, 8:17 am, adm.dfs [EMAIL PROTECTED] wrote:



  Hello Gabriel,

  Its because Yours RCP implementation is located in same package with
  RCP interfaces.
  GWT propose move implementation to another package 
  (seehttp://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=goog...).-
   隐藏被引用文字 -

 - 显示引用的文字 -
--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



Re: Problems migrating GWT 1.5 2030 to GWT 1.5 official release

2008-09-19 Thread Gabriel Thiesen

In the path server i created a new package called RPC, like this:

  source path=client /
source path=intl /
source path=server/rpc /

I kept the ServletImpl implementation into the server path and moved
the Servlet and ServletAsync to the package servlet/rpc

This will separate the actual implementation from the code GWT should
take care of

Thanks,
Gabriel Thiesen

On Sep 19, 3:02 pm, ZhangJianshe [EMAIL PROTECTED] wrote:
 hello,guys, i encount the same problem,whould you like share your
 solutions?

 but ,i need you help.

 On 8月31日, 下午10时03分, Gabriel Thiesen [EMAIL PROTECTED] wrote:

  Thank you adm.dfs,

   Was exactly this indeed, so thank you very much

  Gabriel Thiesen

  On Aug 30, 8:17 am, adm.dfs [EMAIL PROTECTED] wrote:

   Hello Gabriel,

   Its because Yours RCP implementation is located in same package with
   RCP interfaces.
   GWT propose move implementation to another package 
   (seehttp://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=goog...隐藏被引用文字
-

  - 显示引用的文字 -
--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



Re: Problems with gwt 1.5

2008-09-11 Thread Reinier Zwitserloot

Your classpath is screwed up. Half the classes are being loaded from
an older version of GWT, and half are loaded from a newer version.

Double check your classpath; possibly you're picking up a gwt-user.jar
from one place and a gwt-dev-XYZ.jar from another. If you installed
GWT 1.5 by unzipping over the previous version, perhaps you unpacked
gwt-user.jar at some point to hack around with some of the code. At
any rate, try and install GWT 1.5 by deleting what's there first, then
unzipping.

On Sep 10, 12:36 pm, MikeTheQuick [EMAIL PROTECTED] wrote:
 Hi.. i have a problem with the new gwt library...

 When i compile my gwt application i have this error :

 java.lang.VerifyError: Cannot inherit from final class
      [java]     at java.lang.ClassLoader.defineClass1(Native Method)
      [java]     at java.lang.ClassLoader.defineClass(Unknown Source)
      [java]     at java.security.SecureClassLoader.defineClass(Unknown
 Source)
      [java]     at java.net.URLClassLoader.defineClass(Unknown Source)
      [java]     at java.net.URLClassLoader.access$000(Unknown Source)
      [java]     at java.net.URLClassLoader$1.run(Unknown Source)
      [java]     at java.security.AccessController.doPrivileged(Native
 Method)
      [java]     at java.net.URLClassLoader.findClass(Unknown Source)
      [java]     at java.lang.ClassLoader.loadClass(Unknown Source)
      [java]     at sun.misc.Launcher$AppClassLoader.loadClass(Unknown
 Source)
      [java]     at java.lang.ClassLoader.loadClass(Unknown Source)
      [java]     at java.lang.ClassLoader.loadClassInternal(Unknown
 Source)
      [java] Exception in thread main

 The only things i changed are the gwt libraries

 With gwt 1.4 I don't have this problem... can someone tell me the
 reason?
--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



Problems with gwt 1.5

2008-09-10 Thread MikeTheQuick

Hi.. i have a problem with the new gwt library...

When i compile my gwt application i have this error :

java.lang.VerifyError: Cannot inherit from final class
 [java] at java.lang.ClassLoader.defineClass1(Native Method)
 [java] at java.lang.ClassLoader.defineClass(Unknown Source)
 [java] at java.security.SecureClassLoader.defineClass(Unknown
Source)
 [java] at java.net.URLClassLoader.defineClass(Unknown Source)
 [java] at java.net.URLClassLoader.access$000(Unknown Source)
 [java] at java.net.URLClassLoader$1.run(Unknown Source)
 [java] at java.security.AccessController.doPrivileged(Native
Method)
 [java] at java.net.URLClassLoader.findClass(Unknown Source)
 [java] at java.lang.ClassLoader.loadClass(Unknown Source)
 [java] at sun.misc.Launcher$AppClassLoader.loadClass(Unknown
Source)
 [java] at java.lang.ClassLoader.loadClass(Unknown Source)
 [java] at java.lang.ClassLoader.loadClassInternal(Unknown
Source)
 [java] Exception in thread main

The only things i changed are the gwt libraries

With gwt 1.4 I don't have this problem... can someone tell me the
reason?

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



Re: Problems migrating GWT 1.5 2030 to GWT 1.5 official release

2008-08-30 Thread adm.dfs

Hello Gabriel,

Its because Yours RCP implementation is located in same package with
RCP interfaces.
GWT propose move implementation to another package (see
http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideDirectoriesPackageConventions).

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



Problems migrating GWT 1.5 2030 to GWT 1.5 official release

2008-08-29 Thread Gabriel Thiesen

Hello guys,

   I have been trying for 3 days make the oficial release of GWT work
here with no success. It keeps sending errors to me like this

ERROR] Errors in 'file:/development/workspace/BeConnectedWeb/src/com/
eventtouch/web/components/composite/role/manageroles/server/
ManageRolesServletImpl.java'
[ERROR] Line 17: No source code is available for type
com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to
inherit a required module?
[ERROR] Line 25: No source code is available for type
com.eventtouch.core.servicelocator.Services; did you forget to inherit
a required module?

ERROR] Errors in 'file:/development/workspace/BeConnectedWeb/src/com/
eventtouch/web/components/composite/menu/menuclient/server/
MenuServletImpl.java'
[ERROR] Line 14: No source code is available for type
com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to
inherit a required module?
[ERROR] Line 25: No source code is available for type
com.eventtouch.core.servicelocator.Services; did you forget to inherit
a required module?

When i use the lib GWT1.5 2030 it works fine

The Services class is a service locator that my servletImpl uses to
access server side beans, and should not be anoying me with
compilation GWT issues
And the RemoteServiceServlet is a default library, should not be
anoying me with this errors.


ManageRoles.gwt,xml file

module
!-- Inherit the core library configuration.
Includes GWT core libraries   --
inherits name=com.tt.web.Core /

servlet path=/manageRole

class=com.tt.web.components.composite.role.manageroles.server.ManageRolesServletImpl
 /


source path=client /
source path=intl /
source path=server /

/module

What is going on? Please help me

Thanks,
Gabriel Thiesen





--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---