Re: [gwt-contrib] Re: Publish nighly snapshots of GWT builds to Maven

2015-01-28 Thread Salvador Diaz
Hi Sean, Snapshots are normally deployed to sonatype's OSS repo[1], but right now there seems to be a problem with the process so they're not available at the moment. Also, if you use the maven plugin the snashots are available at codehaus plugin snapshots repo [2]. [1]

Re: [gwt-contrib] support for JSR 310 / java.time created

2015-01-23 Thread Salvador Diaz
. Otherwise, there are several contributors in ##gwt on irc.freenode.net who would be able to help with this process. On Mon Jan 19 2015 at 4:44:01 AM Salvador Diaz diaz.s...@gmail.com javascript: wrote: For those looking for the code, I found it was moved to an independent project, which I'm

Re: [gwt-contrib] support for JSR 310 / java.time created

2015-01-19 Thread Salvador Diaz
For those looking for the code, I found it was moved to an independent project, which I'm hoping should make it easier to integrate in the patch submission process: https://github.com/m-m-m/gwt-time I'm willing to take some time to move this forward, either working with Jörg or alone, could

Re: Ideal development platform for GWT/GAE?

2011-11-28 Thread Salvador Diaz
Hi, I was on windows when I started developing with GWT (that was when GWT was at version 1.3, so I was on XP) It was a nightmare, everything was horribly slow. I then switched to linux and haven't looked back ever since. Currently my setup is based on ubuntu 11.04 on gnome 2 (I haven't

Re: Loading inherited module 'com.google.gwt.i18n.I18N' and Unexpected error while processing XML

2011-11-28 Thread Salvador Diaz
It sure is a weird error ( java.lang.NoClassDefFoundError: com/google/gwt/core/ext/linker/PropertyProviderGenerator ) That class is located in gwt-dev.jar and from the look of your maven output, that jar is on the GWT compilation classpath so there's no reason you should get a

Re: How to access gtalk friend list in google web tookit?

2011-11-28 Thread Salvador Diaz
This is not specific to GWT but AFAIK it's the only official way to access a user's contact list: http://code.google.com/apis/contacts/docs/3.0/developers_guide.html Make sure you undesrstand OAuth 2 and the google data api's data format This might also help:

Re: Smart GWT, GWT Designer No Java Server

2011-11-28 Thread Salvador Diaz
Well, the fact that you don't want to use a java server means that you won't be able to use RPC for communicating with the server. That doesn't mean that it's impossible, but do you have any idea how you'll retrieve data from the server ? And SmartGWT doesn't recommend using GWT Designer:

Re: How to make GWT pages search engine friendly?

2011-02-25 Thread Salvador Diaz
The following link should give you a generic overview of the requirements to make a crawlable ajax application (crawlable by google that is, AFAIK no other search engine supports this) : http://code.google.com/web/ajaxcrawling/docs/getting-started.html From there, you should be able to google

Re: Design best practice

2009-05-19 Thread Salvador Diaz
No, the right way to do this is with formatters: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/i18n/client/DateTimeFormat.html Hope that helps, Salvador On 19 mai, 17:10, Magius antonio.diaz@gmail.com wrote: You can (a) call to the server and receive a string

Re: StackPanel and CSS

2009-05-19 Thread Salvador Diaz
Hi, I tried all of that, I just wish to understand the CSS model for GWT. For the record, GWT is just html manipulated by javascript so there is no such thing as a CSS model for GWT. If you know how to use css then you shouldn't have any problems styling gwt widgets. (w3schools is a good place

Re: How to replace MouserListener in GWT 1.6

2009-05-18 Thread Salvador Diaz
HasNativeEvent. If you call addHandler instead of addDomHandler, nothing happens and no events will ever be fired because the events don't get listeners added. This has already bit me a couple times. Worth filing a bug for this? On May 17, 2:03 pm, Salvador Diaz diaz.salva...@gmail.com wrote

Re: Accessing a method in a server not through RPC ?

2009-05-18 Thread Salvador Diaz
Hi, inhertiance can I call a method defined in the server class?? Well, the class is located in the server, I'm not sure how you imagine the client-side javascript would call a java method in a class that it is not aware of. The reason why I am asking / thinking like this because, I am

Re: Use GWT with existing EJBs

2009-05-18 Thread Salvador Diaz
Well, you can try a mapping framework to eliminate all the manual setting of properties between your SupplierLookup and Supplier. The code would look something like this when using dozer: code ArrayListSupplierLookup all = new ArrayList (supplier.findAll());

Re: help required

2009-05-18 Thread Salvador Diaz
How about reading the documentation? http://code.google.com/intl/fr/webtoolkit/doc/1.6/DevGuideCodingBasics.html#DevGuideClientSide The very first paragraph has the answer to your problem and instructs you to read the following part:

Re: RPC Issues - Lifespan of Data from a RPC

2009-05-17 Thread Salvador Diaz
is complete. Thanks! John On May 9, 7:44 am, Salvador Diaz diaz.salva...@gmail.com wrote: Well, the indexOutOfBoundsException can't possibly be thrown by the method add of an ArrayList (that's the type of productArrayList, isn't it?). In fact there's nothing in your snippets that'll

Re: Failed to import and run gwtrpc-spring example with Google plugin

2009-05-17 Thread Salvador Diaz
Hi, [WARN] failed com.google.gwt.dev.shell.jetty.jettylauncher$webappcontextwithrel...@dc926f {/,C:\Personal\Project\GwtRpcSpringExample\war} java.lang.UnsupportedClassVersionError: Bad version number in .class file This exception can occur when the source is built targeting a JDK that is

Re: DisclosurePanel not working properly in Firefox

2009-05-17 Thread Salvador Diaz
Can you post some code ? (Preferably to something like pastebin or snipplr) It's hard to tell what's going on without code. For what is worth, I don't think it's a DisclosurePanel bug. Cheers, Salvador On May 16, 2:47 pm, Nim chaudhary.nim...@gmail.com wrote: Hi All,             I m using

Re: History implementation and Kitchen sink example

2009-05-17 Thread Salvador Diaz
Hi imgnik, HistoryListener (the class that contained the onHistoryChanged method) is deprecated as of GWT 1.6.4, the new event system introduced the new ValueChangeHandler and its onValueChanged method, which do the same thing. Take a look at line 211 of Showcase.java, that's where you'll find

Re: how to make gwt eclipse plugin compiler see other projects

2009-05-17 Thread Salvador Diaz
Hi Tim, But then I can't choose the package name I want, correct? No, you're wrong, you can choose whatever package name you want, as long as you specify in your module definition which one it is. Read the following section of the developer's guide:

Re: @gwt.TypeArgs gwt 1.6 specification documentation

2009-05-17 Thread Salvador Diaz
Dear BlessedGeek, The requirements should be quite clear to any java developer (unless said developer is completely unaware of all of the post 1.4 jdk enhancements). When the documentation says: In GWT 1.5, @gwt.typeArgs annotations have been deprecated in favor of parameterized types you should

Re: Cleaning GWT project with Google plugin

2009-05-17 Thread Salvador Diaz
The myproject\war\WEB-INF\classes directory is in fact deleted by Eclipse. When you clean a project with Eclipse, it has to be recompiled, so Eclipse immediately recreates that directory and puts freshly compiled classes in it. As for the myproject\war\myproject, Eclipse doesn't know it has to

Re: How to replace MouserListener in GWT 1.6

2009-05-17 Thread Salvador Diaz
onMouseLeave: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/event/dom/client/MouseOutHandler.html onMouseEnter (I don't know which so you'll have to try them out):

Re: GWT capabilities for Dummies...

2009-05-16 Thread Salvador Diaz
Hi, 1. Yes, read the following section of the developer's guide: http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.html#DevGuideRemoteProcedureCalls 2. Here's the GWT widgets showcase: http://gwt.google.com/samples/Showcase/Showcase.html 3. See answer 1 4. Yes, there are

Re: Communication error [INFO] java.net.ConnectException: Connection refused while compiling under 1.6

2009-05-15 Thread Salvador Diaz
Hi, [ERROR] Communication error [INFO] java.net.ConnectException: Connection refused The connection was refused, so the server you're trying to communicate with is not accepting connections. You might want to check that. Without more details that's all I can guess. Hope that helps,

Re: Communication error [INFO] java.net.ConnectException: Connection refused while compiling under 1.6

2009-05-15 Thread Salvador Diaz
Check that your firewall isn't blocking java. As far as I can tell, that's the more likely reason for that kind of exception. Hope that helps, Salvador On 15 mai, 03:23, BR benjamin.ren...@gmail.com wrote: I am getting this error while compiling with 1.6.4 under MacOSX 10.5.6 Anyone knows

