Re: Two parallel asynchronous rpc calls possible?

2011-01-27 Thread joe kolba
Why not just make one call to a service and call different methods within your service object? You can put methods in your serviceImpl that are not RPC methods. On Thu, Jan 27, 2011 at 11:17 AM, ghost23 sven.bu...@googlemail.com wrote: hello, i have a service. I create an instance of it via

Re: To smart GWT or not

2011-02-11 Thread joe kolba
I had the same feelings as you, but now I am really liking smartgwt. I decided to incorporate the UIBinder with the smartgwt objects ( http://code.google.com/p/uibinding-smartgwt/) which helped to keep our code organized. On Fri, Feb 11, 2011 at 11:08 AM, Jeff Larsen larse...@gmail.com wrote:

Re: SerializationException problem, please advice!

2011-02-14 Thread joe kolba
I have ran into this problem also. First thing make sure everything is implementing IsSerializable, second make sure that you refresh your webapp folder in the web-inf so your .rpc files get refreshed. Most of the time I have to encounter a RPC exception in order to force the rpc file to be

Re: Strange Doubt, can we have more than one RPC in GWT application, web.xml?

2011-02-22 Thread joe kolba
yes On Tue, Feb 22, 2011 at 2:01 PM, amarasat amarasat...@gmail.com wrote: Hello everyone, This might be a silly doubt. But after implementing the StockWatcherApplication, i ran into a strange doubt. This is the RPC definition and its servlet mapping in web.xml !-- Servlets -- servlet

Managing session timeouts in GWT

2011-02-23 Thread joe kolba
My app is currently built around the Spring framework and Spring Security + GWT. Is there any way for me to redirect to login when a session expires or when the user makes a RPC request when the session has expired? I was thinking about creating a timer that tracks the time between RPC calls,

GWT Login Credentials Storage

2011-03-15 Thread joe kolba
I need a way to store a JSONObject that contains the users login credentials and privileges. I also need this object to be global to all of my composites. Should I use cookies, JSNI w/ Dictionary, ?. If anyone has any code to help me out I would greatly appreciate it. -- You received this

Re: math performance

2011-03-17 Thread joe kolba
Why do you have to do it on the client side? why not just do all of your processing on the server side and send the client the results. Not every client is going to have a machine that can do heavy calculations and they might actually be using IE On Thu, Mar 17, 2011 at 9:04 PM, csillag

Re: Spring

2011-03-30 Thread joe kolba
It's really not hard at all, basically start by setting up a typical spring security framework project and after that is set add the gwt project capabilities and in the applicationContext-security protect your hosted.html file. If you have any questions feel free to email me. On Wed, Mar 30,

HTML5 Offline apps future support?

2011-04-01 Thread joe kolba
Do you think GWT will eventually support offline app development by incorporating Webkit local database support? My company I work for is currently researching developing ipad/android web apps. Since we cannot run a java server efficiently on these devices we are considering going with HTML5,

Re: HTML5 Offline apps future support?

2011-04-01 Thread joe kolba
in the right direction. I was just curious if Google was considering using GWT as a android app development tool. On Fri, Apr 1, 2011 at 11:29 AM, Alan Chaney a...@mechnicality.com wrote: Hi Joe I'm nothing to do with google, but your question is interesting: On 4/1/2011 8:12 AM, joe kolba wrote

Re: HTML5 Offline apps future support?

2011-04-01 Thread joe kolba
Thomas: I didn't realize that this feature was going to be implemented in 2.3 thank you for the info! On Fri, Apr 1, 2011 at 11:36 AM, joe kolba joekolb...@gmail.com wrote: 1. What do you mean 'cannot run a java server efficiently'? Do you mean that you can't access an on-line service reliably

Re: Gears or HTML5 for offline database?

2011-04-07 Thread joe kolba
HTML5 no question, gears is gone. On Thu, Apr 7, 2011 at 2:58 PM, David E. dve1...@gmail.com wrote: We updated our GWT application to GWT 2.1 and are using primarily Firefox 4 / Chrome. Our older GWT version is still running, it uses Gears / SQLlite for offline storage. I need to bring

Re: GWT URLs with # don't work with IE7

2011-04-13 Thread joe kolba
i had the same problem, when i was testing in IE7 it would actually refresh the page when i tried to use # On Wed, Apr 13, 2011 at 1:47 PM, Jan Mostert jan.most...@gmail.com wrote: What does your index.html page look like? There's some iFrame magic that needs to be done for history to work in

Re: GWT/Android development

2011-04-21 Thread joe kolba
just test it in chrome, the android browser is just a webkit browser. On Thu, Apr 21, 2011 at 1:31 PM, Ernesto Reig erniru...@gmail.com wrote: Well, I don't know if this is the right place to post this question, but... I am doing the mobile view of a GWT application, and in order to see the

Re: get ALL active sessions

2011-05-09 Thread joe kolba
When the user logs in, insert a row into a table to keep track of all of the users logged in and their session ids. On Mon, May 9, 2011 at 5:17 AM, bruuuno pdp...@gmail.com wrote: Hello everyone, I'm creating a game for 2 players (checkers). A player logs in with username and password and a

Re: Database and GWT

2011-06-01 Thread joe kolba
We personally just use Google RPC calls and send serializable objects between the server and client. On Wed, Jun 1, 2011 at 2:14 PM, purni iyer purni.i...@gmail.com wrote: hello, Can any one suggest me which method of applying database with GWT is the best.I have few options JDO JSON

Re: Any experience with GWT and JRebel

2011-07-16 Thread joe kolba
Only server side. I love jrebel with get. You don't need to replace client side since the code server rebuilds on browser refresh On Jul 16, 2011 4:14 PM, maticpetek maticpe...@gmail.com wrote: Hello, I would like to speed up our development process and I also quick check JRebel. Does anyone

Re: Any experience with GWT and JRebel

2011-07-17 Thread joe kolba
Yes On Jul 17, 2011 12:56 AM, karthik reddy karthik.ele...@gmail.com wrote: Kind of a digression but could benefit the community. Is there a free alternative to JRebel on the server side ?? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: GWT frameworks?

2011-07-25 Thread joe kolba
depends on what you are going to be using your application for... If it's something within a company and possibly served from a local server I highly recommend smartgwt. Something that is going to get a lot of traffic and needs to be fast and responsive i would just stick with original GWT with

Re: GWT frameworks?

2011-07-25 Thread joe kolba
I would be careful when calling them frameworks. They are more collections of custom widgets. For frameworks any of them libraries can use different frameworks. On Mon, Jul 25, 2011 at 2:26 PM, gwt.user gwt.u...@yahoo.fr wrote: Like Joe said it depends. If you are looking for plug-ins free

How to pitch an idea to Google.

2011-08-08 Thread joe kolba
who works at Google reads this and wouldn't mind sending me an email with contact information I would greatly appreciate it. I need all of the help I can get in order to turn my idea into an actual product. Thank You, Joe Kolba joekolb...@gmail.com Senior Software Developer -- You received

Re: Adding GWT to Existing Web Project

2011-09-21 Thread joe kolba
It's easy, create a seperate gwt project. Once you are done developing, just compile your javascript, extract your server side class files, webapp (js), html and css. Just drop them into your existing deployment and your done. With GWT you are just cross compiling and creating client and server

Re: GWT4TiDesktop 1.0.0 is out!

2011-10-03 Thread joe kolba
I would appreciate some screen shots of the final product on the website. Also maybe release some tutorials along with your product. On Mon, Oct 3, 2011 at 2:47 PM, Alfredo Quiroga-Villamil laww...@gmail.comwrote: We are proud to announce our first release of GWT4TiDesktop. Mix match Flex,

Server side method in Transport Object

2011-12-06 Thread joe kolba
Is it possible to put a transient method that contains non gwt objects inside a transport object? I am transferring a DTO back and forth from the server to the client and would like to be able to give the object functionality to run sql statements and work with my session connection when its on

Overriding processCall to intercept RPC calls

2012-01-03 Thread joe kolba
I needed a solution to intercept RPC calls to make sure the user session hasn't expired. Here is my code: @Override public String processCall(String payload) throws SerializationException { boolean validSession = (!getThreadLocalRequest().getSession().isNew());

Re: Overriding processCall to intercept RPC calls

2012-01-03 Thread joe kolba
I am throwing IllegalArgumentException in my service interface and i still get the 500 error. On Tue, Jan 3, 2012 at 1:22 PM, Paul Stockley pstockl...@gmail.com wrote: In your service interface you have do declare each function throws your custom exception otherwise you will get that error.

Re: Overriding processCall to intercept RPC calls

2012-01-03 Thread joe kolba
return RPC.encodeResponseForFailure(null, new IllegalArgumentException(Logged out)); service interface... public interface GreetingService extends RemoteService { boolean isUserLoggedIn() throws IllegalArgumentException; } On Tue, Jan 3, 2012 at 1:25 PM, joe kolba joekolb...@gmail.com

Re: Overriding processCall to intercept RPC calls

2012-01-03 Thread joe kolba
I solved it by creating a custom exception that extended IncompatibleRemoveService exception... it seems that is the only exception that RPC can serialize for failure. On Tue, Jan 3, 2012 at 1:39 PM, Ashton Thomas ash...@acrinta.com wrote: May also be a good idea to have all your services

Re: Overriding processCall to intercept RPC calls

2012-01-03 Thread joe kolba
im sorry i meant i extended RuntimeException not IncompatibleRemoteService On Tue, Jan 3, 2012 at 1:41 PM, joe kolba joekolb...@gmail.com wrote: I solved it by creating a custom exception that extended IncompatibleRemoveService exception... it seems that is the only exception that RPC can

Re: Overriding processCall to intercept RPC calls

2012-01-03 Thread joe kolba
yeah i was thinking about doing that but im going to have to call that static method for every rpc method, which I have around 15. Thanks I will consider changing it to this. On Tue, Jan 3, 2012 at 2:00 PM, Jens jens.nehlme...@gmail.com wrote: Instead of this I would just extend