What else is missing in elemental2-dom?

2022-05-09 Thread pavel....@gmail.com
Hi, Does someone know what percentage of api is covered by elemental-dom? Today I have noticed that elemental2.dom.UIEvent does not have property 'view' The UiEvent (w3schools.com) -- You received this message because you are subscribed to the G

jsConstructor returns undefined

2021-11-02 Thread pavel....@gmail.com
Hi all, I have noticed that the next code returns the undefined value in gwt 2.9.0 public static native Object getCtorFn(Class cls) /*-{ $wnd.console.log(cls) $wnd.console.log(c...@java.lang.Class::jsConstructor) return c...@java.lang.Class::jsConstructor; }-*/; Does someone know is jsConstroc

Re: Is it possible vue-gwt + vuetify ?

2021-08-17 Thread pavel....@gmail.com
ombination - using Vuetify > in a GWT app via vue-gwt. I haven't reached anything methodically > applicable to report here yet. > > On Monday, August 16, 2021 at 3:46:59 AM UTC-4 pavel@gmail.com wrote: > >> Hi, >> >> Does someone have experience with vue-

Is it possible vue-gwt + vuetify ?

2021-08-16 Thread pavel....@gmail.com
Hi, Does someone have experience with vue-gwt with some existing vue components libraries, for example, vuetify, ag-grid, etc? Typically those libraries require webpack to support customization and it's interesting to hear how it works with vue-gwt. -- You received this message because you ar

Re: [jsinterop] constructor reference

2021-04-22 Thread pavel....@gmail.com
After some experiments, I figured out that option *-generateJsInteropExports* is required to make the code work. четвер, 22 квітня 2021 р. о 14:23:51 UTC+2 pavel@gmail.com пише: > Hi, > > I'm trying to get a reference on the constructor of the @JsType class but > all

[jsinterop] constructor reference

2021-04-22 Thread pavel....@gmail.com
Hi, I'm trying to get a reference on the constructor of the @JsType class but all the time receive undefined. So, I need some suggestion where to look My code is public void onModuleLoad() { DomGlobal.alert(toCtor(Hello.class)); } @JsType public static class Hello {} public static native J

Domino UI kit coding question

2021-04-17 Thread pavel....@gmail.com
Hi all, As I understand domino guys read this form So, after playing with domino UI I have noticed that code looks a little bit noisy because on every step I have to write appendChild. Didn't you consider defining appentChild as a method with an arbitrary number of arguments? public T appendCh

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread pavel....@gmail.com
We had the same problem with maven but at the end, maven's multi-module project and profiles helped to solve it. понеділок, 8 березня 2021 р. о 13:57:53 UTC+1 Luis Fernando Planella Gonzalez пише: > Nice article. > However, I have to argue in favor of Gradle instead of Maven. > The project I wo

Re: Replcaing GWT generators with APT - Annotation Processing Tool -

2016-10-08 Thread Pavel Finkelshtein
Looks like third-party developers should work as before, but include your annotation processor into their build process. суббота, 8 октября 2016 г., 1:14:29 UTC+3 пользователь Ahmad Bawaneh написал: > > Dears, > We all know that GTW 3.0 will come with some major changes from the > current GWT,

Re: jsinterop and Scheduler.scheduleFinally

2016-09-16 Thread Pavel Kakolin
> > Are you sure it's *never* executed? (vs. executed in the "finally" of > another, later "event"?) > In our synthetic test with one element and one event listener, yes, it's never executed. If we add another event listener in the old way eg using Window#addResizeHandler, then command schedul

jsinterop and Scheduler.scheduleFinally

2016-09-16 Thread Pavel Kakolin
Imagine an @JsType(isNative = true) EventTarget (basically Element) with @JsMethod addEventListener(final String type, final EventListener listener). We have a "mousedown" event listener and inside that listener we call com.google.gwt.core.client.Scheduler#scheduleFinally(com.google.gwt.core.c

Re: GWT 2.7.0 is here

2014-11-24 Thread Pavel Kakolin
Looks like new GWT requires much more memory to compile applications. Eg. after switching to 2.7, almost every build of our application on buildagents with 32 bit java8 with -Xmx1440m fails with OOM (native). On Thursday, November 20, 2014 11:59:06 AM UTC+1, Daniel Kurka wrote: > > Today we are

