Re: modélisation uml de mvp

2014-04-10 Thread Davide Micheletti
if you write in english you will have more help.. 2014-04-11 4:23 GMT+02:00 Amir kessentini : > Salut, > Je suis entrain de modéliser mon application gwt en utilisant uml. > à ce stade, je trouve des difficultés pour représenter les diagrammes de > séquences en utilisant l'architecture mvp. > j'

modélisation uml de mvp

2014-04-10 Thread Amir kessentini
Salut, Je suis entrain de modéliser mon application gwt en utilisant uml. à ce stade, je trouve des difficultés pour représenter les diagrammes de séquences en utilisant l'architecture mvp. j'ai passer beaucoup de temps sur google mais vraiment j'ai pas trouvé quelque chose de valeur.il m'affiche

Re: Development Mode will not be supported in Firefox 27+

2014-04-10 Thread Thomas Broyer
IIUC, Chrome will kill DevMode in 35 (current in beta, will reach the stable channel in May): http://blog.chromium.org/2014/04/chrome-35-beta-more-developer-control.html On Tuesday, February 4, 2014 1:01:41 AM UTC+1, Brian Slesinsky wrote: > > Mozilla has stopped exporting some C++ symbols that

GWT Rich Text Editor that produces Markdown

2014-04-10 Thread chrisgo...@gmail.com
Anyone know where I can find a GWT rich text editor that produces markdown? Or a decent converter that would convert HTML produced from a GWT rich text editor to markdown? Thanks, Chris -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Re: Development Mode will not be supported in Firefox 27+

2014-04-10 Thread Brian Slesinsky
Ivan, there is an existing bug that's related so I will reply there: https://code.google.com/p/google-web-toolkit/issues/detail?id=7693 On Thu, Apr 10, 2014 at 7:22 AM, Ivan Markov wrote: > The StackTraceDeobfuscator does not play very well with the Super Dev Mode > code server though. > > Rea

Re: Compiling problem with GWT Compiler

2014-04-10 Thread Davide Cerbo
How many local workers? I advice to you to give a look to http://tedvinke.wordpress.com/2013/03/21/gwt-compiler-is-running-out-of-memory/ bye, Davide 2014-04-10 13:44 GMT+02:00 Minjin19 : > Hi everyone, > > Im having big issues with the compilation of my project, there is already > a GWT Web

Re: gwt 2.6.0 embedded jetty support of web fragment servlet 3.0

2014-04-10 Thread d...@vide.bz
Hi Thomas, thanks for the information, it helps me. By me the problem was that the jar (zip) does not contains directory entries but only file entries. This make a difference maybe because jetty search for a zip directory entry with name META-INF/resources/ to enable files within it. The same p

Re: Development Mode will not be supported in Firefox 27+

2014-04-10 Thread Ivan Markov
The StackTraceDeobfuscator does not play very well with the Super Dev Mode code server though. Reason: StackTraceDeobfuscator needs to have access to the "AABBCD...HF.symbolMap" files generated during the last SDM compilation. However this directory is a moving target in the SDM code server bec

Re: (null) value only in DEV mode

2014-04-10 Thread Jens
> > private Connection getConnection() throws NamingException, SQLException { >> >> Context ctx = null; >> >> try { >> >> ctx = new InitialContext(); >> >> } catch (NamingException exp) { >> >> } >> >> DataSource ds = (DataSource) >>> ctx.lookup

Re: (null) value only in DEV mode

2014-04-10 Thread Zbyněk Kočí
Hello, thanks for response the ID is correct, iam just passing constant ID=1 for testing purpose only Then tell me why Iam not getting any error message, log? While in production mode after build it works fine. Dne čtvrtek, 10. dubna 2014 15:06:29 UTC+2 Zbyněk Kočí napsal(a): > > Hello, > > Iam

Re: (null) value only in DEV mode

2014-04-10 Thread Davide Micheletti
> > stmt.setInt(1, 1); Are you sure to pass the right id?? Because you do > id = rs.getInt("id"); and it is suspicious because the id cannot change in your code.. However i think that your code fail in the catch before > String messageString = "Hello " + nam + " " + srn + "!" + >

(null) value only in DEV mode

2014-04-10 Thread Zbyněk Kočí
Hello, Iam using RPC communication, JDBC driver (included in Tomcat libraries) & DB from previous project (Java & JSP only) Debian, NetBeans 7.4, Apache Tomcat 6 On server side Iam connection into the DB, retreiving data, trying to catch them immediately and next print them out in alert message

Compiling problem with GWT Compiler

2014-04-10 Thread Minjin19
Hi everyone, Im having big issues with the compilation of my project, there is already a GWT Web application running. As a side-project I now want to make a mobile application of my already existing GWT Web application. I already changed some widgets from GWT to mgwt and the project runs wi

Re: RequestContext edit nullifies properties ?

2014-04-10 Thread Thomas Broyer
This is not a known issue. Editing a proxy should return an editable proxy with the exact same properties filled and the exact same values (with the exception that proxies are editable proxies too, recursively) If you can provide a small repro case (and/or debug what's going on), please file a

RequestContext edit nullifies properties ?

2014-04-10 Thread frank . taffelt
Hi, currently i run into some issues using the edit method of the requestcontext. Look at the following code: // track changes UserSpaceProxy editspace = request.edit(currentspace); // check if the object returned by edit is different // getUserLayoutEntries returns a list with annother proxies