[gwt-contrib] Re: org.eclipse.jetty.apache.jsp.JuliLog not a subtype

2017-06-23 Thread Matteo Galletti
How? Please share your solution with us.

On Wednesday, January 25, 2017 at 3:52:34 PM UTC+1, Bogdan Petridean wrote:
>
> Fixed it!
>
> On Tuesday, January 24, 2017 at 10:43:09 AM UTC+1, Bogdan Petridean wrote:
>>
>> I am experiencing the same issue, but I am using Eclipse Neon IDE.
>> I cannot figure out which is the problematic dependency
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/39ce860c-ad5e-44cd-9677-2c2f51789705%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Similar to php post method

2014-04-07 Thread Matteo Fioravanti
Thak you very much!

Il giorno sabato 5 aprile 2014 16:50:42 UTC+2, Matteo Fioravanti ha scritto:

 Hi there, a function have this code to generate a list of event formatted 
 with html and css.

 for (int i = 0; i  10; i++) { 
  HTML div = new HTML (a href=\+numLink[i]+\Link/a);
  RootPanel.get(mainLayout).add(div);
 }


 It 'a code for demonstration purposes, but my goal is to handle a 
 clickhandler foreach link, I should also be good to change the tag with a 
 div if necessary.
 In php+html this it was very clear for me, but in gwt i don't understand 
 what i should i do.

 When I click the link I have to activate a feature that let me change the 
 html code of the page, help me please!


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Similar to php post method

2014-04-05 Thread Matteo Fioravanti
Hi there, a function have this code to generate a list of event formatted 
with html and css.

for (int i = 0; i  10; i++) { 
 HTML div = new HTML (a href=\+numLink[i]+\Link/a);
 RootPanel.get(mainLayout).add(div);
}


It 'a code for demonstration purposes, but my goal is to handle a 
clickhandler foreach link, I should also be good to change the tag with a 
div if necessary.
In php+html this it was very clear for me, but in gwt i don't understand 
what i should i do.

When I click the link I have to activate a feature that let me change the 
html code of the page, help me please!

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread Matteo
+1 DataBinding  Validation

Matteo

On 17 dic, 02:47, Isaac Truett itru...@gmail.com wrote:
 I'd like to see SuggestBox get a little love. For example:

 http://code.google.com/p/google-web-toolkit/issues/detail?id=2311http://code.google.com/p/google-web-toolkit/issues/detail?id=2739http://code.google.com/p/google-web-toolkit/issues/detail?id=3409

 And one of those issues links to this thread where I had some other
 thoughts on SuggestBox improvements:

 http://groups.google.com/group/Google-Web-Toolkit-Contributors/browse...

 And if I could include a wish for future GPE development it would be
 wizards, automated refactorings, and reusable code templates. Things
 like:

 http://code.google.com/p/google-web-toolkit/issues/detail?id=3914

 I already have at least one SuggestBox patch floating around out
 there. I'd be happy to update that and work on other SuggestBox
 features, too, in my spare time. If somebody with commit privs cares
 to buddy up for design and review, please feel free to contact me on
 or off list. :)

 Oh, and woohoo GWT 2.0! Go team!

 - Isaac

 On Wed, Dec 16, 2009 at 12:01 PM, Bruce Johnson br...@google.com wrote:
  Working on a draft one.
  What do folks here think is important?

  On Wed, Dec 16, 2009 at 7:42 AM, tfreitas tfrei...@gmail.com wrote:

  What about roadmap?

  --
 http://groups.google.com/group/Google-Web-Toolkit-Contributors

  --
 http://groups.google.com/group/Google-Web-Toolkit-Contributors

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors


Re: Controller navigation

2009-07-30 Thread Matteo

Sorry...wrong group.

:)

Anyway,have a look at the Crux Framework...it's a nice piece of code.
Bye

On Jul 30, 1:19 pm, mfiandesio matteo.fiande...@gmail.com wrote:
 Hi Crux developers,
 I am having a look at the framework and it seems great!

 I easily integrate my service factory using spring and the declarative
 UI system is very intuitive.
 I have only a couple of questions for you :

 1)Using the valueObject binder i receive an error at compilation time
 on field types different from String

 The method setDateOfBirth(Date) in the type Profile is not applicable
 for the arguments (String)

 I have a class called Profile annotated with @ValueObject with
 autobinding disabled

 @ValueObject(bindWidgetByFieldName=false)
 public class Profile implements Serializable{

     @ScreenBind(profile.firstName)
     private String firstName;
     @ScreenBind(profile.lastName)
     private String lastName;
     @ScreenBind(profile.email)
     private String email;
     @ScreenBind(profile.homeNumber)
     private String homeNumber;
     @ScreenBind(profile.mobile)
     private String mobileNumber;
     @ScreenBind(profile.birthDate)
     private Date dateOfBirth;

     [getters and setters]

 }

 Is there anything missing?

 2)How do I navigate between screens?

 I have a working form with a service invocation : it works fine but i
 don't know how to navigate to another screen when onComplete is
 called?

 Congratulations for your work,
 Ciao
 Matteo
--~--~-~--~~~---~--~~
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:

2009-03-06 Thread Matteo

Hi GWT GWT,
It looks like the commons-dbcp.jar is missing from the classpath.
Regards,
Matteo

On 6 Mar, 07:16, GWT GWT rdforj...@gmail.com wrote:
 Hi I have developed an application using using GWT,spring,Hibernate.
 Now I am getting an warning of

 [WARN] StandardContext[]Exception while dispatching incoming RPC call
 com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public
 abstract java.util.List
 com.company.client.rpc.TeacherService.getPupils(java.lang.Integer)' threw an
 unexpected exception: java.lang.RuntimeException:
 org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find
 class [org.apache.commons.dbcp.BasicDataSource] for bean with name
 'dataSource' defined in class path resource [applicationContext.xml]; nested
 exception is java.lang.ClassNotFoundException:
 org.apache.commons.dbcp.BasicDataSource
  at
 com.google.gwt.user.server.rpc.RPC.encodeResponseForFailure(RPC.java:361)
  at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:547)
  at
 com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265)
  at
 com.google.gwt.user.server.rpc.RemoteServiceServlet.doPost(RemoteServiceServlet.java:187)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  at
 com.google.gwt.dev.shell.GWTShellServlet.service(GWTShellServlet.java:252)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
  at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
  at
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
 Caused by: java.lang.RuntimeException:
 org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find
 class [org.apache.commons.dbcp.BasicDataSource] for bean with name
 'dataSource' defined in class path resource [applicationContext.xml]; nested
 exception is java.lang.ClassNotFoundException:
 org.apache.commons.dbcp.BasicDataSource
  at
 com.company.server.gwt.TeacherServiceImpl.getPupils(TeacherServiceImpl.java:48)
  at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:528)
  at
 com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265)
  at
 com.google.gwt.user.server.rpc.RemoteServiceServlet.doPost(RemoteServiceServlet.java:187)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  at
 com.google.gwt.dev.shell.GWTShellServlet.service(GWTShellServlet.java:252)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
  at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
  at
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
 Caused by: org.springframework.beans.factory.CannotLoadBeanClassException:
 Cannot find class [org.apache.commons.dbcp.BasicDataSource] for bean with
 name 'dataSource' defined in class path resource [applicationContext.xml];
 nested exception is java.lang.ClassNotFoundException:
 org.apache.commons.dbcp.BasicDataSource
  at
 org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1141)
  at
 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:524)
  at
 org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1177)
  at
 org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:758)
  at
 org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:422)
  at
 org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
  at
 org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
  at
 org.springframework.context.support.ClassPathXmlApplicationContext.init(ClassPathXmlApplicationContext.java:139)
  at
 org.springframework.context.support.ClassPathXmlApplicationContext.init(ClassPathXmlApplicationContext.java:83)
  at com.company.spring.ContextUtil.getContext(ContextUtil.java:12)
 Caused by: java.lang.ClassNotFoundException:
 org.apache.commons.dbcp.BasicDataSource
  at
 org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1340)
  at
 org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1189)
  at org.springframework.util.ClassUtils.forName(ClassUtils.java:211)
  at
 org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass

Re: error

2009-03-06 Thread Matteo

poonam,
are you sure that you added all the hibernate dependencies to the
classpath?
Regards
Matteo

On 6 Mar, 13:26, poonam poonam...@gmail.com wrote:
 Hello,
      I have made the changes as suggested by you in my application
 which is developed integrating GWT+Spring+Hibernate ; also all the
 jars are being included, but the application is still giving me
 warning which says -

 [WARN] StandardContext[]Exception while dispatching incoming RPC call
 com.google.gwt.user.server.rpc.UnexpectedException: Service method
 'public abstract java.util.List
 com.company.client.rpc.TeacherService.getPupils(java.lang.Integer)'
 threw an unexpected exception: java.lang.RuntimeException:
 org.springframework.beans.factory.BeanCreationException: Error
 creating bean with name 'sessionFactory' defined in class path
 resource [applicationContext.xml]: Instantiation of bean failed;
 nested exception is
 org.springframework.beans.BeanInstantiationException: Could not
 instantiate bean class
 [org.springframework.orm.hibernate3.LocalSessionFactoryBean]:
 Constructor threw exception; nested exception is
 java.lang.NoClassDefFoundError
         at com.google.gwt.user.server.rpc.RPC.encodeResponseForFailure
 (RPC.java:361)
         at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse
 (RPC.java:547)
         at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall
 (RemoteServiceServlet.java:265)
         at com.google.gwt.user.server.rpc.RemoteServiceServlet.doPost
 (RemoteServiceServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at com.google.gwt.dev.shell.GWTShellServlet.service
 (GWTShellServlet.java:252)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter
 (ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter
 (ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke
 (StandardWrapperValve.java:214)
 Caused by: java.lang.RuntimeException:
 org.springframework.beans.factory.BeanCreationException: Error
 creating bean with name 'sessionFactory' defined in class path
 resource [applicationContext.xml]: Instantiation of bean failed;
 nested exception is
 org.springframework.beans.BeanInstantiationException: Could not
 instantiate bean class
 [org.springframework.orm.hibernate3.LocalSessionFactoryBean]:
 Constructor threw exception; nested exception is
 java.lang.NoClassDefFoundError
         at com.company.server.gwt.TeacherServiceImpl.getPupils
 (TeacherServiceImpl.java:48)
         at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse
 (RPC.java:528)
         at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall
 (RemoteServiceServlet.java:265)
         at com.google.gwt.user.server.rpc.RemoteServiceServlet.doPost
 (RemoteServiceServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at com.google.gwt.dev.shell.GWTShellServlet.service
 (GWTShellServlet.java:252)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter
 (ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter
 (ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke
 (StandardWrapperValve.java:214)
 Caused by: org.springframework.beans.factory.BeanCreationException:
 Error creating bean with name 'sessionFactory' defined in class path
 resource [applicationContext.xml]: Instantiation of bean failed;
 nested exception is
 org.springframework.beans.BeanInstantiationException: Could not
 instantiate bean class
 [org.springframework.orm.hibernate3.LocalSessionFactoryBean]:
 Constructor threw exception; nested exception is
 java.lang.NoClassDefFoundError
         at
 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean
 (AbstractAutowireCapableBeanFactory.java:883)
         at
 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance
 (AbstractAutowireCapableBeanFactory.java:839)
         at
 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean
 (AbstractAutowireCapableBeanFactory.java:440)
         at
 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory
 $1.run(AbstractAutowireCapableBeanFactory.java:409)
         at
 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean
 (AbstractAutowireCapableBeanFactory.java:380)
         at org.springframework.beans.factory.support.AbstractBeanFactory
 $1.getObject(AbstractBeanFactory.java:264