Re: Help: Development of large App with GWT

2010-10-06 Thread Thomas Broyer
On Oct 6, 5:42 am, Noor wrote: > Thus, if we resume, GWT helps more in the development phase of > software development. The end result is similar to the client as > development with any other framework. Well, to sum up, yes. There are 2 main differences though: - GWT generates a bunch of scri

Re: Help for testing GWT.UncaughtExceptionHandler within a JUnit GWTTestCase

2010-10-06 Thread Thomas Broyer
On Oct 6, 11:02 am, Didier DURAND wrote: > Hello, > > To improve the coverage of my automated tests, I'd like to test my own > GWT.UncaughtExceptionHandler within a GWTTestCase to see if it > functions correctly. > > I can't do it for now: the JUnit test always fa

Help for testing GWT.UncaughtExceptionHandler within a JUnit GWTTestCase

2010-10-06 Thread Didier DURAND
Hello, To improve the coverage of my automated tests, I'd like to test my own GWT.UncaughtExceptionHandler within a GWTTestCase to see if it functions correctly. I can't do it for now: the JUnit test always fails. Can you help me an let me know what's wrong in my code below ? (I

Re: Help: Development of large App with GWT

2010-10-06 Thread Noor
Yes, if someone can help me then it would be great!! -- 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

Re: Comet help about code

2010-10-06 Thread Cristiano
Hi All, this is my pattern of how I implement comet. I may change how I handle the ArrayList or use a timestamp as parameter of "get" method, but basically I always start from this simple snippet of code. It's for GWT but I've basically used it also in a Web Service and in a REST service. hope it'

Re: Comet help about code

2010-10-05 Thread Y2i
This code is not specific to Commet, it simply uses Java foreach loop to iterate through Map's key-value entries. For each entry it takes a value and calls one of its methods. http://download.oracle.com/javase/1.5.0/docs/guide/language/foreach.html http://download.oracle.com/javase/6/docs/api/jav

Re: Help: Development of large App with GWT

2010-10-05 Thread 007Prog
Hi Noor, to reply this question, we need someone who has been using GWT for quite long. About the application you are trying to implement, I'm still trying to figure out what type of application of recommend you. I think you can try real time web application. What do you think guys? -- You rece

Re: Help: Development of large App with GWT

2010-10-05 Thread Noor
Thus, if we resume, GWT helps more in the development phase of software development. The end result is similar to the client as development with any other framework. Is it that? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post

Comet help about code

2010-10-05 Thread Yudji
I read the comet in http://code.google.com/p/gwt-comet/source/browse/trunk/src/net/zschech/gwt/chat/server/ChatServiceImpl.java?r=98 Can explain to me about the code, because i dont undestand: public void send(String message) throws ChatException { .

Comet help about code

2010-10-05 Thread Yudji
I read the comet in http://code.google.com/p/gwt-comet/source/browse/trunk/src/net/zschech/gwt/chat/server/ChatServiceImpl.java?r=98 Can explain to me about the code, because i dont undestand: public void send(String message) throws ChatException { .

Re: Need help with "[ERROR] Annotation error: " while doing GWT compile

2010-10-05 Thread Sanjeev
You are right sir, absolutely! I had not compiled the code (&^%$), I know :-). Thank you for helping out! Regards Sanjeev -- 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...@googlegroup

Re: Need help with "[ERROR] Annotation error: " while doing GWT compile

2010-10-05 Thread Thomas Broyer
On Oct 5, 5:31 am, Sanjeev wrote: > Hi: > > GWT newbie here, using gwt 2.04 with Guice 2.0, Gin 1.0 and > mvp4g-1.2.0. I am getting the below error when trying to run > “com.google.gwt.dev.Compiler” on my GWT project. Feeling very lost > right now, so please help. P

Re: Help: Development of large App with GWT

2010-10-05 Thread Thomas Broyer
On Oct 5, 3:02 pm, 007Prog wrote: > I am also thinking about this. Google provide us with a toolkit. So, > what type of application can we create with this one that we cannot or > would be difficult with another framework.  Because Now Noor must > choose a proper application that clearly shows t

Re: Help: Development of large App with GWT

2010-10-05 Thread 007Prog
I am also thinking about this. Google provide us with a toolkit. So, what type of application can we create with this one that we cannot or would be difficult with another framework. Because Now Noor must choose a proper application that clearly shows that yes, THIS APPLICATION WOULD HAVE BEEN DI

Re: Help: Development of large App with GWT

2010-10-05 Thread Noor
Yes, I think that you r right lalit. That's the confusing part, which app can i develop, what where i am blocked?? -- 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

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: 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
services, that generate HTML instead of sending data to the client for rendering coz of miserable IE performance. Good luck. On 3. Okt, 18:10 h., Noor wrote: > Hi to all, I want some help from u. Many times, I have posted this > topic on google discussion and many have helped me. Thanks for

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: 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: Help: Development of large App with GWT

2010-10-04 Thread Thomas Broyer
m/archives/363 ; FWIW we're having a bad experience with it –couldn't tell you which issues, but I can ask the other team if you want–, and closed-source software doesn't really help when debugging weird issues) JavaFX? (born-dead, and Oracle is turning so evil that I wouldn't

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

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: 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

Re: Help: Development of large App with GWT

2010-10-03 Thread Noor
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 most important what makes it different when it is finally deployed on the server. -- You received this message because you are subscribed to the

Re: Help: Development of large App with GWT

2010-10-03 Thread Craigo
This sums it up nicely: http://code.google.com/webtoolkit/overview.html ...with an emphasis on not needing to know JavaScript (in particular AJAX). GWT = Awesome! On Oct 3, 11:10 am, Noor wrote: > Hi to all, I want some help from u. Many times, I have posted this > topic on google disc

Help: Development of large App with GWT

2010-10-03 Thread Noor
Hi to all, I want some help from u. Many times, I have posted this topic on google discussion and many have helped me. Thanks for this. The fact is that I got a dissertation in which I have to demonstrate the power of GWT. To demonstrate this, I must create an application. So the question, which

Re: Help with XML Parsing, element with text content contains #text as child

2010-10-01 Thread Thomas Broyer
m(i), child_); >                         } >                 } else { >                         parent_.addItem("Value: " + node_.getNodeValue()); >                 } >         } > > What is happening is that when iterate to the last level, which is > Emp_id, node_.ha

Help with XML Parsing, element with text content contains #text as child

2010-10-01 Thread 12ock
Hi, I am writing a generic xml reader using XMLParser, below is a sample xml file i am trying to parse: E-001 And here is the code: public void onSuccess(String xml_) { Document doc_ = XMLParser.parse(xml_);

Help With LoadHandler

2010-09-27 Thread rjcarr
#x27;t working because I have a few hundred images that can get changed very rapidly. I'm not really looking for help with my specific example but more looking for general examples using the LoadHandler. -- You received this message because you are subscribed to the Google Groups "Goo

help with pagingscrolltable

2010-09-22 Thread Nauman Badar
Hi Can someone help me in using pagingscrolltable/scrolltable cause I cannot find much help even on the google code for using them with UI-binder? Thanks in advance. *Best Regards Nauman Badar* -- You received this message because you are subscribed to the Google Groups "Google Web To

Re: Require Help to have multiple HTML Pages with one Entrypoint in my GWT App

2010-09-07 Thread suersh babu
tomatically configures this new html. Now u can put element here > and then > RootPanel.get(div id).add() will work. > > Regards > Deepak > > On Sun, Sep 5, 2010 at 9:08 PM, Nirav Joshi wrote: > >> Hi all >> i am new user of the GWT app. >> I want help fro

Re: Require Help to have multiple HTML Pages with one Entrypoint in my GWT App

2010-09-07 Thread Deepak Singh
he GWT app. > I want help from you guys to guide me for having multiple html/jsp > page with one entry point., > > Let us i want to have two pages page1.html,page2.html. > page1.html is a login page. > when i logged in then it should redirect to page2.html. > > How wil

Require Help to have multiple HTML Pages with one Entrypoint in my GWT App

2010-09-07 Thread Nirav Joshi
Hi all i am new user of the GWT app. I want help from you guys to guide me for having multiple html/jsp page with one entry point. Let us i want to have two pages page1.html,page2.html. page1.html is a login page. when i logged in then it should redirect to page2.html. How will i do it with the

Re: Please help

2010-09-03 Thread mikedshaf...@gmail.com
ying to develop a small > application...but here i need to open a directory and count the no.of > files in it...I'm doing it as follows: > > File dir = new File(file); > String[] pages = dir.list(); > int count = pages.length; > > I have imported java.io.File but

Please help

2010-09-03 Thread Albs
ut the GWT compiler gives me the following error.....plz help No source code is available for type java.io.File; did you forget to inherit a required module? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group,

Re: Deploy simple app on jetty: Please help

2010-09-01 Thread SZK
You probably need to configure serverlets in your web.xml to match your @RemoteServiceRelativePath e.g look at contacts example contactsServiceServlet com.google.gwt.sample.contacts.server.ContactsServiceImpl contactsServiceServlet /contacts/contactsService error or wa

Deploy simple app on jetty: Please help

2010-09-01 Thread andrewjmccann
Hi Folks, I which to deploy my new GWT application on a local server running jetty-6.1.22 on ubuntu 10.04. Before I tried that I tried to host the MyWebApp (Web Application Starter Project). I cannot get it to work. In eclipse I click Google -> GWT compile. It seems to compile fine. Then I copy

Re: I need help custom querying blobs. Can anybody get JDO BlobInfo query to to work?

2010-08-30 Thread branflake2267
Here is what I came up with so far. This works, but not sure if it is the best way yet. I can now return the blobinfo entities. http://code.google.com/p/gwt-examples/source/browse/trunk/DemoUpload/src/org/gonevertical/upload/server/BlobInfoJdo.java - see the source public class BlobInfoJdo { pr

I need help custom querying blobs. Can anybody get JDO BlobInfo query to to work?

2010-08-29 Thread branflake2267
Can anybody get a custom BlobInfo JDO query to work? I can't figure out how to do a custom query on the Blobs? http://code.google.com/p/gwt-examples/source/browse/trunk/DemoUpload/src/org/gonevertical/upload/server/BlobInfoJdo.java This GQL works to query blobs: "SELECT * FROM __BlobInfo__" http:

Re: Help With Eclipse Development ??

2010-08-29 Thread Sebastian Rothbucher
Hi Jalu, what I'd try is a.) put all required libs in WEB-INF/lib and then b.) add all of WEB-INF/lib to the java build path of the eclipse project... Hope this helps! Best Regards Sebastian P.S.: You can safely ignore the WARN] Server class 'net.sf.gilead.gwt.PersistentRemoteService' could

Help With Eclipse Development ??

2010-08-27 Thread chalu
Hello folks, I am moving my GWT/GXT development from Netbeans to Eclipse (Helios), but I am still struggling to find my way around. I have read some tutorials and watched some videos on eclipse but I still have issues in some areas, for example the SLF4J docs says we have to add an implementation b

Re: I need a little help with request builder

2010-08-16 Thread nacho
Yes, i thought to do in that way. But the trouble is that i need to work with 3 files, and i need to execute more than one method over the file contents, so that was that i was wondering some how to make sure that the content was loaded and then work with it. On 16 ago, 14:45, André Moraes wrote

Re: I need a little help with request builder

2010-08-16 Thread André Moraes
If i get it correct: 1- Your file as a file that your server will serve when you make a GET request. 2- You are using RequestBuilder to open a connection to your server and fetch the file 3- If all of this is true, you should do: 3.1 -> create the requestbuilder and point it to your file 3.2 -> yo

I need a little help with request builder

2010-08-16 Thread nacho
Well, the trouble is not exactly with request builder. The thing is like this. I have a class BinFileReader that in the constructor receives an url an read it address file contents. And the class haves some methods, like readString(), readInt, readByte, etc. But, obviusly, first at all, to execut

Re: UiBinder xml definition reference: HELP...

2010-08-14 Thread Thomas Broyer
On 14 août, 14:39, Thamizharasu S wrote: > Hi, > I was supposed to use SuggestionBox widget with UiBinder. How could I > mention the data provider as a property from xml or the code? http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Using_a_widget -- You received this message

Re: UiBinder xml definition reference: HELP...

2010-08-14 Thread Thamizharasu S
Hi, I was supposed to use SuggestionBox widget with UiBinder. How could I mention the data provider as a property from xml or the code? - Thamizharasu S On 14 Aug, 15:17, Thomas Broyer wrote: > On 13 août, 20:04, Thamizharasu S wrote: > > > Hi All, > > > Where can I find the full list of proper

Re: UiBinder xml definition reference: HELP...

2010-08-14 Thread Thomas Broyer
On 13 août, 20:04, Thamizharasu S wrote: > Hi All, > > Where can I find the full list of property reference for UiBinder > controls in xml file? > > For example, any GWT elements can be bind with UiBinder. Sometimes it > is confusing to identify the correct property name and some available > val

Re: UiBinder xml definition reference: HELP...

2010-08-13 Thread Prashant Hegde
Not sure if there is such a documentation, however, one rule is that whenever a widget has a method say "setName" ( set methods), you can use name="" in the UIBinder XML file for that widget. May be someone else can give a better answer. Prashant On 13-08-2010 23:34, Thamizharasu S wrote: H

UiBinder xml definition reference: HELP...

2010-08-13 Thread Thamizharasu S
Hi All, Where can I find the full list of property reference for UiBinder controls in xml file? For example, any GWT elements can be bind with UiBinder. Sometimes it is confusing to identify the correct property name and some available values. Can any one point to identify it for my reference?

help...

2010-08-12 Thread Diego Venuzka
ct\build-gwt.xml:411: Java returned: 1 FALHA NA CONSTRUÇÃO (tempo total: 21 segundos) Anyone can help me to solve this? I'm working on that more than 3 hours and i don't solve that errors Thanks!! -- Diego Venuzka -- You received this message because you are subscribed to the

Re: help with css bundles and background image sprites

2010-08-10 Thread Joe Hudson
gt; } > > > > -- Client Bundle > > > public interface MessagePanelClientBundle extends ClientBundle { > > > >         @Source("message-panel.css") > > >         MessagePanelCSS css(); > > > >         @Source("error.png") >

Re: help with css bundles and background image sprites

2010-08-10 Thread Gal Dolber
> @Source("error.png") > > ImageResource error(); > > > > } > > > > -- Css Bundle > > public interface MessagePanelCSS extends CssResource { > > > > String errorMessage(); > > > > } > > > &

