NoSuchMethodError: com.google.gwt.util.tools.shared.Md5Utils.getMd5Digest

2016-08-16 Thread xybrek
When trying to run or compile this GWT error is thrown: NoSuchMethodError: com.google.gwt.util.tools.shared.Md5Utils.getMd5Digest Here is the properties file for our GWT app: 4.0.0.Beta2 2.8.0-beta1 1.5.11 UTF-8 1.0.2.Final ${project.artifactId} 8.1.0.Final

Re: how to transfer binary file from gwt java and external js ? how to save existed memory file to server from gwt java ?

2015-12-26 Thread xybrek
On 12/26/2015 3:13 PM, Lean Fu wrote: I'm newbie to gwt, there're two questions needs community help, one is how to transfer a binary file between gwt java and external js ? how to organize the parameters format in respective side ? another question is how to upload a memory file to server , I

Re: (GWT + GAE) vs. (GWT + Java + MySQL)

2015-10-11 Thread xybrek
On Saturday, 23 August, 2008 04:08 PM, jeya.balaji wrote: relevant info: sql2java has provision to generate gwt rpc code. On Aug 22, 11:34 pm, Tee wrote: GWT + JAVA - 100% Java - Easy with RPC (grails plugin) - Good document GWT + GAE - You must learn python (Django?) -

GWTTestCase - HTMLUnit - No permitted Access-Control-Allow-Origin

2015-01-05 Thread Xybrek
When running `GWTTestCase` that call an external Restful service with GWT (Using Restlet-GWT) the app throws the error below. **Error:** Jan 05, 2015 1:24:41 PM com.gargoylesoftware.htmlunit.javascript.background.JavaScriptJobManagerImpl runSingleJob SEVERE: Job run failed with

Running GWT in SuperDevMode (Maven)

2013-09-20 Thread Xybrek
Running $`mvn gwt:run-codeserver` throws this error: [INFO] Webapp assembled in [1255 msecs] [INFO] [INFO] --- maven-datanucleus-plugin:1.1.4:enhance (default) @ web --- [WARNING] Could not transfer metadata asm:asm/maven-metadata.xml from/to local.repository

Download data from URL with GWT

2013-09-08 Thread Xybrek
This is a typical img with src having a blob: img class=gwt-Image src=blob:a7cb8111-cf35-4c3a-8295-bdda0ff66caf Is there a way for my GWT app to download get his blob data for client side manipulation? I've tried this: private native String blobToBase64(String source)/*-{ var xhr =

Upload blob: image from GWT

2013-09-05 Thread Xybrek
I managed to get a blob and create a URL for it which I put in a img tag src attribute to show the image like this: img class=gwt-Image data-field=image src=blob:http%3A//127.0.0.1%3A/757c3c87-de5c-4c54-897e-9d043bc2895c My question would be how would I upload this blob via GWT FileUpload

Testing GWT + GAE app locally (not DevMode)

2013-04-30 Thread Xybrek
to be recompiled or what, before we even try to upload it. - Or are there any better way? `SuperDevMode` perhaps? -Xybrek -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send

Make GWT app run side by side with a Rest API

2013-04-06 Thread Xybrek
When using GWT we use this URL forms: Debug: http://127.0.0.1:/index.html?gwt.codesvr=127.0.0.1:9997#hash Compiled: http://127.0.0.1:/index.html#hash I need to be able to access the underlying Rest API. Which I need to map within the root

Help needed for building a GWT Waveform library

2012-10-28 Thread Xybrek
I'm trying to build a open source GWT audio recorder waveform library, this is the showcase site: http://recorderwave.appspot.com/Showcase.html *Run Demo Wave:* Works just fine. *Recording: * The waveform rendering out of real time data from the flash interface is not really good, the

Generating waveform with GWT

2012-10-26 Thread Xybrek
Hello this is a showcase of a generating Waveforms with GWT: http://wavegwt.appspot.com/Showcase.html The source is still under development, the showcase runs with desktop browsers but doesn't work with mobile browsers. Anyway, this is just a test. -- You received this message because you

Unrecognized image file format - UiBinder

2012-10-13 Thread Xybrek
I'm getting this error when I put ui:with field='res' type='com.mycomp.mygwt.client.Resources'/ In my UiBinder file where the error is: [DEBUG] [MyGWT] - Rebinding com.mycomp.mygwt.client.Resources [DEBUG] [MyGWT] - Invoking generator

Inserting a DIV in a GWT Panel

2012-05-06 Thread Xybrek
I have this DIV on my application jsp page which I need to inject in to a GWT VerticalPanel. Coded on top of the iframe tag which contains __gwt_historyFrame : **index.jsp** div class=footer id=footer style=display:none pCopyright Š 2012 MyCompany. All Rights Reserved./p

Injecting dependencies with GIN/Guice

