Re: GWT and spring security integration,DelegatingFilterProxy has a dead loop

2016-07-05 Thread Alexander Leshkin
On Tuesday, July 5, 2016 at 1:25:39 PM UTC+3, Alex Luya wrote: > > Does this mean if add added blow to web.xml: > > > > springSecurityFilterChain > > org.springframework.web.filter.DelegatingFilterProxy > > > springSecurityFilterChain > /dp_web/service/* > > > > I must use t

Re: GWT and spring security integration,DelegatingFilterProxy has a dead loop

2016-07-05 Thread Alex Luya
Does this mean if add added blow to web.xml: springSecurityFilterChain org.springframework.web.filter.DelegatingFilterProxy springSecurityFilterChain /dp_web/service/* I must use to configure something in applicationContext.xml? In my case,I removed above stuff from web.

Re: GWT and spring security integration,DelegatingFilterProxy has a dead loop

2016-07-05 Thread Alexander Leshkin
On Tuesday, July 5, 2016 at 6:02:38 AM UTC+3, Alex Luya wrote: > > and blow to applicationContext.xml: > > class="org.springframework.web.filter.DelegatingFilterProxy"/> > > > I think this causes recursion. Try to remove this bean declarion. Spring security should internally create bean with nam

GWT and spring security integration,DelegatingFilterProxy has a dead loop

2016-07-04 Thread Alex Luya
There is a pure GWT solution here:GWT Spring Security Integration (PURE GWT, NO JSP) 1,Do not use http element at all (http tag from config namespace) 2,Define your AuthenticationRpcService 3,Add AuthenticationRpcService.authenticate(user,password) method 4,Inject into AuthenticationServiceI

GWT and Spring Boot with gwt-maven-plugin

2015-09-14 Thread apanizo
Hi all, I am trying to integrate GWT in a given spring boot project (Kurento Room ). Everything looks good until I launch SpringBoot. The error that I see is: *Caused by: java.lang.IncompatibleClassChangeError: Implementing class* *over some server cla

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Mathieu Lorber
On Tuesday, March 5, 2013 4:33:43 PM UTC+1, Jens wrote: > > >> The only servlet you need in web.xml is the spring integration servlet. > You're right, i wanted to go too fast... Actually spring4gwt does not use the method i talked about. And as you have to write spring beans, it's simpler to a

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Jens
> Jens, are you sure of what you're saying ? The GWT services have to be > servlets AFAIK, and are actually managed by the servlet container in the > given wiki page. > Re-read point 2.) + 3.) of the wiki page. If the wiki page isn't wrong you only have to declare a name for your GWT-RPC serv

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Mathieu Lorber
Jens, are you sure of what you're saying ? The GWT services have to be servlets AFAIK, and are actually managed by the servlet container in the given wiki page. BTW, I'd *strongly* recommend to remove the spring4gwt dependency and understand what it does. That is to say : @SuppressWarnings("se

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Borja Gonzalez
OK, so i finally managed to get it working. This is my solution: springGwtRemoteServiceServlet userConsole/springGwtServices/* @RemoteServiceRelativePath("springGwtServices/GestionUserService") Thanks a lot for everyonw to take the time to help me, and sorry for lack of knowledge. Th

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Jens
Following the linked wiki page you should have springGwtRemoteServiceServlet /springGwtServices/* and @RemoteServiceRelativePath("springGwtServices/") So in your case probably: @RemoteServiceRelativePath("springGwtServices/GestionUserService") You don't need to map your Ges

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Borja Gonzalez
I really don´t know... but now i have tried using this: springGwtRemoteServiceServlet /userConsole/GestionUserService and on my Service: @RemoteServiceRelativePath("GestionUserService") And i'm still getting the same error. El martes, 5 de marzo de 2013 10:10:33 UTC+1, Thomas Broyer

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Thomas Broyer
On Tuesday, March 5, 2013 10:05:28 AM UTC+1, Borja Gonzalez wrote: > > Hi, i have tried to use: > > > springGwtRemoteServiceServlet > /GestionUserService/* > > > or > > > springGwtRemoteServiceServlet > /userConsole/GestionUserService/* > > > And still the same error. I'll keep looking, but a

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Borja Gonzalez
18:06:12 UTC+1, Thomas Broyer escribió: > > > > On Monday, March 4, 2013 5:48:12 PM UTC+1, Borja Gonzalez wrote: >> >> Hi, im writting the code for a console using GWT and Spring integration. >> I have followed GWT tutorial and read some forums about how to use spring

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-04 Thread Thomas Broyer
On Monday, March 4, 2013 5:48:12 PM UTC+1, Borja Gonzalez wrote: > > Hi, im writting the code for a console using GWT and Spring integration. I > have followed GWT tutorial and read some forums about how to use spring > qith GWT. > > I'm at the point that the RPC call

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-04 Thread Jens
Its not a GWT issue. You have either spring4gwt or spring itself misconfigured as it seems like that utilDb is null and thus @Autowired simply does not work. You should start re-reading http://code.google.com/p/spring4gwt/wiki/SimpleRPCExample and make sure that your config is correct. I would

NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-04 Thread Borja Gonzalez
Hi, im writting the code for a console using GWT and Spring integration. I have followed GWT tutorial and read some forums about how to use spring qith GWT. I'm at the point that the RPC call is returning null and i can't seem to see why. As english is not my native language and i&#x

Re: GWT and Spring

2011-08-02 Thread Juan Pablo Gardella
Thanks Jeff!! 2011/8/2 Jeff Larsen > Si estas interesante en usando RequestFactory, es facil usar Spring con > RequestFactory en 2.4-RC. > > Hacer un class se llama SpringServiceLocator > > public class SpringServiceLocator implements ServiceLocator { > > public Object getInstance(Class arg0

Re: GWT and Spring

2011-08-02 Thread Jeff Larsen
Si estas interesante en usando RequestFactory, es facil usar Spring con RequestFactory en 2.4-RC. Hacer un class se llama SpringServiceLocator public class SpringServiceLocator implements ServiceLocator { public Object getInstance(Class arg0) { ApplicationContext ctx = WebApplicatio

Re: GWT and Spring

2011-08-02 Thread jose felix estevez
gracias amigo toda ayuda es bien recibida. saludos. 2011/8/1 Juan Pablo Gardella > Hola José > > Bienvenido a la comunidad. Yo te puedo recomendar que veas el siguiente > prototipo: > > https://bitbucket.org/gardellajuanpablo/gwt-sample/wiki/Home > > Si bien es un poco avanzado porque tiene vari

Re: GWT and Spring

2011-08-01 Thread Juan Pablo Gardella
Hola José Bienvenido a la comunidad. Yo te puedo recomendar que veas el siguiente prototipo: https://bitbucket.org/gardellajuanpablo/gwt-sample/wiki/Home Si bien es un poco avanzado porque tiene varios frameworks, te puede servir de guía. Saludos, Juan 2011/8/1 jose felix estevez > wow graci

Re: GWT and Spring

2011-08-01 Thread jose felix estevez
wow gracias amigo por responder tan rapido. El 1 de agosto de 2011 19:52, Gal Dolber escribió: > Buenas, bienvenido! > > No use nunca spring, pero parece haber mucha informacion al respecto, este > el primer proyecto que aparece: > http://code.google.com/p/gwtrpc-spring/ > > Tambien hay instrucc

Re: GWT and Spring

2011-08-01 Thread Gal Dolber
Buenas, bienvenido! No use nunca spring, pero parece haber mucha informacion al respecto, este el primer proyecto que aparece: http://code.google.com/p/gwtrpc-spring/ Tambien hay instrucciones en gwt-incubator http://code.google.com/p/google-web-toolkit-incubator/wiki/IntegratingWithSpring Salud

GWT and Spring

2011-08-01 Thread jose felix estevez
buenas amigos soy nuevo en esto de gwt y me gustaria integrar gwt con spring alguna ayuda -- 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 gr

Re: GWT and Spring

2011-04-14 Thread Juan Pablo Gardella
Welcome to GWT. You can try read this first: 1) Best Practices!!! gwt http://dl.google.com/io/2009/pres/Th_0200_GoogleWebToolkitArchitecture-BestPracticesForArchitectingYourGWTApp.pdf 2) gwt-dispatch + spring http://pgt.de/2009/09/16/use-spring-with-gwt-dispatch/ http://pgt.de/2009/12/09/sample-

GWT and Spring

2011-04-14 Thread João Peixoto
Hi everyone First post, so lets not blow it I did post this in the Spring forums as well. I've been searching quite a lot for ways to integrate GWT with Spring, but so far I haven't found any working method. I think that the problem is that some detail step is missing, but nevertheless here goes w

Re: GWT and Spring - More Generation Options

2010-09-09 Thread Christiana Thompson
In case you missed it, the replay of last week's "MyEclipse for Spring 8.6: Generate GWT and Flex Apps in Minutes" webinar is now available at http://bit.ly/avsZEj Thanks, Christiana On Aug 26, 3:03 pm, Christiana Thompson wrote: > Formoreinformation on this topic, please join us for a free webi

Re: GWT and Spring - More Generation Options

2010-08-26 Thread Christiana Thompson
For more information on this topic, please join us for a free webinar on Tuesday, August 31, 2010 at 11:00 AM – 12:00 PM CDT This webinar deep dives into the new Google Web Toolkit (GWT) scaffolding options that are available in MyEclipse for Spring 8.6. We’ll cover the following: -- How does it

Re: GWT and Spring - More Generation Options

2010-08-11 Thread Jack
MyEclipse For Spring (ME4S) 8.6 is now generally available with support for GWT front end generation as well as Spring back end generation. We also posted an article on DZone here: http://java.dzone.com/articles/generating-enterprise-class You can download the software and get more information he

Re: GWT and Spring - More Generation Options

2010-07-12 Thread Jack
Hello Stefan, Thanks for the question. First let me say that I am a fan of the work that is being done by the Roo and GWT teams. Our goal in releasing additional generative tooling for Spring has always been to give developers additional options and capabilities that largely complement the free

Re: GWT and Spring - More Generation Options

2010-07-12 Thread Stefan Bachert
Hi, how do you compare your kind of scaffolding with the one of Spring Roo? What is similar? What is different? Stefan Bachert http://gwtworld.de On 9 Jul., 15:06, Christiana Thompson wrote: > This week Genuitec and Skyway Software released the second milestone > (M2) of MyEclipse for Spring 8.

Re: GWT and Spring - More Generation Options

2010-07-12 Thread anjan bacchu.dev
Hi There, That helps. Thank you, BR, ~A On Mon, Jul 12, 2010 at 7:09 PM, Niel wrote: > Yes, it does use Hibernate. > > The scaffolding functionality of MyEclipse for Spring generates the > GWT front-end integrated with the Spring (Spring/JPA/Hibernate) back- > end application. The back-e

Re: GWT and Spring - More Generation Options

2010-07-12 Thread Niel
Yes, it does use Hibernate. The scaffolding functionality of MyEclipse for Spring generates the GWT front-end integrated with the Spring (Spring/JPA/Hibernate) back- end application. The back-end is a Spring application that uses Hibernate as the JPA provider, and the Spring Services (@Service)

Re: GWT and Spring - More Generation Options

2010-07-12 Thread anjan bacchu.dev
Hi There, Thank you. Does MyEclipse for Spring 8.6 have support for using Hibernate instead of JPA ? Thank you, BR, ~A On Sat, Jul 10, 2010 at 12:36 AM, Christiana Thompson < christiana.thomp...@gmail.com> wrote: > This week Genuitec and Skyway Software released the second milestone > (M2)

GWT and Spring - More Generation Options

2010-07-12 Thread Christiana Thompson
This week Genuitec and Skyway Software released the second milestone (M2) of MyEclipse for Spring 8.6, which includes scaffolding for GWT applications. With this new release, our users can now generate full ready-to-run GWT applications from a domain model (i.e. DB tables, Java Beans, or JPA Entit

Re: GWT and Spring - with Spring Web MVC or without it?

2010-06-15 Thread Richard Allen
For operations like file upload which cannot be done with Ajax, GWT provides no server-side facilities. With Spring MVC, you can easily wire up a Spring Controller that handles the file upload request that a GWT client submits to. See: http://static.springsource.org/spring/docs/3.0.x/spring-frame

Re: GWT and Spring - with Spring Web MVC or without it?

2010-06-14 Thread George Georgovassilis
I'll go with Stefan here. MVC implies that the server handles much of the view - with a GWT application the server is reduced to a glorified DAO. All you really need is integrate services from the backend into the frontend. What we really missing is something like RMI for the browser - GWT's RPC i

Re: GWT and Spring - with Spring Web MVC or without it?

2010-06-13 Thread Jan Ehrhardt
If you want to use GWT RPC for client server communication, there is no need for Spring Web MVC. If you want to provide a RESTful API and use it for GWT too, Spring Web MVC is a good choice for realizing RESTful APIs. Regards Jan Ehrhardt 2010/6/13 Stefan Bachert > Hi, > > Spring MVC does not f

Re: GWT and Spring - with Spring Web MVC or without it?

2010-06-13 Thread Stefan Bachert
Hi, Spring MVC does not fit to GWT at all. GWT considers the browser to be a thin/rich client, and the server to be the data source/model Spring MVC considers the browser to be an ultra thin client (something like an x-server), and considers the "server" to be a fat client, where presentation, b

Re: GWT and Spring - with Spring Web MVC or without it?

2010-06-11 Thread Richard Allen
likely to need some static web pages that do not use GWT, and Spring MVC makes that easy (among many other things). Additionally, we have used Spring MVC controllers for file upload and download, and to serve up resources from the classpath. I also believe it is very useful to avoid having your

Re: GWT and Spring - with Spring Web MVC or without it?

2010-06-10 Thread Brian Reilly
I've had good luck with the second (non-invasive) approach. A coworker of mine implemented the first (using Spring MVC) approach and it did work for the most part. However, we aren't otherwise using Spring MVC and don't have any broad expertise in it, so I was initially confused when looking at it.

GWT and Spring - with Spring Web MVC or without it?

2010-06-08 Thread ezamur
Hi all... I am new to GWT - had some contact with it earlier but not enough to say I am confident with it. My task is to investigate this technology and pair it with Spring framework. There are a lot of tutorials explaining how this can be done, but what is bothering me is I can't decide which ap

Re: GWT and Spring

2010-03-27 Thread olivier nouguier
http://code.google.com/p/orcades-gwt-spring/wiki/orcadesGWTSpringHandler <http://code.google.com/p/orcades-gwt-spring/wiki/orcadesGWTSpringHandler>I think this solution i rather simple. HIH On Sat, Mar 27, 2010 at 2:26 PM, Marley wrote: > Does anyone know of an up to date guide on how to inte

GWT and Spring

2010-03-27 Thread Marley
Does anyone know of an up to date guide on how to integrate GWT and Spring IOC? When i google it i see a lot of out of date material. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to googl

GWT and Spring Security in Eclipse IDE

2010-03-05 Thread Marley
I am using Spring Security with my GWT application and have it working. however, to get it working in the Eclipse IDE i have to include the gwt.codeserver in the url of my "default-target-url" as in While this works in development i do not want this in

Re: GWT and Spring

2009-08-25 Thread Dave
Very nice, thank you! On Aug 24, 11:43 am, Alec wrote: > On my website,http://minetats.com, I have another example on how one > could use GWT and Spring together - a menu-driven web application. I > use commands on both client and server sides. On the server, I use > ServiceLocato

GWT and Spring

2009-08-24 Thread Alec
On my website, http://minetats.com , I have another example on how one could use GWT and Spring together - a menu-driven web application. I use commands on both client and server sides. On the server, I use ServiceLocatorFactoryBean as well as Spring Security (with a GWT- driven login page

Re: GWT and spring framework

2009-07-27 Thread Master
Hi thaihuynh, Thanks for your replly. However i am looking for a sample code and hello world applicatoin that explains the GWT and integration with Spring MVC. Also how to embed GWT controls in my jsp file. Can you provide some more sample code and explanatory document. Regards Master On Jul 27

Re: GWT and spring framework

2009-07-26 Thread thai huynh
Hi Master, I think it is useful for you by link: http://code.google.com/p/tocollege-net/ regards, thaihuynh. On Sun, Jul 26, 2009 at 9:55 PM, Master wrote: > > Hi, > > I am developing an application where i need to integrate GWT with > Springs framework. I need to integrate GWT components in

GWT and spring framework

2009-07-26 Thread Master
Hi, I am developing an application where i need to integrate GWT with Springs framework. I need to integrate GWT components in JSP pages. Can anyone please help me out and provide some sample code to achieve this. Thanks in Advance. --~--~-~--~~~---~--~~ You rece

Re: GWT and Spring annotation

2009-05-05 Thread gpike
Can you provide more information? Are you including one project in the other by including a jar etc..? What annotations are you using? (@Component, @Service etc..) Regards Gordon On May 2, 11:06 am, greg wrote: > Hi, > > I have a problem with GWT and Spring integration. On Eclipse,

Announce: Simple GWT and Spring integration

2009-05-05 Thread gpike
: http://gwtrpc-spring.googlecode.com/files/GwtRpcSpringExample.zip And a tutorial at: http://devbright.com/2009/05/gwt-and-spring-introducing-gwtrpc-spring-project/ Enjoy, Gordon http://devbright.com --~--~-~--~~~---~--~~ You received this message because you are

GWT and Spring annotation

2009-05-02 Thread greg
Hi, I have a problem with GWT and Spring integration. On Eclipse, I have 2 projects : GWT project (presentation) and Spring project (service). I am calling the spring context from a GWT remote service (WebApplicationContext). If I declare spring beans in a spring XML, I see them no problem. but

Re: GWT and spring - looking for references.

2008-11-10 Thread George Georgovassilis
Hello Allen Following up on Kersten's post, a few words about the SL [1]. The main aim was to create a seamless, non-invasive integration of the RPC protocol and services. From our POV, a service is a business object that should not import or otherwise depend on RPC or other APIs, since a service

Re: GWT and spring - looking for references.

2008-11-10 Thread olivier nouguier
Hi, My Humble experience on the subject. It's quite easy to dispatch GWT RPC to Spring Managed Bean (SMB). There are 2 main strategies: 1) consider the SMB as a technical wrapper to a business service and then let SMB depend (implementing) on RemoteService. ++ No configuration ++ No naming

Re: GWT and spring - looking for references.

2008-11-08 Thread karschdn
http://gwt-widget.sourceforge.net/?q=node/51 --~--~-~--~~~---~--~~ 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 th

Re: GWT and spring - looking for references.

2008-11-07 Thread David Durham, Jr.
On Fri, Nov 7, 2008 at 12:29 PM, Allen Firstenberg <[EMAIL PROTECTED]> wrote: > > I've gone through the documentation, and while I see a lot of "here is > how you can do it with spring", most seem to be referencing hacks and > work-arounds that were necessary in 1.3. In 1.4, there was supposed >

GWT and spring - looking for references.

2008-11-07 Thread Allen Firstenberg
I've gone through the documentation, and while I see a lot of "here is how you can do it with spring", most seem to be referencing hacks and work-arounds that were necessary in 1.3. In 1.4, there was supposed to be changes in the GWT framework to make spring integration easier, and demonstration