RequestBuilder

2008-10-11 Thread Max
Hi, let's say my client has a texbox, and the users can type something in and then I want to save it on the sever. It can either be saved as an xml file, html or txt. I think I need to use RequestBuilder.post. Can anyone show me a simple demo that will take the data from the client and

Re: MenuBar not opening

2008-10-11 Thread RamI
Well I tried in a new application and it works. So I worked on my appli and saw that I changed stringAttribute key=org.eclipse.jdt.launching.PROGRAM_ARGUMENTS value=-out www com.op.Portail/Portail.html/ to stringAttribute key=org.eclipse.jdt.launching.PROGRAM_ARGUMENTS value=-out www

Re: Ant tasks ZipException

2008-10-11 Thread Isaac Truett
It appears that you are putting individual files in your classpath instead of directories. Ant tries to open each of those files expecting them to be zip files. Change your classpath so that it points to the root of your source and class file trees, not each file in those trees. The only

Re: Deferred binding result type gone after refresh in hosted mode

2008-10-11 Thread Ivo
If the problem really is rooted in your generator, we probably need to see your generator to help you I don't think the problem is in the generator code itself, as the wrapper classes it generates are available after initially launching the hosted mode browser and the problems only occurs

trouble with xml

2008-10-11 Thread Minh Ngoc Le
Hello every body, I'm writing a editor which convert, render and edit an XML document. I have trouble when trying to compare 2 nodes' parents, the result is always false! Please try this code: Document document = XMLParser.createDocument(); Element parent =

Re: Conversion Object to List?

2008-10-11 Thread Shi
Hi! Thank you for having responded! I'm using GWT 1.5 I felt like you wrote me a worning but it appears that triggers the onFailure: [WARN] StandardContext[]Exception while dispatching incoming RPC call com.google.gwt.user.client.rpc.SerializationException:

Re: Conversion Object to List?

2008-10-11 Thread Isaac Truett
Caused by: com.google.gwt.user.client.rpc.SerializationException: Type 'gwt.client.to.ProgrammerTO' was not included in the set of types which can be serialized by this SerializationPolicy or its Class object could not be loaded. For security purposes, this type will not be serialized. 1.

Re: Conversion Object to List?

2008-10-11 Thread Shi
So... 1. Does ProgrammerTO meet the criteria for GWT serialization? If you're not sure, post the class definition and we can figure it out. I'm not sure of this, the class gwt.client.to.ProgrammerTO is: public class ProgrammatoreTO { private long id; private String name;

Re: Conversion Object to List?

2008-10-11 Thread Isaac Truett
Your ProgrammerTO needs to implement the Serializable interface and you need to compile it along with your service impl so that the server can use it. On Sat, Oct 11, 2008 at 12:48 PM, Shi [EMAIL PROTECTED] wrote: So... 1. Does ProgrammerTO meet the criteria for GWT serialization? If

Re: Conversion Object to List?

2008-10-11 Thread Shi
Oh! Thank you very much! It work!! On Oct 11, 7:04 pm, Isaac Truett [EMAIL PROTECTED] wrote: Your ProgrammerTO needs to implement the Serializable interface and you need to compile it along with your service impl so that the server can use it. On Sat, Oct 11, 2008 at 12:48 PM, Shi [EMAIL

Re: MenuBar not opening

2008-10-11 Thread RamI
Solution found ! My authentication panel is a custom DialogBox. It seems that when a DialogBox is open, what is behind is deactivated, so I can't click. The problem was that when I clicked on the OK button, I just made setVisible(false) on my DialogBox. So I used removeFromParent() instead,

Re: Servlet Problem

2008-10-11 Thread Lukiep
I've changed the version in xml file, but doesn't work. Thanks, Luca On 11 Ott, 02:25, Lukiep [EMAIL PROTECTED] wrote: Sorry, I'm newbie. How can I see the servlet version and change to 2.4? Thx, Luca On 10 Ott, 14:31, olivier nouguier [EMAIL PROTECTED] wrote: Hi Luca,  First of

Animation Framework

2008-10-11 Thread Jacob
For anyone who wants animations, and doesn't want to have to just plug in javascript animation libraries, I've just finished an animation/ effect framework written from the ground up in GWT. Mind you, it's a framework, so it doesn't come with many animations/effects. I put in what I considered to

Russian translation guide GWT ?

2008-10-11 Thread GoCha
here is a suggestion: I would like to invite Russian translation guide GWT. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

EJB glassfish library not compatible in embedded tomcat in hosted mode

2008-10-11 Thread Mike
Hi As i want to persist my entity java bean into my glassfish app environment, i add server runtime library to my GWT project. After i just add to the classpath, my project can not debug in the hosted mode. Is there anyway to run in hosted mode with app server runtime library? Oct 12, 2008

Fwd: Module inheritance problem

2008-10-11 Thread marcelo melo
I'm going nuts with this error 'cause I can't find its source. I am trying to load a module from a jar into a GWT app, and when trying to run it I'm getting the error No source code is available for type br.com.proximati.proxxi.service.client.vo.MenuVO; did you forget to inherit a required

Re: Module inheritance problem

2008-10-11 Thread marcelo melo
I've just found something interesting... This is the output of Searching for resources within file:/home/marcelo/desenv/projetos/proxxi/lib/proxxiClient.jar Indexing zip file: /home/marcelo/desenv/projetos/proxxi/lib/proxxiClient.jar br/com/proximati/proxxi/service/ProxxiClient.gwt.xml

[gwt-contrib] Re: polishing and promoting the incubator

2008-10-11 Thread Isaac Truett
So, the compile-with-file-name issue turned out to be a little more complicated than my first assessment. I've added a GwtCompilerTask for Ant that accepts a module file path, but it also needs to know the source root. I think I could get around that by starting with the module file name and