Re: GWT 1.5 Now Available

2008-09-19 Thread vector
Thanks a lot. I succeed in downloading at length. Absence of staff and free channel done its work ;-). --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to G

Re: GWT application and Google AppEngine

2008-09-19 Thread sri
hi, I tried to execute Pgr-example provided in the link. But it doesn't execute properly using "ant". This is the error I got while trying to compile. C:\ant\PGR>ant -buildfile build.xml run Buildfile: build.xml clean: build: gwt-compile: [java] Exception in thread "main" java.lang.OutO

Re: Exception: This widget's parent does not implement HasWidgets

2008-09-19 Thread Dean S. Jones
Just a note on design: Composite is a minimalist Facade, a front to hide the implementation details of a new component. initWidget() could be passed a Button just as well as a complicated Panel hierarchy, it doesn't have to have a collection of Widget children. As a facade, you should never expos

Re: gwt help

2008-09-19 Thread Dean S. Jones
you might start looking here: http://code.google.com/p/python-gwt-rpc/ On Sep 19, 8:39 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hey guys > im new to gwt , i have written 2 user interfaces that are actually > login pages for user registration > my backend is in python . > i want to k

Re: gwt help

2008-09-19 Thread ajay jetti
that mesage was cut short. Hey Stella... even im facing the same problem Have u figured it out? thanks and Regards Ajay --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this

Re: gwt help

2008-09-19 Thread ajay jetti
Thankx fo Replyn pavel But Can u plse provide a simple example / code or say a procedure of how to i can acheive that... !!! Stella --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post

Re: Exception: This widget's parent does not implement HasWidgets

2008-09-19 Thread gregor
Hi Shi, You seem to have created a circular construction situation. Login creates a new MenuHome which, when you select LOGIN from the menu the command creates a new Login, which then creates a new MenuHome etc Since you haven't posted the code that kicks all this off in the first pl

Re: GWT application and Google AppEngine

2008-09-19 Thread ajay jetti
Hey Jeremiah I have gone through the PGR example lot of times . but it doesnt exactly specify the architecture Thanks and Regards Ajay --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To p

Exception: This widget's parent does not implement HasWidgets

2008-09-19 Thread Shi
Hi! I'm trying to make my class MenuHome as a container through the abstract class com.google.gwt.user.client.ui.Composite.java but I have always the same problem: This widget's parent does not implement HasWidgets. In the main class I want a panel that could contain all the widget children (inst

Re: iPhone toggle switch implementation

2008-09-19 Thread Arthur Coleman
Reinier, Thanks for the help. I've been also thinking of creating my own images and then just using ToglleButton. Bear On Sep 19, 2008, at 4:50 PM, Reinier Zwitserloot wrote: > > That's not how stylesheets work. > > You have two options: > > A) change the style of a given element. e.g. use

Re: questions on Login Security FAQ

2008-09-19 Thread Ian Bambury
> > -- Reinier "gently nudging the casual reader back onto the straight > and narrow with a velvet touch" Zwitserloot I think the 'people person' quote was closer :-) Ian --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

Re: questions on Login Security FAQ

2008-09-19 Thread Reinier Zwitserloot
Answers inline... On Sep 19, 3:12 pm, JasonG <[EMAIL PROTECTED]> wrote: > First of all, I don't understand your (A) response.   I said "you > don't need to worry so much about passing session IDs since the app > server will pretty much handle that for you"... and your response > seems to just rei

Re: questions on Login Security FAQ

2008-09-19 Thread Reinier Zwitserloot
I don't know jasypt, so I can't make guarantees (actually, nobody can, but you know what I mean). However, there are two good signs: 1) The API is specifically for password checking. This is a lot better than using a generic hasher and doing the salting yourself. The authors of the library had pa

Re: GWT 1.5 Now Available

2008-09-19 Thread Reinier Zwitserloot
It's not, there's a known problem with the google download link, for some people it just screws up. I suggest you try to download it from another network. On Sep 18, 12:52 pm, vector <[EMAIL PROTECTED]> wrote: > Hi. > I have tried to download latest version for windows. The file is > corrupted. I

Re: iPhone toggle switch implementation

