Re: Gwt facebook wrapper api

2013-04-25 Thread Ashwin Desikan
For login, you can do client side or server side. For client side, just Facebook js would suffice. In my project, I used client side auth, but subsequent to login I use spring social to read uaer profile etc. Leung wrote: >Login at this moment, but certainly I need the others later. > >It so

Re: Entity not persisted, using JDO,RequestFactory.

2013-04-25 Thread Aman Sharma
I am still not able to persist poll entity using Requestfactory in GWT. Please point out if there's anything wrong with following code. view.setMsg("preparing"); PollRequest pr = requestFactory.pollRequest(); UserRequest ur = requestFactory.userRequest(); final UserProxy[] oldUser=new UserProxy

Re: Entity not persisted, using JDO,RequestFactory.

2013-04-25 Thread Aman Sharma
I am able to persist this entity in a servlet with following code: PersistenceManager pm = PMF.getInstance().getPersistenceManager(); User abcd = new User(); abcd.setEmail("em...@email.com"); abcd.setName("name"); VerificationToken token1 = new VerificationToken(abcd,VerificationToken.Verifica

Theme GWT, how does it works?

2013-04-25 Thread sebastien . ribeil
Hi, My web application has serveral widgets like datePicker, dynamicDecorator... If I run my project with eclipse, widgets are ok. I want to build my project on lighthttpd, so I just copy my folder on my server. When I open website with a web broswer, it works but all my widgets have no "styl

Re: columnSortHandler on a Dynamic CellTable

2013-04-25 Thread sebastien . ribeil
Thank you very much! Le mercredi 24 avril 2013 15:54:06 UTC-4, sebastie...@isen-lille.fr a écrit : > > Hi everybody, > > I create a dynamic CellTable this way: > > for (int column = 0; column < arrListFilters.size(); column++) { >> IndexedColumn IColumn= new IndexedColumn(column); >> IColumn.setS

Re: GWT - So terribly slow that makes development hard ... very hard ... extremely hard ...

2013-04-25 Thread Michael Prentice
What version of GWT are you using? Have you done anything with your settings to improve performance of the compiler? There are a lot of documents, slides, and videos that cover this. Have you used SuperDev mode? Your post is lacking of any real content and almost looks like trolling. On Thursda

Re: GWT designer in Eclipse Juno

2013-04-25 Thread Michael Prentice
What plugins do you have installed? Install New Software -> already installed. Can you post a screenshot with the GWT items expanded? On Wednesday, April 24, 2013 11:37:22 AM UTC-4, Robert Kabwogi wrote: > > im having the same problem... > what is the solution to this problem? > -- You received

Re: Gwt facebook wrapper api

2013-04-25 Thread Leung
Login at this moment, but certainly I need the others later. It sounds that spring social is the best one. From: Ashwin Desikan To: google-web-toolkit@googlegroups.com Sent: Thursday, April 25, 2013 4:13 AM Subject: Re: Gwt facebook wrapper api No. Pretty

Re: Upload files using apache DiskFileItemFactory to GAE?

2013-04-25 Thread Jens
Dont use DiskFileItemFactory. http://commons.apache.org/proper/commons-fileupload/streaming.html (untested but thats probably your only option when using Apache FileUpload) -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubs

Upload files using apache DiskFileItemFactory to GAE?

2013-04-25 Thread membersound
Hi, on my local deployment I use apache file upload streaming like: FileItemFactory fileItemFactory = new DiskFileItemFactory(); ServletFileUpload uploadHandlr = new ServletFileUpload(fileItemFactory); List uploadItems = uploadHandlr.parseRequest(req); I don't want to save the uploaded file anyho

Re: GWT callback method whenever textbox.setText() is called

2013-04-25 Thread Jens
Use TextBox.setValue(newValue, true) instead. But keep in mind that if the old text equals the newText, no ValueChangeEvent will be fired -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop recei

GWT callback method whenever textbox.setText() is called

2013-04-25 Thread Shaik Muhammad
I am using GWT textbox. Whenever textbox.setText() method is called, i want to perform an action in some other class. ValueChangeEvent is not fired whenever setText() is called. Is there any event that will be fired or any ways to achieve this? Please help -- You received this message beca

Re: Gwt facebook wrapper api

2013-04-25 Thread Ashwin Desikan
No. Pretty straight forward. It gives the flexibility to connect with other services like twitter as well. What features are you trying ? Login/ like etc Leung wrote: >I am trying facebook4gwt. I know nothing about spring. Is it a steep learning >curve? > > > >From: Ashwin Desikan >To: goo

Re: Gwt facebook wrapper api

2013-04-25 Thread Leung
I am trying facebook4gwt. I know nothing about spring. Is it a steep learning curve? From: Ashwin Desikan To: google-web-toolkit@googlegroups.com Sent: Thursday, April 25, 2013 2:19 AM Subject: Re: Gwt facebook wrapper api Spring-social is good. I have u

Re: Gwt facebook wrapper api

2013-04-25 Thread Ashwin Desikan
Spring-social is good. I have used it and works good. What api's of Facebook are you trying to integrate ? Leung wrote: >Hi > > >Is there any facebook wrapper api for facebook to recommend? Which one is the >most convenient? > > >Thanks > >-- >You received this message because you are subscr

Emulated stack mode not resolving symbols

2013-04-25 Thread DaveC
Hi, I'm trying to get some useful stack trace from the client side but all I get is: java.lang.Throwable: Exception caught: Exception caught: For input string: "59909596809" at Unknown.jk(Unknown Source) at Unknown.gi(Unknown Source) at Unknown.Wu(Unknown Source) at Unknown.Zu(Unknown Source) .

Re: module source path hell

2013-04-25 Thread Thomas Broyer
On Wednesday, April 24, 2013 4:58:56 PM UTC+2, DP wrote: > > Thomas, > > Thanks for the reply. > > Have you used the include or exclude element within the source element? I > find that the include element doesn't work at all. > It does work well. What problem did you have exactly? -- You rec