Re: GWT issue tracker spring cleaning

2013-06-01 Thread Daniel Kurka
Hi Ed, thank you Ed for the feedback. We really like to see patches on issues that you care about. If you want to work on something we will happily review your work. As Thomas pointed out: If you want to propose a bigger patch please get in contact with gwt contributors to make sure you are

Re: GWT issue tracker spring cleaning

2013-05-31 Thread Thomas Broyer
On Thursday, May 30, 2013 8:36:23 PM UTC+2, Ed wrote: BTW: Note: some issues that are marked as Stale, I am planning to pick up and submit a patch, but that will not be soon, seen my agenda. So I hope the issue will still be considered then (or is considered dead by then when no activity

Re: GWT issue tracker spring cleaning

2013-05-30 Thread Ed
What means exactly AssumedStale? What are the plans for issued marked as AssumedStale? Idea: issue tracker glossary... -- 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

Re: GWT issue tracker spring cleaning

2013-05-30 Thread Jens
What are the plans for issued marked as AssumedStale? If the issue owner does not respond with something like hey this issue still exists in GWT 2.5 then this issue won't be tackled I guess. Daniel simply can't verify all the old, open issues, but the issue owner and everyone who stars the

Re: GWT issue tracker spring cleaning

2013-05-30 Thread Ed Bras
A, that explainss Thanks, it's difficult to understand these thoughts through a piece of paper. On Thu, May 30, 2013 at 8:30 PM, Jens jens.nehlme...@gmail.com wrote: What are the plans for issued marked as AssumedStale? If the issue owner does not respond with something like hey

Re: GWT issue tracker spring cleaning

2013-05-30 Thread Ed Bras
BTW: Note: some issues that are marked as Stale, I am planning to pick up and submit a patch, but that will not be soon, seen my agenda. So I hope the issue will still be considered then (or is considered dead by then when no activity happens in X weeks);) On Thu, May 30, 2013 at 8:33 PM, Ed

Re: Lessons learned moving from GWT to Spring MVC

2013-05-29 Thread Thomas Broyer
On Wednesday, May 29, 2013 12:14:24 AM UTC+2, Tomek Kańka wrote: How can one compare something what lives almost entirely in presentation-layer and has none strong dependencies on server-side (GWT) with framework which is focused on server-side without any real widget library? Exactly

GWT issue tracker spring cleaning

2013-05-29 Thread Daniel Kurka
Hi Everyone, As announced on Google I/O we are going to clean up the issue tracker. We will review every issue on the tracker and triage appropriately. This means also closing older stale issues. In some cases due to the immense amount of issues to triage, you might feel that a certain issue

Re: Lessons learned moving from GWT to Spring MVC

2013-05-29 Thread Ed Bras
To be honest: I don't even know another framework like GWT that match my desired setup ... Do they even exists? So it's like comparing peers and bananas... My setup (which I love).. A separate backend (Spring) and frontend (GWT), that are deployed separately in respectively Tomcat and Apache

Re: Lessons learned moving from GWT to Spring MVC

2013-05-29 Thread Juan Pablo Gardella
Thanks for sharing!! 2013/5/29 Ed Bras post2edb...@gmail.com To be honest: I don't even know another framework like GWT that match my desired setup ... Do they even exists? So it's like comparing peers and bananas... My setup (which I love).. A separate backend (Spring) and frontend (GWT

Lessons learned moving from GWT to Spring MVC

2013-05-28 Thread Ed
Just wanted to share the following webinar: Lessons learned moving from GWT to Spring MVC I was just listening to it (it's live now)... and really didn't like it... The speaker wasn't talking very nice about GWT, not very objective... all the little negatives things where made BIG... Or maybe

Re: Lessons learned moving from GWT to Spring MVC

2013-05-28 Thread Tomek Kańka
. W dniu wtorek, 28 maja 2013 16:21:22 UTC+2 użytkownik Ed napisał: Just wanted to share the following webinar: Lessons learned moving from GWT to Spring MVC I was just listening to it (it's live now)... and really didn't like it... The speaker wasn't talking very nice about GWT, not very

Re: Spring Security and Google App Engine

2013-05-24 Thread Joey Wilkinson
Found the solution from Huseyin OZVEREN: Simply replace .html files to .jsp Refer to: http://www.javablog.fr/springgwtgae-spring-security-on-google-cloud-jetty-tomcat.html#comment-165 For full description of solution -- You received this message because you are subscribed to the Google

Re: Spring Security and Google App Engine

2013-05-23 Thread Joey Wilkinson
I'm having the same issue with my GWT web application. issue still happens with the default GWT GAE sample project and basic spring security setup. http auto-config=true intercept-url pattern=/** access=ROLE_USER / /http Has anyone else experienced this kind of issue? or has found

Re: Sending Mail with GWT+Spring

2013-04-16 Thread Senyuan Wang
I guess you put this service under the client package, which will be compiled into Javascript. On Friday, April 12, 2013 11:39:49 PM UTC+8, vinu raju wrote: can anybody help me , how to send the mail using gwt and spring. i tried but getting error as : no source code is available for type

Re: Sending Mail with GWT+Spring

2013-04-16 Thread Ümit Seren
this is only possible if the java files/libraries that are in the client package can be translated/compiled to Javascript (or you provide an override via super-source). Spring beans/service most definatley can't be translated to javascript On Mon, Apr 15, 2013 at 5:13 AM, Senyuan Wang wang.seny

Re: Sending Mail with GWT+Spring

2013-04-15 Thread Ümit Seren
?! You can't have Spring Beans or resources on the client-side and you can't just simple execute a sever side function by calling it on the client side. You have to use RPC, RequestFactory or RequestBuilder to generate a request for the backend and then call the server-side function (in your

Sending Mail with GWT+Spring

2013-04-12 Thread vinu raju
can anybody help me , how to send the mail using gwt and spring. i tried but getting error as : no source code is available for type org.springframework.core.io.Resource,did you forget the inherit a required module? my code is this: *Client side:* Resource res = new ClassPathResource

Re: problem with gwt designer in myeclipse for spring 10.6

2013-03-20 Thread Sh Darambazar
me too the same problem. Please help me my ubuntu is 12.10 java when java -version java version 1.7.0_15 OpenJDK Runtime Environment (IcedTea7 2.3.7) (7u15-2.3.7-0ubuntu1~12.10.1) OpenJDK Server VM (build 23.7-b01, mixed mod and oracle java the same error. On Saturday, March 9, 2013 7:07:53 AM

problem with gwt designer in myeclipse for spring 10.6

2013-03-10 Thread Mansouri Brahim
hello when i create new gwt project i can't see the design of my apps and myeclipse give me that eror so some one can help please?? Could not open the editor: The editor class could not be instantiated. This usually indicates a missing no-arg constructor or that the editor's class name was

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

2013-03-05 Thread Borja Gonzalez
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'm pretty new to this, I'm just going to put my

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: servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-pattern/GestionUserService/*/url-pattern /servlet-mapping or servlet-mapping

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: servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-pattern/userConsole/GestionUserService/url-pattern /servlet-mapping and on my Service: @RemoteServiceRelativePath(GestionUserService) And i'm still getting

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 servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-pattern/springGwtServices/*/url-pattern /servlet-mapping and @RemoteServiceRelativePath(springGwtServices/spring bean name) So in your case probably

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

2013-03-05 Thread Borja Gonzalez
should have servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-pattern/springGwtServices/*/url-pattern /servlet-mapping and @RemoteServiceRelativePath(springGwtServices/spring bean name) So in your case probably: @RemoteServiceRelativePath

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

2013-03-05 Thread Mathieu Lorber
: Following the linked wiki page you should have servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-pattern/springGwtServices/*/url-pattern /servlet-mapping and @RemoteServiceRelativePath(springGwtServices/spring bean name) So in your case probably

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

2013-03-05 Thread Jens
implementation (@Service). In the example GreetingServiceImpl does not extend anything. It just implements the service interface. So its not a servlet. The only servlet you need in web.xml is the spring integration servlet. -- J. -- You received this message because you are subscribed

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 add

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'm pretty new

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

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 is returning null and i can't

How to test my Spring service from GWT ui using GWTTestCase?

2013-01-07 Thread Saeed Zarinfam
I have configured a GWT project using Spring MVC (for RPC calling and server side dependency injection). I have tested gwt-test-utilshttps://github.com/gwt-test-utils/gwt-test-utilslib, it was working with Spring and Spring MVC nice but my GWT ui is complicated and it could not parse my

Re: GWT cant get data from Spring REST

2012-12-19 Thread Thomas Broyer
http://en.wikipedia.org/wiki/Same_origin_policy ? On Wednesday, December 19, 2012 1:58:13 AM UTC+1, taha wrote: I wrote an Spring REST application.I tested it with curl command, it worked truly. And in another GWT Ajax applictaion i have an RequestBuilder object that it doesn't work with my

GWT cant get data from Spring REST

2012-12-18 Thread taha
I wrote an Spring REST application.I tested it with curl command, it worked truly. And in another GWT Ajax applictaion i have an RequestBuilder object that it doesn't work with my Spring Rest . after calling sendRequest method , onResponseReceived event fired but getText method returns empty

HttpSession Access in GWT Spring Application

2012-10-08 Thread Niraj Salot
Hi All, I am currently using GWT , Spring Custom JDBC in my application. I require some data to be put in Session and used everywhere in the application. So I have written one Utility class which has getSession() method and setObject() and getObject() Method(). I would like your opinion

Re: GWT HIBERNATE SPRING MYSQL Example

2012-09-25 Thread domenico cimadoro
hello I ve the same problem ,you found something of interesting? Thanks Domenico Il giorno mercoledì 27 aprile 2011 10:25:32 UTC+2, junaidp ha scritto: Hi I am looking for some example / tutorial for GWT , HIBERNATE , SPRING , MYSQL Integration I've been looking on google

Developing a simple web application using Spring and GWT. Part 5 - UiBinder

2012-09-04 Thread Alex Tretyakov
Hello everyone! I have written a post about develoing such application with usage of UiBinder. Please, welcome! http://alextretyakov.blogspot.com/2012/08/using-uibinder.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: Spring Roo, relationship status with GWT? recommended for more apps more complex than basic CRUD?

2012-09-03 Thread RomanK
in which created requests will be placed; no default value (mandatory) All GWT related roo commands can be found in chapter 13 under the following link: http://static.springsource.org/spring-roo/reference/html/command-index.html Hope that helps. 8-) Roman Am Samstag, 25. August 2012 11:16

Re: Spring and gwt (request factory)

2012-09-03 Thread Miłosz Pacholczyk
Hello, have you found a way to configure it properly? If so, would you mind posting samples for web.xml and applicationContext.xml? I have a very similiar code, but I got stuck at wiring it all. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Spring Roo, relationship status with GWT? recommended for more apps more complex than basic CRUD?

2012-08-25 Thread Thomas Broyer
On Saturday, August 25, 2012 4:23:44 AM UTC+2, GWTter wrote: Hi all, I came across Spring Roo recently and have put in a considerable amount of research as far as whether to use it for my app or not. However, I'm running into a couple of issues in my consideration. 1) GWT support

Re: Spring Roo, relationship status with GWT? recommended for more apps more complex than basic CRUD?

2012-08-25 Thread GWTter
Hi Thomas, Thanks for the suggestion, I'll definitely see if if the Spring community can shed a little more light. -seth On Saturday, August 25, 2012 10:29:53 AM UTC+2, Thomas Broyer wrote: On Saturday, August 25, 2012 4:23:44 AM UTC+2, GWTter wrote: Hi all, I came across Spring Roo

Re: Spring and gwt (request factory)

2012-08-25 Thread Alfredo Quiroga-Villamil
In addition to declaring the base package where Spring will start to search for your Beans, you have to also annotate the class with @Component. Best regards, Alfredo On Thu, Aug 23, 2012 at 5:02 PM, pierre leagault pierrelegault...@gmail.com wrote: hi i use spring and gwt (request factory

Re: Spring and gwt (request factory)

2012-08-25 Thread pierre leagault
my service class is annoted with service and my dao with repository Le jeudi 23 août 2012 23:02:38 UTC+2, pierre leagault a écrit : hi i use spring and gwt (request factory). in my applicationContext, i use context component-scan but my bean is not retrieved. i need to declare

Re: Spring and gwt (request factory)

2012-08-25 Thread Alfredo Quiroga-Villamil
use spring and gwt (request factory). in my applicationContext, i use context component-scan but my bean is not retrieved. i need to declare it manually. why component scan don't work? my web.xml context-param param-namecontextConfigLocation/param-name param-value/WEB-INF

Re: Spring and gwt (request factory)

2012-08-25 Thread pierre leagault
clazz, Long id) { ... } ... } @Service(locator = SpringServiceLocator.class, value =AccountService.class) public interface AccountRequest extends RequestContext { ... } Le jeudi 23 août 2012 23:02:38 UTC+2, pierre leagault a écrit : hi i use spring and gwt (request factory). in my

Spring and gwt (request factory)

2012-08-24 Thread pierre leagault
hi i use spring and gwt (request factory). in my applicationContext, i use context component-scan but my bean is not retrieved. i need to declare it manually. why component scan don't work? my web.xml context-param param-namecontextConfigLocation/param-name param-value/WEB

Spring Roo, relationship status with GWT? recommended for more apps more complex than basic CRUD?

2012-08-24 Thread GWTter
Hi all, I came across Spring Roo recently and have put in a considerable amount of research as far as whether to use it for my app or not. However, I'm running into a couple of issues in my consideration. 1) GWT support: Spring Roo integration with GWT (more specifically the gwt addon

GWT with Spring Webflow

2012-07-19 Thread Inko37
Hey, is it possible to use GWT and Spring Webflow? I don't know if there are any problems with the asynchronous calls. If it will work, is there any ready solution for it? Or is there any other solution to manage the webflow with GWT? best regards, Inko -- You received this message because

Re: GWT with Spring Webflow

2012-07-19 Thread Natanael Maldonado
May be this helps you: http://www.springbyexample.org/examples/simple-gwt-spring-webapp.html 2012/7/18 Inko37 inkognito133...@googlemail.com Hey, is it possible to use GWT and Spring Webflow? I don't know if there are any problems with the asynchronous calls. If it will work, is there any

Re: Applying Spring Dependency Injection(DI) to client side classes in GWT

2012-07-11 Thread Saritha
Thank you very much reply. One more doubt, with Spring DI,(from following links, i understood that, http://technophiliac.wordpress.com/2008/08/24/giving-gwt-a-spring-in-its-step/http://goog_979169948/ https://docs.google.com/document/pub?id=1USHYx9cB3B1s1zM4dlkzEZ759D3lEfavn_dDewvBkaA) I am

Re: Applying Spring Dependency Injection(DI) to client side classes in GWT

2012-07-11 Thread Saritha
Please ignore last post.. *Wanted to know... combination of Guice and Spring DI used at server side?* On Wednesday, July 11, 2012 11:52:09 AM UTC+5:30, Saritha wrote: Thank you very much reply. One more doubt, with Spring DI,(from following links, i understood that, http

Applying Spring Dependency Injection(DI) to client side classes in GWT

2012-07-10 Thread Saritha
Hi All, I am new GWT. I have a project where I am using GWT and Spring as our technologies to implement. I have done Spring integration with GWT, with the help of following links. http://technophiliac.wordpress.com/2008/08/24/giving-gwt-a-spring-in-its-step/ goog_979169948 https

Re: Applying Spring Dependency Injection(DI) to client side classes in GWT

2012-07-10 Thread Nick Siderakis
You could use - Server: Guice - Client(GWT): Gin or - Server: Spring - Client: Gin On Tuesday, July 10, 2012 1:26:22 AM UTC-4, Saritha wrote: Hi All, I am new GWT. I have a project where I am using GWT and Spring as our technologies to implement. I have done Spring

Re: GWT Spring Security

2012-06-23 Thread Joseph Lust
/location/error-page There are other ways in Spring to cleanly map these exceptions as detailed herehttp://stackoverflow.com/questions/8742842/how-to-handle-accessdeniedexception-in-spring-security. This would work well if you're using JSON or REST. However, if you're using GWT-RPC, then I'm

Re: GWT Spring Security

2012-06-22 Thread Jordi Planadecursach
handleRequest. Nevertheless handleRequest is compulsory because is the one that bridges the HTTP GET/POST to the RPC handler. I recommend you the following article: http://blog.maxmatveev.com/2010/04/spring-managed-gwt-remote-service.html Hope it has been helpful. Jordi. On 18 Juny, 02:27, dhoffer

Re: GWT Spring Security

2012-06-22 Thread dhoffer
Jordi, Yes the link you provided was excellent, with that I have spring managed beans that are RPC services. However I'm having trouble understanding how to add Spring Security to that. Ideally I'd love to see that example expanded to show how to add users, assign users role(s) secure RPC

Re: GWT Spring Security

2012-06-17 Thread dhoffer
:18 pm, Jordi P.S. planad...@gmail.com wrote: I have a login JSP that uses the remember me feature.so I have my login under Spring Security. I have method security enabled in the RPC layer. All my RPCs extend a base class and then I used annotations on the methods to check for the permissions

Re: GWT Spring Security

2012-06-17 Thread dhoffer
://www.springframework.org/schema/security; xmlns:beans=http://www.springframework.org/schema/beans; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://www.springframework.org/schema/ beans http://www.springframework.org/schema/beans/spring-beans

Re: GWT Spring Security

2012-06-16 Thread Joseph Lust
and comment Spring Security config: Note that this is just a standard Spring Security config, but that the custom preauthoization filter is where the magic happens. That is where you'd do the lookup of your users to get entitlements and then store those in their session. These are what the Spring Method

Re: GWT Spring Security

2012-06-15 Thread Jordi P.S.
I have a login JSP that uses the remember me feature.so I have my login under Spring Security. I have method security enabled in the RPC layer. All my RPCs extend a base class and then I used annotations on the methods to check for the permissions. Here the RPC Base Servlet class: http

Re: GWT Spring Security

2012-06-14 Thread khk
On Wednesday, June 13, 2012 8:47:47 AM UTC+8, dhoffer wrote: I'd like to get feedback on the best way to secure GWT apps with Spring Security. I read several existing blogs about this online but they are all (that I have found) quite old at this point. Specifically what's the best way

Re: GWT Spring Security

2012-06-14 Thread dhoffer
Joseph, How do you handle Spring's 'remember me', session management and auto login/logout? I'm curious how you setup your use of Spring. Could you post your configuration? I assume you don't use Spring's auto- config, etc? Thanks, -Dave On Jun 13, 3:56 pm, Joseph Lust lifeofl...@gmail.com

Re: GWT Spring Security

2012-06-13 Thread Joseph Lust
are enabled based on the entitlements found in (2) 4. When RPC's are done, Spring Method level security used to confirm that the user has the proper entitlement to run that method Basically the nice part is just using the annotations to secure remote methods and the concomitant alteration

Re: GWT Spring Security

2012-06-13 Thread Juan Pablo Gardella
UserEntitlement { VIEW_HOME, VIEW_ITEM, ADD_ITEM, DELETE_ITEM }* 2. On user login, *UserEntitlement[] *fetch sent from backend to client 3. Restricted UI elements are enabled based on the entitlements found in (2) 4. When RPC's are done, Spring Method level security used

Re: GWT Spring Security

2012-06-13 Thread Joseph Lust
Jaun, Our application is nearly 100% custom components. We did not use many of the default GWT widgets. We also used UiBinder for everything and thus most screens are a bundle of widgets stitched together with UiBinder. If there was a custom panel/button/widget, it would have a

Re: GWT Spring Security

2012-06-13 Thread Juan Pablo Gardella
Thanks Joseph for sharing your experiences on this!! You are really helpful at the group Juan 2012/6/13 Joseph Lust lifeofl...@gmail.com Jaun, Our application is nearly 100% custom components. We did not use many of the default GWT widgets. We also used UiBinder for everything and thus most

GWT Spring Security

2012-06-12 Thread dhoffer
I'd like to get feedback on the best way to secure GWT apps with Spring Security. I read several existing blogs about this online but they are all (that I have found) quite old at this point. Specifically what's the best way with GWT 2.4 and Spring Security 3.1? Or is there a better way other

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-19 Thread Thomas Broyer
On Friday, May 18, 2012 11:37:20 PM UTC+2, JoseM wrote: So I am assuming I would do this on the client project right? I can't sem to get it to work though. No matter what settings I put for the war I get this message: [WARN] No startup URLs supplied and no plausible ones found -- use

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-19 Thread JoseM
I didn't realize I had to still run the jetty server seperately before. I got it to work now running the jetty server using mvn jetty:start -Ddev and I just needed to right-click Run As Web Application (running on an external server) and supply the url (something like

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-19 Thread Joseph Lust
Jose, I see that you're using the *mvn* commandline param. Why not use a built in Eclipse *run configuration*? While I have not used your exact configuration, I think you should be able to achieve it with something like the below using the

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-18 Thread JoseM
Can you expand a bit more on how to get GWT DevMode to work by launching from within Eclipse? We are used to creating a GWT Application run configuration in eclipse but right now I am not sure how to get to work so that the HTML/webapp resources are available to the run configuration. On

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-18 Thread Thomas Broyer
On Friday, May 18, 2012 5:32:59 PM UTC+2, JoseM wrote: Can you expand a bit more on how to get GWT DevMode to work by launching from within Eclipse? We are used to creating a GWT Application run configuration in eclipse but right now I am not sure how to get to work so that the

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-18 Thread JoseM
So I am assuming I would do this on the client project right? I can't sem to get it to work though. No matter what settings I put for the war I get this message: [WARN] No startup URLs supplied and no plausible ones found -- use -startupUrl And when I go to the root of the jetty server the

Re: help : gwt + spring

2012-05-16 Thread Akram Moncer
https://www.boxbe.com/anno?tc=11357528185_1911393528 | Approve domain https://www.boxbe.com/anno?tc=11357528185_1911393528dom This problem is enttiy class. You shied make different story for get. And copy spring dto to it . 2012/05/16 1:18 Akram Moncer akram.mon...@gmail.com: hello everybody

help : gwt + spring

2012-05-15 Thread Akram Moncer
hello everybody; i'm creating a web application with gwt +jpa(for model) and spring framework and i also use the GXT lib; i have class named personneDTO it extend from BaseModel the probleme that when i run my application i have this error : ATTENTION: Nested

Re: help : gwt + spring

2012-05-15 Thread K vfdsdfbsdb
This problem is enttiy class. You shied make different story for get. And copy spring dto to it . 2012/05/16 1:18 Akram Moncer akram.mon...@gmail.com: hello everybody; i'm creating a web application with gwt +jpa(for model) and spring framework and i also use the GXT lib; i have class named

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-11 Thread Ümit Seren
I have a question to the people who are using multi-module maven projects instead of one (I am currently developing a Spring/GWT/RequestFactory project as one big maven projects). I do much of the debugging in eclipse by starting a WTP jetty instance and then starting the GWT development mode

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-11 Thread Thomas Broyer
On Friday, May 11, 2012 9:09:17 AM UTC+2, Ümit Seren wrote: I have a question to the people who are using multi-module maven projects instead of one (I am currently developing a Spring/GWT/RequestFactory project as one big maven projects). I do much of the debugging in eclipse

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-11 Thread Ümit Seren
, Thomas Broyer wrote: On Friday, May 11, 2012 9:09:17 AM UTC+2, Ümit Seren wrote: I have a question to the people who are using multi-module maven projects instead of one (I am currently developing a Spring/GWT/RequestFactory project as one big maven projects). I do much of the debugging

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-11 Thread Thomas Broyer
On Friday, May 11, 2012 4:12:16 PM UTC+2, Ümit Seren wrote: Thanks for the feedback Thomas, I was actually following the gwt_with_maven docs at the google developers page (tough only creating one maven war project). So I think it should be quite easy to split it up. Yes, very easy

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-10 Thread Joseph Lust
is wrapped in an async callback. public interface MarketRiskServiceAsync { void getMarketData(Date begin, Date end, AsyncCallbackMarketDTOContainer async); .. The actual service uses an annotation to tell Spring where to find it for wireup with a name matching that in the interface. @Service

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-10 Thread Christien Lomax
the methods of the above interface, but the return value is wrapped in an async callback. public interface MarketRiskServiceAsync { void getMarketData(Date begin, Date end, AsyncCallbackMarketDTOContainer async); .. The actual service uses an annotation to tell Spring where to find

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-10 Thread Thomas Broyer
On Wednesday, May 9, 2012 8:09:56 PM UTC+2, Christien Lomax wrote: Hi Thomas, First, I want to say that your examples and blogs have helped us a lot over the last year! Thanks! Secondly, thanks for the super quick reply! I added the sources generation to the POMs for the Shared,

GWT, Spring when projects are split apart (client, services, persistence)

2012-05-09 Thread Christien Lomax
Hi All, We could use a bit of insight and help if anyone has a moment. We currently have a project that is quite huge (thousands of classes) including the GWT client, a spring service layer and hibernate persistence layer. We are trying to split up the project into more manageable pieces

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-09 Thread Jens
How do you compile your app? Maven? Ant? In Eclipse using GPE? You have to make sure that the GWT compiler's classpath contains all needed source files (= add src/main/java of all projects that need to be compiled by GWT to the compilers classpath). -- J. -- You received this message because

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-09 Thread Thomas Broyer
On Wednesday, May 9, 2012 3:15:29 PM UTC+2, Christien Lomax wrote: Hi All, We could use a bit of insight and help if anyone has a moment. We currently have a project that is quite huge (thousands of classes) including the GWT client, a spring service layer and hibernate persistence

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-09 Thread Christien Lomax
: On Wednesday, May 9, 2012 3:15:29 PM UTC+2, Christien Lomax wrote: Hi All, We could use a bit of insight and help if anyone has a moment. We currently have a project that is quite huge (thousands of classes) including the GWT client, a spring service layer and hibernate persistence

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-09 Thread Christien Lomax
Eclipse, using m2e. All our projects are maven based. Source is specified as Thomas has outlined (source-jars added to POM). /c On Wednesday, 9 May 2012 10:46:37 UTC-3, Jens wrote: How do you compile your app? Maven? Ant? In Eclipse using GPE? You have to make sure that the GWT compiler's

Re: GWT - Spring Security

2012-04-20 Thread Saulo
HI All. I'm trying to config roles and permissions into a GWT app. This app has spring too, and I had thinking in Spring-security but I have problems with the integration, do you have any easy tutorial or example to do it? On Thursday, November 24, 2011 6:11:00 PM UTC+1, Alfredo Quiroga

Re: Entity Locator and Spring

2012-04-01 Thread 叶雨飞
(getThreadLocalServletContext(; } } On Sun, Apr 1, 2012 at 6:42 PM, Yucong Sun (叶雨飞) sunyuc...@gmail.comwrote: Hi, I've been trying to get RequstFactoryServelt to construct my entity locator from spring, because my entity locator needs to implement this findbyId() function which requires DB

RequestFactory, ServiceLocator and Spring

2012-03-14 Thread kayser
Hi, I followed an example in this list on how to use a spring bean via ServiceLocator. Everything works great using mvn gwt:debug but when I try to package everything using mvn package I get compiler errors. Here is my code: import javax.servlet.http.HttpServletRequest; import

Re: RequestFactory, ServiceLocator and Spring

2012-03-14 Thread Kay Roesler
never mind... I moved my locator class from client package to server and therethere, it worked. sry for spam On Wed, Mar 14, 2012 at 11:16 AM, kayser kayrox...@gmail.com wrote: Hi, I followed an example in this list on how to use a spring bean via ServiceLocator. Everything works great

Re: GWT Spring

2012-03-13 Thread Alex Dobjanschi
The framework is very elementary, and lacks one of spring's most important feature: ioc container. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT Spring

2012-03-13 Thread Joseph Lust
We've been using Spring4GWT to great effect in our enterprise application for the last year. While it may not include every aspect of Spring, it makes RPC's trivially easy. To review: - Make a Spring Bean as you normally would for a backend service, implementing your service interface

Re: GWT Spring

2012-03-12 Thread dodo dard
i undersand what u mean but i'm a beginner in dévloppment so can u give me a tutorial or a video that can show me how can i exactelly do to integrate spring and GWT , thinks. 2012/3/9, Filippo De Luca filosgang...@gmail.com: Usually I implement the Service interface in a Spring bean

Re: GWT Spring

2012-03-09 Thread Filippo De Luca
Usually I implement the Service interface in a Spring bean, and I write the RemoteServlet implementation delegating all method to the Spring bean. Because the servlet is outside Spring transactional demarcation. You an also use threadlocal to pass request and response to the Spring bean

Re: GWT Spring

2012-03-09 Thread Akram Moncer
@Filippo De Luca i undersand what u mean but i'm a beginner in dévloppment so can u give me a tutorial or a video that can show me how can i exactelly do to integrate spring and GWT , thinks. 2012/3/9, Filippo De Luca filosgang...@gmail.com: Usually I implement the Service interface in a Spring

GWT Spring

2012-03-08 Thread Akram Moncer
hello everybody; can some one help me and give me how can i create webapp with spring framwork on back-end and GWT on front-end ? -- Akram MONCER Personne -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: GWT Spring

2012-03-08 Thread Xybrek
On 3/8/2012 11:33 PM, Akram Moncer wrote: hello everybody; can some one help me and give me how can i create webapp with spring framwork on back-end and GWT on front-end ? -- Akram MONCER Personne -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT Spring

2012-03-08 Thread Akram Moncer
think you very much Le 9 mars 2012 04:33, Xybrek xyb...@gmail.com a écrit : On 3/8/2012 11:33 PM, Akram Moncer wrote: hello everybody; can some one help me and give me how can i create webapp with spring framwork on back-end and GWT on front-end ? -- Akram MONCER Personne -- You

<    1   2   3   4   5   6   7   8   9   >