How to generate file with Generator to custom directory

2011-01-11 Thread tito100
Hi all, I generate script with com.google.gwt.core.ext.Generator. like : public class ServiceGenerator extends Generator{ @Override public String generate(TreeLogger logger, GeneratorContext context, String typeName) throws UnableToCompleteException { JClassType classType; try { classType =

Re: Memcache problem : Cannot use as key: 'com.server.floor.par...@d65362'

2010-11-20 Thread tito100
Of course,now it works :-) . thank you -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

JDO - Exception converting b3Bva2.... to an internal key.

2010-11-19 Thread tito100
Hi all, I have problem with get class from JDO . @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Parcel implements Serializable{ @NotPersistent public static byte NUM_CELLS = 125; @NotPersistent public static byte NUM_ROWS = 125;

Memcache problem : Cannot use as key: 'com.server.floor.par...@d65362'

2010-11-15 Thread tito100
Hi All, I have class Parcel : @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Parcel implements Serializable{ @NotPersistent public static byte NUM_CELLS = 125; @NotPersistent public static byte NUM_ROWS = 125; @PrimaryKey

Re: use class from diferent module

2010-11-12 Thread tito100
Thanks, I have it. problem is in path source path=game.user/ corectly is source path=com.game.user/ -- 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-tool...@googlegroups.com. To unsubscribe

use class from diferent module

2010-11-09 Thread tito100
Hi All. I have in project 2 custom module. home and game. project structure : com.game com.game.user com.game.user.UserService.java com.home com.home.Home.java com.Game.gwt.xml com.Home.gwt.xml when I wont use interface UserService in home module, console write error :... did you forget to

How to call AsyncCallback to diferent module

2010-11-08 Thread tito100
Hi. I have project two modules : com.game com.home I have in com.home.Home.java callings like this package com.home; import com.game.user.UserService; import com.game.user.UserServiceAsync; . UserServiceAsync userService = GWT.create(UserService.class);

Re: How to call AsyncCallback to diferent module

2010-11-08 Thread tito100
Im do it. : !-- Servlets -- servlet servlet-nameuserServiceImpl/servlet-name servlet-classcom.server.UserServiceImpl/servlet-class /servlet servlet-mapping servlet-nameuserServiceImpl/servlet-name url-pattern/home/user/url-pattern url-pattern/game/user/url-pattern