asynchronous gwt tree (Can't remember open nodes)

2014-08-12 Thread Pavel Lyapin
I've developed an asynchronous gwt tree, which means the whole tree is not loaded from the begining when the application is started. Nodes are loaded as you open up the tree deeper. This was developed to minimize caching,and reduce time to start application. The down side is that when I'm openin

Re: GWT and Vaadin

2014-06-16 Thread Pavel Finkelshtein
Oh, that's easy. In GWT you compile Java code to plain Javascript, but in Vaadin you only can compile some widgets, but all code is rendered on sever. Think about Vaadin as about big terminal, which just downloads hole page on every client-side event. Actually it downloads not all UI, but diff

Inherit a required module

2013-10-15 Thread Pavel Bogdashin
Hello. I have simple class : public class LocalId implements Serializable, Cloneable { private String someText; private String localID; private String type; } which is in the library. If i use this class on UI, a have this error: [ERROR] [] - Line 155: No source code is available for type somePa

Re: Image widget with attached label widget?

2013-09-11 Thread Pavel Finkelshtein
What about extending horizontal/vertical panel and adding needed handlers to this widget? Just panel or even div with image and label inside. вторник, 10 сентября 2013 г., 22:20:08 UTC+4 пользователь themr2driftking написал: > > Right now I have an image widget. I am trying to get a label to be

Re: GWT CssResource not propagating width:calc(x) property

2013-08-10 Thread Pavel Zlámal
Hi, firefox doesn't support standard calc yet - this works for me: width: -moz-calc(100% -16px); Pavel Dne pátek, 9. srpna 2013 19:13:33 UTC+2 Wayne Rasmuss napsal(a): > > I have the following css entry that I'm accessing via a CSS resource > > .form-input-line-cell { &g

Testing GWT requestbuilder

2013-06-20 Thread Pavel Finkelshtein
Anybody? -- 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 an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-t

Testing GWT requestbuilder

2013-06-10 Thread Pavel Finkelshtein
I have following problem: I have RequestBuilder, which calls http proxy servlet like this one . Now I try to test it. I set up gwt maven plugin to use htmlunit. But when I l

Testing GWT requestbuilder

2013-06-09 Thread Pavel Finkelshtein
I have following problem: I have RequestBuilder, which calls http proxy servlet like this one . Now I try to test it. I set up gwt maven plugin to use htmlunit. But when I l

Re: gwt module may need to be (re)compiled

2012-12-12 Thread Pavel Šimeček
> Sometimes you see the message “GWT module fundd may need to be > recompiled “ popping up. > > It’s simply because the URL does not contain the “? > gwt.codesvr=127.0.0.1:9997” part at its end. > > This helped me a lot todat. One can ask - how can that happen? But it is rather easy - it is

Re: Image border

2012-01-02 Thread Pavel Byles
property? > > If u load it using URL property it does not show the border. > > ~Ashwin > > Sent from my iPhone > > On Jan 1, 2012, at 8:38 AM, Pavel Byles wrote: > > Is there a way to remove the default border from a gwt image widget? > > in my css I have: &

Image border

2011-12-31 Thread Pavel Byles
Is there a way to remove the default border from a gwt image widget? in my css I have: img { border: none; } Yet nothing changes. -- 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@

Re: Ideal development platform for GWT/GAE?

2011-11-28 Thread Pavel Byles
MacBook Pro + SSD + 8GB Ram. GWT Dev on this is great. Also have an Ubuntu Linux VM that I have some other GWT tester projs that I just haven't moved over as yet. On Sat, Nov 26, 2011 at 11:40 AM, Mark Molloy wrote: > Hi, I currently have one laptop (Windows 7 64-bit) that I use for > everything

Re: Develop With GWT

2011-10-19 Thread Pavel Byles
What exactly are you having a problem understanding? On Wed, Oct 19, 2011 at 9:45 AM, Jose Luis Urrea S. wrote: > Hi Everybody, > > I'm new in GWT and right now I'm starting to develop a project with > GWT. But I wonder, Can I develop applications that it has drop down > lists, windows popup to

Re: RequestFactory error

2011-09-12 Thread Pavel Byles
Hi Thomas, thanks for the link. Alexander, my host page url is: http://127.0.0.1:/ and I also tried ur solution. If I set the url-pattern to something wrong I do get a 404. So I think I'm getting a genuine 500 internal server error. Console says I need to run the "ValidationTool" for my Reque

Re: RequestFactory error

2011-09-12 Thread Pavel Byles
Here's what I have: requestFactoryServlet com.google.web.bindery.requestfactory.server.RequestFactoryServlet requestFactoryServlet /gwtRequest On Mon, Sep 12, 2011 at 11:43 AM, Alexander Orlov wrote: > > in your case maybe: /gwtRequest > > -- > You received this message because you a

Re: RequestFactory error

2011-09-12 Thread Pavel Byles
I added the gwt-servlet-deps.jar btw. On Mon, Sep 12, 2011 at 11:29 AM, Alexander Orlov wrote: > "Compile" scope in Maven means that it's also available at runtime. I had > exact the same error several times and as far as I remember I solved it by > adding gwt-servlet-deps.jar to the system scop

Re: RequestFactory error

2011-09-12 Thread Pavel Byles
Hi Alexander, I removed my hibernate-validator (because I was getting errors from that for some reason about missing org.loggerfactory). I'm making progress!!! (I think) So now I'm getting a 500 error: Problem accessing /gwtRequest On Mon, Sep 12, 2011 at 11:29 AM, Alexander Orlov wrote: > "Co

Re: RequestFactory error

2011-09-12 Thread Pavel Byles
It happens at run time. I have 0 errors and 0 warnings at compile time. On Mon, Sep 12, 2011 at 12:26 AM, Y2i wrote: > Does java.lang.**NoClassDefFoundError: org/json/JSONException happen > during compilation or run-time? > > -- > You received this message because you are subscribed to the Goog

Re: RequestFactory error

2011-09-11 Thread Pavel Byles
Yes, I downloaded the maven version of requestfactory-server and I've copied the org.json jar to my war/lib dir. On Sun, Sep 11, 2011 at 10:43 PM, Y2i wrote: > Do you have org/json/JSONException anywhere in your class path? May be > your are using unbundled > version

Re: RequestFactory error

2011-09-11 Thread Pavel Byles
Thanks for your help, however I'm still getting the same error. On Sun, Sep 11, 2011 at 2:26 AM, Y2i wrote: > Sometimes ClassNotFound occurs when there are 2 conflicting classes. Check > this out, > may be it's related to your p

Re: RequestFactory error

2011-09-10 Thread Pavel Byles
I'm now getting: Caused by: java.lang.NoClassDefFoundError: org/json/JSONException Caused by: java.lang.ClassNotFoundException: null at this line: requestFactory.employeeRequest().getName().fire(new Receiver() { @Override public void onSuccess(String response) { nameField.setText(response); }}

Re: Alternative to DTO's

2011-08-11 Thread Pavel Byles
You can try RequestFactory. On Thu, Aug 11, 2011 at 4:47 PM, J D wrote: > Yes, I'm trying to avoid having to duplicate, and convert between the DTO > and the persistent object, because I'm worried that the increase in number > of DTO's will result in too much repetition of code. > > -- > You rec

Re: List> support by RequestFactorty.

2011-08-08 Thread Pavel Byles
I don't see why not. As long as T is serializable. Have you tried it? On Sat, Aug 6, 2011 at 5:08 PM, br22 wrote: > It is documented that List or Set are supported, is > List> supported as well? > Thank You. > > -- > You received this message because you are subscribed to the Google Groups >

Re: Null Version

2011-06-14 Thread Pavel Byles
Anyone? On Mon, Jun 13, 2011 at 9:23 AM, Pavel Byles wrote: > ?? > > > On Sat, Jun 11, 2011 at 12:20 AM, Pavel Byles wrote: > >> Sorry, DataNucleus. >> >> >> On Fri, Jun 10, 2011 at 5:44 AM, Juan Pablo Gardella < >> gardellajuanpa...@gmail.com&g

Re: Debugging server side code of RPC

2011-06-13 Thread Pavel Byles
Hmm.. you should be able to debug... w/o using any logging frameworks. These steps work for me when a breakpoint isn't hit on the server-side although a breakpoint has been set is to do the following: 1. Set a break point at the line where you make your RPC call. 2. Set a break point at the line i

Re: Null Version

2011-06-13 Thread Pavel Byles
?? On Sat, Jun 11, 2011 at 12:20 AM, Pavel Byles wrote: > Sorry, DataNucleus. > > > On Fri, Jun 10, 2011 at 5:44 AM, Juan Pablo Gardella < > gardellajuanpa...@gmail.com> wrote: > >> So, what implementation of JPA are you using? EclipseLink, OpenJPA, ...

Re: Null Version

2011-06-10 Thread Pavel Byles
Sorry, DataNucleus. On Fri, Jun 10, 2011 at 5:44 AM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > So, what implementation of JPA are you using? EclipseLink, OpenJPA, ... > > > 2011/6/10 Pavel Byles > >> Not using hibernate. >> >> >>

Re: Null Version

2011-06-09 Thread Pavel Byles
Not using hibernate. On Thu, Jun 9, 2011 at 11:33 PM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > Hibernate? > > > 2011/6/9 Pavel Byles > >> 3.0-1.1.1 >> >> >> On Thu, Jun 9, 2011 at 8:56 PM, Juan Pablo Gardella < >> gardella

Re: using URLFetchService

2011-06-09 Thread Pavel Byles
Ahh.. Sorry you actually meant urlfetchservice not just urlfetch! ok.. check the GAE group. On Thu, Jun 9, 2011 at 11:36 PM, Pavel Byles wrote: > I think the GAE user group maybe able to help you better but maybe you > could start here: > http://code.google.com/appengine/docs/java

Re: using URLFetchService

2011-06-09 Thread Pavel Byles
I think the GAE user group maybe able to help you better but maybe you could start here: http://code.google.com/appengine/docs/java/urlfetch/overview.html On Thu, Jun 9, 2011 at 12:41 AM, riyaz ahmed wrote: > Hi, > Has anyone used URLFetchService in google app engine, i dont find any > examples

Re: Null Version

2011-06-09 Thread Pavel Byles
3.0-1.1.1 On Thu, Jun 9, 2011 at 8:56 PM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > What implementation of JPA are you use? > > 2011/6/9 Pavel Byles > >> anyone? >> >> On Wed, Jun 8, 2011 at 10:46 PM, Pavel Byles wrote: >> >>

Re: Null Version

2011-06-09 Thread Pavel Byles
(It's > annotated for use with JPA): > @MappedSuperclass > public class BaseEntity { > @Id > private Long id; > > @NotNull > @Version > private Integer version = 0; > } > > On Thu, Jun 9, 2011 at 5:00 PM, Pavel Byles wrote: > >> anyone? >> >&

Re: Null Version

2011-06-09 Thread Pavel Byles
anyone? On Wed, Jun 8, 2011 at 10:46 PM, Pavel Byles wrote: > I'm getting the following error when I'm using requestfactory with > locators: > > > The persisted entity with id 152 has a null version > > I have a version column in my datastore and the following in

Null Version

2011-06-08 Thread Pavel Byles
I'm getting the following error when I'm using requestfactory with locators: The persisted entity with id 152 has a null version I have a version column in my datastore and the following in my Entity: public Integer getVersion() { return this.version; } public void setVersion(Integ

Re: EMF Error

2011-06-01 Thread Pavel Byles
Then look at the initializer for EMF. Something is going wrong there. > > > On Wed, Jun 1, 2011 at 1:35 PM, Pavel Byles wrote: > >> Anyone? >> >> On Tue, May 31, 2011 at 10:33 PM, Pavel Byles wrote: >> >>> Trying to get RequestFactory to work but I am getting

Re: EMF Error

2011-06-01 Thread Pavel Byles
Anyone? On Tue, May 31, 2011 at 10:33 PM, Pavel Byles wrote: > Trying to get RequestFactory to work but I am getting: > > Server Error: Could not initialize class myproject.com.server.domain.EMF > > at the line that contains this code: > > List list = em.createQuery(&qu

EMF Error

2011-05-31 Thread Pavel Byles
Trying to get RequestFactory to work but I am getting: Server Error: Could not initialize class myproject.com.server.domain.EMF at the line that contains this code: List list = em.createQuery("select c from Country c" ).getResultList(); Anyone have any ideas? -- -Pav -- You received this m

Re: RequestFactory error

2011-05-17 Thread Pavel Byles
package will be removed in a future version of GWT. > > > Check if the module is in the new package > > 2011/5/17 Pavel Byles > >> For some reason I'm getting this error while trying to set up my code to >> use

RequestFactory error

2011-05-17 Thread Pavel Byles
type com.google.web.bindery.requestfactory.shared.RequestFactory; did you forget to inherit a required module? My project.gwt.xml file contains the following inherits element: I also have my web.xml set up correctly too. Does anyone have any idea why I get this error? -- Pavel Byles -- You received this message becaus

SimpleBeanEditorDriver and MVP

2011-03-04 Thread Pavel Ko
I am a novice in GWT and MVP. I have question about Editors. Where should SimpleBeanEditorDriver located? in Presenter layer or in View layer? >From one point of view SimpleBeanEditorDriver know about model, therefore it should be in Presenter(not in view). >From another point of view SimpleBeanEdi

SimpleBeanEditorDriver and MVP

2011-03-03 Thread Pavel Ko
I am a novice in GWT and MVP. I have question about Editors. Where should SimpleBeanEditorDriver located? in Presenter layer or in View layer? >From one point of view - SimpleBeanEditorDriver know about model, therefore it should be in Presenter(not in view). >From another point of view - SimpleBea

Another feature for 2.1

2010-07-07 Thread Pavel Lahoda
Congrats to the new M2 of 2.1 release of the GWT framework. Is there any chance that we'll see some progress in the area of making GWT Java API subset more complete to the original libraries ? To be specific : is there any chance, that Reflection API gets implemented ? There are some projects that

Re: Where to place new Widget class?

2010-05-28 Thread Pavel Byles
you > Magnus > > On May 27, 7:10 pm, Pavel Byles wrote: > > Could you say what the purpose of a ServerPanel is? > > Everything for GWT afaik should be placed in the client or shared > directory. > > I don't think there is much sense in using client-side ui obj

Re: Where to place new Widget class?

2010-05-27 Thread Pavel Byles
Could you say what the purpose of a ServerPanel is? Everything for GWT afaik should be placed in the client or shared directory. I don't think there is much sense in using client-side ui objects on the server. On Thu, May 27, 2010 at 11:55 AM, Magnus wrote: > Hello, > > I am absolutely new to GWT

Re: JSNI and method signature

2010-04-06 Thread Pavel Byles
Ah I see. ok. Thanks for all the help! On Tue, Apr 6, 2010 at 10:20 AM, kozura wrote: > Java simply won't allow you to create both of those methods in the > same class, because it considers them to have the same signature. > > On Apr 6, 8:10 am, Pavel Byles wrote: > > B

Re: JSNI and method signature

2010-04-06 Thread Pavel Byles
e check. Try it, you can't actually make those two methods in the > same scope. > > On Apr 6, 7:41 am, Pavel Byles wrote: > > Thanks Kozura, > > that worked. However, Eclipse auto-completes with the generics stuck in > > there. > > > > Also what h

Re: JSNI and method signature

2010-04-06 Thread Pavel Byles
call if the generics aren't included? -- Pavel On Fri, Apr 2, 2010 at 4:24 PM, kozura wrote: > Remove the generics () from the signature. > > On Apr 2, 12:57 pm, Pavel Byles wrote: > > Can someone show me the method signature for the following Java method ?: > &

JSNI and method signature

2010-04-02 Thread Pavel Byles
Can someone show me the method signature for the following Java method ?: public static void myJavaMethod(JsArray jso) { ... } My JsObject's class: public class MyJsObject extends JavaScriptObject { ... } JsArray's class: class JsArray extends JavaScriptObject { protected JsArray() { } publ

Re: DockLayoutPanel blank

2010-03-22 Thread Pavel Byles
Don't use RootPanel. DockLayoutPanel only uses RootLayoutPanel. Also, make sure you're using Standards mode (strict) in you're html. -- 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-tool...@g

Re: GWT + Palm WebOS

2009-11-12 Thread Pavel Lahoda
I think PhoneGap (www.phonegap.com) had support for WebOS, although I can't find it on their web page right now. But there are several similar libraries how to bridge from JavaScript to get access to the phone native functions, it shouldn't be too difficult to get this. But in long run, it is bette

Re: GWT Navigation

2009-10-26 Thread Pavel Byles
AFAIK, you can only have 1 entrypoint per application. If you have a regular non-gwt html page, you could just link to your GWT app from your non-gwt page. On Sun, Oct 25, 2009 at 10:59 PM, compuroad wrote: > > I am new to GWT. The hardest thing for me is to understand the > navigation part. Let

Re: 503 Service_Unavailable error

2009-10-05 Thread Pavel Byles
Fixed it... it was some misplaced appengine jars On Mon, Oct 5, 2009 at 3:19 AM, Pavel Byles wrote: > In my console I see that there are a bunch of ClassNotFoundException > errors. > > I think that maybe it's because I deleted files from the > WEB-INF/appengine-generated

503 Service_Unavailable error

2009-10-05 Thread Pavel Byles
In my console I see that there are a bunch of ClassNotFoundException errors. I think that maybe it's because I deleted files from the WEB-INF/appengine-generated (not the war/WEB-INF/appgenerated) folder. Any idea how to possibly get this fixed? --~--~-~--~~~---~--~--

Re: GWT RPC

2009-08-10 Thread Pavel Byles
Works perfectly. Thanks for this. -- Pavel --~--~-~--~~~---~--~~ 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 unsubs

Re: GWT RPC

2009-08-10 Thread Pavel Byles
ed Sauer wrote: > Pavel, > You still will need to copy the result set into a new collection, e.g. an > ArrayList. > > Fred > > > On Mon, Aug 10, 2009 at 6:54 AM, Pavel Byles wrote: > >> Fred,I have tried transferring a JDO enhanced class from server to >&g

Re: GWT RPC

2009-08-10 Thread Pavel Byles
d transfer it one way, you can sort of get that to work. > > Fred > > > On Wed, Aug 5, 2009 at 12:26 PM, Pavel Byles wrote: > >> Ok, >> this is great news. I will try this w/o your workaround and hope for the >> best. >> >> On Wed, Aug 5, 2009 at 1

Re: GWT RPC

2009-08-05 Thread Pavel Byles
Ok, this is great news. I will try this w/o your workaround and hope for the best. On Wed, Aug 5, 2009 at 12:21 PM, Fred Sauer wrote: > Pavel, > Some of the annoyances have been cleaned up. The latest plugin takes care > of some of that. > > The biggest thing left is how to deal

GWT RPC

2009-08-05 Thread Pavel Byles
Has there been any further word on the GWT bug that requires the following workaround: http://fredsa.allen-sauer.com/2009/04/1st-look-at-app-engine-using-jdo.html? Has this been fixed in 1.7? -- -Pav --~--~-~--~~~---~--~~ You received this message because you are s

Re: Problems with hosted mode

2009-07-28 Thread Pavel Byles
This might be a hosted mode specific thing, because it worked fine in FF. Maybe when OOPHM in GWT is officially released then I can put it back in the body. When I deploy it to AppEngine I put it back in the body and everything works fine. On Mon, Jul 27, 2009 at 11:58 AM, Rajeev Dayal wrote: >

Re: Problems with hosted mode

2009-07-25 Thread Pavel Byles
I figured out the problem: Just after I synced w/ my repo I had put the nocache.js script tag in my body, which doesn't seem to load in hosted mode. But works just fine in Firefox. Putting it back in the makes it work again. --~--~-~--~~~---~--~~ You received this

Re: Problems with hosted mode

2009-07-24 Thread Pavel Byles
d.getField("profileUrl"), "status": friend.getField("status"), "displayName": friend.getDisplayName()

Re: Problems with hosted mode

2009-07-24 Thread Pavel Byles
l": friend.getField("profileUrl"), "status": friend.getField("status"), "displayName": friend.getDisplayNa

Re: Problems with hosted mode

2009-07-24 Thread Pavel Byles
: > Hey Pavel, > Can you post the contents of your web.xml file, and also the contents of > your JSP page? > > Also, where is your JSP page located? > > > Thanks, > Rajeev > > > On Thu, Jul 23, 2009 at 1:08 PM, Pavel Byles wrote: > >> I am using a J

Problems with hosted mode

2009-07-23 Thread Pavel Byles
When I do "Run/Compile" everything works just fine in Firefox at url http://localhost:8080/ Any ideas? I'm using GWT SDK 1.7.0 and GAE SDK 1.2.2 on Ubuntu/Eclipse 3.4.2 w/ Sun JDK 1.6.0_13 -- -Pavel --~--~-~--~~~---~--~~ You received this message b

Re: Newbie Question - Integrate GWT on Existing page

2009-06-23 Thread Pavel Byles
Sure it's feasible. Just create ur GWT widget and include the *.nocache.js file in your html. You can use GWT to place the widget anywhere on your page. On Tue, Jun 23, 2009 at 10:32 PM, Andrew wrote: > > Hi All, > > Is it possible to integrate GWT onto an existing page? > > For example, if I w

Re: VerticalPanel error

2009-06-20 Thread Pavel Byles
Found fix. Making the verticalpanel's static solves it. On Sun, Jun 21, 2009 at 12:57 AM, Pavel Byles wrote: > Just to be clear, > I'm using GWT1.6, error occurs in FF and Chrome (didn't check any other > browser yet), and I call addSiteFriends(myJsObj) from

Re: VerticalPanel error

2009-06-20 Thread Pavel Byles
Just to be clear, I'm using GWT1.6, error occurs in FF and Chrome (didn't check any other browser yet), and I call addSiteFriends(myJsObj) from javascript in the html. EntryPoint does contain other stuff... so mainPanel is added to RootPanel... On Sat, Jun 20, 2009 at 9:36 PM, Pavel By

VerticalPanel error

2009-06-20 Thread Pavel Byles
I am getting an error when using VerticalPanel. Here's the error as reported by Firebug: c.a is undefined-- I am calling a Java method from Javascript Here's the GWT code: public class Caribbeanvisit implements EntryPoint { /** * This is the entry point method. */ final VerticalPanel s

Re: NullPointerException in the StockWatcher on gwt-mac-1.6.4

2009-05-16 Thread Pavel
Hi Sumit, I have solved the problem by updating Mac OS X to version 10.5.7. Thank you, Pavel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Re: Enhancement to Tutorial on GWT-RPC

2009-05-15 Thread Pavel Byles
This is a popular issue with most people including myself.Do a search for discussions on this in this group and you will find a lot of answers. On Fri, May 15, 2009 at 10:06 AM, alessandro wrote: > > In section "2. Invoking the service from the client", in the paragraph > titled "Test the Remote

Re: Application out of Date error

2009-05-12 Thread Pavel Byles
sure what the best >> work around is. I do know Ray Cromwell has done some looking into it. >> > > Thanks, Miguel. > > @Pavel I think a good starting point is here: > > http://timepedia.blogspot.com/2009/04/google-appengine-and-gwt-now-marriage.html > > A key

Re: Application out of Date error

2009-05-12 Thread Pavel Byles
(comment out the persistence > annotations, rebuild, and return a dummy one that was not instantiated by > the ORM code)? I wonder if this is the ORM and GWT-RPC incompatibility. > > > On Tue, May 12, 2009 at 1:00 PM, Pavel Byles wrote: > >> I suspect it has something to d

Re: Application out of Date error

2009-05-12 Thread Pavel Byles
I suspect it has something to do with the object I am returning. When I use the same service to return a String or a simple class that contains a String everything works fine. But when I try to return instances of Country then I get the error. Any ideas why this happens? Here is the Country clas

Re: Application out of Date error

2009-05-12 Thread Pavel Byles
x27;s still not fixed, but I've had this error message when > the service is returning null and I was expecting it to return something. > > Ian > > http://examples.roughian.com > > > 2009/5/12 Pavel Byles > >> Ian, >> I'm using whatever came with the G

Re: Application out of Date error

2009-05-12 Thread Pavel Byles
s view to right click and bring back in the proper gwt servlet jar. >> >> HTH >> Fred >> >> On May 12, 2009 8:04 AM, "Pavel Byles" wrote: >> >> Ian, >> I'm using whatever came with the Google Eclipse Plugin (1.6.4) >> When I tried updat

Re: Application out of Date error

2009-05-12 Thread Pavel Byles
EB-INF/lib and the use the problems > view to right click and bring back in the proper gwt servlet jar. > > HTH > Fred > > On May 12, 2009 8:04 AM, "Pavel Byles" wrote: > > Ian, > I'm using whatever came with the Google Eclipse Plugin (1.6.4) > Whe

Re: Application out of Date error

2009-05-12 Thread Pavel Byles
vlet.jar (i.e. > everything is 1.6.4 or whatever) and that the correct versions of the > compiled servlets are being used on the server. > > Ian > > http://examples.roughian.com > > > 2009/5/12 Pavel Byles > > I tried cleaning the project and running it again. Same thing. I

Re: Application out of Date error

2009-05-12 Thread Pavel Byles
s... > > On May 11, 9:09 pm, Pavel Byles wrote: > > The error I'm getting is: *This application is out of date, please click > the > > refresh button on your browser.* > > com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This > > application

Application out of Date error

2009-05-11 Thread Pavel Byles
The error I'm getting is: *This application is out of date, please click the refresh button on your browser.* com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date, please click the refresh button on your browser. at com.google.gwt.user.client.rpc.im

Re: RPC callback problem

2009-05-11 Thread Pavel Byles
What was the mistake? On Wed, May 6, 2009 at 4:06 PM, Ouaibou wrote: > > There was a little mistake in my DTO. Now all is okay. > > Thanks for your help. > > On 6 mai, 20:23, Ouaibou wrote: > > I have tried with DTO but i always have the following error : > > > > This application is out of date

Re: GWT and Google Crawler

2009-05-11 Thread Pavel Byles
The Google Crawler will just not be able to pick up the AJAX parts of ur site. Maybe it might help to put some text in parts of ur site that will get replaced by gwt widgets, that way the crawler will have an idea of what's on ur site. On Mon, May 11, 2009 at 3:33 AM, Danny Schimke wrote: > > My

Re: RequestURI

2009-05-04 Thread Pavel Byles
Thanks. It was also in the greeting demo. On Mon, May 4, 2009 at 3:54 PM, gwtGrady wrote: > > If you are in the service implementation class: > this.getThreadLocalRequest().getRequestURI(); > > On May 4, 1:16 pm, Pavel Byles wrote: > > How do I get the request

RequestURI

2009-05-04 Thread Pavel Byles
How do I get the requestURI? --~--~-~--~~~---~--~~ 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 em

NullPointerException in the StockWatcher on gwt-mac-1.6.4

2009-04-29 Thread Pavel
405) at com.google.gwt.dev.HostedMode.main(HostedMode.java:232) Any help is appreciated. Thank you, Pavel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send em

Re: Module Dependency Issue

2009-03-12 Thread Pavel Byles
dule_A and Module_B will be executed when Module_B loads since B > inherits A's entry point. Refactoring so that A and B inherit from a > common base (without an entry point) will solve that. > > > > On Thu, Mar 12, 2009 at 12:56 PM, Pavel Byles > wrote: > > Well it&#

Re: Module Dependency Issue

2009-03-12 Thread Pavel Byles
endencies in this way usually results in better > code. > > > On Thu, Mar 12, 2009 at 12:35 PM, Pavel Byles > wrote: > > I was hoping I wouldn't have to do this > > Thanks Isaac. > > > > On Thu, Mar 12, 2009 at 11:32 AM, Isaac Truett > wrote: > >

Re: Module Dependency Issue

2009-03-12 Thread Pavel Byles
I was hoping I wouldn't have to do this Thanks Isaac. On Thu, Mar 12, 2009 at 11:32 AM, Isaac Truett wrote: > > Pavel, > > No, you can't exclude part of an inherited module. What you can do is > refactor your modules so that you aren't inheriting bits you don&#x

Module Dependency Issue

2009-03-12 Thread Pavel Byles
I have a module ("Module_A") that inherits and requires the gwt_google_maps_api and another ("Module_B") that inherits from Module_A. But Module_B doesn't need to use the gwt_google_maps_api. Everything compiles and deploys just fine, but when running the web application (Module_B) there is a javas

  1   2   >