Re: help with css bundles and background image sprites

2010-08-10 Thread Joe Hudson
-panel.css") >         MessagePanelCSS css(); > >         @Source("error.png") >         ImageResource error(); > > } > > -- Css Bundle > public interface MessagePanelCSS extends CssResource { > >         String errorMessage(); > > } > &g

Re: help with css bundles and background image sprites

2010-08-10 Thread Gal Dolber
Message { > > background-color: #FEEFB3; > > gwt-image: 'warn'; > > > > } > > > > -- Client Bundle > > public interface MessagePanelClientBundle extends ClientBundle { > > > > @Source("message-panel.css") > >

Re: help with css bundles and background image sprites

2010-08-10 Thread Joe Hudson
t;         MessagePanelCSS css(); > >         @Source("error.png") >         ImageResource error(); > > } > > -- Css Bundle > public interface MessagePanelCSS extends CssResource { > >         String errorMessage(); > > } > > Does anyone have any ideas as to

help with css bundles and background image sprites

2010-08-09 Thread Joe Hudson
"error.png") ImageResource error(); } -- Css Bundle public interface MessagePanelCSS extends CssResource { String errorMessage(); } Does anyone have any ideas as to why this might happen? Any help would be appreciated. Thanks. Joe -- You received this message becaus

broken image in help! Bug?

2010-08-09 Thread Sree ...
Is this a bug?? am seeing a broken image in eclipse. Type: final *Button* b = new Button(); and then mouseover to *Button.* [image: broken Image.png] -- -Thanks -Srikanth.G -Hyderabad -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Re: Need help on generating session id

2010-08-09 Thread Mani P
Thank you all guys for your responses. But when i try to do the same thing in Java using servlets i am getting different sesssion id's if i open a new same browser. But where as in using GWT i am getting same session even if i use different browser (same browser). So my requirement is to generate

Re: Please help - GWT application will not load in IE!

2010-08-09 Thread Manuel Carrasco Moñino
sn't able to load in I.E. The fact that nothing is >> > loading makes me think it might be one of the outside layers, perhaps >> > try some inner layers of the GUI and see what works and what doesn't. >> >> > If I got your code, that's what I'd

Re: Please help - GWT application will not load in IE!

2010-08-06 Thread Xandel
RootLayoutPanel.get() instead of RootPanel.get() > > > and something interesting... The site still does not load up at all > > > but there is no "Exception thrown and not caught" compilation error > > > anymore... > > > > Not sure if that helps... Wil

Re: Please help - GWT application will not load in IE!

2010-08-06 Thread Trevor Skaife
, so I tried RootLayoutPanel.get() instead of RootPanel.get() > > and something interesting... The site still does not load up at all > > but there is no "Exception thrown and not caught" compilation error > > anymore... > > > Not sure if that helps... Will keep look

Re: Please help - GWT application will not load in IE!

2010-08-06 Thread spierce7
tion thrown and not caught" compilation error > anymore... > > Not sure if that helps... Will keep looking for answers - but please, > if you require any more information to try and help me solve this just > ask away! > > Other information I can give you is I am using the MV

Re: Please help - GWT application will not load in IE!

2010-08-06 Thread Xandel
se, if you require any more information to try and help me solve this just ask away! Other information I can give you is I am using the MVP design pattern as suggested by the GWT team based off their contacts example. So while I don't necessarily call RootLayoutPanel.get().add(myMainLayoutPanel)

Re: Please help - GWT application will not load in IE!

2010-08-06 Thread Xandel
ed > > it in quirks-mode and standards-mode and both don't seem to work. > > > Another problem I was having which seems to have gone away I described > > on this post on StackOverflow: > > >http://stackoverflow.com/questions/3033073/gwt-in-ie8-exception-throw...

Re: Please help - GWT application will not load in IE!

2010-08-06 Thread Xandel
within each other > > to build the layout, the main panel being a LayoutPanel. I have tried > > it in quirks-mode and standards-mode and both don't seem to work. > > > Another problem I was having which seems to have gone away I described > > on this post on StackOver

Re: Please help - GWT application will not load in IE!

2010-08-05 Thread Katharina Probst
and both don't seem to work. > > Another problem I was having which seems to have gone away I described > on this post on StackOverflow: > > > http://stackoverflow.com/questions/3033073/gwt-in-ie8-exception-thrown-and-not-caught > > Please can somebody help me. I have a

Re: Need Help!!!About the difference between smartgwt and gwt for component "Window"

2010-08-05 Thread lineman78
You need to enable modality in the smartGwt window: winModal.setIsModal(true); winModal.setShowModalMask(true); On Aug 4, 8:41 pm, JIE SUN wrote: > Hi guys: > > I had difficult to set up a smartgwt window as sam functionality as > the one in gwt. > Basically, I just need to click a button, and a

Please help - GWT application will not load in IE!

2010-08-05 Thread Xandel
and-not-caught Please can somebody help me. I have already posted on this forum and received no help. If anyone has any ideas, or suggestions - I really will be appreciative! I can also provide the link to the site on request. Thanks in advance - if anyone actually sees this. Xandel -- You re

Need Help!!!About the difference between smartgwt and gwt for component "Window"

2010-08-05 Thread JIE SUN
Hi guys: I had difficult to set up a smartgwt window as sam functionality as the one in gwt. Basically, I just need to click a button, and a panel pops up, meanwhile all other components at background will be greyed out. However, when I use the component "window" in smartgwt, it looks like does no

which permutation which user.agent HTML5 manifest help!!!

2010-08-04 Thread Shawn Brown
How can I know which which permutation (exactly which files) are for which user.agent? I assume that information is available if I look for it during compile time by extending an AbstractLinker, adding it my xxx.gwt.xml config file. I need to know because in order to make a cache.manifest for off

Need help on Richtext editor formatting.