2008-09-19 Thread Reinier Zwitserloot
That's not how stylesheets work. You have two options: A) change the style of a given element. e.g. use add/removeStyleName, to change the styling info of your widget. for example: myWidget.setStyleName("someStyleClassThatIsAlwaysApplied"); if ( toggledOn ) { myWidget.removeStyleName("toggle

iPhone toggle switch implementation

2008-09-19 Thread Bear
Can anyone help me implement iPhone style toogleswitch in GWT? I've been trying to use the iUi CSS style sheets and I have a question on how I would implement this in GWT? Shuffle ONOFF I assume I can use a HorizontalPanel and se

Re: RPC host mode fine --- RPC deployed web mode fails

2008-09-19 Thread Jason Essington
I thought there was some talk previously about the serializers using the getters/setters rather than directly molesting the fields to get around the security policy issues like you were having ... though that discussion was quite a while ago, and I don't remember the details now. -jason On

Re: RPC host mode fine --- RPC deployed web mode fails

2008-09-19 Thread Barry
Yes, it does, Jason. The public getters and setters are there to protect the private member variables. Since I made the member variables public (see reply to Lothar above), I'm having no trouble serializing. Why do you ask about the getters and setters??? Thanks! On Sep 19, 8:10 am, Jason Essi

Re: RPC host mode fine --- RPC deployed web mode fails

2008-09-19 Thread Barry
Good call, Lothar -- I changed my "private" declarations to "public" and put an ominous looking comment next to each of them. Once I did that, the serialization worked fine ... both on my test case and my much larger application. I also tried setting security permissions for the security manager

Re: SerializationException error

2008-09-19 Thread flavio faria
Hi Wanden, **I really appreciate your quick replies! It was helpfull. I need spend more time with research. Thanks a lot Flávio 2008/9/19 walden <[EMAIL PROTECTED]> > > Flavio, > > The solution is essentially the same. I had assumed the classes you > want to serialize are EntityBeans, but it so

Re: Problems migrating GWT 1.5 2030 to GWT 1.5 official release

2008-09-19 Thread Gabriel Thiesen
In the path server i created a new package called RPC, like this: I kept the ServletImpl implementation into the server path and moved the Servlet and ServletAsync to the package servlet/rpc This will separate the actual implementation from the code GWT should take care of

Re: Communicating between php and GWT using JSON

2008-09-19 Thread Jason Essington
HTTPRequest is deprecated, you should consider using RequestBuilder JSON is fine for trusted sources, and the parsing (de-serializing) is actually pretty instantaneous if you use the JS Overlay techniques (direct evaluation) available in GWT 1.5. Of course, if you are getting JSON from a non-

gwt.rpc files in a distributed environment

2008-09-19 Thread Daniel
Hello, I have a problem where my server side code is unable to find the gwt.rpc files and failing over to the LegacySerializationProvider. The reason is that I have two different GWT applications sharing the same backend. At the moment I have webapp A proxying all RPC requests to webapp B. Late

Re: GWT application and Google AppEngine

2008-09-19 Thread Jeremiah Elliott
have you taken a look at this? http://code.google.com/p/python-gwt-rpc/ On Fri, Sep 19, 2008 at 5:34 AM, ajay jetti <[EMAIL PROTECTED]>wrote: > Hi Sri > Even im facing the same problem > Please sombody post > > > > --~--~-~--~~~---~--~~ You received this message

Re: Strange GWT / Prototype interaction on Safari???

2008-09-19 Thread Pete
I've got a sample mini-app that demonstrates the problem if someone wants to see it for real - let me know. I don't see how to post an attachment here, so i guess i'd have to send it directly. -pete On Sep 19, 12:52 pm, Pete <[EMAIL PROTECTED]> wrote: > Greetings, > > I'm seeing a strange situat

Communicating between php and GWT using JSON

2008-09-19 Thread Amit Dhingra
Hi All, I am trying to communicate between php and GWT, for which I have tried and successfully used JSON, using the following code if(!HTTPRequest.asyncGet("http://myurl/index.php";, new JSONResponseTextHandler())) { Window.alert("Error accessing index1.php"); } Now I w

Re: Problems migrating GWT 1.5 2030 to GWT 1.5 official release

2008-09-19 Thread ZhangJianshe
hello,guys, i encount the same problem,whould you like share your solutions? but ,i need you help. On 8月31日, 下午10时03分, Gabriel Thiesen <[EMAIL PROTECTED]> wrote: > Thank you adm.dfs, > > Was exactly this indeed, so thank you very much > > Gabriel Thiesen > > On Aug 30, 8:17 am, "adm.dfs" <[

Re: Annoucement. PureMVC4GWT RC is available

2008-09-19 Thread Luciano Broussal
Hi, Here is the documentation http://puremvc.org/component/option,com_wrapper/Itemid,174/. It is available on the PureMVC Home page. Maybe you don't like but i'm not sure you can do more simple than the 15 classes which compose PureMvc and help the developper to separate layers and the main d

Re: mapwidget checkresize() is not working with complicated layout structure

2008-09-19 Thread John LaBanca
Here is the associated issue, and I 100% agree that we need a ResizeListener on SplitPanel, and that it isn't too hard to add one. http://code.google.com/p/google-web-toolkit/issues/detail?id=1855 Thanks, John LaBanca [EMAIL PROTECTED] On Thu, Sep 18, 2008 at 1:32 PM, Eric Ayers <[EMAIL PROTECTE

RPC host mode fine --- RPC deployed web mode fails

2008-09-19 Thread Barry
Hi ... I have a (relatively) simple project that demonstrates an RPC failure that I don't know how to fix. There are two remote calls. SimpleCall returns an integer and succeeds both in host mode and in deployed web mode. ClassReturnCall returns a class instance and succeeds in host mode but _fai

Strange GWT / Prototype interaction on Safari???

2008-09-19 Thread Pete
Greetings, I'm seeing a strange situation using Prototip (a Prototype based tool- tip package) with GWT - only on Safari. Here's the setup: - both prototype.js and prototip.js included from my .gwt.xml file - jsni native call to new $win.Tip(...) to create the tooltip Works swell on Firefox,

Re: PopupListener

2008-09-19 Thread Ian Bambury
The center() method calls hide() which triggers the onPopupClosed. I had this problem, but since I couldn't believe it hadn't been noticed in testing before release, I assumed there must be a good reason for it, or that *not* doing it means I had been following some evil coding practice. Again. I

Re: Problem with java.lang.ClassNotFoundException only when deployed

2008-09-19 Thread Keith Fuller
Hi Gregor, Yup, that fixed it. Stupid newbie error - fortunately the sort of error that only gets made once. Now I can start putting back in the server functionality that I took out to debug it. Thank you very much for your help, Keith On Fri, Sep 19, 2008 at 7:45 AM, gregor <[EMAIL PROTECTE

Re: SerializationException error

2008-09-19 Thread walden
Flavio, The solution is essentially the same. I had assumed the classes you want to serialize are EntityBeans, but it sounds like they are Hibernate POJOs, but it's almost the same thing. The classes need to be "moduled" up and put on the GWT compiler classpath, they have to be "clean" with res

Re: gwt functionality to jsp page

2008-09-19 Thread walden
I agree that hijacking JSP pages and wrapping elements with GWT widgets is not the best long-term approach. As an alternative to using JSNI to hijack the drop-downs, you could make the host JSP page simply contain empty placeholder div elements with known id values, insert your GWT ListBox instan

Re: Recieveing error when adding connection driver for Microsoft SQL Server 2005

2008-09-19 Thread Isaac Truett
Perhaps you're looking for an Eclipse Data Tools Platform support forum? http://www.eclipse.org/datatools/ On Fri, Sep 19, 2008 at 10:57 AM, Shoiko <[EMAIL PROTECTED]> wrote: > > When adding the Microsoft SQL Server 2005 JDBC Driver ~~ sqljdbc_1.2 > I get this error. Any help on adding the dr

Re: gwt help

2008-09-19 Thread Pavel Byles
Hi Stella,GWT's RPC lends itself to a Java backend. But of course you don't have to do it this way.You can communicate with your server via the usual GET/POST methods and the server can respond in anyway it wishes, JSON, XML etc... check: http://code.google.com/docreader/#p=google-web-toolkit-doc-

Re: RPC host mode fine --- RPC deployed web mode fails

2008-09-19 Thread Jason Essington
does your object have public getters and setters? -jason On Sep 19, 2008, at 12:27 AM, Barry wrote: > > Hi ... > > I have a (relatively) simple project that demonstrates an RPC failure > that I don't know how to fix. There are two remote calls. SimpleCall > returns an integer and succeeds both i

Recieveing error when adding connection driver for Microsoft SQL Server 2005

2008-09-19 Thread Shoiko
When adding the Microsoft SQL Server 2005 JDBC Driver ~~ sqljdbc_1.2 I get this error. Any help on adding the driver to my project? org.eclipse.core.runtime.CoreException: Plug-in org.eclipse.datatools.enablement.msft.sqlserver.profile was unable to load class org.eclipse.datatools.connectivity.

Re: Moderation policy back in effect: new members' messages moderated to prevent spam

2008-09-19 Thread Ian Bambury
It does go to show how much we are saved from. Usually :-) Thanks Sumit, for doing a job that usually goes unnoticed and therefore unthanked. Ian 2008/9/19 Sumit Chandel <[EMAIL PROTECTED]> > > Hey gregor, > > Check out the thread four messages back :-P > > Basically I had a slip up with Grou

Sequence Diagram about RPC mechanism

2008-09-19 Thread Antony87
Hello, Where can I find a Sequence diagram who explain the RPC mechanism ? Thank's for all Antony --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Go

How GWT handles celleditors for FlexTable

2008-09-19 Thread vinni
HI All, How should i impliment celleditors for table cells in GWT. Thanks, Vinay.Y. --~--~-~--~~~---~--~~ 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-Toolki

gwt help

2008-09-19 Thread [EMAIL PROTECTED]
hey guys im new to gwt , i have written 2 user interfaces that are actually login pages for user registration my backend is in python . i want to know about rpc's. how can i write code so that i can authenticate users to login Thanks in Advance Stella --~--~-~--~~~---

Re: SerializationException error

2008-09-19 Thread flavio faria
Thanks Wanden for your attention! It's look like non-trivial way! Sorry but I don´t explain the solution completely. I use only Session Beans to implents bussiness logic and transaction context and persistence with Hibernate. In this case the solution is the same? Do you no about one applicatio

Re: gwt functionality to jsp page

2008-09-19 Thread obesga
I think you don't have the rihgth approach to GWT, but if this is what you really want, there's a way to do it Make a GWT module and implement your desired behaviour of the listbox in one ListBox class Implemet a method , by JSNI, that assigns the desired textbox to the class - using public stat

Re: Does the server side language matter?

2008-09-19 Thread Thomas Broyer
On 18 sep, 20:12, walden <[EMAIL PROTECTED]> wrote: > On Sep 18, 8:45 am, Thomas Broyer <[EMAIL PROTECTED]> wrote: > > > On 18 sep, 14:06, walden <[EMAIL PROTECTED]> wrote: > > > > Hi Thomas, > > > > Thanks for spelling that out. > > > > I do agree that GWT RPC might be less cache-friendly out of

Re: questions on Login Security FAQ

2008-09-19 Thread JasonG
Reinier, Thanks for the additional input. Can I get some more clarification from you though? First of all, I don't understand your (A) response. I said "you don't need to worry so much about passing session IDs since the app server will pretty much handle that for you"... and your response se

Re: Moderation policy back in effect: new members' messages moderated to prevent spam

2008-09-19 Thread Sumit Chandel
Hey gregor, Check out the thread four messages back :-P Basically I had a slip up with Groups this morning while moderating messages, and accidentally ended up letting a whole batch of spam through. Sorry about that! -Sumit Chandel On Fri, Sep 19, 2008 at 2:45 PM, gregor <[EMAIL PROTECTED]> wr

Re: Is it possible to inject -nocache.js on demand?

2008-09-19 Thread julien.lancelot
Thanks for your response! And I ask you in private because I didn't see my message in the forum (I didn't know that my message has to be moderate) when I wrote it... I gonna try your trick to execute a script on the fly. On 19 sep, 14:51, Thomas Broyer <[EMAIL PROTECTED]> wrote: > On 19 sep, 1

Re: Is it possible to inject -nocache.js on demand?

2008-09-19 Thread Thomas Broyer
On 19 sep, 13:15, "julien.lancelot" <[EMAIL PROTECTED]> wrote: > I am also very interested to inject GWT apps on demand!!! > > Thomas, you said : "Not that it's not that hard to write such a linker > (and has already > been discussed on this group)". > > Can you give me the link to the discussion

Re: Moderation policy back in effect: new members' messages moderated to prevent spam

2008-09-19 Thread gregor
I've noticed that we seem to inundated with spam again. Has the policy lapsed? regards gregor On Sep 19, 11:36 am, "ajay jetti" <[EMAIL PROTECTED]> wrote: > Hi > GOsh, there were so many of them at once --~--~-~--~~~---~--~~ You received this message because you a

Re: Moderation policy back in effect: new members' messages moderated to prevent spam

2008-09-19 Thread ajay jetti
Hi GOsh, there were so many of them at once --~--~-~--~~~---~--~~ 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

Re: upload function

2008-09-19 Thread ajay jetti
Hi Gaurav Check out the Gwt widget librabry/ examples in the GWT site Im sorry i m not posting the exact link ... but im sure u ll get it if u search.. Tell me if u dont, ill send u the link Ajay --~--~-~--~~~---~--~~ You received this message because you are su

Re: upload function

2008-09-19 Thread ajay jetti
Hey Walden I have posted a issue by the name GWT app on Google app engine Pls share some info if u know abou it --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send e

Re: GWT application and Google AppEngine

2008-09-19 Thread ajay jetti
Hi Sri Even im facing the same problem Please sombody post --~--~-~--~~~---~--~~ 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: Is it possible to inject -nocache.js on demand?

2008-09-19 Thread julien.lancelot
I am also very interested to inject GWT apps on demand!!! Thomas, you said : "Not that it's not that hard to write such a linker (and has already been discussed on this group)". Can you give me the link to the discussion? Thanks! On 8 sep, 20:41, Thomas Broyer <[EMAIL PROTECTED]> wrote: > On S

Re: upload function

2008-09-19 Thread ajay jetti
Yeah I think he is meaning something different --~--~-~--~~~---~--~~ 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 t

Re: questions on Login Security FAQ

2008-09-19 Thread walden
The very first axiom in security is to not have a single point of (security) failure, which can be extended to this correlary: "Never put all your trust in one security expert." Trust me.. ;-) Walden On Sep 19, 6:27 am, Ed <[EMAIL PROTECTED]> wrote: > Like Rob mentioned, always interesting to

Re: Earn Up to $10,000

2008-09-19 Thread Sumit Chandel
Hey walden, The moderation policy is still in place, but unfortunately I had a little slip up with the Groups UI while moderating messages this morning. See thread link below. http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/dbb7f08915229e5#msg_13c47205921af425 Sorry about

Re: Earn Up to $10,000

2008-09-19 Thread Isaac Truett
Keep reading. On Fri, Sep 19, 2008 at 8:22 AM, walden <[EMAIL PROTECTED]> wrote: > > Has something suddenly happened to the list's spam filtering? > > On Sep 18, 11:46 pm, mnr <[EMAIL PROTECTED]> wrote: >> Earn Up to $10,000 >> >> >> >> > ** >> >htt

Re: Earn Up to $10,000

2008-09-19 Thread walden
Has something suddenly happened to the list's spam filtering? On Sep 18, 11:46 pm, mnr <[EMAIL PROTECTED]> wrote: > Earn Up to $10,000 > > > > > ** > >http://homologie.blogspot.com/ > >http://germanfriendfinder.com/go/g107-ppc > >http://amigos.c

Re: Close button

2008-09-19 Thread gregor
You could make the PopupPanel listen to itself so it notifies itself when it is closed perhaps? Then you can reset its state in the onPopupClosed(..) method. Check PopupListener in the documentation. On Sep 18, 2:49 pm, Yongzhi <[EMAIL PROTECTED]> wrote: > I put a close button in a PopupPanel(whi

Re: SerializationException error

2008-09-19 Thread walden
Yes, but it's not trivial. First, you need to construct a gwt module around the ejb classes you intent to share with the client. This involves placing a .gwt.xml file someplace in the folder structure above all those classes, and then using the tags to point to all the places where ejb sources

Re: CRUD

2008-09-19 Thread gregor
Hi Satish, This question has come up before in various guises. The answer is basically: 1) GWT is a client side AJAX toolkit - it is back end agnostic and you do not access e.g. databases directly from GWT client code 2) Instead you use asynchronous calls to your server (using e.g. GWT RPC) that

Re: No processed when extending GWTShellServlet (Spring integration)

2008-09-19 Thread Sumit Chandel
Hi Juan, I'm assuming that you're trying to use the specialized Spring-supporting subclass in hosted mode? If that's the case, the reason why this wouldn't work is because the embedded Tomcat instance that the hosted mode shell uses is not configured as a Spring container. If you wanted to use h

Re: Problem with com.google.gwt.core.ext.typeinfo classes.

2008-09-19 Thread Ian Petersen
On Thu, Sep 18, 2008 at 10:06 AM, Ice13ill <[EMAIL PROTECTED]> wrote: > I have the following problem: when I try to use any class from the > package com.google.gwt.core.ext.typeinfo it does not work and I get > something like this: > [ERROR] Line 76: No source code is available for type > com.goog

Re: upload function

2008-09-19 Thread walden
Excuse me? You want someone to tell you what URL to upload your file to? How would anyone but you know that? On Sep 19, 2:11 am, gaurav <[EMAIL PROTECTED]> wrote: > hi, > i wanat to implement upload function, but how i can get the upload > location??? --~--~-~--~~~--

How to span 2 columns in FixedWidthGrid?

2008-09-19 Thread Michał Sędzielewski
Hi, since PagingScrollTable has FixedWidthGrid as "body" table, there is no opportunity to span two columns. Do you have any idea how to solve this problem? Regards, Michał --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

Re: NullPointerException compiling Gadget

2008-09-19 Thread Eric Ayers
Hola Jose, You are using 1.0.0 which is the 1.0 RC1 release (release candidate 1). The bug was found after we made the release candidate, and the fix will be available in the next release candidate or GA release. Those releases will be named 1.0.1, 1.0.2, ... -Eric On Fri, Sep 19, 2008 at 2:45

Re: Framework

2008-09-19 Thread gregor
That's what the group is for, Gamecat. What are your questions? On Sep 18, 2:08 am, Gamecat <[EMAIL PROTECTED]> wrote: > Hello all, > > I'm just trying to get some very uneducated questions answered. Is > there anyone available to offer a little advice regarding some Java > based framework? This

Re: Problem with java.lang.ClassNotFoundException only when deployed

2008-09-19 Thread gregor
Hi Keith, Looking at your deployment structure: The web server has the directory structure: apache-tomcat-5.5.25/webapps CorpusSearch ... a pile of html, rpc, js, html, css, and... web.xml WEB-INF classes

Re: GWT

2008-09-19 Thread Shi
In javac must specify the path to the servlet. In my case I did so: $ cd /MyApplicationGWT/src/ $ javac -cp .:/usr/gwt-linux-1.5.1/gwt-user.jar:/usr/gwt-linux-1.5.1/ gwt-dev-linux.jar:/usr/gwt-linux-1.5.1/gwt-servlet.jar com/gwt/server/ LoginServiceImpl.java Run Home-shell (for my example) and w

Re: Moderation policy back in effect: new members' messages moderated to prevent spam

2008-09-19 Thread Amit Dhingra
Cool moderation... +1 Cheers, Amit On Fri, Sep 19, 2008 at 3:59 PM, Sumit Chandel <[EMAIL PROTECTED]>wrote: > > Hello everyone, > > I wanted to apologize for a recent bunch of spam messages that made it > to the Groups discussion forum. I was going through the manual process > of moderating the

Re: How to tokenize a string like "foo|:bar" where "|:" is the delimiter ?

2008-09-19 Thread Amit Dhingra
I suppose that you need to use "\||:" As \| -> the pipe you want to split with | -> OR : -> the colon you want to split with Though I am not very sure on this. :) Cheers, Amit On Fri, Sep 19, 2008 at 3:58 PM, Lothar Kimmeringer <[EMAIL PROTECTED]>wrote: > > guiii schrieb: > > does n

Re: Moderation policy back in effect: new members' messages moderated to prevent spam

2008-09-19 Thread Sumit Chandel
Hello everyone, I wanted to apologize for a recent bunch of spam messages that made it to the Groups discussion forum. I was going through the manual process of moderating the threads and approving new users, and somehow the Groups moderation panel forgot which messages I was permitting and which

Re: How to tokenize a string like "foo|:bar" where "|:" is the delimiter ?

2008-09-19 Thread Lothar Kimmeringer
guiii schrieb: > does not work. I guess the pipe "|" is seen as an OR (i.e. the > split() delimiter becomes empty string OR semicolon). > > I tried to escape it with a \, but gwt compiler complains: > >Invalid escape sequence (valid ones are \b \t \n \f \r \" > \' \\ ) > > It seems

Re: GWT popup query, a generic one

2008-09-19 Thread Ajay Garg
Thanks Thomas for the reply. Your approach works on Mozilla and IE7, but behaves weird on IE6. In my application, I override the PopupPanel.show() method, as follows : public void show(){ setVisible(false); super.show(); //following log

Re: RichTextToolbar

2008-09-19 Thread Martin Trummer
+1 from me On Sep 19, 4:52 am, "Michael Neale" <[EMAIL PROTECTED]> wrote: > Is there any reason why RichTextToolbar is not including as part of > GWT but is only as a sample ? (in the Showcase project)? > > Shouldn't this really be part of GWT itself, I mean the text area is > not terribly helpfu

Re: questions on Login Security FAQ

2008-09-19 Thread Ed
Like Rob mentioned, always interesting to read Reinier's post :)... > B) BCrypt (and you should use BCrypt, or you Fail Security. Seriously. > Don't think about it, you failed the test. Use tools written by the > experts) - is a better take on a technique called 'salt hashing', I noticed you men

Re: Annoucement. PureMVC4GWT RC is available

2008-09-19 Thread Thomas Broyer
On 17 sep, 12:34, Luciano Broussal <[EMAIL PROTECTED]> wrote: > Hi All, > > I've created a tiny but powerful gwt project > > The Goal is to provide a MVC framework based on the simple, well > designed and powerful PureMVC framework. I didn't know PureMVC, and I'm not very familiar with MVC eithe

Re: hot sexy girls & sexy picture and live hot movies

2008-09-19 Thread Schimki86
Ohhh dude... I think some people have too much boredom. Not defiling the beautiful GWT Group. Create your own uninteresting group! 2008/9/19 riya <[EMAIL PROTECTED]> > > hot sexy girls & sexy picture and live hot movies > sexy live hot girls and hot picture > latest sexy movies > actress hot gala

Re: OnFailure getting executed even though server code does not return any errors

2008-09-19 Thread Ryan
hi lothar, This project has still not been deployed to a tomcat server. I am still using the hosted mode and getting these errors. regards, Cherian --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolki

gwt functionality to jsp page

2008-09-19 Thread neeraj
HI I m new to GWT. suppose if I want to add gwt functionality to two dropdowns on mi jsp page.how could i achieve that. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this grou

Re: GWT 1.5 Now Available

2008-09-19 Thread vector
Hi. I have tried to download latest version for windows. The file is corrupted. I performed it from several places, but result is always the same. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

Earn Up to $10,000

2008-09-19 Thread mnr
Earn Up to $10,000 > ** > http://homologie.blogspot.com/ > http://germanfriendfinder.com/go/g107-ppc > http://amigos.com/go/g106-pmem > ** --~--~-~--~~~---~--~~

hot sexy girls & sexy picture and live hot movies

2008-09-19 Thread riya
hot sexy girls & sexy picture and live hot movies sexy live hot girls and hot picture latest sexy movies actress hot galary free hot movies and picture hollwood picture http://www.freewebs.com/laptopsint/ http://www.freewebs.com/laptopsint/ htt

Problem with java.lang.ClassNotFoundException only when deployed

2008-09-19 Thread Keith
Hi all, First off, I am a new user and have built a very simple application. It works fine under hosted mode. It compiles with no errors. When I deploy it to the web server and point a browser at it, it throws a ClassNotFoundException. I suspect this is a really simple problem (probably caused

**** Hot Beautiful Girls The World Live Chat ****online videos clip sex <<

2008-09-19 Thread [EMAIL PROTECTED]
Naughty Free Live Sex Web Cams & ChatClick here for free live sex web cams & chat online. Straight, Gay, Lesbian, Swingers, and more. Get sexy and broadcast your own cam. Chat for free. MOre... [b] http://urlaxe.com/modfxmodels [/b]

Re: OnFailure getting executed even though server code does not return any errors

2008-09-19 Thread Daniel Kurka
set the loglevel of your tomcat in embedded mode to a lower level an you will be seeing the exception regards daniel Ryan schrieb: > danke lothar, > > I am running this application in the hosted modeand not on Tomcat. > And I dont see any logs being generated for the application in the > host

Q & A type lessons

2008-09-19 Thread delhi institute of management & services
Delhi Institute of Management & Services Dear friends, We are extremely happy to welcome you to the world of Management... We are in the process of preparing some 5 minutes revision Q & A type lessons for management students. They are in no way, a replacement for the classroom lectures, textbooks

gift

2008-09-19 Thread thriller
Hi view some of the exclusive videos of micheal jackson dance movements on by clickin the given below website.Amazing performance.. *** *** www.freewebs.com/sulfonamide/ seniorfriendfinder.com/p/r

computer

2008-09-19 Thread baby
Computer - Wikipedia, the free encyclopedia The first devices that resemble modern computers date to the mid-20th century (around 1940 - 1945), although the computer concept and various machines ... == http://www.freewebs.com/mechanven/ == --~--~-

Re: GWT Maps API fails on host mode

2008-09-19 Thread Niko
Hi Same problem here : identical stack trace and warning messages. I was working on several little testing projects in gwt/gwt-ext/ gwtmaps a month ago. Now I'm unable to launch any of them using gwtmaps in the host mode. The platform environment (OS/eclipse/jars) didn't change - same PC, none

Earn money $1000-25000 per month

2008-09-19 Thread site
Earn money $1000-25000 per month Take simple online surveys Create free account other details log on * http://WWW.AWsurveys.com/HomeMain.cfm?RefID=sureshsyp *

GWT Application on Google App Engine

2008-09-19 Thread Ajay Jetti
hi Im starting to write a application on GWT using python as Backend which is used to communicate with GAE. I already have some python code . Now i want to write GWT in a manner that it communicates to python which inturn talks to GAE. I have read lot of posts talking about JSON and rpc'c as a m

Computer & Internet

2008-09-19 Thread vennila venunath
to click hear below to earn more http://www.freewebs.com/digitalimag/ = The Internet is a global system of interconnected computer networks that interchange data by packet switching using the standardiz

Computer & Internet

2008-09-19 Thread jill
to click hear below to earn more http://www.freewebs.com/digitalimag/ = The Internet is a global system of interconnected computer networks that interchange data by packet switching using the standardi

Load Testing of GWT applications (RPC)

2008-09-19 Thread Konstantin Shaposhnikov
Hello, I need to load test my GWT application. In order to do that I want to simulate user behavior by making RPC calls to the main service of the application. Unfortunately I haven't found any java API that enables to encode client requests and decode server responses. As I understant this part

GWT from Java

2008-09-19 Thread md
hi, Am a new GWT user and need a favour from experienced users. I access search engine through non-JavaScript environment(Java) via Standard URL Base address and Standard URL arguments.My URL is "http:// ajax.googleapis.com/ajax/services/search/web? v=1.0&rsz=large&start=0&q=Paris%20Hilton" How

SerializationException error

2008-09-19 Thread flavio
Hi, I have been developing a client application with GWT to consume services(EJB) to another application. The client applications has a dependency with EJB app but when occurs the RPC call i get the SerializationException error Caused by: com.google.gwt.user.client.rpc.SerializationException: Typ

  1   2   >