Re: Change font size on a DecoratedTabPanel

2009-05-15 Thread Salvador Diaz
I think you're setting the font size in the wrong css classes. This is where you should be specifying the font size for the text in the tabs: .gwt-DecoratedTabBar .tabMiddleCenter { center of the tab, where the tab text or widget resides } The other classes apply style to parts of the tab bar

Re: Rpc Issue [ Server Push ]

2009-05-15 Thread Salvador Diaz
Here, this should help you getting started: http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ Cheers, Salvador On 15 mai, 06:06, jagadesh jagadesh.manch...@gmail.com wrote: Hi guys , iam working on a mail sort of application . my requirement is i want to implement a

Re: Strange horizontal scrollbar issue

2009-05-15 Thread Salvador Diaz
What exactly is your widget structure ? You might have wrong sizes in one of your panels and that's hiding the srollbars (or something like that, can't really tell without looking at the code) Try looking at the compiled app with firebug on firefox (with the Inspect functionality), that should

Re: Get the httpparameter in the RPC

2009-05-15 Thread Salvador Diaz
The RPC stub that you're talking about, is it the RPC implementation ? Because if it is, it's just a normal servlet (see http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/server/rpc/RemoteServiceServlet.html) and as such, you have access to generic servlet methods.

Re: Initialisation

2009-05-15 Thread Salvador Diaz
Well, RPCs are as simple as it gets so I don't see how you could do something simpler. We do a first RPC in the onLoad method of our entry point to get some values from the server. In the onSuccess method of our callback we then call the initialization routines of our UI. What's the need for a

Re: how to overlay one grid over the other?

2009-05-15 Thread Salvador Diaz
Well, you could synchronize scrolling through scrollhandlers: add scrollhandler to one of your tables, and in the onScroll method, make the other table scroll to the desired position. Simple, isn't it ? Good luck, Salvador On 15 mai, 10:04, Suren nsurendi...@gmail.com wrote: Thanks Alex, I

Re: Using a servlet in GWT project

2009-05-15 Thread Salvador Diaz
Hi, I answered this yesterday in this post: http://groups.google.com/group/Google-Web-Toolkit/msg/9456d6f4a8ba0574 So here's the servlet code I use: http://code.google.com/p/hellagwt/source/browse/trunk/hellagwt/src/main/java/fr/salvadordiaz/gwt/hellagwt/server/NzbUpload.java And here's the UI

Re: Using a servlet in GWT project

2009-05-15 Thread Salvador Diaz
needs to download that file to his laptop. Thanks anyway! On May 15, 11:52 am, Salvador Diaz diaz.salva...@gmail.com wrote: Hi, I answered this yesterday in this post:http://groups.google.com/group/Google-Web-Toolkit/msg/9456d6f4a8ba0574 So here's the servlet code I use:http

Re: Question on GWT1.6

2009-05-15 Thread Salvador Diaz
There's a handy wizard in Eclipse that does this automatically. 1. Right click in the class you wish to modify. Choose Refactor Rename from the context menu 2. You should check the options 'Update textual occurrences in comments and strings' and 'Update fully-qualified named in non-java text

Re: parsing dates

2009-05-15 Thread Salvador Diaz
with dd/mm/ ... in fact postgres has /mm/dd format but this difference seems doesn't mather for postgres I really appreciate your help! On May 15, 9:28 am, Salvador Diaz diaz.salva...@gmail.com wrote: I need a Date variable (not a string) in the format 12/05/2009 for example

Re: Diffrent UI behaviour with browsers

2009-05-14 Thread Salvador Diaz
http://lmgtfy.com/?q=ie+css+hacks On 14 mai, 07:20, jagadesh jagadesh.manch...@gmail.com wrote: Hi alyzandor i am also working on the same issue . i developed a application which is working differently in firefox and ie.. the main problem araises with the css . width , height are working

Re: Reading XML on Client

2009-05-14 Thread Salvador Diaz
Hi, But would it be fast enough compared to RPC ? AFAIK, speed will wildly vary between browsers. IMHO you're better off parsing the xml server-side and returning a java object to your client. plus you get to use awesome frameworks like XStream: http://xstream.codehaus.org/ In our GWT

Re: Reading XML on Client

