Can't integrate spring with gwt

2009-04-24 Thread mabebe

Hi i am having difficulty integrating spring with gwt. Below is my
code for my serviceImpl class...and where i think the error is

@Override
public void init() throws ServletException {
super.init();
ServletContext sc = this.getServletContext();

WebApplicationContext ctx =
WebApplicationContextUtils.getWebApplicationContext(sc); --- this
returns a null pointer exception exception
reportsFacade = (IReportsFacade) ctx.getBean(ReportsFacade);
}


i have the following in my webapp web.xml file...

context-param
param-namecontextConfigLocation/param-name
param-value
classpath:org/personalsite/config/applicationContext.xml
/param-value
/context-param

listener
listener-class
org.springframework.web.context.ContextLoaderListener
/listener-class
/listener
--~--~-~--~~~---~--~~
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 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Can't integrate spring with gwt

2009-04-24 Thread mabebe

Thanks...

On Apr 24, 10:49 am, Alejandro D. Garin aga...@gmail.com wrote:
 Hi,

 Try moving your applicationContext.xml to WEB-INF/applicationContext.xml

 On Fri, Apr 24, 2009 at 10:38 AM, mabebe meklitabayab...@gmail.com wrote:

  Hi i am having difficulty integrating spring with gwt. Below is my
  code for my serviceImpl class...and where i think the error is

  @Override
         public void init() throws ServletException {
         super.init();
         ServletContext sc = this.getServletContext();

         WebApplicationContext ctx =
  WebApplicationContextUtils.getWebApplicationContext(sc); --- this
  returns a null pointer exception exception
         reportsFacade = (IReportsFacade) ctx.getBean(ReportsFacade);
     }

  i have the following in my webapp web.xml file...

         context-param
                 param-namecontextConfigLocation/param-name
                 param-value

   classpath:org/personalsite/config/applicationContext.xml
                 /param-value
         /context-param

         listener
                 listener-class

   org.springframework.web.context.ContextLoaderListener
                 /listener-class
         /listener


--~--~-~--~~~---~--~~
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 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Can't integrate spring with gwt

2009-04-24 Thread mabebe

Thanks...

On Apr 24, 10:49 am, Alejandro D. Garin aga...@gmail.com wrote:
 Hi,

 Try moving your applicationContext.xml to WEB-INF/applicationContext.xml

 On Fri, Apr 24, 2009 at 10:38 AM, mabebe meklitabayab...@gmail.com wrote:

  Hi i am having difficulty integrating spring with gwt. Below is my
  code for my serviceImpl class...and where i think the error is

  @Override
         public void init() throws ServletException {
         super.init();
         ServletContext sc = this.getServletContext();

         WebApplicationContext ctx =
  WebApplicationContextUtils.getWebApplicationContext(sc); --- this
  returns a null pointer exception exception
         reportsFacade = (IReportsFacade) ctx.getBean(ReportsFacade);
     }

  i have the following in my webapp web.xml file...

         context-param
                 param-namecontextConfigLocation/param-name
                 param-value

   classpath:org/personalsite/config/applicationContext.xml
                 /param-value
         /context-param

         listener
                 listener-class

   org.springframework.web.context.ContextLoaderListener
                 /listener-class
         /listener


--~--~-~--~~~---~--~~
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 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Unable to find/load module error for GWT 1.6.4

2009-04-21 Thread mabebe

Hi could you please help in resolving the following error..i think its
an issue with the class path, i have my src folder already in the
class path.i am running GWT 1.6.4, Eclipse 3.4

[ERROR] Unable to find 'personalwebsite.gwt.xml' on your classpath;
could be a typo, or maybe you forgot to include a classpath entry for
source?

I appreciate any help on this...
Thanks.
Meklit
--~--~-~--~~~---~--~~
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 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Unable to find/load module error for GWT 1.6.4

2009-04-21 Thread mabebe

Salvador,

I am getting the error when i run my app in hosted mode but if i use
standalone hot tomcat deployment (add server and debug within eclipse)
it can find the module...i should also state everything compiles fine
with Google Compile..

my project structure is as follows

personalwebsite/src/org/personalsite/personalwebsite/
Personalwebsite.gwt.xml
personalwebsite/src/org/personalsite/personalwebsite/
Personalwebsite.java
personalwebsite/war/index.html

i tried both http://localhost:8080/personalwebsite and
http://localhost:8080/personalwebsite/index.html...and got the same
error as above...

here is my Personalwebsite.gwt.xml module content