2012-05-01 Thread Xybrek
I typically have this kind of code pattern in my GWT project: Menu errorMenu = new Menu(user, userController, -1); Menu searchMenu = new Menu(user, userController, 0); errorView.setMenu(errorMenu); searchView.setMenu(searchMenu); How do I inject a Menu instance in the ErrorView and other views

Re: GWT Spring

2012-03-08 Thread Xybrek
On 3/8/2012 11:33 PM, Akram Moncer wrote: hello everybody; can some one help me and give me how can i create webapp with spring framwork on back-end and GWT on front-end ? -- Akram MONCER Personne -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: How to wrap a “submit button” with GWT?

2012-01-30 Thread Xybrek
On 1/30/2012 4:33 PM, Thomas Broyer wrote: On Monday, January 30, 2012 8:51:51 AM UTC+1, Xybrek wrote: I am getting an error when I try to wrap a submit button with GWT: Caused by: java.lang.AssertionError: Child cannot be null at com.google.gwt.dom.client.Node$.isOrHasChild

How to wrap a “submit button” with GWT?

2012-01-29 Thread Xybrek
I am getting an error when I try to wrap a submit button with GWT: Caused by: java.lang.AssertionError: Child cannot be null at com.google.gwt.dom.client.Node$.isOrHasChild$(Node.java:278) at com.google.gwt.user.client.ui.Button.wrap(Button.java:55) HTML Code: div style=display:none

Re: MVC and Code Splitting

2012-01-15 Thread Xybrek
On 1/15/2012 4:12 AM, Thomas Broyer wrote: On Saturday, January 14, 2012 8:12:44 PM UTC+1, Xybrek wrote: In my application there are many views and controllers, however not all are needed at once, mostly the view that is loaded depends on the URL fragment(s). In what way

Activity Feed widget

2012-01-15 Thread Xybrek
Hi is there any Activity feed widget (much like those found with Social Network sites) that is for GWT. I'm not looking for full-featured widget, but just something to start with. Cheers. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Problem with GWT Window Builder plugin (Eclipse)

2012-01-14 Thread Xybrek
Hi, I have some problem with GWT WindowBuilder that I have published the details through Stackoverflow: http://stackoverflow.com/q/8836214/785349 Cheers. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Create local application?

2012-01-14 Thread Xybrek
On 1/14/2012 10:52 PM, Jan wrote: Hi, is it possible to create a local application which does not need any server or anything, so i have just a simple javascript/html/file combination that i can give to someboy and it works? I tried to compile the gwt sample application and tried to just open

Re: History onValueChange() not called when application is loaded?

2012-01-14 Thread Xybrek
On 1/13/2012 8:48 PM, hbf wrote: Dear all, I am following the instructions for History management http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsHistory.html but even though I register my history handler in onModuleLoad(), it does not fire when I load my application with a

MVC and Code Splitting

2012-01-14 Thread Xybrek
In my application there are many views and controllers, however not all are needed at once, mostly the view that is loaded depends on the URL fragment(s). In what way or pattern a Controller and View be wrapped in a GWT.runAsync so that only controllers and views needed are loaded? I just

Cannot apply CSS through GWT WindowBuilder editor for a multiple modules/Entrypoint application

2012-01-12 Thread Xybrek
I usually use GWT WindowBuilder editor to design my GWT application UI, however I refactored my application to implement multiple modules/EntryPoint as described in my other post: http://stackoverflow.com/questions/8834946/dealing-with-rpc-when-doing-multiple-gwt-modules Now I am getting this

Re: Anyone knows GWT Multipage Framework?

2011-12-10 Thread Xybrek
On 12/10/2011 4:09 AM, Jens wrote: A first simple solution would be to configure your web server to redirect requests from http://mysite.com/ to http://mysite.com/index.html. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

Anyone knows GWT Multipage Framework?

2011-12-09 Thread Xybrek
Hi, anyone here knows http://code.google.com/p/gwt-multipage/ ? I have some specific problems with the framework, is there any other GWT framework that allows multipage function, like gwt-multipage? It can map EntryPoints and load it based on the html request. Like: mysite.com/index.html or

Deploy GWT app in Tomcat as ROOT

2011-12-07 Thread Xybrek
Hi, I've been trying to deploy my gwt app in Tomcat server but I am having problem running the application rpc in the ROOT, I mean, if the app is deployed like: webapps/mygwapp I works, if the servlet defined in the web.xml is like this: servlet-mapping

Re: Deploy GWT app in Tomcat as ROOT

2011-12-07 Thread Xybrek
On Thursday, 08 December, 2011 01:45 PM, Kanagaraj M wrote: The problem is in your @RemoteServiceRelativePath(greet) The above always append(as prefix) your app name with 'greet', so it would expect a servlet mapping /mygwtapp/greet Try using ServiceDefTarget -- You received this message

Re: Deploy GWT app in Tomcat as ROOT

