Specify different web.xml filename

2011-04-23 Thread levier
Hi, Basically my question here is: how do I tell the gwt dev mode web container (jetty at the moment) to look for another web.xml filename when dev mode starts. Background: When running a GWT module in a dev mode, you can specify a -war argument to pass different war directories. This makes it

Re: Specify different web.xml filename

2011-04-23 Thread Thomas Broyer
Why aren't you simply renaming your debug module to the same name as the production one? -- 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-toolkit@googlegroups.com. To unsubscribe from this

Re: Problems with Godaddy hosting and server-side deserialization

2011-04-23 Thread Andrew Calleja
I see two options at this point: 1. Try this solution which seems to be identical to my case: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/936765a1da334306/ade3860bbbdc5a88?lnk=gstq=godaddy#ade3860bbbdc5a88 2. Switch hosting. Any suggestions on whether 1 is feasible/has

Help wanted: guit maven support

2011-04-23 Thread Gal Dolber
http://code.google.com/p/guit/issues/detail?id=38 All code generation is working now for a maven project. Including the validation plugins. I will really appreciate help for moving guit to maven. I tried, but my maven experience is really limited. Anyone interested on contributing with this

Re: JWebSocket using GWT

2011-04-23 Thread gaill...@audemat.com
On GWT client side, you can use this project : http://code.google.com/p/gwt-websockets/ -- 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-toolkit@googlegroups.com. To unsubscribe from this

how to draw a line using gwt?

2011-04-23 Thread 剑涛 何
if there are two coordinates -p1:(x1,y1),p2:(x2,y2) in the browser ,how to draw an arrow from p1 to p2? -- 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-toolkit@googlegroups.com. To unsubscribe

Re: Why only Spring support in Roo?

2011-04-23 Thread -sowdri-
Steps to create a new GWT project using Maven and GPE: 1. Create new maven project using eclipse. 2. User gwt-maven-plugin artifact while creating. 3. Now manually enable GWT (and GAE) for your project. Now you can use google development mode and compile options as usual, similar to

Re: gwt-maven-plugin woes

2011-04-23 Thread -sowdri-
Steps to create a new GWT project using Maven and GPE: 1. Create new maven project using eclipse. 2. User gwt-maven-plugin artifact while creating. 3. Now manually enable GWT (and GAE) for your project. Now you can use google development mode and compile options as usual, similar to

Re: how to draw a line using gwt?

2011-04-23 Thread Gal Dolber
http://gwtcanvasdemo.appspot.com/ On Sat, Apr 23, 2011 at 10:54 AM, 剑涛 何 hejiant...@gmail.com wrote: if there are two coordinates -p1:(x1,y1),p2:(x2,y2) in the browser ,how to draw an arrow from p1 to p2? -- You received this message because you are subscribed to the Google Groups Google

Element Properties from GWT Designer

2011-04-23 Thread richip
Is there a way to set the Element.id of a Widget from GWT Designer? We were hoping to avoid having our UI designers do any Java programming. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

JDO problem - save Recursion subclass

2011-04-23 Thread Jozef Môstka
Hi All, I need save class, but that class have inside Recursion of same class. @PersistenceCapable(identityType = IdentityType.APPLICATION) public class BasicLinker implements LinkerAccess, Serializable{ private static final long serialVersionUID = -9016733711922070564L; @PrimaryKey

GWT 2.2.0 RequestFactory + Spring 3.0.x Integration (SOLVED)

2011-04-23 Thread j.singh.developer
I had planned to use RF along with Spring as a DI framework. But I could not really find a way to integrate these two. Google search did not help either :( But after some hard luck, I finally managed to produce a working solution. The solution I've invented will enable developers to use Spring

Re: JWebSocket using GWT

2011-04-23 Thread gangurg gangurg
Thanks for the reply . I see the project is tested against JWebSocket .How did you guys invoke JWebScoket from the Client . Can you kindly share that piece of code or the structure you guys adopted . On Sat, Apr 23, 2011 at 6:42 AM, gaill...@audemat.com gaill...@audemat.comwrote: On GWT

Giving wrong value for Date of month

2011-04-23 Thread andy
int startMonth = startDate.getMonth(); int endMonth = endDate.getMonth(); giving wrong value what to do now? -- 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-toolkit@googlegroups.com. To

Re: Google Eclipse Plugin deletes gwt-servlet.jar when running?

2011-04-23 Thread Philippe Beaudoin
Still no update on this from Google? Should I log an issue? -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Why Composite?

2011-04-23 Thread richip
Why would I wish to extend Composite instead of just extending the Widget that I'm wrapping in the Composite? -- 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-toolkit@googlegroups.com. To

Re: Why Composite?

2011-04-23 Thread Harald Schilly
When you want to design your own widget that modifies some data, you can combine more than one widget in such a Composite, additionally implement for example a HasValueChangeHandlers... interface, and much more. That helps to isolate all this into one class and you can use this as a bigger

Re: some problem about GWT

2011-04-23 Thread 何剑涛
it is said that i must write it in server side,right? 2011/4/22 Carlos hbazz...@gmail.com: hi, you are writing your code in the client side. thats why it can't recognize the javax.servlet.http.HttpServlet since it is not supported by the gwt libraries. On 22 avr, 07:28, 剑涛 何

Re: how to draw a line using gwt?

2011-04-23 Thread 剑涛 何
can you tell me something detail? On 4月23日, 下午10时20分, Gal Dolber gal.dol...@gmail.com wrote: http://gwtcanvasdemo.appspot.com/ On Sat, Apr 23, 2011 at 10:54 AM, 剑涛 何 hejiant...@gmail.com wrote: if there are two coordinates -p1:(x1,y1),p2:(x2,y2) in the browser ,how to draw an arrow from p1

Re: How to share code between Server and Client with DateTimeFormat

2011-04-23 Thread Mauro
Hi, would you give me a sample on where the initialization code for server goes? Thanks -- 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-toolkit@googlegroups.com. To unsubscribe from this

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1380806)

2011-04-23 Thread t . broyer
I didn't address Brian's requests because I honestly didn't know what to put (javascript: URIs? an example of data: URI with HTML or SVG containing a script?) http://gwt-code-reviews.appspot.com/1380806/diff/25001/user/src/com/google/gwt/safehtml/rebind/SafeHtmlTemplatesImplMethodCreator.java

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1380806)

2011-04-23 Thread Brian Slesinsky
Sure, saying that javascript: and data: URL's are potentially unsafe would be a good start. Someone who knows more should give some suggestions. On Sat, Apr 23, 2011 at 7:36 AM, t.bro...@gmail.com wrote: I didn't address Brian's requests because I honestly didn't know what to put (javascript: