Re: Help: Development of large App with GWT

2010-10-04 Thread lalit
With ability to bid on multiple bidding at the same time I think what you are leveraging is the ability to do multiple AJAX calls to server simultaneously which is GWT strength but is not unique to GWT. There are many AJAX engines out there. I feel where GWT stands out is to able to push a lot of

Re: New GWT 2.0 Book

2010-10-04 Thread lalit
I think it's fair enough for a developer of the framework to write a book. This gives a more comprehensive insight in the framework. Buying a book is a choice to be exercised by us . No one forces us. If it is well written and worth it why not buy it. As far as documentation goes, I do agree that

Re: Minimalistic JPA in GWT 2.1.0.M3

2010-10-04 Thread Y2i
Hi Jin, Thank you for your response! I was able to make JPA work in Jetty, but only using resource-local entity manager in Java SE environement. This makes sence because for container-managed entity manager an EE environment is required, and Jetty by itslef does not provide it. My persistence u

Re: Monitor GWT 2.x application traffic using packet analyzer

2010-10-04 Thread Georg Sendt
Why dont you add some filter to your web.xml and use java to inspect your incoming/outgoing data? Regards, Georg On 4 Okt., 22:44, Micky wrote: > Hi there, > > I am trying to monitor my GWT 2.x application traffic within my > development environment. I have installed Wireshark and it seems to b

Re: Access Bean (POJO) classes at Client Side

2010-10-04 Thread Parth
Hi Didier, Thanks for the reply. I tried the example. It works fine. I made a mistake to send Bean class to client side. I was using Bean class of server side to pass from Implementing class at server. Thanks, Parth. On Oct 1, 9:11 pm, Didier DURAND wrote: > Hi, > > Aclassis transcoded by defa

Re: Weird error on RPC calls

2010-10-04 Thread Jin
Hi, Are you intending for ActualModelData to extend MyModelData rather than ModelData? The code snippet seems to show it extending ModelData, which is implemented by MyModelData. So the ActualModelData class will run the setOldData method from ModelData rather than the setOldData method from My

Re: Minimalistic JPA in GWT 2.1.0.M3

2010-10-04 Thread Jin
Hi Yuri, I went through similar issues trying to get GWT to work with JPA. I would imagine that Jetty does *not* support JPA - I'm using Glassfish Enterprise Server with my GWT app for JEE / JPA support. Glassfish is open source and commercial support can be purchased if that's needed. I've been

Re: Cannot create new web applications.

2010-10-04 Thread Y2i
Strange, I didn't have such problem in Win 7 and Ubuntu 10.04 64-bit. Can you verify that the GWT plugin is installed? Help->Install New Software, then click "What is already isntalled?" link On Oct 1, 10:03 pm, Justin Lilly wrote: > I just downloaded eclipse v3.6 (Helios), Java EE version. I the

Re: API design rant!

2010-10-04 Thread Jeff Schnitzer
My rant about GXT: http://groups.google.com/group/google-web-toolkit/msg/693cacbce437d08a The summary: GXT was a waste of $600 and one month of my time. Please don't emulate GXT. Jeff On Thu, Sep 30, 2010 at 5:14 AM, Slava Lovkiy wrote: > I am 100% agree about GXT Api as being not extensible,

GWT (2.0.4) Dev Mode and/or Plugins are Crashing, Debug How???

2010-10-04 Thread Andrew Hughes
Hi Again, Sadly our application now appears to crash dev mode and/or the browser plugin(s). The lack of visibility we have means I don't really know where the problem lies. This is impeding development dramatically. The only observations I can see is that: * Windows reports that the 'The browser

Re: Monitor GWT 2.x application traffic using packet analyzer

2010-10-04 Thread Micky
Apparently loopback interfaces are not available on Windows platforms (according to the Wireshark Help and this page http://wiki.wireshark.org/CaptureSetup/Loopback). The -bindAddress switch did the trick. Thanks. On Oct 4, 4:58 pm, Chris Conroy wrote: > you can pass -bindAddress to bind to a di

Re: Monitor GWT 2.x application traffic using packet analyzer

2010-10-04 Thread Chris Conroy
you can pass -bindAddress to bind to a different interface (0.0.0.0 to bind to *). Also, Wireshark is perfectly capable of capturing traffic on on 127.0.0.1. You just need to set the interface to lo (loopback) rather than your actual NIC. On Mon, Oct 4, 2010 at 4:44 PM, Micky wrote: > Hi there,

Re: Exception while dispatching incoming RPC call

2010-10-04 Thread Greg Dougherty
EntityManagerFactory emf; EntityManager em = null; try { emf = Persistence.createEntityManagerFactory("oo"); em = emf.createEntityManager(); em.getTransaction().begin();

Monitor GWT 2.x application traffic using packet analyzer

2010-10-04 Thread Micky
Hi there, I am trying to monitor my GWT 2.x application traffic within my development environment. I have installed Wireshark and it seems to be running correctly however I do not see any traffic showing up in it when using my app. It seems that Wireshark will not monitor traffic on the loopback i

Re: integrating with wicket

2010-10-04 Thread Georg Sendt
Yes this is no problem. You can use GWT as normal as JavaScript in your Wicket application. Create a GWT-Project and include the YourApplication.nocache.js in your wicket page. You can do this easily with org.apache.wicket.markup.html.WebComponent. Regards, Georg On 3 Okt., 06:10, fachhoch

Building a .jar with IsSerializable

2010-10-04 Thread Greg Dougherty
So here's the problem, and the solution I came up with. My question is: Is this a valid solution, or is it going to bite my in the tush later? I'm building a jar file, using Eclipse, that includes some classes that implement IsSerializable. So when I tried to use the jar, I got a ClassNotDef exc

Re: gwt in subfolder

2010-10-04 Thread Артём
On Oct 4, 7:03 am, Fendy Tjin wrote: > Hi, > > I have the same question, but I'm using Google Hosting which does > automatically when uploading to the host server. In this case, how do I move > it to a subfolder? I'm developing on Google App Engine, and it preserves the file hierarchy. If I creat

Re: calling GWT Javascript compiler from ant

2010-10-04 Thread nacho
Try with this:

Re: Send e-mail in GWT

2010-10-04 Thread nacho
You can use appengine to deploy your app and use the appengine mail api. On 4 oct, 09:41, Jeff Chimene wrote: > Since you want the recipient address hidden, you cannot use GWT[1]. You'll > have to send a request to the server and have it compose and send the email. > > [1] > Otherwise, you'd use

Re: Help: Development of large App with GWT

2010-10-04 Thread Noor
Thanks Mig, As I stated above, I am trying to implement a bidding system and above I described some its potential features such simultaneously bidding on the several items -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this gr

Re: Help: Development of large App with GWT

2010-10-04 Thread mig
It very much depends on what are you trying to do - what the application should do. Technologically, GWT is unlike any other java webframework. You don't prepare pages to display on the server and send them to the browser as plain HTML code, you mostly send only data and leave the presentation to G

Re: part II - Large scale application development and MVP - No Eclipse supported!

2010-10-04 Thread Y2i
Sorry, somehow the link got messed up. This one should work. https://docs.google.com/leaf?id=0B6oje-sOVpn_NTFhNzg0OWUtYTE0OS00ZDI5LWFhMWItMmMxOTc3MGJkMDRj&hl=en&authkey=CKbNwuYP On Oct 4, 2:21 am, 100IT wrote: > Hi Y2I, Could you check your link? Its dead to my knowledge. > thanks for your help

Re: New GWT 2.0 Book

2010-10-04 Thread Paul Stockley
2.1 Isn't even released yet so why are you pissed off about there being no documentation! On Oct 4, 11:36 am, Ashton Thomas wrote: > At the end of the day, the GWT community will benefit from the book. > For whatever reasons Chris is writing the book I am certain they are > justified and reasonab

Re: Help: Development of large App with GWT

2010-10-04 Thread Noor
Hi to all of you, thanks a lot for responding. If we consider GWT architecture, then we can say that this framework targets application which has got to communicate with the server a lot. Then through GWT RPC, the asynchronous calls are made to enhance interactivity. Like Lalit said, Stock Market

Re: GWT- chat

2010-10-04 Thread Subhrajyoti Moitra
http://code.google.com/p/atmosphere-gwt-comet/ Here one more for the same purpose. On Mon, Oct 4, 2010 at 9:00 PM, andy stevko wrote: > Hello Yudji, > > I believe you are referring to the application model call Comet > http://en.wikipedia.org/wiki

Re: New GWT 2.0 Book

2010-10-04 Thread Ashton Thomas
At the end of the day, the GWT community will benefit from the book. For whatever reasons Chris is writing the book I am certain they are justified and reasonable and I am sure he will be able to provide the GWT community some valuable insight outside of buying the book. yes, books may be a little

Re: GWT- chat

2010-10-04 Thread andy stevko
Hello Yudji, I believe you are referring to the application model call Comet http://en.wikipedia.org/wiki/Comet_(programming) There is a Comet implementation for the Google Web Toolkit http://code.google.com/p/gwt-comet/ On Sun, Oct 3, 2010

Re: Help: Development of large App with GWT

2010-10-04 Thread abhiram wuntakal
Hey create a project which by itself acts as a GWT designer (Someone has already done a similar thing actually!!, with the DND options and all), Then u can have modules for server interaction which by itself can be automated so that all u need to do is indicate the table name and u get the data aut

Re: New GWT 2.0 Book

2010-10-04 Thread Isaac Truett
I think if this makes your list of things to get really pissed off about, then life must be pretty good. Someone who works on GWT gets a writing credit on a book about GWT; that's not something to get upset over. On Fri, Oct 1, 2010 at 1:38 PM, Tommy Lui wrote: > Hi, > > Please help me unders

Re: part II - Large scale application development and MVP - No Eclipse supported!

2010-10-04 Thread 100IT
Hi Y2I, Could you check your link? Its dead to my knowledge. thanks for your help. Regards. Chris. On 4 okt, 08:01, Y2i wrote: > Strange, those steps work for me fine, here is the eclipse project > that I got: > > https://docs.google.com/leaf?id=0B6oje-sOVpn_NTFhNzg0OWUtYTE0OS00ZDI5... > > 1) un

Re: keyboard shortcuts with CTRL

2010-10-04 Thread dushyant bing
wow , thanks a lot. On Mon, Oct 4, 2010 at 7:44 PM, Marcin Misiewicz wrote: > Here i post the solution. > > Actually it's very easy : > >HandlerRegistration logHandler = > Event.addNativePreviewHandler(new > NativePreviewHandler() { > >@Override >

integrating with wicket

2010-10-04 Thread fachhoch
My application uses wicket , I recently saw some GWT widgets , and would like to use them in my application , please suggest me if there is any integration between wicket and GWT , can I use GWT widgets inside my wicket pages ? -- You received this message because you are subscribed to the Google

Weird error on RPC calls

2010-10-04 Thread Quincy
Hi, I'm encountering a problem that I can't work out related to RPC and inheritence - the instance variable in my parent class didn't get serialized. I'm using GXT for my project. Below are my code snipplet: /* The data that are transmitted over the wire */ public abstract class MyModelData implem

GWT- chat

2010-10-04 Thread Yudji
I have created a simple client/server app that does nothing but sends a string from client to server. Now I would like to expand it so the server can send messages to all clients. How can this be done? -- You received this message because you are subscribed to the Google Groups "Google Web To

GWT for client-only web-application

2010-10-04 Thread bog.imp
Hello I know Javascript very well and Java(not good but i can learn because i know many languages, c++, python etc), so i think i can create application using GWT. Now i want create DHTML based application using Google Data Api(only client), and some other *cool* Google API, but this application i

is there any proper way to create shortcut(s) for the current window object in gwt ?

2010-10-04 Thread wingdings
just for like CTRL+1 or CTRL+2 .. how do i assigns shortcuts ? something like this i did but it aint executing , also am i doing it right ? mayday mayday ! public class quotation implements KeyboardListener { public static Widget getSomeWidget() { return new Widget; } @Override        public vo

Cannot create new web applications.

2010-10-04 Thread Justin Lilly
I just downloaded eclipse v3.6 (Helios), Java EE version. I then added the google repository at http://dl.google.com/eclipse/plugin/3.6 to my possible installation places, selected all downloads (which included the google plugin for eclipse as well as the appengine and gwt sdk). I'm attempting to

Exception while dispatching incoming RPC call

2010-10-04 Thread kuoy...@taiwan
Hi: I using GWT but it get a error(I want to GWT with JPA) : [WARN] Exception while dispatching incoming RPC call com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract void org.kuoying.client.GreetingService.save(org.kuoying.client.RpcItem)' threw an unexpected excepti

sport shoes : Jordan ,Nike, adidas, Puma, Gucci, LV, UGG , etc. including women shoes and kids shoes.

2010-10-04 Thread TWE WTEY
http://www.stefsclothes.net boot.ugg.jacket.jeans.sweart. (UGG) jordan air max oakland dunks $39; Christan Audigier BIKINI JACKET $30; gstar coogi evisu true jeans $35-39; coach chanel gucci LV handbags $36; ..._|\__ _,,_ ../ `-. [ ( Salut =) ) ] . -_|∷≮∩_∩ ./_==o __

Re: GWT panel for HTML UL/LI lists

2010-10-04 Thread Adam Mark
Just extend FlowPanel and override setElement: public class MyList extends FlowPanel { ... @Override protected void setElement(com.google.gwt.user.client.Element elem) { super.setElement(DOM.createElement("ul")); } ... } On Oct 2, 5:42 am, Markus Kramer wrote: > Ye

AppEngine Users Service with GWT will always reload page/module upon login

2010-10-04 Thread Haris
Using Users Service, after filling up login and password and press OK, onModuleLoad is executed. Basically the gwt module is reloaded. I am going to loose data entry stuff form the user. For instant if someone is typing a forum post and click submit only to discover that login already timeout. The

GWT- chat

2010-10-04 Thread Yudji
I have created a simple client/server app that does nothing but sends a string from client to server. Now I would like to expand it so the server can send messages to all clients. How can this be done? -- You received this message because you are subscribed to the Google Groups "Google Web To

Exception while dispatching incoming RPC call

2010-10-04 Thread kuoy...@taiwan
Hi: I using GWT but it get a error(I want to GWT with JPA) : [WARN] Exception while dispatching incoming RPC call com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract void org.kuoying.client.GreetingService.save(org.kuoying.client.RpcItem)' threw an unexpected excepti

Stockwatcher. When StockPrice class object is created?

2010-10-04 Thread Maciej Egermeier
In tutorial StockPrice class is created but I can't find any instance of an object of that class. And I have problem with function: private void updateTable(StockPrice stockPrice) { // Make sure the stock is still in the stock table. if (!stocks.contains(price.

New GWT 2.0 Book

2010-10-04 Thread Tommy Lui
Hi, Please help me understand why Chris Ramsdale (Google's Developer Relations team to develop and advocate GWT best practices.) is writting a book about GWT 2.1 when he works at Google on the GWT team and there's no official documentation, except for a few waves available to the developer communi

Re: 2.1 Documentation

2010-10-04 Thread Tommy Lui
Why is Chris Ramsdale (Google's Developer Relations team to develop and advocate GWT best practices) in the middle of writing a book about GWT 2.1 when there's no documentation available online except for Thomas blogs and a few Waves. http://www.manning.com/bambury/ I hope I'm not the only one an

Re: Help: Development of large App with GWT

2010-10-04 Thread Thomas Broyer
On Oct 4, 6:37 am, Noor wrote: > Thanks Craigo, > what u said is true. However, I need some features which I can place > in my applications to show how GWT makes things easy and speedy and Java tooling (auto-complete & refactoring made easier because Java is a static language; unit testing –pos

Re: calling GWT Javascript compiler from ant

2010-10-04 Thread 3p1...@googlemail.com
Hi Sebastian and thank you for your help ant gives me Reference project.class.path not found. on this line: and do i have to do anything in your lib requirement or can i omit it in my case? best regards On Oct 4, 4:02 pm, Sebastian Rothbucher wrote: > Hi, you can invoke it e.g. with the follo

calling GWT Javascript compiler from ant

2010-10-04 Thread 3p1...@googlemail.com
Hi everyone How can i call the gwt Javascript compiler from an Ant build script? I am using eclipse 3.5 with GWT plugin 2.0 best regards -- 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

Re: GWT panel for HTML UL/LI lists

2010-10-04 Thread Falcon
I'm in a situation where I'm having to use a custom UListPanel instead of UIBinder since I have dynamic content (I won't know how many I need beforehand). I definitely agree that you should use UIBinder whenever possible, but in my case I'm making my own version of TabPanel with a structure for th

Re: keyboard shortcuts with CTRL

2010-10-04 Thread Marcin Misiewicz
Here i post the solution. Actually it's very easy : HandlerRegistration logHandler = Event.addNativePreviewHandler(new NativePreviewHandler() { @Override public void onPreviewNativeEvent(NativePreviewEvent event) {

Re: Help: Development of large App with GWT

2010-10-04 Thread Sebastian Rothbucher
Hi noor, actually we're using GWT to develop business applications and that works extremely well. Maybe defining a scenario /process and building an application for this is helpful. Best Regards Sebastian Rothbucher On 3 Okt., 18:10, Noor wrote: > Hi to all, I want some help from u. Many t

Re: Send e-mail in GWT

2010-10-04 Thread Jeff Chimene
Since you want the recipient address hidden, you cannot use GWT[1]. You'll have to send a request to the server and have it compose and send the email. [1] Otherwise, you'd use a *mailto* url On Mon, Oct 4, 2010 at 2:37 AM, naveen wrote: > Hi team, > > My requirement is to send a mail from my w

Re: time selection widget?

2010-10-04 Thread ctasada
There's no default time selection widget in GWT. You can create your own (that's what I did) or use one of the multiple GWT frameworks if fits your development process (see GXT, SmartGWT, GWT-Mosaic, ...) Cheers. On Oct 3, 6:28 pm, Vik wrote: > Hie > > I was checking at gwt widget gallery but co

Re: calling GWT Javascript compiler from ant

2010-10-04 Thread Sebastian Rothbucher
Hi, you can invoke it e.g. with the following script: Basically, the GWT compiler is just a java program you can invoke via the java command... Hope this helps - best regards Sebastian Rothbucher On 4 Okt

calling GWT avascript compiler from ant

2010-10-04 Thread 3p1...@googlemail.com
Hi everyone How can i call the gwt Javascript compiler -- 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-too

Re: Help: Development of large App with GWT

2010-10-04 Thread Craigo
AJAX! Make a whole bunch of client / server calls, and tell people you didn't write a single line of JavaScript. It was all generated! On Oct 3, 11:37 pm, Noor wrote: > Thanks Craigo, > what u said is true. However, I need some features which I can place > in my applications to show how GWT mak

Re: Help: Development of large App with GWT

2010-10-04 Thread lalit
GWT strength is the ability to build rich client side code. If you can show some data analytics/crunching kind of application and show that how it can be supported in web application also. For example showing stock market charts with feedback and may be calculate technical indicators. Just an ide

Re: Send e-mail in GWT

2010-10-04 Thread abhiram wuntakal
The simplest way to do this would be, Create a front end page with the neccesary stuff like Recipient's id, Subject Title, Mail Body and send all this data to the server side alone with the sender username and password also as this is needed for the authentication. Then, make use of *mail.jar *f

Re: Minimalistic JPA in GWT 2.1.0.M3

2010-10-04 Thread Y2i
I read through Java Persistence API spec and finally was able to make a resource-local entity manager work. persistence.xml went to WEB-INF/ classes/META-INF. I'd like to able to use a container-managed entity manager through injection, but I'm not sure if it is possible at all using a plain web

Re: part II - Large scale application development and MVP - No Eclipse supported!

2010-10-04 Thread Y2i
Strange, those steps work for me fine, here is the eclipse project that I got: https://docs.google.com/leaf?id=0B6oje-sOVpn_NTFhNzg0OWUtYTE0OS00ZDI5LWFhMWItMmMxOTc3MGJkMDRj&sort=name&layout=list&num=50 1) unzip the file 2) In eclipse: File->Import... 3) Select Existing Project into Workspace und

Developing an AppStore for a GWT / App Engine application?

2010-10-04 Thread Ingo Jaeckel
hello everyone, i want to build an app store for a GWT application. users should open the app store from within the application, browse through apps and install them like they are used to it from other app stores e.g. apple app store or android market. i outlined my ideas about it in the wiki of m

Re: part II - Large scale application development and MVP - No Eclipse supported!

2010-10-04 Thread Y2i
... sorry, I meant to say "I think it'll also work with the Java version" On Oct 3, 11:01 pm, Y2i wrote: > Strange, those steps work for me fine, here is the eclipse project > that I got: > > https://docs.google.com/leaf?id=0B6oje-sOVpn_NTFhNzg0OWUtYTE0OS00ZDI5... > > 1) unzip the file > 2) In ec

Re: Help: Development of large App with GWT

2010-10-04 Thread Noor
This is persuading but examiners can tell if even i didn't write ant javascript, i did write it in java -- 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 unsubscrib

Send e-mail in GWT

2010-10-04 Thread naveen
Hi team, My requirement is to send a mail from my website. i will elaborate the requirement. I have my own website, which is in simple html now. Am planning to develop my website using gwt. There is a contact us page in the website where a user can mail an enquiry to us. the form is like below.

Re: Send e-mail in GWT

2010-10-04 Thread Subhrajyoti Moitra
i think GWT will be an overkill for this work. I would just use a HTML form and submit to a PHP/Perl/Ruby script for sending the mail out from the server. However if u insist.. Use GWT to make the form and submit buttons.. To send the mail u have 2 options: - Use GWT RPC, which means u require a