2011-12-07 Thread Xybrek
On Thursday, 08 December, 2011 01:45 PM, Kanagaraj M wrote: The problem is in your @RemoteServiceRelativePath(greet) The above always append(as prefix) your app name with 'greet', so it would expect a servlet mapping /mygwtapp/greet Try using ServiceDefTarget -- You received this message

Re: Deploy GWT app in Tomcat as ROOT

2011-12-07 Thread Xybrek
On Thursday, 08 December, 2011 02:01 PM, Kanagaraj M wrote: GreetingServiceAsync serviceAsync= (GreetingServiceAsync)GWT.create(GreetingService.class); ServiceDefTarget endpoint= (ServiceDefTarget) serviceAsync; String moduleRelativeURL=http://localhost:8080/

GWT Multipage

2011-09-14 Thread Xybrek
Has anyone here have worked with GWT Multipage (http://code.google.com/p/gwt-multipage/) ? There are scenarios when accessing the GWT app, that the gwt-multipage Entrypoint selection shows up, I need to prevent this event. -- You received this message because you are subscribed to the

Re: Error while compiling gwt module ?.

2011-08-23 Thread Xybrek
Looks like you have forgotten to inherit a required module? Skimming to the error I can see: No source code is available for type ValidatorFactory; did you forget to inherit a required module? On Tuesday, 23 August, 2011 01:28 PM, suresh babu wrote: Hi, I am using *Gwt 2.3.0* and Eclipse

How to show a User view in GWT app by typing in browser address bar

2011-08-22 Thread Xybrek
I have this gwt app which say, runs on http://mygwtapp.com/ (which is actually: http://mygwtapp.com/index.html) The application host a database of users, queried by searching usernames using the search view and results are shown in the user results view. Pretty useful enough. However I need

Re: Aw: How to show a User view in GWT app by typing in browser address bar

2011-08-22 Thread Xybrek
On Tuesday, 23 August, 2011 01:08 AM, Jens wrote: You have to use redirect rules on your web server, e.g. nginx, apache, tomcat, etc. That way you can deliver your app's index.html for different URLs based on regular expressions. Once your server delivers your index.html you can do

GWT Frame

2011-06-30 Thread Xybrek
Hi, I need to get the underlying object of a GWT frame, for reason that I need to modify the html content of the Frame. Any ideas on how to achieve it? Thanks. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Very confusing aspect of MVP documentation!

2011-06-30 Thread Xybrek
in the view is updated as data is modified in the database. I cannot see any example having a RPC service which connects to database, say through hibernate. - Xybrek -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Form layout

2011-06-30 Thread Xybrek
On Friday, 01 July, 2011 04:03 AM, isern wrote: Hello! I have a question to you guys: What would you say it is the best way to lay out a form in GWT? I read somewhere in the group Grid and FlexTable approaches. Grid seems to be not very flexible and FlexTable doesn't look UIBinder friendly So

Re: How to open a new EntryPoint file from other EntryPoint file

2011-06-30 Thread Xybrek
On Friday, 01 July, 2011 12:59 AM, Ashish wrote: Hi I need your help. In my GWT project I have two module files like below.. First File public class GTDWeb1 implements EntryPoint{ public void onModuleLoad() { -- - --- here is onClick

GWT Frame Redirecting Problem

2011-06-29 Thread Xybrek
Hi, is there a way to disable GWT Frame to redirect and change the browser address? Problem is that its causing the browser to replace the URL and load a page which closes the Hosted GWT app in the same browser. Thanks in advance. -- You received this message because you are subscribed to the

Re: Detect when IFrame URL changes?

2011-06-05 Thread Xybrek
having the same problem. Thanks, Xybrek -- 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 google-web-toolkit+unsubscr

Re: GWT servlet access

2011-06-03 Thread Xybrek
. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. Hi thanks, the problem is with the url-pattern and how I call it with the RequestBuilder. Works now. -Xybrek -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Catch Frame widget GET Method

2011-06-03 Thread Xybrek
these events? Well, to modify it before it goes out. Thanks, Xybrek -- 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 google-web

Catch Frame widget GET event

2011-06-03 Thread Xybrek
it goes out. Thanks, Xybrek -- 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 google-web-toolkit+unsubscr

Re: Catch Frame widget GET Method

2011-06-03 Thread Xybrek
On Friday, 03 June, 2011 10:42 PM, Xybrek wrote: Hi, When I load a URL into a 'Frame' widget and from there click some web links I can see 'GET' Method showing in Eclipse' console window. So with this I have place GWT.log to see if I can catch it from here: Frame myframe = new Frame

GWT Servlet access (dev mode)

2011-06-02 Thread Xybrek
-pattern. I'm always getting 404 response. Can anyone help? Cheers, Xybrek SayHelloServlet.java package com.mycompany.server; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class SayHelloServlet extends HttpServlet { public void doGet(HttpServletRequest