module rename-to='personalwebsite'
  !-- Inherit the core Web Toolkit stuff.--
  inherits name=com.google.gwt.core.Core/
  inherits name='com.google.gwt.user.User'/

  inherits name='com.google.gwt.user.theme.standard.Standard'/

  entry-point
class='org.personalsite.personalwebsite.client.Personalwebsite'/

  source path=client /
/module

Thanks...

On Apr 21, 9:13 am, Salvador Diaz diaz.salva...@gmail.com wrote:
 Could you post more details ? (Your whole project structure along with
 the location of personalwebsite.gwt.xml and the options passed to
 hosted mode should be enough )

 Alternatively, you could put your hosted mode in DEBUG log level and
 read the logs to try to pinpoint what's wrong with your classpath

 Hope it helps,

 Salvador

 On Apr 21, 9:41 am, mabebe meklitabayab...@gmail.com wrote:

  Hi could you please help in resolving the following error..i think its
  an issue with the class path, i have my src folder already in the
  class path.i am running GWT 1.6.4, Eclipse 3.4

  [ERROR] Unable to find 'personalwebsite.gwt.xml' on your classpath;
  could be a typo, or maybe you forgot to include a classpath entry for
  source?

  I appreciate any help on this...
  Thanks.
  Meklit


--~--~-~--~~~---~--~~
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 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Error compiling GWT application in Eclipse

2009-04-20 Thread mabebe

added xceres jar to my jdk jre/lib/ext folder...it works like a
charm...thanks..