2009-05-14 Thread Salvador Diaz
system becasue as I know java.io is again not supported. Once read then only i can convert it into String. Anybody clues please!!! On May 14, 4:27 pm, Salvador Diaz diaz.salva...@gmail.com wrote: Hi, But would it be fast enough compared to RPC ? AFAIK, speed will wildly vary between

Re: Change GWT locale dynamically

2009-05-14 Thread Salvador Diaz
$wnd.location.href = locArray[0]+?locale=+newLocale; Doesn't that reload the whole app ? The OP specifically asked a solution that didn't reload the whole app. Cheers, Salvador On 14 mai, 14:13, Bhavik bhavik...@gmail.com wrote: Hello Friends, I too recently had the same problem as yours.

Re: help required

2009-05-14 Thread Salvador Diaz
You need to include the source files (*java), the module definitions (*.gwt.xml) and all resources in your jar. That's all there is to it. A normal java jar is just *.classes files, maybe that's why it doesn't work. Take a look at the gwt-user jar, it's a good example of a jar-packaged gwt

Re: Ajax request handler

2009-05-14 Thread Salvador Diaz
something like that already exists. Cheers, Salvador On 14 mai, 14:32, Célio ccidral@gmail.com wrote: I've already read those docs before. As far as I can see, gwt doesn't provide such mechanism. Célio On May 12, 5:14 pm, Salvador Diaz diaz.salva...@gmail.com wrote: The relevant parts

Re: reset a widget

2009-05-14 Thread Salvador Diaz
How can this be achieved? Not difficult, just keep a reference to your widget somewhere, make it implement a reset() method and have a SelectionHandler call that method when the tab is selected. Here's an example of that exact same thing:

Re: GWT 1.6 + Spring Security issue

2009-05-14 Thread Salvador Diaz
Could you share more information with us ? It'll be difficult to help without knowing your project structure, the tools you're using (eclipse ? maven ? GEP ? ant ? netbeans), and how you're launching/ debugging your project. Cheers, Salvador On 14 mai, 14:49, tim.clymer tim.cly...@gmail.com

Re: Eclipse plugin 1.0.1 what features/fixes added?

2009-05-14 Thread Salvador Diaz
http://code.google.com/eclipse/docs/release_notes.html On 14 mai, 16:56, abby misra.a...@gmail.com wrote: I see i can specify VM args for compile. Anyone knows what else was added? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: new Compiler documentation

2009-05-13 Thread Salvador Diaz
Here: http://snipplr.com/view/14949/gwt-hosted-mode-options/ You're welcome :) Salvador On 13 mai, 00:27, Jason Essington jason.essing...@gmail.com wrote: Sure, just fire up the compiler or hosted mode with an invalid option   and it'll list all of the valid ones in the console for you. It

Re: TabPanel

2009-05-13 Thread Salvador Diaz
Maybe you haven't added your tab panel to the root panel. I think getOffsetWidth and height return 0 while the widget isn't attached. There's not much you can do about that but I'd be delighted to be proven wrong. Cheers, Salvador On 13 mai, 04:57, Ewald Pankratz ewald.pankr...@gmail.com

Re: RequestBuilder and REST PUT (HTTP Protocol)

2009-05-13 Thread Salvador Diaz
We use rest on the server side of our application (restlet is an excellent library). There's a GWT compatible restlet api but I haven't tried it out yet: http://wiki.restlet.org/docs_1.1/13-restlet/144-restlet.html Hope that helps, Salvador On 13 mai, 02:30, David Whitehurst

Re: required help