2010-08-04 Thread Rajeshwari P.
Hi, GWT(version 2.0.3) Richtext editor has been used , from where users enter data and they format it through the formatting toolbar in Richtext editor.PDF reports are generated (Using Jasper report) once user enters data in RT editor. The problem is , few of the formattings (like : Bold, Italic

[Help Needed] GwtCreateResource -- how do I get this working for me?

2010-08-03 Thread Xlorep DarkHelm
to have the Settings values be available in the ClientBundle that contains the CssResource, from my understanding. This doesn't seem to be working... I thought GwtCreateResource<> was the correct thing to use, but it is failing. Please help :) -- You received this message beca

Re: Need help on generating session id

2010-08-02 Thread eluminous chaitu
Hello Mani, when Firefox generates a session id for one process, it is shared within all the instances of Firefox, as all the instances of Firefox is a single process and not different instances. All the instances of Firefox share a common process area which causes to retain a session id for all i

Re: A little help

2010-08-01 Thread Diego Venuzka
t; > Helios. I never used GWT, and i need build a system to control a machine > > shop. My question is, somebody have a template, or guide to use GWT/Ajax > on > > Eclipse? I saw a site that use GWT and Ajax: > > http://www.geoleite.com.br/site/index.html (i lik

Re: Need help on generating session id

2010-08-01 Thread Sebastian Rothbucher
Hi, I think you have to remember the fact that firefox (or as far as I know IE as well) are always just ONE instance). So if you have two Firefox windows, they belong to the same process (just one entry in ps / the Task Manager). As Firefox has one session per process, all windows will always use t

Re: Need help on generating session id

2010-07-31 Thread mP
Hi Mani You are getting the same ID for the same browser because you are still in the same session. Start up a different browser and it will get a different session and thus id. hth -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post

Need help on generating session id

2010-07-31 Thread Mani
Hi, when i try to get session id by using following piece of code every time i am getting same session id if i try from same browser (with two instance browsers) like Firefox or IE. getThreadLocalRequest().getSession().getId() Can any one tell me why it is giving same session id. Thanks Mani --

Re: A little help

2010-07-28 Thread RPB
much this template :D) > If anybody can help me, i really thank :D > > Thank all! > -- > Diego Venuzka -- 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...@googlegrou

Re: A little help

2010-07-28 Thread Rob Coops
:-) Asking other will not help you much in understanding why you are doing certain parts and why you would not do things in a slightly different way. Regards, Rob On Tue, Jul 27, 2010 at 11:57 PM, Diego Venuzka wrote: > Hello guys! > I'm going to do a work for my course, and i will u

Re: A little help

2010-07-28 Thread Christian Goudreau
to use Gwt ! I'm studying at Laval university and I don't think I'll ever study something like this ! LOL BTW, you can have a look at our great framework to help you grasp the full potential of GWT and use the best practice that are loud to use : www.gwtplatform.com Cheers, On Tue

A little help

2010-07-28 Thread Diego Venuzka
http://www.geoleite.com.br/site/index.html (i like so much this template :D) If anybody can help me, i really thank :D Thank all! -- Diego Venuzka -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to

Re: Needing help, building a Login

2010-07-23 Thread AlexG
ntify the users. > > In the tutorial they say, send the session-Id within the payload of > > future RPC. > > > My question is, how can I do this? How can I modify the payload, to > > send the session-Id with the RPC? > > The following question will be, how can I read th

Re: problem accessing one composite from another - Urgent help needed if possible

2010-07-23 Thread dlynch
Ok will do, Thanks for the help Kind Regards David On Jul 22, 6:44 pm, cokol wrote: > hi.from architectonical perspective,the response IS A  part of your > wrapping composite therefore ur maininterface should also manage > it.just put the response widget inside > > On Jul 22,

Re: problem accessing one composite from another - Urgent help needed if possible

2010-07-22 Thread cokol
hi.from architectonical perspective,the response IS A part of your wrapping composite therefore ur maininterface should also manage it.just put the response widget inside On Jul 22, 6:20 pm, dlynch wrote: > Hi Everybody, > > I am learning GWT just and am really stuck on a problem. > > I have cre

problem accessing one composite from another - Urgent help needed if possible

2010-07-22 Thread dlynch
Hi Everybody, I am learning GWT just and am really stuck on a problem. I have created a new composite which contains several panels. In some of the panels I have other seperate composites of which one is a search which contains a TextBox and a Button. So basically i have a mainInterface.java whi

Re: Needing help, building a Login

2010-07-22 Thread Ladislav Gazo
n-Id with the RPC? > The following question will be, how can I read this Id from the > payload on the server? > > It would be nice if someone can help me. > > Greets > Alex -- You received this message because you are subscribed to the Google Groups "Go

Re: Needing help, building a Login

2010-07-22 Thread AlexG
Thank you cokol, I think I got, what I needed. Thanks for your help! Greets Alex On 21 Jul., 22:11, cokol wrote: > hi, you dont need to care for session ids, unless cookies are > disabled, since almost every servlet container (tomcat, appengine,etc) > creates a new sessionid for ever

Re: Needing help, building a Login

2010-07-21 Thread cokol
PC. > > My question is, how can I do this? How can I modify the payload, to > send the session-Id with the RPC? > The following question will be, how can I read this Id from the > payload on the server? > > It would be nice if someone can help me. > > Greets > Alex --

Needing help, building a Login

2010-07-21 Thread AlexG
with the RPC? The following question will be, how can I read this Id from the payload on the server? It would be nice if someone can help me. Greets Alex -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, sen

Re: Used to be a C++ developer, want to move the front end client to GWT, need a step by step example/tutorial for GWT and mysql database. Appreciate for your help!

2010-07-20 Thread Paul Robinson
migrate UI client > (using for app configuration and control) to GWT. Currently, finished > the stock price tutorial. Need a similar detail oriented tutorial for > working with mysql DB. Please help. > > Thanks lot, > > > Allen > > -- You received this message becaus

Used to be a C++ developer, want to move the front end client to GWT, need a step by step example/tutorial for GWT and mysql database. Appreciate for your help!

2010-07-20 Thread Allen
Hi: I am experienced C++ developer and want to migrate UI client (using for app configuration and control) to GWT. Currently, finished the stock price tutorial. Need a similar detail oriented tutorial for working with mysql DB. Please help. Thanks lot, Allen -- You received this message

Re: Help with openid spring security and GWT

2010-07-18 Thread giannisdag
) { AccessDeniedException ade = (AccessDeniedException) e.getCause(); throw ade; } else { super.doUnexpectedFailure(e); } } I would appreciate any help -- You received this message because you are subscribed to

Re: Help with openid spring security and GWT

2010-07-17 Thread giannisdag
I see you handle this in GwtRPCController -- 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.

Help with layout

2010-07-16 Thread julien
aa Thanks for your help ! Regards, Julien -- 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 grou

GWT-Swing Help

2010-07-16 Thread nirav patani
Hi, I am coding in swing and would like to know if swing supports feature of flextable..i have to dynamically choose compnents like JtextArea, jTextBox etc and set them to a jDialogBox. Somthing like a flexTable in GWT would be helpful -- You received this message because you are subscribed t

Re: Help with openid spring security and GWT

2010-07-16 Thread giannisdag
Matias, thank you very much, your guides are very helpful, I am working on it for the moment. I followed your paradigm changing at first my code of using spring security, because I followed See Wah Cheng's approach. The first problem I had is that, after implementing your configuration I was gettin

Re: Help with openid spring security and GWT

2010-07-14 Thread Mattias
Check out http://technowobble.blogspot.com/2010/07/gwt-and-open-id-using-spring-security.html. On Jul 14, 5:04 pm, giannisdag wrote: > Hi I am using spring security, and I would like to enable and openid > login and MVP. I am using spring security at the method level access, > not at the page l

Help with openid spring security and GWT

2010-07-14 Thread giannisdag
Hi I am using spring security, and I would like to enable and openid login and MVP. I am using spring security at the method level access, not at the page level. Simply, when the user requests an action that it is not allowed, he is redirected to the login view, where he gets two form logins, one w

<    4   5   6   7   8   9   10   11   12   13   >