On Apr 19, 6:20 am, mabebe meklitabayab...@gmail.com wrote:
 I  have another build error..do you know the problemi removed the
 app engine from the build path already

 Loading module 'com.personalsite.Personalsite'
    [ERROR] Failure while parsing XML
 org.xml.sax.SAXNotRecognizedException: 
 Feature:http://apache.org/xml/features/nonvalidating/load-external-dtd
         at org.apache.crimson.parser.XMLReaderImpl.setFeature
 (XMLReaderImpl.java:213)
         at org.apache.crimson.jaxp.SAXParserImpl.setFeatures
 (SAXParserImpl.java:143)
         at org.apache.crimson.jaxp.SAXParserImpl.init(SAXParserImpl.java:
 126)
         at org.apache.crimson.jaxp.SAXParserFactoryImpl.newSAXParserImpl
 (SAXParserFactoryImpl.java:113)
         at org.apache.crimson.jaxp.SAXParserFactoryImpl.setFeature
 (SAXParserFactoryImpl.java:141)
         at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.parse
 (ReflectiveParser.java:307)
         at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.access$100
 (ReflectiveParser.java:48)
         at com.google.gwt.dev.util.xml.ReflectiveParser.parse
 (ReflectiveParser.java:385)
         at com.google.gwt.dev.cfg.ModuleDefLoader.nestedLoad
 (ModuleDefLoader.java:243)
         at com.google.gwt.dev.cfg.ModuleDefLoader$1.load(ModuleDefLoader.java:
 155)
         at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule
 (ModuleDefLoader.java:269)
         at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath
 (ModuleDefLoader.java:127)
         at com.google.gwt.dev.Compiler.run(Compiler.java:156)
         at com.google.gwt.dev.Compiler$1.run(Compiler.java:124)
         at com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java:
 84)
         at com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger
 (CompileTaskRunner.java:78)
         at com.google.gwt.dev.Compiler.main(Compiler.java:131)

 On Apr 19, 5:16 am, Salvador Diaz diaz.salva...@gmail.com wrote:

  That's an appengine error, are you sure you want yo use the app engine
  sdk in your application ? If you do, try asking your question 
  here:http://groups.google.com/group/google-appengine

  Cheers,

  Salvador

  On Apr 19, 5:06 am, mabebe meklitabayab...@gmail.com wrote:

   Please help...i keep getting this error when trying to build a GWT
   project in eclipse.

   Apr 18, 2009 11:04:55 PM org.datanucleus.enhancer.DataNucleusEnhancer
   addMessage
   SEVERE: An error occured for ClassEnhancer ASM when trying to call
   the method org.datanucleus.enhancer.asm.ASMClassEnhancer on class
   getClassNameForFileName : org.objectweb.asm.ClassReader.accept(Lorg/
   objectweb/asm/ClassVisitor;I)V
   java.lang.NoSuchMethodError: org.objectweb.asm.ClassReader.accept(Lorg/
   objectweb/asm/ClassVisitor;I)V
           at
   org.datanucleus.enhancer.asm.ASMClassEnhancer.getClassNameForFileName
   (ASMClassEnhancer.java:154)
           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
           at sun.reflect.NativeMethodAccessorImpl.invoke
   (NativeMethodAccessorImpl.java:39)
           at sun.reflect.DelegatingMethodAccessorImpl.invoke
   (DelegatingMethodAccessorImpl.java:25)
           at java.lang.reflect.Method.invoke(Method.java:597)
           at
   org.datanucleus.enhancer.DataNucleusEnhancer.getClassNameForFilename
   (DataNucleusEnhancer.java:900)
           at
   org.datanucleus.enhancer.DataNucleusEnhancer.getFileMetadataForInput
   (DataNucleusEnhancer.java:716)
           at org.datanucleus.enhancer.DataNucleusEnhancer.enhance
   (DataNucleusEnhancer.java:525)
           at org.datanucleus.enhancer.DataNucleusEnhancer.main
   (DataNucleusEnhancer.java:1235)
           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
           at sun.reflect.NativeMethodAccessorImpl.invoke
   (NativeMethodAccessorImpl.java:39)
           at sun.reflect.DelegatingMethodAccessorImpl.invoke
   (DelegatingMethodAccessorImpl.java:25)
           at java.lang.reflect.Method.invoke(Method.java:597)
           at 
   com.google.appengine.tools.enhancer.Enhancer.execute(Enhancer.java:
   57)
           at 
   com.google.appengine.tools.enhancer.Enhance.init(Enhance.java:
   60)
           at 
   com.google.appengine.tools.enhancer.Enhance.main(Enhance.java:41)
   .
   An error occured for ClassEnhancer ASM when trying to call the
   method org.datanucleus.enhancer.asm.ASMClassEnhancer on class
   getClassNameForFileName : org.objectweb.asm.ClassReader.accept(Lorg/
   objectweb/asm/ClassVisitor;I)V
   java.lang.NoSuchMethodError: org.objectweb.asm.ClassReader.accept(Lorg/
   objectweb/asm/ClassVisitor;I)V
           at
   org.datanucleus.enhancer.asm.ASMClassEnhancer.getClassNameForFileName
   (ASMClassEnhancer.java:154)
           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
           at sun.reflect.NativeMethodAccessorImpl.invoke
   (NativeMethodAccessorImpl.java:39

Re: Error compiling GWT application in Eclipse

2009-04-19 Thread mabebe

Thanks salvador...

On Apr 19, 5:16 am, Salvador Diaz diaz.salva...@gmail.com wrote:
 That's an appengine error, are you sure you want yo use the app engine
 sdk in your application ? If you do, try asking your question 
 here:http://groups.google.com/group/google-appengine

 Cheers,

 Salvador

 On Apr 19, 5:06 am, mabebe meklitabayab...@gmail.com wrote:

  Please help...i keep getting this error when trying to build a GWT
  project in eclipse.

  Apr 18, 2009 11:04:55 PM org.datanucleus.enhancer.DataNucleusEnhancer
  addMessage
  SEVERE: An error occured for ClassEnhancer ASM when trying to call
  the method org.datanucleus.enhancer.asm.ASMClassEnhancer on class
  getClassNameForFileName : org.objectweb.asm.ClassReader.accept(Lorg/
  objectweb/asm/ClassVisitor;I)V
  java.lang.NoSuchMethodError: org.objectweb.asm.ClassReader.accept(Lorg/
  objectweb/asm/ClassVisitor;I)V
          at
  org.datanucleus.enhancer.asm.ASMClassEnhancer.getClassNameForFileName
  (ASMClassEnhancer.java:154)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke
  (NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke
  (DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:597)
          at
  org.datanucleus.enhancer.DataNucleusEnhancer.getClassNameForFilename
  (DataNucleusEnhancer.java:900)
          at
  org.datanucleus.enhancer.DataNucleusEnhancer.getFileMetadataForInput
  (DataNucleusEnhancer.java:716)
          at org.datanucleus.enhancer.DataNucleusEnhancer.enhance
  (DataNucleusEnhancer.java:525)
          at org.datanucleus.enhancer.DataNucleusEnhancer.main
  (DataNucleusEnhancer.java:1235)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke
  (NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke
  (DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:597)
          at 
  com.google.appengine.tools.enhancer.Enhancer.execute(Enhancer.java:
  57)
          at com.google.appengine.tools.enhancer.Enhance.init(Enhance.java:
  60)
          at com.google.appengine.tools.enhancer.Enhance.main(Enhance.java:41)
  .
  An error occured for ClassEnhancer ASM when trying to call the
  method org.datanucleus.enhancer.asm.ASMClassEnhancer on class
  getClassNameForFileName : org.objectweb.asm.ClassReader.accept(Lorg/
  objectweb/asm/ClassVisitor;I)V
  java.lang.NoSuchMethodError: org.objectweb.asm.ClassReader.accept(Lorg/
  objectweb/asm/ClassVisitor;I)V
          at
  org.datanucleus.enhancer.asm.ASMClassEnhancer.getClassNameForFileName
  (ASMClassEnhancer.java:154)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke
  (NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke
  (DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:597)
          at
  org.datanucleus.enhancer.DataNucleusEnhancer.getClassNameForFilename
  (DataNucleusEnhancer.java:900)
          at
  org.datanucleus.enhancer.DataNucleusEnhancer.getFileMetadataForInput
  (DataNucleusEnhancer.java:716)
          at org.datanucleus.enhancer.DataNucleusEnhancer.enhance
  (DataNucleusEnhancer.java:525)
          at org.datanucleus.enhancer.DataNucleusEnhancer.main
  (DataNucleusEnhancer.java:1235)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke
  (NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke
  (DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:597)
          at 
  com.google.appengine.tools.enhancer.Enhancer.execute(Enhancer.java:
  57)
          at com.google.appengine.tools.enhancer.Enhance.init(Enhance.java:
  60)
          at com.google.appengine.tools.enhancer.Enhance.main(Enhance.java:41)


--~--~-~--~~~---~--~~
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 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Error compiling GWT application in Eclipse

2009-04-19 Thread mabebe

I  have another build error..do you know the problemi removed the
app engine from the build path already

Loading module 'com.personalsite.Personalsite'
   [ERROR] Failure while parsing XML
org.xml.sax.SAXNotRecognizedException: Feature:
http://apache.org/xml/features/nonvalidating/load-external-dtd
at org.apache.crimson.parser.XMLReaderImpl.setFeature
(XMLReaderImpl.java:213)
at org.apache.crimson.jaxp.SAXParserImpl.setFeatures
(SAXParserImpl.java:143)
at org.apache.crimson.jaxp.SAXParserImpl.init(SAXParserImpl.java:
126)
at org.apache.crimson.jaxp.SAXParserFactoryImpl.newSAXParserImpl
(SAXParserFactoryImpl.java:113)
at org.apache.crimson.jaxp.SAXParserFactoryImpl.setFeature
(SAXParserFactoryImpl.java:141)
at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.parse
(ReflectiveParser.java:307)
at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.access$100
(ReflectiveParser.java:48)
at com.google.gwt.dev.util.xml.ReflectiveParser.parse
(ReflectiveParser.java:385)
at com.google.gwt.dev.cfg.ModuleDefLoader.nestedLoad
(ModuleDefLoader.java:243)
at com.google.gwt.dev.cfg.ModuleDefLoader$1.load(ModuleDefLoader.java:
155)
at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule
(ModuleDefLoader.java:269)
at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath
(ModuleDefLoader.java:127)
at com.google.gwt.dev.Compiler.run(Compiler.java:156)
at com.google.gwt.dev.Compiler$1.run(Compiler.java:124)
at com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java:
84)
at com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger
(CompileTaskRunner.java:78)
at com.google.gwt.dev.Compiler.main(Compiler.java:131)


On Apr 19, 5:16 am, Salvador Diaz diaz.salva...@gmail.com wrote:
 That's an appengine error, are you sure you want yo use the app engine
 sdk in your application ? If you do, try asking your question 
 here:http://groups.google.com/group/google-appengine

 Cheers,

 Salvador

 On Apr 19, 5:06 am, mabebe meklitabayab...@gmail.com wrote:

  Please help...i keep getting this error when trying to build a GWT
  project in eclipse.

  Apr 18, 2009 11:04:55 PM org.datanucleus.enhancer.DataNucleusEnhancer
  addMessage
  SEVERE: An error occured for ClassEnhancer ASM when trying to call
  the method org.datanucleus.enhancer.asm.ASMClassEnhancer on class
  getClassNameForFileName : org.objectweb.asm.ClassReader.accept(Lorg/
  objectweb/asm/ClassVisitor;I)V
  java.lang.NoSuchMethodError: org.objectweb.asm.ClassReader.accept(Lorg/
  objectweb/asm/ClassVisitor;I)V
          at
  org.datanucleus.enhancer.asm.ASMClassEnhancer.getClassNameForFileName
  (ASMClassEnhancer.java:154)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke
  (NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke
  (DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:597)
          at
  org.datanucleus.enhancer.DataNucleusEnhancer.getClassNameForFilename
  (DataNucleusEnhancer.java:900)
          at
  org.datanucleus.enhancer.DataNucleusEnhancer.getFileMetadataForInput
  (DataNucleusEnhancer.java:716)
          at org.datanucleus.enhancer.DataNucleusEnhancer.enhance
  (DataNucleusEnhancer.java:525)
          at org.datanucleus.enhancer.DataNucleusEnhancer.main
  (DataNucleusEnhancer.java:1235)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke
  (NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke
  (DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:597)
          at 
  com.google.appengine.tools.enhancer.Enhancer.execute(Enhancer.java:
  57)
          at com.google.appengine.tools.enhancer.Enhance.init(Enhance.java:
  60)
          at com.google.appengine.tools.enhancer.Enhance.main(Enhance.java:41)
  .
  An error occured for ClassEnhancer ASM when trying to call the
  method org.datanucleus.enhancer.asm.ASMClassEnhancer on class
  getClassNameForFileName : org.objectweb.asm.ClassReader.accept(Lorg/
  objectweb/asm/ClassVisitor;I)V
  java.lang.NoSuchMethodError: org.objectweb.asm.ClassReader.accept(Lorg/
  objectweb/asm/ClassVisitor;I)V
          at
  org.datanucleus.enhancer.asm.ASMClassEnhancer.getClassNameForFileName
  (ASMClassEnhancer.java:154)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke
  (NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke
  (DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:597)
          at
  org.datanucleus.enhancer.DataNucleusEnhancer.getClassNameForFilename

Error compiling GWT application in Eclipse

2009-04-18 Thread mabebe

Please help...i keep getting this error when trying to build a GWT
project in eclipse.

Apr 18, 2009 11:04:55 PM org.datanucleus.enhancer.DataNucleusEnhancer
addMessage
SEVERE: An error occured for ClassEnhancer ASM when trying to call
the method org.datanucleus.enhancer.asm.ASMClassEnhancer on class
getClassNameForFileName : org.objectweb.asm.ClassReader.accept(Lorg/
objectweb/asm/ClassVisitor;I)V
java.lang.NoSuchMethodError: org.objectweb.asm.ClassReader.accept(Lorg/
objectweb/asm/ClassVisitor;I)V
at
org.datanucleus.enhancer.asm.ASMClassEnhancer.getClassNameForFileName
(ASMClassEnhancer.java:154)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.datanucleus.enhancer.DataNucleusEnhancer.getClassNameForFilename
(DataNucleusEnhancer.java:900)
at
org.datanucleus.enhancer.DataNucleusEnhancer.getFileMetadataForInput
(DataNucleusEnhancer.java:716)
at org.datanucleus.enhancer.DataNucleusEnhancer.enhance
(DataNucleusEnhancer.java:525)
at org.datanucleus.enhancer.DataNucleusEnhancer.main
(DataNucleusEnhancer.java:1235)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.google.appengine.tools.enhancer.Enhancer.execute(Enhancer.java:
57)
at com.google.appengine.tools.enhancer.Enhance.init(Enhance.java:
60)
at com.google.appengine.tools.enhancer.Enhance.main(Enhance.java:41)
.
An error occured for ClassEnhancer ASM when trying to call the
method org.datanucleus.enhancer.asm.ASMClassEnhancer on class
getClassNameForFileName : org.objectweb.asm.ClassReader.accept(Lorg/
objectweb/asm/ClassVisitor;I)V
java.lang.NoSuchMethodError: org.objectweb.asm.ClassReader.accept(Lorg/
objectweb/asm/ClassVisitor;I)V
at
org.datanucleus.enhancer.asm.ASMClassEnhancer.getClassNameForFileName
(ASMClassEnhancer.java:154)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.datanucleus.enhancer.DataNucleusEnhancer.getClassNameForFilename
(DataNucleusEnhancer.java:900)
at
org.datanucleus.enhancer.DataNucleusEnhancer.getFileMetadataForInput
(DataNucleusEnhancer.java:716)
at org.datanucleus.enhancer.DataNucleusEnhancer.enhance
(DataNucleusEnhancer.java:525)
at org.datanucleus.enhancer.DataNucleusEnhancer.main
(DataNucleusEnhancer.java:1235)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.google.appengine.tools.enhancer.Enhancer.execute(Enhancer.java:
57)
at com.google.appengine.tools.enhancer.Enhance.init(Enhance.java:
60)
at com.google.appengine.tools.enhancer.Enhance.main(Enhance.java:41)

--~--~-~--~~~---~--~~
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 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---