Re: Entry point

2023-05-17 Thread Colin Alworth
day, May 14, 2023 at 11:44:47 PM UTC-5 ronjos...@gmail.com wrote: > Thank you Colin for responding , > > Can we use the entry point for some specific page or widget in the > application? > e.g. There is a dialog in the application on which if clicked on edit > button , we

Re: Entry point

2023-05-14 Thread Ronit
Thank you Colin for responding , Can we use the entry point for some specific page or widget in the application? e.g. There is a dialog in the application on which if clicked on edit button , we see another dialog on which there is a button to add files. Can we use the entry point to drag and

Re: Entry point

2023-05-14 Thread Colin Alworth
While it is technically possible to have more than one EntryPoint declared in your .gwt.xml files(s), order might be hard to control precisely. I believe the order is deterministic, but not strictly defined by the compiler (likely the order in which entry-point> tags are encountered w

Entry point

2023-05-14 Thread Ronit
Hello Team, I am new to GWT and working on an existing system. My application has already got an entry point. Can I have one more implementation of the Entrypoint ? Thanks in advance Ronit -- You received this message because you are subscribed to the Google Groups "GWT Users"

Re: Element type "entry-point" must be declared.

2021-11-26 Thread Craig Mitchell
The DTD is also included with the GWT SDK. So you can just point it there. Eg: (change the location path to where you have your GWT SDK) On Wednesday, 24 November 2021 at 4:01:56 pm UTC+11 manish@gmail.com wrote: > In dtd , www. Was missing. Eclipse issue. > > Adding the same resolved

Re: Element type "entry-point" must be declared.

2021-11-23 Thread Fast prep
In dtd , www. Was missing. Eclipse issue. Adding the same resolved the issue. Thanks Thomas for your help. Regards. Manish On Tue, 23 Nov, 2021, 5:04 pm Thomas Broyer, wrote: > Those errors are *only* about the XML DTD validation, but they actually > won't affect GWT itself. > > It looks lik

Re: Element type "entry-point" must be declared.

2021-11-23 Thread Thomas Broyer
Those errors are *only* about the XML DTD validation, but they actually won't affect GWT itself. It looks like there's a problem with the gwtproject.org site that doesn't serve the doctype/2.8.1/gwt-module.dtd and instead redirects back to the home page, breaking XML DTD validation altogether (

Element type "entry-point" must be declared.

2021-11-23 Thread Fast prep
http://gwtproject.org/doctype/2.8.1/gwt-module.dtd";> I am getting these errors . I am new to GWT . Kindly help -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from thi

GWT module with Jsinterop exports but without an entry point is skipped during production compilation

2017-05-30 Thread Daniel Harezlak
Hi, For a module with Jsinterop exports to be compiled I need to create a dummy entry point, otherwise it is skipped. I have the generateJsInteropExports flag set. The module inherits only from com.google.gwt.user.User and elemental2.dom.Dom modules which I suppose do not have entry points of

ClassCastException while loading entry-point class

2015-09-09 Thread narasimhulu . bysani
All, My application uses GWT 2.7.0 and com.extjs.gxt version 2.3.1a-gwt22. Compilation succeeded with warnings. Application is not loaded on the browser and got class cast exception at com.westdata.xro.xrogwt.client.XROClientController from the script. Please let me know what mistake I am do

Re: Can we use multiple mvp using single Entry point.

2014-10-11 Thread Jens
> > Is there a way to display two/more views at the same time in > the same container? > Sure, as long as you want to manage all these views in the same activity. In that case just put your views into a FlowPanel and then add that FlowPanel into the activity's display area. -- J.

Re: Can we use multiple mvp using single Entry point.

2014-10-11 Thread Anoob C I
Hai Jens, Is there a way to display two/more views at the same time in the same container? If so, can you suggest me solutions? On Thursday, August 7, 2014 7:56:25 PM UTC+5:30, Jens wrote: > > ActivityManager module1ActivityManager = new > ActivityManager(1stModuleActi

Re: Can we use multiple mvp using single Entry point.

2014-08-07 Thread Cristian Rinaldi
n Wednesday, August 6, 2014 11:58:38 AM UTC+5:30, Naveen wrote: >> >> Can we use multiple mvp using single Entry point.(multiple activity >> mapper and multiple activity manager for single Entry point.) >> > -- You received this message because you are subscribed to th

Re: Can we use multiple mvp using single Entry point.

2014-08-07 Thread Jens
> > > ActivityManager module1ActivityManager = new > ActivityManager(1stModuleActivityMapper, > eventBus);module1ActivityManager.setDisplay(commonDisplay); > ActivityManager module2ActivityManager1 = new > ActivityManager(2ndModuleActivityMapper, eventBus); > module2ActivityManager1 .setDisplay

Re: Can we use multiple mvp using single Entry point.

2014-08-07 Thread V.B.
This may or may not be relevant for your particular use-case, but have a look at slotted . For us, it picks up where Activities and Places leaves off. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Re: Can we use multiple mvp using single Entry point.

2014-08-06 Thread Naveen
(commonDisplay); ActivityManager module2ActivityManager1 = new ActivityManager(2ndModuleActivityMapper, eventBus); module2ActivityManager1 .setDisplay(commonDisplay); On Wednesday, August 6, 2014 11:58:38 AM UTC+5:30, Naveen wrote: > > Can we use multiple mvp using single Entry point.(multiple ac

Re: Can we use multiple mvp using single Entry point.

2014-08-06 Thread Jens
Sure. It is great for defining multiple display areas in your app. Take a read: http://blog.ltgt.net/gwt-21-activities-nesting-yagni/ -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving

Can we use multiple mvp using single Entry point.

2014-08-06 Thread Naveen
Can we use multiple mvp using single Entry point.(multiple activity mapper and multiple activity manager for single Entry point.) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiv

Re: Unable to load module entry point

2014-04-03 Thread Francesco Viscomi
tting the this errors whenever I try to run the example > tutorial from GWT website. > This errors appear on the Development Mode Window: > > [ERROR] [stockwatcher] - Unable to load module entry point class > com.google.gwt.sample.stockwatcher.client.StockWatcher (see associated

Re: Multi-module maven project with GWT entry point and war creation in separate module

2014-02-13 Thread Juan Pablo Gardella
See https://github.com/tbroyer/gwt-maven-archetypes 2014-02-13 6:38 GMT-03:00 Federico De Faveri : > HI, > It is possible to have a multi-module maven project where the main GWT > application is in a module A and the war creation is done in module B? > > Any example or suggestion how to do that?

Multi-module maven project with GWT entry point and war creation in separate module

2014-02-13 Thread Federico De Faveri
HI, It is possible to have a multi-module maven project where the main GWT application is in a module A and the war creation is done in module B? Any example or suggestion how to do that? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. T

How not load a library into a entry point?

2013-11-04 Thread Mario Molina
ave made this type unavailable [ERROR] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly I need the app and the plugin in the same GAE Application, because both share the DB

Re: Split points vs. separate entry point modules for reducing load time

2012-10-16 Thread Manuel Carrasco Moñino
#1 is the best ! #2 will make the user download much more js, think that you need a different html for each page, and each single module will duplicate a lot of gwt core code (java.lang, collections, etc). I've used kind of #2 approach for another scenario: SEO friendly webs, I mean, webs designe

Split points vs. separate entry point modules for reducing load time

2012-10-16 Thread bvt
Hi, We're developing a fairly large GWT web application and would like to minimize the initial load time and the size of the scripts users will have to download on first load. The two main approaches for achieving this goal this seem to be: 1. Using code splitting (we're likely to have arou

Invoking the entry point create new Session if WebCastellum is used

2012-07-19 Thread Rasha ElSayed
Hi I am using GWT 2.4 and I am facing strange problem My application is based on spring webflow, my page is entered using webflow then it initiates GWT entry point to draw some controls I am also using WebCastellum security proxy The problem is everytime I enter my page a new session is

Re: Add HTMLelement from entry Point class

2012-05-30 Thread Joseph Lust
Vivek, Your code works fine for me (GWT 2.4 starter project). Not sure why it is not work for you, so I think it has to be one of the following: - Are you sure the code is getting run? Perhaps you can step through with break points. - Are you sure you have the in your entry HTML p

Add HTMLelement from entry Point class

2012-05-30 Thread Vivek MS
I have a `` in my HTML page. What I need to do is, add `` element inside it from my Entry point class. I have tried from onModuleLoad function using below code, UListElement ul=Document.get().createULElement(); ImageElement img=Document.get().createImageElement

Re: Using a widget / module / entry point from another separate project

2012-03-27 Thread Joseph Lust
Archmisha, Check out the POMs in this GitHub fork of mine . - The first project builds a GWT module, and its docs & src. - They are installed into your local repo - The second project inherits it in the *.gwt.xml module - Now the secon

Re: Using a widget / module / entry point from another separate project

2012-03-26 Thread Steve Moyer
That's not quite how it works ... your first project should produce a JAR file that includes both the compiled classes AND the source files. You'll include this library in your second project and GWT will compile IT ALL from scratch in the second project. smoyer -- You received this message bec

Using a widget / module / entry point from another separate project

2012-03-15 Thread archmisha
Hi, I have 2 gwt web projects (separate maven projects). I want from one project to be able to use a widget from another. I create a separate entry point in the second project and tried importing the javascript generated by second project into the first one. But it doesnt seem to work. I am

Re: Entry Point

2011-12-20 Thread Ed Bras
> I do the following: It's not a very elegant solution and you still have only one entry point. You mainly dispatch depending on the action found in the url. I would definitely get ride of the refresh action which causes an extra server-client round trip. Round trips should be minimized

Re: Entry Point

2011-12-20 Thread Maximilian Eberl
index.html?admin Now create a Main.java as real entry point: public void onModuleLoad() { String url = Window.Location.getHref(); if ( url.indexOf("?admin")>-1 ) { Admin admin = new Admin(); RootPanel.get().add(admin); } else if ( url.indexOf("?m

Re: Entry Point

2011-12-14 Thread Javo Rosales
Nope, you only have one entry point 2011/12/14 athul gopal > Hi, > How we can use multiple entry points in a page..?? > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, s

Re: Entry Point

2011-12-14 Thread Ed
What do you want to do? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/q7Xg4ZlufoUJ. To post to this group, send email to google-web-toolkit@go

Entry Point

2011-12-14 Thread athul gopal
Hi, How we can use multiple entry points in a page..?? -- 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

[Problem] Unable to load module entry point with tutorial GWT project

2011-07-25 Thread Cedric Lemaitre
ml. I Have the following error. How to fix the problem? Best, Cédric PS configuration Mac OS 1.6.7 Chrome Eclispe 3.7 17:16:27.179 [ERROR] [stockwatcher] Unable to load module entry point class com.google.gwt.sample.stockwatcher.client.StockWatcher (see associated exception for de

Re: entry point being ignored

2011-07-14 Thread Dennis Haupt
did you put a Window.alert in your entry point so you can check if it's called at all? did you register the moved entry point in your main gwt .xml? 2011/7/14 Benjamin > Hi All, > > I was happily coding away in IntelliJ and moved a large chunk of code > into another module, an

entry point being ignored

2011-07-14 Thread Benjamin
Hi All, I was happily coding away in IntelliJ and moved a large chunk of code into another module, and then added that module to my main GWT project as a dependency. Everything works perfectly in dev mode when I run the debugger etc. When I deploy to app engine it's as if my Entry Point modu

Setting Entry point different html pages

2011-07-13 Thread aman
Hi, I am changing my html page by using Window.Location.replace("newURL"); now I want to set the Entrypoint class for the html page having "newURL". Thanks, Aman -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, sen

Re: Unable to load module entry point class

2011-06-21 Thread Ben Munge
Can you post your code for WelcomePage? On Jun 20, 11:42 am, SCK wrote: > Hi, > > I'm new developer in GWT. I try somthing and when I want to Run the > application, I get error "Failed to load Module". > See error in below: > > [ERROR] Una

Unable to load module entry point class

2011-06-20 Thread SCK
Hi, I'm new developer in GWT. I try somthing and when I want to Run the application, I get error "Failed to load Module". See error in below: [ERROR] Unable to load module entry point class com.Habou.client.WelcomePage (see associated except

adding gwt entry point to struts web project

2011-02-15 Thread mariyan nenchev
Hi, I have standard struts web project build with maven. I want to add one jps in this web project that hosts gwt entry point. For this I created separate project for my gwt stuff, which is also build with maven and produce .jar file (the jar is as lib and contains *.java). I added this jar (and

Displaying A Single Entry Point

2011-01-31 Thread Nick Apperley
Whenever I run the application the contents of the two entry points are displayed on the same web page even though only one entry point is being displayed. Attempted to fix the problem by removing the old entry point (source file), and adjust the xml file to point to the new entry point but still

Re: Unable to load module entry point

2011-01-20 Thread Y2i
Does the app run in the hosted mode? Where do you deploy the app after it compiles? -- 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,

Unable to load module entry point

2011-01-19 Thread Sednus
Hi all, I keep getting the this errors whenever I try to run the example tutorial from GWT website. This errors appear on the Development Mode Window: [ERROR] [stockwatcher] - Unable to load module entry point class com.google.gwt.sample.stockwatcher.client.StockWatcher (see associated

Getting error finding entry point class( Using ant script )

2010-10-18 Thread Reh
Compiling module com.dummy.gwt.stockwatcher [java]Finding entry point classes [java] [ERROR] Unable to find type 'com.dummy.gwt.stockwatcher.client.StockWatcher' [java] [ERCompiling module com.atypon.gwt.stockwatcher [java] Finding entry poi

Re: GWT-Ext - Unable to load module entry point class...

2010-10-17 Thread pionas
Can help anyone? -- 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...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For

GWT-Ext - Unable to load module entry point class...

2010-10-16 Thread pionas
3.960 [ERROR] [exttext] Unable to load module entry point class com.extext.client.ExtText (see associated exception for details) com.google.gwt.core.client.JavaScriptException: (TypeError): $wnd.Ext is undefined fileName: http://127.0.0.1: lineNumber: 227 stack: ()@http://127.0.0.1::227 co

GWT Entry point Configuration

2010-10-06 Thread Arun
Hi I have to create one login module using GWT with RPC with the functionality of login, registration and forgotPassword. Login is working fine. Now i have to proceed for registration and forgot password but i have in trouble to configure entry point. In my login page i have created hyperlink

Re: mobilescrollpanel entry point?

2010-08-22 Thread asianCoolz
when i included in my application. it mentioned Mobile.gwt.xml do not have entry point. I do have entry point in my application -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to googl

Re: mobilescrollpanel entry point?

2010-08-22 Thread Stefan Bachert
Hi, there is no need for widgets to have an entry point. Your app need an entry point. Stefan Bachert http://gwtworld.de On 20 Aug., 15:37, asianCoolz wrote: > i try to use mobilescrollpanel in my project. in my project, i put > > > > but when i open up Mobile.gwt.xml, the

mobilescrollpanel entry point?

2010-08-20 Thread asianCoolz
i try to use mobilescrollpanel in my project. in my project, i put but when i open up Mobile.gwt.xml, there is not entry point pre- defined. i get below error: Module has no entry points defined how to fix it? -- You received this message because you are subscribed to the Google Groups

Re: server side entry point to open/close database?

2010-06-23 Thread roji
se you'll have a leak. Shay On Jun 23, 9:51 am, Magnus wrote: > Hello, > > after your post I would open/close my db within each service call. > > If I would do it with a pool, I would need 2 entry points, one to open > the pool and one to close it. If I would go this

Re: unable to lode moduloe entry point class

2010-06-23 Thread Ravi kumar
ror . > Tnx in advance > > Regards, > Ravi Kumar Chaurasia > Dept of Information Technology > NIT,Durgapur > > > > > > On Tue, Jun 22, 2010 at 11:54 AM, Ravi Kumar > wrote: > >> Unable to load module entry point class >> >> 11:2

Re: unable to lode moduloe entry point class

2010-06-23 Thread Ravi kumar
wrote: > Unable to load module entry point class > > 11:29:28.742 [ERROR] [stockwatcher] Unable to load module entry point > class com.google.gwt.sample.stockwatcher.client.StockWatcher (see > associated exception for details) > java.lang.NullPointerExcep

unable to lode moduloe entry point class

2010-06-23 Thread Ravi Kumar
Unable to load module entry point class 11:29:28.742 [ERROR] [stockwatcher] Unable to load module entry point class com.google.gwt.sample.stockwatcher.client.StockWatcher (see associated exception for details) java.lang.NullPointerException: null at

Re: server side entry point to open/close database?

2010-06-23 Thread Magnus
Hello, after your post I would open/close my db within each service call. If I would do it with a pool, I would need 2 entry points, one to open the pool and one to close it. If I would go this way, would these entry point exist (is there a deinit)? Thanks Magnus On 20 Jun., 15:58, roji wrote

Re: server side entry point to open/close database?

2010-06-20 Thread roji
e to open and close the database on the server side, and > where to store the database connection. > > At this point, I only have the server side implementation of my RPC > services. But there is no place to store my Connection object and no > entry point like "onServerLoad" or

server side entry point to open/close database?

2010-06-20 Thread Magnus
Hi, I wonder where to open and close the database on the server side, and where to store the database connection. At this point, I only have the server side implementation of my RPC services. But there is no place to store my Connection object and no entry point like "onServerLoad" or

Re: How to invoke GWT entry point from external java script

2010-02-12 Thread Eric Blanchette
String referral = Window.Location.getParameter("referral"); On Feb 11, 10:26 am, ramesh wrote: >  Hai All, > >   I am new to GWT. i am facing problem to call my GWT entry point > class from out side script. > >  Can any one explain ,how can i invoke my GWT appli

Re: How to invoke GWT entry point from external java script

2010-02-12 Thread Eric Blanchette
String referral = Window.Location.getParameter("referral"); On Feb 11, 10:26 am, ramesh wrote: >  Hai All, > >   I am new to GWT. i am facing problem to call my GWT entry point > class from out side script. > >  Can any one explain ,how can i invoke my GWT appli

How to invoke GWT entry point from external java script

2010-02-11 Thread ramesh
Hai All, I am new to GWT. i am facing problem to call my GWT entry point class from out side script. Can any one explain ,how can i invoke my GWT application from outside script?? and i need to pass parameter like "referral=abc" to my entry point. my application will work in h

Re: How do I boostrap my Entry Point class with the User service?

2009-10-27 Thread Max Zhu
ct 25, 2009 at 2:43 AM, nacho wrote: > > Hi, im developing an aplication in gwt and i have an entry point > class. What i do no realize how to do is how to only permit access to > the user that is logged using the user service ( > http://code.google.com/appengine/docs/java/gettingsta

Re: How do I boostrap my Entry Point class with the User service?

2009-10-25 Thread Adam T
This tutorial might help, particularly section 3 that covers using AppEngine User service in GWT : http://code.google.com/webtoolkit/tutorials/1.6/appengine.html //Adam On 24 Okt, 19:43, nacho wrote: > Hi, im developing an aplication in gwt and i have an entry point > class. What i

How do I boostrap my Entry Point class with the User service?

2009-10-24 Thread nacho
Hi, im developing an aplication in gwt and i have an entry point class. What i do no realize how to do is how to only permit access to the user that is logged using the user service ( http://code.google.com/appengine/docs/java/gettingstarted/usingusers.html ) Do i have to put something in the

Re: Single entry point, multiple root panel Ids, display just one of them not showing

2009-08-28 Thread Anurag Setia
There are Panels which can hold multiple widget within them which u could use. Else... if you wanted to reuse UI components.. look at Composite class.. it an abstract class which could be used to create complex widgets, pretty simple as well --~--~-~--~~~---~--~~

Re: Single entry point, multiple root panel Ids, display just one of them not showing

2009-08-28 Thread Ian Bambury
t; > > > http://examples.roughian.com > > > > 2009/8/28 ccx163 > > > > > > > > > Hi, > > > > > I'm just getting to grips with GWT and have created some cool > > > widgets. However, I have a problem. The following il

Re: Single entry point, multiple root panel Ids, display just one of them not showing

2009-08-28 Thread ccx163
; > Ian > > http://examples.roughian.com > > 2009/8/28 ccx163 > > > > > Hi, > > > I'm just getting to grips with GWT and have created some cool > > widgets.  However, I have a problem.  The following illustrates this > > > If I have a GWT app

Re: Single entry point, multiple root panel Ids, display just one of them not showing

2009-08-28 Thread Ian Bambury
an.com 2009/8/28 ccx163 > > Hi, > > I'm just getting to grips with GWT and have created some cool > widgets. However, I have a problem. The following illustrates this > > If I have a GWT app that in the 'onModuleLoad()' of the entry point > class has t

Single entry point, multiple root panel Ids, display just one of them not showing

2009-08-28 Thread ccx163
Hi, I'm just getting to grips with GWT and have created some cool widgets. However, I have a problem. The following illustrates this If I have a GWT app that in the 'onModuleLoad()' of the entry point class has the following RootPanel.get("slot1").add(new Button (

Re: GWT + Google Maps [ERROR] Unable to load module entry point class

2009-08-18 Thread Marcin Zawadzki
hey Eric - your solution for IE proxy setting was very helpfull :) I was truggling with the same issue againts gwt 1.7.0. Was working in FF but not in IE or hosted mode. Thanks again. On Fri, Apr 10, 2009 at 4:16 PM, Eric Ayers wrote: > Use the Directions class or Polyline class if you don't wan

Replace entry point class depending on html file(page)

2009-08-05 Thread Ice13ill
Hello, I'm trying to use the tag in .gwt.xml in my GWT project to replace the entrypoint class depending on the html page. I was wondering if there is a way of finding out (in the .gwt.xml file with the property name for example ) what html page is being loaded. Any advices ? --~--~-~--~-

multi paging or multi module or one module two entry point ?

2009-07-10 Thread Baki HAYAT
Hi everyone I am working on a basic level project,but i have a problem that i can not solve it. Problem:i have a main page and also there is a login panel.ıf users login,different page must be shown,but if admins login different page must be shown.How can i do this. -Should i use different modul

Re: Is it possible to call the GWT Service outside the entry point?

2009-06-11 Thread retha pasalli
> perhaps this little discussion would be of some > help:http://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa... > > -jason Great illustration!! Thx jason.. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Is it possible to call the GWT Service outside the entry point?

2009-06-11 Thread Jason Essington
perhaps this little discussion would be of some help: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/faca1575f306ba0f/3be719c021aa19bd -jason On Jun 11, 2009, at 4:05 AM, retha pasalli wrote: > > Hi Mr. Kushner, > > Thx for your reply. I've tried to call the service from

Re: Is it possible to call the GWT Service outside the entry point?

2009-06-11 Thread retha pasalli
Hi Mr. Kushner, Thx for your reply. I've tried to call the service from a class extending Composite class. And it works! But I still can't find why it doesn't work when I call it in class extending nothing. But that's not an urgent problem for me for a while. Hehehe.. Once more thx... Regards,

Re: Is it possible to call the GWT Service outside the entry point?

2009-06-11 Thread Jonathan Kushner
with RPC's. Something in the logic isn't accurate, but your question over RPC calling is fine as long as it remains within the client domain. Good luck. On Wed, Jun 10, 2009 at 10:08 PM, retha pasalli wrote: > > Hi everybody... > > I want to know whether I can call the AsyncCa

Is it possible to call the GWT Service outside the entry point?

2009-06-10 Thread retha pasalli
Hi everybody... I want to know whether I can call the AsyncCallback outside the entry point. I have tried to create a class named UserServiceCall to call all service to retrieve and insert/edit/delete User data. The class contain the code to call the service (AsyncCallback object with onFailure

Is it possible to call a model class method from an entry-point class of gwt

2009-06-10 Thread subbu
Is it possible to call a model class method from an entry-point class of 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 Google-W

Is it possible to call a model class method from an entry-point class of gwt

2009-06-09 Thread subbu
Hi all, I want to call my model class method from an entry point java code.Such as i want to call a method on the click event of a button that will save some data to the db.Is it possible with out RCP.Some thing like the following. Button iconButton = new Button("Save&

Re: 1.5 to 1.6 - Hosted Mode - entry point is not a javax.servlet.Servlet warning

2009-06-07 Thread erebrus
ain html file > moving the contents of public to war. > > However, when I try to run into hosted mode, it can't somehow find the > html and before it gives me warning that my entry point class isn't a > java.servlet.Servlet. Not only the class hasn't been changed (and

1.5 to 1.6 - Hosted Mode - entry point is not a javax.servlet.Servlet warning

2009-06-06 Thread erebrus
w find the html and before it gives me warning that my entry point class isn't a java.servlet.Servlet. Not only the class hasn't been changed (and is therefore a entry point class), but eclipse itself identifies it as an entry point class in the running configurations. Can anybody provid

Re: about multiple module & entry point

2009-05-20 Thread Magius
It's possible to have only 1 module with N EntryPoints. It saves compilation time & size. It was discussed in http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/9947939a4c8e9944/6f9daca5951d6266?hl=en&lnk=gst&q=entrypoint+magius#6f9daca5951d6266 This is what did 2 years ago,

Re: about multiple module & entry point

2009-05-19 Thread Alyxandor
Sounds like you've got static code blocks executing for both modules because they are in the same package. To make two mutually-exclusive modules, you need to put the different modules in different packages... In fact, you'll need three packages at least... One for common classes, and one each

about multiple module & entry point

2009-05-19 Thread zeroonea
hi, i have two form in two separate webpage 1. Add Product : addproduct.html 2. Product Manager: productmanager.html i created 2 module, but compiled size is too big, about ~2mb for each module. i tried to create 2 entry point in one module but addproduct page will load script of productmanager

Re: GWT Module inheritance and entry point class

2009-05-13 Thread Alyxandor
n the package to be executed. Your app only NEEDS one entry point: The one you tell the compiler to execute, like a main() function; after that, EntryPoints are only needed when you want GWT to create a non- static object of the EntryPoint class, and execute it's main onModuleLoad method. Th

Re: GWT Module inheritance and entry point class

2009-05-13 Thread Ian Bambury
, if not, just say. Ian http://examples.roughian.com 2009/5/13 sim123 > > Thanks for reply, it worked. I could call service layer of module A > without loading the entry point class. I would appreciate if you could > help me understand how does it works, for example my application

Re: GWT Module inheritance and entry point class

2009-05-13 Thread sim123
Thanks for reply, it worked. I could call service layer of module A without loading the entry point class. I would appreciate if you could help me understand how does it works, for example my application name is "Test" so I have Test.gwt.xml in com.user.sim.test package. I create an

Re: GWT Module inheritance and entry point class

2009-05-13 Thread Alyxandor
Aye, use deferred binding to override any direct references to the code you want to include. Be careful of static fields that are auto initialized, and static code blocks, as you CANNOT override these. Even if you never access the static object, GWT must inc

Re: GWT Module inheritance and entry point class

2009-05-13 Thread Magius
If you want to use the module A separatly you can create a C module with the EntryPoint from A. On May 13, 2:24 am, Ian Bambury wrote: > Have a module (*.gwt.xml) file for A that doesn't define an entry point and > inherit that in the module file for B > Ian > > http://e

Re: GWT Module inheritance and entry point class

2009-05-12 Thread Ian Bambury
Have a module (*.gwt.xml) file for A that doesn't define an entry point and inherit that in the module file for B Ian http://examples.roughian.com 2009/5/13 sim123 > > I have two GWT modules A and B and where B is inheriting A. When I run > B application, GWT tries to load B

GWT Module inheritance and entry point class

2009-05-12 Thread sim123
I have two GWT modules A and B and where B is inheriting A. When I run B application, GWT tries to load B.java and then A.java. I don't want to load A.java. B uses A but it has it's own API, is there any way to prevent loading of A via B, as I can not make any changes in A. Thanks for all the hel

Re: GWT + Google Maps [ERROR] Unable to load module entry point class

2009-04-10 Thread Eric Ayers
Use the Directions class or Polyline class if you don't want to follow roads. On Fri, Apr 10, 2009 at 6:00 AM, nmadzharov wrote: > > Oh I see, > > my IE is not working properly anyway, so that must be the reason. > Thanks very much for the help. > > I have one more question. I have two markers o

Re: GWT + Google Maps [ERROR] Unable to load module entry point class

2009-04-10 Thread nmadzharov
Oh I see, my IE is not working properly anyway, so that must be the reason. Thanks very much for the help. I have one more question. I have two markers on the map, respectively I have lat and long coordinates for both and I want to have the route (actual travel) distance between them. What is th

Re: GWT + Google Maps [ERROR] Unable to load module entry point class

2009-04-09 Thread Eric Ayers
If you are working on Windows, any Internet Explorer settings you have will also affect the hosted mode browser, as it simply imbeds IE. Does your project work in Internet Explorer? maybe it has to do with proxy or security settings? On Thu, Apr 9, 2009 at 4:53 PM, nmadzharov wrote: > > :( > >

Re: GWT + Google Maps [ERROR] Unable to load module entry point class

2009-04-09 Thread nmadzharov
:( project now works when browsed in FireFox it does not when I run it in hosted mode google browser --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Re: GWT + Google Maps [ERROR] Unable to load module entry point class

2009-04-09 Thread nmadzharov
1. http://code.google.com/eclipse/docs/creating_new_webapp.html - It works fine 2. I unzip gwt-maps-1.0.3.tar.gz into C:\Documents and Settings\nmadzharov\Desktop\TSPGoogleMaps\workspace \ExampleWebApp\war\WEB-INF\lib 3.Build Path -> Libraries -> Jars: gwt-maps.jar 4. I modify all the files as the

Re: GWT + Google Maps [ERROR] Unable to load module entry point class

2009-04-09 Thread Eric Ayers
You need to go back to firebug and look at the network view and make sure the URL is loading when you run your app. The error you have sent indicates that it is not. On Thu, Apr 9, 2009 at 4:24 PM, nmadzharov wrote: > > Yes, I reach it. > > var G_INCOMPAT = false;function GScript(src) {documen

Re: GWT + Google Maps [ERROR] Unable to load module entry point class

2009-04-09 Thread nmadzharov
Yes, I reach it. var G_INCOMPAT = false;function GScript(src) {document.write('<' + 'script src="' + src + '"' +' type="text/javascript"><' + '/script>');} function GBrowserIsCompatible() {if (G_INCOMPAT) return false;return .. --~--~-~--~~~---~--~~ You

Re: GWT + Google Maps [ERROR] Unable to load module entry point class

2009-04-09 Thread Eric Ayers
Are you sure you can reach the Maps API site? Put this URL in your web browser: http://maps.google.com/maps?file=api&v=2 You should get back a hunk of javascript On Thu, Apr 9, 2009 at 4:10 PM, nmadzharov wrote: > > hi ,im on the project once again. > > now im using the new gwt 1.6. > > I ha

  1   2   >