2009-05-13 Thread Salvador Diaz
You can do it when the textbox loses focus or when the user has finished typing. The first is the simpler IMHO: textBox.addBlurHandler(new BlurHandler(){ public void onBlur(BlurEvent event){ //the validate method should display/hide validation messages validate(); } }); The second

Re: Share Source Files Between Modules (GWT 1.6)

2009-05-13 Thread Salvador Diaz
You need to define a GWT module for your proj2. That's what the error is about: [ERROR] Unable to find 'pkg2/module_name/Module_name.gwt.xml' make sure the module definition for your project 2 and the source files are in the classpath for proj1 and it all should be fine. I also recommend

Re: RequestBuilder and REST PUT (HTTP Protocol)

2009-05-13 Thread Salvador Diaz
Just... beware. This makes you INCOMPATIBLE WITH THE FUTURE. Should a bug fix or breaking change get released, and you've got super-source everywhere, you're gonna be super-sad. So what's the point in recommending people to copy-paste whole classes ? None, so you really shouldn't be giving

Re: GWT Validation Library

2009-05-13 Thread Salvador Diaz
eu.maydu.gwt.validation.ValidationLibrary On 13 mai, 16:53, ytbryan ytbr...@gmail.com wrote: hi all, I refer to this gwt validation library.http://gwt-vl.maydu.eu/ ValidationShowcase.html does anybody know what is the name of the inherited module? thank yoU!

Re: GWT 1.6 - How do I change the default war directory name

2009-05-12 Thread Salvador Diaz
Hi, I will need to do migrate to 1.6 sometime, and I just don't like the war-WEB-INF directory imposition and mixing source-control files with generated files. I wrote a tutorial explaining how to use maven and the m2eclipse plugin to overcome this exact problem. You might want to take a

Re: Exception Handling

2009-05-12 Thread Salvador Diaz
And don't forget the default no-args constructor in your serializable classes, it's needed for GWT serialization. Cheers, Salvador On May 12, 8:30 am, Paul Grenyer paul.gren...@gmail.com wrote: IIRC GWT doesn't like serializing Object. You need to use something more specific. Sent from my

Re: Ajax request handler

2009-05-12 Thread Salvador Diaz
The relevant parts of the documentation are here: http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.html http://code.google.com/webtoolkit/tutorials/1.6/RPC.html Hope that helps, Salvador On May 12, 3:56 pm, Célio ccidral@gmail.com wrote: Does GWT have a mechanism to

Re: IncompatibleClassChangeError when launching hosted mode (GWT 1.6 M2)

2009-05-12 Thread Salvador Diaz
Hi Josué, I recommend you learn more about dependecy management with maven as the problem your facing is easily solvable once you've understood how it works. Anyway, the solution to your problem is excluding the conflicting jetty dependency in your pom. Replace your selenium import with the

Re: GWT + APIs and no internet connectivity

2009-05-12 Thread Salvador Diaz
Hi, The Google Visualization APIs create images or flash files on google's servers so there's no way to use them without internet access. There are however other equivalent visualization apis that you can install on your local servers to get similar functionality. Cheers, Salvador On May 12,

Re: GWT Server push

2009-05-12 Thread Salvador Diaz
http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ Hope that helps, Salvador On May 12, 1:03 pm, zimzalabim oyst@online.no wrote: Hi everyone! I am totally new to GWT and have created a simple client/server app that does nothing but sends a string from client to

Re: RPC problem after deploying on server

2009-05-12 Thread Salvador Diaz
Hi, It definitively looks like a server configuration error: You don't have permission to access /Test/war/test/gwt/ Make sure the permissions are correctly setup in the filesystem of your server. Hope that helps, Salvador On May 12, 10:32 pm, Jim jim.p...@gmail.com wrote: Can you post

Re: Chrome Safari Compatibility

2009-05-12 Thread Salvador Diaz
http://code.google.com/webtoolkit/doc/1.6/FAQ_GettingStarted.html#Browsers_and_Servers It should be noted however that this doesn't mean that GWT is not preferred to be deployed on Chrome or Safari just that there will probably be some layout differences. There are almost always workarounds for

Re: TabPanel border -- how do I make it invisible?

2009-05-12 Thread Salvador Diaz
hi, Have a look at the developer's guide: http://code.google.com/webtoolkit/doc/1.6/DevGuideUserInterface.html#DevGuideStyleSheets And the to the javadoc for the tabpanel and tabBar: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/TabPanel.html

Re: configure hosted jetty

2009-05-11 Thread Salvador Diaz
see no apparent errors, even with a log level of DEBUG. Well, if DEBUG level fails to report something meaningful, there's still SPAM and ALL ;) I don't know what the problem could be though Good luck Salvador On May 10, 7:38 pm, JtheG jwilsonspri...@gmail.com wrote: I've added the

Re: Return Problem

2009-05-11 Thread Salvador Diaz
Any other way around? Set lazy=false to all the fields of your persistent objects. Not very practical to say the least... Cheers, Salvador On May 11, 5:45 am, Rohit Vadera rohitvad...@gmail.com wrote: Any other way around? On May 8, 8:36 pm, Jim jim.p...@gmail.com wrote: You

Re: GWT 1.6 hosted mode quits immediately on mac osx using the -war parameter

2009-05-11 Thread Salvador Diaz
Well, you shuld check that your war argument is correct: maybe the folder isn't where it should be, remember that this argument is relative to the working directory of your launcher. I don't have any problems setting the war parameter on OS X. Take a look at this post (I set the war parameter to

Re: GWT and Google Crawler

2009-05-11 Thread Salvador Diaz
No, a GWT application is not a normal html site if it's all GWT. Robots won't be able to index the contents of your GWT site unless you implement some tricks. Here are some interesting links related to your question: http://blogoscoped.com/forum/79155.html

Re: Sending email from Server Side

2009-05-11 Thread Salvador Diaz
I think you need to learn a bit more about how email works before trying to do that. For the record, gmail.com is an http server not a smtp one. If you don't want to bother learning about email protocols, I suggest you try smtp.gmail.com instead of 209.85.171.83 Cheers, Salvador On May 11,

[gwt-contrib] Re: Label ellipsis support!

2009-05-11 Thread Salvador Diaz
Hi, Thanks for your contribution. I suggest you to read the contributors guide though: http://code.google.com/webtoolkit/makinggwtbetter.html#contributingcode Cheers, Salvador On May 10, 10:01 am, LooneyLynn looneyl...@gmx.biz wrote: For my own project I found it rather frustrating that there

Re: Changing CSS for TabPanel

2009-05-10 Thread Salvador Diaz
For a thourough example of TabPanel styling (including IE6 specific hacks), take a look at the Showcase examples: http://gwt.google.com/samples/Showcase/Showcase.html#CwTabPanel Hope that helps, Salvador On May 9, 10:47 pm, mrfreeze81 mrfreez...@gmail.com wrote: GWT has its own CSS for the

Re: General question about menus and enabling/disabling items

2009-05-10 Thread Salvador Diaz
Looking at the javadoc and the source code, I don't think there's a way to tell when a menu is being opened. I'd suggest you put the conditions in your menu item command and style the menu item to show whether it's enabled or not (you'll have to keep references to your menu items somewhere to be

Re: Intergrating other GWT projects in eclipse

2009-05-09 Thread Salvador Diaz
You need the source files for your widgets in the classpath of the project that wishes to use them. A normal jar usually contains only compiled classes so that might be your problem. Take a look at the packaged jars for the gwt-incubator project, that'll give you an example of gwt widgets

Re: RPC Issues - Lifespan of Data from a RPC

2009-05-09 Thread Salvador Diaz
Well, the indexOutOfBoundsException can't possibly be thrown by the method add of an ArrayList (that's the type of productArrayList, isn't it?). In fact there's nothing in your snippets that'll throw that exception. Did you debug the method call on the server side ? Somewhere in your Eclipse or

Re: Calling RPC Service inside another module

2009-05-09 Thread Salvador Diaz
any idea why I am getting this warning and what can be done to remove the same. Normally there's a link to a more detailed description of that warning in the hosted mode console. Here's the detailed message:

Re: Hosted browser possibly not being able to reach visualization api...

2009-05-09 Thread Salvador Diaz
Have you tried whitelisting the url of the script ? To do this use the option -whitelist http://www.google.com/jsapi; when launching the hosted mode. Hope that helps, Salvador PS: if it is indeed a problem with the hosted mode loading the script, you should have a warning in the hosted mode

Re: Issue with deploying my GWT app

2009-05-09 Thread Salvador Diaz
The error you're getting is pretty self-explanatory: javax.servlet.ServletException: Class `com.example.server.GreetingServiceImpl' was not found in classpath. Classes normally belong in /ExGWT/WEB-INF/classes. at com.caucho.server.http.Application.instantiateServlet Is the file

Re: How do I get gwt-user javadoc with GWT 1.6 Eclipse plugin?

2009-05-07 Thread Salvador Diaz
http://www.velocityreviews.com/forums/showpost.php?p=2949642postcount=2 Or type attach javadoc eclipse in google and profit Hope that helps, Salvador On May 6, 11:07 pm, Allen Holub allen.ho...@gmail.com wrote: I've been trying the new 1.6 Eclipse plugin, but when I hit shift-F2 on a GWT

Re: How to load the Application again along with destroying the thread on cancel button press event?

2009-05-07 Thread Salvador Diaz
Your backend are just servlets in a servlet container (tomcat, jetty, etc) and I don't know if a servlet can stop its container (if it can, it looks like a security risk). Anyway, why do you need to stop the backend ? Cheers, Salvador On May 7, 4:33 am, mishal talk2mis...@gmail.com wrote: Hi

Re: Browser Redirection Error

2009-05-07 Thread Salvador Diaz
What are you getting in the SubmitCompleteHandler ? I'm guessing you have to redirect manually with the SubmitCompleteEvent you received (just guessing, I've never tried uploading something to youtube) Hope that helps, Salvador On May 7, 3:14 pm, rudolf michael roud...@gmail.com wrote: Ok, it

Re: How can i get the offline GWT guide?

2009-05-07 Thread Salvador Diaz
I think he's talking about the GWT Developer Documentation. I don't know if they're packed for offline consumption though. On May 7, 5:11 pm, Evan Ruff evan.r...@gmail.com wrote: Are you talking about the Gears API? http://code.google.com/docreader/#p=gwt-google-apiss=gwt-google-apis... E

Re: Simple RPC Issue

2009-05-06 Thread Salvador Diaz
http://groups.google.com/group/Google-Web-Toolkit/msg/1e8c310b4002e72a On May 6, 6:47 am, Omer Shakil omer.sha...@gmail.com wrote: @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Group implements Serializable {   @PrimaryKey   @Persistent(valueStrategy =

Re: Module works fine in Firefox or Safari but doesn't load in Internet Explorer

2009-05-06 Thread Salvador Diaz
What OS are you using ? Is the hosted mode working fine ? From the scarce information you gave, it looks like a null pointer exception in your code but all I can do is guess with that much information. How can I know what's wrong in my java code? Normally that's what HostedMode debugging is

Re: Unique identifier

2009-05-06 Thread Salvador Diaz
What do you call a GWT instance ? Do you know that GWT applications are just HTML + js + servlets ? (servlets are the RPC implementations) On May 6, 12:53 pm, Joakim Sjöberg joakim.sjob...@artificial- solutions.com wrote: Hello! I am trying to build a function that stores data about each

Re: annotated timeline and menu

2009-05-06 Thread Salvador Diaz
Annotated tiimeline is a flash animation so try this: http://kb2.adobe.com/cps/155/tn_15523.html Hope that helps, Salvador On May 6, 2:10 pm, ytbryan ytbr...@gmail.com wrote: hi all, anybody has a workaround for the google visualization annotated timeline being always on top of the drop

Re: InitialContext not supported!

2009-05-06 Thread Salvador Diaz
Remove the App Engine support from your project. Cheers, Salvador On May 6, 2:35 pm, zb zarkobodro...@gmail.com wrote: Recently, I have change my gwt working environment from Cypal to Google Plugin. Everything seems fine except compile error: 'javax.naming.InitialContext is not supported by

Re: Calling a different HTML page

2009-05-06 Thread Salvador Diaz
Google Web Toolkit 1.6.4 HostedMode [-noserver] [-port port-number | auto] [-whitelist whitelist-string] [-blacklist blacklist-string] [-logLevel level] [- gen dir] [-style style] [-ea] [-server servletContainerLauncher] [- startupUrl url] [-war dir] [-extra dir] [-workDir dir] [-localWorkers

Re: Unique identifier

2009-05-06 Thread Salvador Diaz
to update the database with. Hope this helps to explain more what I want. // Joakim -Original Message- From: Google-Web-Toolkit@googlegroups.com [mailto:google-web-tool...@googlegroups.com] On Behalf Of Salvador Diaz Sent: Wednesday, May 06, 2009 4:16 PM To: Google Web Toolkit

Re: charts4j, a Google Chart API wrapper library ported to GWT

2009-05-05 Thread Salvador Diaz
What's the difference between your library and the GWT wrapper for the Google Visualization API ? http://code.google.com/docreader/#p=gwt-google-apiss=gwt-google-apist=Visualization Cheers, Salvador On May 5, 1:06 am, Julien julien.c.chast...@gmail.com wrote: Hello GWTers We are from the

Re: help required

2009-05-05 Thread Salvador Diaz
Why don't you let us see your classes to understand what's going on ? You could use pastebin or snipplr. Cheers, Salvador On May 5, 8:24 am, poonam poonam...@gmail.com wrote: Hello all,     I am creating the validation classes for RequiredField,TextPattern,Numeric field,etc. I have got

Re: Eclipse Plugin Compile Button Stack Overflow

2009-05-05 Thread Salvador Diaz
Instead of using the regular Google Eclipse Plugin launchers, you could use a regular Eclipse launcher and pass the arguments there. For a more detailed explanation, look at this post: http://blog.salvadordiaz.fr/2009/04/29/keep-your-source-tree-clean-gwt/ The last bullet point in the section

Re: How to cast object to Widget type?

2009-05-05 Thread Salvador Diaz
for(Widget widget:array) {         ((this.getParent().getClass().getName()) widget).someMethod (this); } You went a step too far, try stoping at getClass() ((this.getParent().getClass()) widget).someMethod I don't know if that will work though, you'll have to try for yourself.

Re: Optimisation of obfuscated mode

2009-05-05 Thread Salvador Diaz
I'm curious about this, could you compile in pretty or detailed and show us this duplicate functions ? Thanks, Salvador On May 5, 9:50 am, Elias Martenson loke...@gmail.com wrote: When looking at the generated Javascript code in obfuscated mode, I can see a lot of functions that, after

Re: GWT 1.6 and Maven directory structure

2009-05-05 Thread Salvador Diaz
. Cheers, Rahul On May 4, 4:57 pm, Salvador Diaz diaz.salva...@gmail.com wrote: Hi Raul, There have been many discussions in this group about that topic in the last days. Here is one of the more detailed:http://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa... You might

Re: System requirements

2009-05-05 Thread Salvador Diaz
http://code.google.com/webtoolkit/gettingstarted.html On May 5, 11:10 am, Sal salcob...@gmail.com wrote: Where can I find system requirements for the different versions of GWT ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: How to cast object to Widget type?

2009-05-05 Thread Salvador Diaz
. Otherwise in other instances if you were to directly couple an object with prior knowledge of the type then you could just cast it as the type straight away. Thanks for the suggestions anyway guys! On May 5, 6:02 pm, Salvador Diaz diaz.salva...@gmail.com wrote: for(Widget widget:array

Re: GWT 1.6.4 error

2009-05-05 Thread Salvador Diaz
Try adding the following to your jasperreports import in your pom: exclusions exclusion groupIdeclipse/groupId artifactIdjdtcore/artifactId /exclusion

Re: problem with TextField of gwt-ext

2009-05-05 Thread Salvador Diaz
Deprecated use of gwt.typeArgs for field attributesAllowed; Please use java.util.ArrayListjava.lang.String as the field's type Just do what the warning says: remove the gwt.typeArgs from your rpc declaration and use generic types instead. [ERROR] Unable to load module entry point class

[gwt-contrib] Re: Building GWT Apps

2009-05-05 Thread Salvador Diaz
Hi Papick, There have been several discussions related to this topic in the users' forum. I posted a tutorial in my blog about exactly what you're looking for: http://blog.salvadordiaz.fr/2009/04/29/keep-your-source-tree-clean-gwt/ Hope that helps, Salvador On May 4, 1:01 pm, P.G.Taboada

Re: Client side Garbage collect, Grid Image addClickHandler

2009-05-04 Thread Salvador Diaz
Does the old jump and associated instance of JumpClick gets correctly garbage collected ? Yes, if nobody else references this image. Look at the source code for :

Re: What is the best practice to change the Icon of a PushButton ?

2009-05-04 Thread Salvador Diaz
That's a little too low level, you should check the javadoc for PushButton and CustomButton.Face: This will give you programmatic access to the up face (the default look of your pushButton)

Re: GWT 1.6 and Maven directory structure

2009-05-04 Thread Salvador Diaz
Hi Raul, There have been many discussions in this group about that topic in the last days. Here is one of the more detailed: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/791832a0e177e87e# You might want to look at this post I wrote about the subject:

Re: Moving App to Web Server

2009-05-04 Thread Salvador Diaz
Well, you have to put the war folder in a servlet container (with the compiled javascript, the compiled classes in WEB-INF/classes and all necessary libs under WEB-INF/lib) You can also create a war file with that folder and deploy it as a war. I suggest you google war deployment or something

Re: t...@static is Undefined in Web Mode making 1st service call

2009-05-04 Thread Salvador Diaz
I recommend using the @RemoteServiceRelativePath annotation to define the relative service path of your services, I think this makes unnecessary the call to ( (ServiceDefTarget) SERVICE ).setServiceEntryPoint ( GWT.getModuleBaseURL() + /PartsService ); Hope that helps, Salvador On May 4, 3:56 

  1   2   3   >