Re: authentication in GWT

2008-11-20 Thread walden
, Walden On Nov 19, 1:40 pm, Sumit Chandel [EMAIL PROTECTED] wrote: Hello everyone, Just a note that I've removed a couple of posts from this thread due to inappropriate comments. This also seems like a good time to remind everyone that we're here to collaborate and help each other

Re: Webservice in GWT application

2008-11-20 Thread walden
Can you be more specific about what you want to do? On Nov 20, 10:30 am, Sandeep Verma [EMAIL PROTECTED] wrote: Hi All,         I have an application in GWT I want to include webservice to it.Is it possible or not?        if possible can any one guide me in this regards. Thanx in Advance

Re: authentication in GWT

2008-11-19 Thread walden
wrote, and stick to the technical issues with specific examples and counterexamples, if you have them. Trying to summarize the experience and sentiment of others as if from authority is also not helpful. Walden On Nov 18, 2:49 pm, Reinier Zwitserloot [EMAIL PROTECTED] wrote: HTTP Authentication

Re: authentication in GWT

2008-11-19 Thread walden
authorization scheme where certain widgets appear only for certain users. That sort of entitlement management goes beyond authorization, and the point I was making was that it seems somewhat orthogonal to what protocol you use for auth. Walden

Re: Make RPC call from server?

2008-11-19 Thread walden
A couple of repeated lines does not sound too clumsy to me. I think you have the right separation of concerns with your current design. Walden On Nov 18, 4:50 pm, str16star [EMAIL PROTECTED] wrote: Thanks, your advise helped me solve the problem in 5 min. The code I was trying to call

Re: authentication in GWT

2008-11-18 Thread walden
*, which is where the simplicity/economy is to be had. Walden On Nov 18, 10:40 am, Litty Preeth [EMAIL PROTECTED] wrote: Actually my applications authentication is done by a third party. I need to call their API to authenticate. So I wont b able to use the HTTP authentication. But I think

Re: authentication in GWT

2008-11-18 Thread walden
. As for widget activation, you're talking authorization, and I don't see any difference among the proposals on that.  * logout (not possible with HTTP Basic). And yet I have it. Go figure. Walden --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: Text floats out of TextBox (serious issue!?)

2008-11-18 Thread walden
Can you post a small *plain HTML* sample that reproduces the effect? On Nov 18, 9:54 am, Schimki86 [EMAIL PROTECTED] wrote: If I resize my application in compiled mode (Firefox) the TextBox-text floats out of the edit. It occurs when controls e.g. the TextBox change its position (gliding

Re: Make RPC call from server?

2008-11-18 Thread walden
Factor your server code. Service Impls are Servlets; you don't instantiate them. So take the parts that are needed by Chat (which are probably data access methods, right?), factor those out into a DAO object (not a Servlet), and call that from both impls. On Nov 18, 7:46 am, str16star [EMAIL

Re: sequence of asynchronous calls

2008-11-18 Thread walden
If I were you I'd handle the recursive tree traversal on the server and return a (pruned?) subtree as a response, instead of node-at-a- time. Not only does it simplify async callback management on the client, it also uses the network a lot more efficiently. Walden On Nov 18, 11:26 am, [EMAIL

Re: Dynamically loading javascript code

2008-11-14 Thread walden
How does this differ from loading the selected sites into an iframe? On Nov 13, 11:21 am, byhisdeeds [EMAIL PROTECTED] wrote: I have a GWT application  where I want to display a list of urls, such that when the user will selects one of them I can load the contents of the url into my

Re: Forbid text editing by right mouse-button

2008-11-14 Thread walden
TextBox.setReadOnly(boolean readOnly) may be what you're looking for. You can set or unset this on any event you choose. On Nov 14, 1:16 am, Schimki86 [EMAIL PROTECTED] wrote: Is it possible to forbid editing a TextBox with mouse (context menu on right click -- insert) or is the only way to

Re: Integrating GWT application with existing java project

2008-11-12 Thread walden
have started down, it sounds as though you have not established the correct source path for MyClass. If it's not in a client/ folder right under the folder where you Module file is, then its path needs to be explicit. Walden On Nov 10, 5:05 pm, Bliss [EMAIL PROTECTED] wrote: I am having a similar

Re: Open url with POST parameters

2008-11-12 Thread walden
(new_url_string, unique_window_name, ); I don't know if that helps though. Walden On Nov 12, 6:34 am, Cesc [EMAIL PROTECTED] wrote: Hi all, I've searching all around the discussions and although there were a few hints, I couoldn't find a suitable solution. In HTML, I have a form like

Re: new user with a few questions.

2008-11-10 Thread walden
You might be on the right track with cookies, but you might also be on the track of reinventing web security, and your mention of hashing the username to store private data makes me think this may be the case. How about giving a bird's eye view of what you are trying to build. A bunch of cookies

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-07 Thread walden
this java object to construct the menu. On Fri, Nov 7, 2008 at 6:28 PM, walden [EMAIL PROTECTED] wrote: Then construct your TreeItem with Label instead of text, and attach a ClickListener to the Label. On Nov 7, 2:00 am, Litty Preeth [EMAIL PROTECTED] wrote: Actually I wanted a popup menu

Re: dynamically load css?

2008-11-07 Thread walden
Are you reinventing the browser? Why don't you put a link on your page and let the user click it. Maybe you can style the link to look like a button. On Nov 7, 10:13 am, samsus [EMAIL PROTECTED] wrote: Hello everyone, Im trying to do an app where the user can dynamically load a html and its

Re: php usage with gwt

2008-11-07 Thread walden
tapan, That's like asking When my broken arm heals, will I be able to play the violin? Walden On Nov 7, 10:38 am, tapan [EMAIL PROTECTED] wrote: If i rename the .html to .php file will it work --~--~-~--~~~---~--~~ You received this message because you

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-07 Thread walden
. - Litty On Fri, Nov 7, 2008 at 4:26 AM, walden [EMAIL PROTECTED] wrote: I'm not sure he will see popping up a menu on item selection as normal behavior to begin with.  Maybe you should implement context menu listeners on your tree item widgets instead. On Nov 6, 11:15 am, Litty Preeth [EMAIL

Re: dynamically load css?

2008-11-07 Thread walden
it? Walden On Nov 7, 11:14 am, samsus [EMAIL PROTECTED] wrote: what are you talking about? On Nov 7, 4:04 pm, walden [EMAIL PROTECTED] wrote: Are you reinventing the browser? Why don't you put a link on your page and let the user click it. Maybe you can style the link to look like a button

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-06 Thread walden
not be easy. Walden On Nov 5, 1:26 pm, Litty Preeth [EMAIL PROTECTED] wrote: Walden, But then a user will expect to select a tree node by clicking on the node only rite? I dont feel that the node getting selected when you click else where is an expected behavior. - Litty On Wed, Nov 5

Re: Single application .. multiple RPC services

2008-11-06 Thread walden
with it!) before you try to hybridize with standard page-load- page web application style. In particular, drop the idea of Service- per-URL. Yagni. Walden On Nov 6, 2:35 am, Muhannad [EMAIL PROTECTED] wrote: Hi Walden, I'm not sure that I got your idea, but I always had a concern about that so

Re: can the gwt compiler compile files outside the module

2008-11-05 Thread walden
wherever your GWT code needs util services. It's not necessary for every Module to have an entrypoint. It's necessary that the transitive closure of inherited modules for a given compile have an entrypoint. Hope this helps, Walden On Nov 4, 3:13 pm, AB [EMAIL PROTECTED] wrote: Thanks all. I

Re: Event driven communication between independent GWT modules

2008-11-05 Thread walden
Joe, Aha! moment: GWT is not Java. Walden On Nov 5, 2:00 am, JEA [EMAIL PROTECTED] wrote: Thanks to everyone who contributed their comments on this problem.  It has been tremendously educational for me.  This is my first crack at using GWT. To clarify, I am trying to send event messages

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-05 Thread walden
the width of the ScrollPanel. What effect are you trying to achieve? Walden On Nov 5, 8:21 am, Litty Preeth [EMAIL PROTECTED] wrote: Hi Walden, I tried using gwt-1.5.2 and gwt-1.5. If gwt-1.5.2 is used on IE6 it happens only for the child node. Root level nodes are working fine. But on IE7

Re: Event driven communication between independent GWT modules

2008-11-04 Thread walden
can copy that. Walden On Nov 3, 3:33 pm, JEA [EMAIL PROTECTED] wrote: I have a web site that has pages that each can contain a variety of independent apps embedded in a different positions within an otherwise conventional HTML page.  Although independent, they can affect one another

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-04 Thread walden
Litty, How can you be sure you are actually clicking outside the TreeItem? Walden On Nov 4, 12:27 am, Litty Preeth [EMAIL PROTECTED] wrote: Hi All, I have a Tree on my page which I have added into a ScrollPanel. My problem is that if I click even outside the TreeItem (but within

Re: Event driven communication between independent GWT modules

2008-11-04 Thread walden
Brian, I think it should be made clear that GWT Modules are reuse packagings, just like Java classes, and don't even imply a runtime application architecture. The only reason for breaking code into Modules is to reuse it by inheritance rather than duplicating code. Walden On Nov 4, 11:58 am

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-04 Thread walden
What version of GWT are you using? I'm trying the same thing in the GWT showcase and not getting the result you are. On Nov 4, 10:51 am, Litty Preeth [EMAIL PROTECTED] wrote: Hi Walden, I put a border to the TreeItem and also a border to the tree itself. So if I click outside the border

Re: Discussion on security-for-gwt-applications

2008-11-04 Thread walden
Jason, Maybe you could come up with a session-less implementation, so then you wouldn't have to worry about releasing those resources? Walden On Nov 4, 12:52 pm, Jason Vincent [EMAIL PROTECTED] wrote: Nah... I need sessions to expire like normal so that those resources can be released

Re: Discussion on security-for-gwt-applications

2008-11-04 Thread walden
Jason, So it's a GET parameter on a POST request? Hmmm. Clever, though. Walden On Nov 4, 12:31 pm, Jason Vincent [EMAIL PROTECTED] wrote: I see your point.  If the SID is invalid, either via a real attack or by session invalidation, the result is the same... I don't know who you are so

Re: Discussion on security-for-gwt-applications

2008-11-04 Thread walden
that it's for a good cause. Since the reality is that you can't be sure when a sid error is an attack, why not be candid about it? BTW, how do you use RPC to send a get parameter? That part confused me. Walden On Nov 3, 4:59 pm, Jason [EMAIL PROTECTED] wrote: I have a question about the XSRF

Re: Event driven communication between independent GWT modules

2008-11-04 Thread walden
, and I concur with that approach, which is consistent with what I was proposing. Walden On Nov 4, 9:50 am, Thomas Broyer [EMAIL PROTECTED] wrote: On 4 nov, 13:11, walden [EMAIL PROTECTED] wrote: Joe, You don't need DOM events, per se.  Use Observer Pattern.  Your Login module doesn't need

Re: FormPanel: is it only for sending data to server?

2008-11-03 Thread walden
don't really have the programming and Java background needed to succeed with GWT. If that's the case, you need to begin at the beginning. This forum can't do that for you. Walden On Nov 1, 9:21 am, Muhannad [EMAIL PROTECTED] wrote: So? Excuse me! On Oct 30, 1:31 pm, Muhannad [EMAIL PROTECTED

Re: Tooltips for GridPanel cells

2008-11-03 Thread walden
for applying that style in a data cell, you'll have to check the other forum or do your own homework with the source. Walden On Nov 1, 12:23 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Also I would like to know if it is possible to underline the Strings in the data cells of the GridPanel. I would

Re: RPC error with MapString, String

2008-10-31 Thread walden
is inspecting the OrderedConstantSet, something never referenced in the application, only because it is also a MapString,String. I would like to understand if this is necessary or a bug in the compiler. Thanks, Walden On Oct 31, 7:10 am, Ian Petersen [EMAIL PROTECTED] wrote: On Thu, Oct 30, 2008

Re: RPC error with MapString, String

2008-10-31 Thread walden
WebDude, It's only a warning. It will not prevent your application from running correctly, as far as I can tell so far. Walden On Oct 31, 8:04 am, walden [EMAIL PROTECTED] wrote: Ian, I'm confused by your statement coming from server-side code.  That's a compile warning against

Re: can the gwt compiler compile files outside the module

2008-10-31 Thread walden
relative location at all times?) I think Dobes has the right answer (above). Either move it into your module, or make it part of some other module that you inherit. Walden On Oct 31, 2:03 am, Richard Corsale [EMAIL PROTECTED] wrote: Ive tried to do the same thing, it wont work though. I think

Re: Clearing Browser cache for upadated deployments

2008-10-31 Thread walden
This is how it *should* work, out of the box. Do you have a specific counterexample? On Oct 30, 10:31 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Basically I would like to know how to support the case where we would like to deploy an updated application and want changes to be

Re: Scrollbar not Showing

2008-10-31 Thread walden
GridPanel appears to be some sort of Ext thingy. You should post on their forum, where someone might know the answer. On Oct 31, 6:34 am, Arji [EMAIL PROTECTED] wrote: Hi everyone, I already looked at the forums and searched the net.  No luck. I have a GridPanel (GP) inside a Panel (P).

Re: Facebook Bottom Menu

2008-10-30 Thread walden
lstenes, That menu on facebook is a div with fixed positioning, anchored to the bottom right, There is no reason you would not be able to implement the same sort of thing using GWT. Walden On Oct 29, 1:19 pm, Istenes [EMAIL PROTECTED] wrote: Hi, I am new to gwt and been testing some panels

Re: GWT1.5 and struts 1.2

2008-10-29 Thread walden
What does GWT have to do with Struts? In what sense does one matter to the other? On Oct 28, 5:13 pm, Krish [EMAIL PROTECTED] wrote: Hi, I need to integrate GWT 1.5 with struts 1.2 . I checked with struts 2.0 and it is working fine. But it is not working with struts 1.2. Is there any

Re: GWT1.5 and struts 1.2

2008-10-29 Thread walden
call into a java class that's been loaded as bytecode on the server, which is not possible. In either case, you're leaving it up to sheer guessing, because you gave no details of your failure. Walden On Oct 29, 9:11 am, Krish [EMAIL PROTECTED] wrote: I need to call Strtus action classes from

Re: gwt rpc vs json

2008-10-29 Thread walden
Brian, In over a year and a half of using GWT RPC, I've never had a failure that had anything to do with mismatched wire formats. I hear your concern. What's the saying? Once bitten; twice shy. I think there's a scar there that, given time, can heal completely, though. Walden On Oct 29, 10

Re: Httpsession and GWT

2008-10-28 Thread walden
Hi Paul, Responses inline... On Oct 27, 6:50 pm, Paul van Hoven [EMAIL PROTECTED] wrote: Hi Walden, thanks for the answers. Sorry, I have to ask you again: You answerd: Once you've ascertained the user's identity and bound it to the session, sure. Do you mean that one should use

Re: Project won't run in hosted mode?

2008-10-28 Thread walden
Michael, The only part of your console log that's remotely germain is this part: debug: And then you've left us with absolutely no idea what that target even does. How could anyone know what's gone wrong? Walden On Oct 27, 5:57 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I have

Re: Integrating GWT application with existing java project

2008-10-28 Thread walden
to shuffle GWT client classes in with other stuff that does not need to meet up with the GWT compiler. Keep life simple. Walden On Oct 28, 8:36 am, vk [EMAIL PROTECTED] wrote: Hi, I've been developing a GWT-application that uses RPC. However, now I want to integrate the GWT-app into the existing

Re: Client Authentication with SSL

2008-10-28 Thread walden
Let your client make a call to the server for it. On Oct 28, 6:31 am, adam.urban [EMAIL PROTECTED] wrote: Hi, I am new to security technologies and I have some questions. I wrote a web service with Googlte Web Toolkit. Now I made all changes to Apache Tomcat to use a SSL-Connection with

Re: Basic login security/session management question

2008-10-27 Thread walden
Andrey! I don't get why you're putting an exclamation point after my name. Are you shouting at me? I can't explain why you need cookies. I don't use them. I didn't write the FAQ either. Walden On Oct 26, 10:17 am, Andrey [EMAIL PROTECTED] wrote: walden! I also don't get why we need

Re: Does panel has border?

2008-10-27 Thread walden
You need a style name set before you can set a dependent name. So, to the original poster, construct your FlowPanel. Set its style name to whatever, and then write your css rules to that. Walden On Oct 27, 3:18 am, hezjing [EMAIL PROTECTED] wrote: Hi To add the borders to a panel, we

Re: module source path element

2008-10-27 Thread walden
. That should do it. Walden On Oct 25, 4:49 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: hello folks, i've got following source structure in my project (j2ee): ~/project/java: //all the common sources which gonna be compiled to ~/ webapp/WEB-INF/classes ~/project/java/c.d.e.UserProfileBean

Re: Does panel has border?

2008-10-27 Thread walden
in place (see above). So in your case, if you say fp.setStyleName(foo-FlowPanel), then you can make up a css rule for .foo-FlowPanel {}, and you can also say fp.addStyleDependentName(bar), and the full style name will now be foo-FlowPanel foo-FlowPanel-bar. Walden On Oct 27, 10:32 am, hezjing [EMAIL

Re: Httpsession and GWT

2008-10-27 Thread walden
. Then the container would use URL rewriting to store the session id. In this case, does the container retrieve the session id if the user makes a RPC? HTTP Basic or HTTP Digest cover all the issues above, with virtually no effort on your part. Walden --~--~-~--~~~---~--~~ You

Re: Hosted mode breaks with empty script tag

2008-10-24 Thread walden
yes On Oct 24, 2:51 pm, jlw [EMAIL PROTECTED] wrote: Ok. So I've written a web application with GWT where the page is dynamically generated from XML within a servlet. When serialized out, it produces a script element such as: script language=javascript src=com.module.Test.nocache.js /

Re: layout problem, panel size ignores setCellHeight(50%) ?

2008-10-23 Thread walden
...or did you mean GXT and gwt-ext? Confusing, amen. On Oct 22, 3:12 pm, JohnMudd [EMAIL PROTECTED] wrote: Sorry, this is really confusing.  I mean Ext GWT and GWT-Ext.http://www.ongwt.com/post/2008/04/22/MyGWT-is-dead-Long-live-Ext-GWT On Oct 22, 3:09 pm, JohnMudd [EMAIL PROTECTED] wrote:

Re: splitting client, RPC and server in different eclipse projects?

2008-10-23 Thread walden
a third point: * If you change everything at once, then it's polynomially harder to figure out which change(s) caused the failure On Oct 22, 6:02 pm, olivier nouguier [EMAIL PROTECTED] wrote: 2 points: * If you've split your source in 2 part you must now have 2 module.gwt.xml, one (Lib)

Re: gData API

2008-10-22 Thread walden
No, it won't compile into Javascript. That's all server side stuff. It's orthogonal to your GWT client. On Oct 21, 10:04 am, Bob [EMAIL PROTECTED] wrote: I have a gData API project that I would like to use GWT. The gData API requires 3 dependencies, mail.jar (Sun), activation.jar (JavaBeans)

Re: size of a unvisible widget

2008-10-22 Thread walden
. Also, because it is absolutely positioned, the fact that it is 'visibility: hidden' does not push other elements out of the way. Something like that... Walden On Oct 21, 4:50 pm, r a f t [EMAIL PROTECTED] wrote: btw, do you (or anybody) know how does that work exactly ? looking at the code

Re: RPC Collections Syntax

2008-10-22 Thread walden
; } Class B: - nothing - Something like the above. By the way, ArrayList is not by accident. If you're not using any other list implementations, then for GWT don't over-generalize the interface. Walden On Oct 22, 11:32 am, Suri [EMAIL PROTECTED] wrote: Hi all, I was trying to search through

Re: Production and test source

2008-10-22 Thread walden
I don't think source path=../../test/src/test/server/ does anything. As I recall, source paths cannot be outside the root module folder. Your servlet implementation can live anywhere for testing, and it doesn't need to be on the source path. That's for client side stuff. Walden On Oct

Re: Query for row-border styling for a Grid

2008-10-21 Thread walden
That's not entirely true. There are many styles that can be applied to a table row, but borders is not one of them. On Oct 21, 12:21 am, Ajay Garg [EMAIL PROTECTED] wrote: Thanks alex. It works. Just wonder, that styling is applicable on a cell basis, and not on row basis ;-) Thanks again

Re: size of a unvisible widget

2008-10-21 Thread walden
See: PopupPanel.setPopupPositionAndShow(PositionCallback callback). I have not had a problem with flicker. Walden On Oct 21, 10:36 am, r a f t [EMAIL PROTECTED] wrote: thank you. that sounds to be a good solution. what is that +ve by the way ? On Oct 21, 5:28 pm, Ian Bambury [EMAIL

Re: size of a unvisible widget

2008-10-21 Thread walden
Ian, I thought I was also giving a general answer by pointing to an implementation of what we might term the deferred positioning pattern. Walden On Oct 21, 11:22 am, Ian Bambury [EMAIL PROTECTED] wrote: I knew that! But the original question appeared to be more general to me. Wrong again

Re: How to open new opage in samre window

2008-10-20 Thread walden
Intro.html? On Oct 20, 8:04 am, avd [EMAIL PROTECTED] wrote: Hello Sir, I have a problem in which i want to open a new page in the same window. For this i am using JSNI method in which i write $wnd.location.href = newLoc; where newLoc is the url of the new page. What url should i pass in

Re: Suggestion: GWT port to Desktop

2008-10-17 Thread walden
much :-)  does anyone want to be able to run applications written for GWT as a *desktop* application?  if so, port GWT _back_ into pure java, using Java bindings to Webkit's DOM model to manage the screen.  ... is that better? :)  l. --~--~-~--~~~---~--~~

Re: SuggestBox something wrong with style

2008-10-15 Thread walden
into the DOM to see what's broken. Walden On Oct 15, 6:42 am, kaspar.ru [EMAIL PROTECTED] wrote: Hello, I'm trying to use a SuggestBox  but it shows incorrectly, something is broken in css http://farm4.static.flickr.com/3045/2943471769_a3b8e77e48_o.jpg here is the code

Re: Ant tasks ZipException

2008-10-15 Thread walden
is that not everyone will use it, and we're right back here. Walden On Oct 15, 8:17 am, Isaac Truett [EMAIL PROTECTED] wrote: I'm not sure that the classloader's type would be a reliable check. Is there a practical way of knowing if any given classloader would be compatible? Just giving up if you don't find

Re: Displaying lists in a cell in a Flextable

2008-10-15 Thread walden
Inspect you page in Firebug (or whatever) and see how list-style-type attribute is set on your li elements? On Oct 15, 6:59 am, craige [EMAIL PROTECTED] wrote: Hi I am trying to insert some HTML into a cell in a Flextable which includes a list (ordered/ordered it makes no difference). I use

Re: Ant tasks ZipException

2008-10-15 Thread walden
, it tends to dumbfound us for a while. Walden On Oct 14, 3:43 pm, birwin [EMAIL PROTECTED] wrote: Walden, When I place fork=true in the java tasks, it compiles correctly. I had to adjust the memory as I ran out of memory during the build, but it appears to work fine now. I appreciate the input. I

Re: Your opinion sought: Jetty or Tomcat?

2008-10-15 Thread walden
+1 well said. On Oct 14, 6:03 pm, Jason Essington [EMAIL PROTECTED] wrote: Since creating a usable server side configuration in the embedded   servlet container is all but impossible for anything but the simplest   projects, I think that the choice of embedded server is a non-issue. Since

Re: how to call RPC from an HTMLPanel's content anchor

2008-10-14 Thread walden
pleasant and productive. Walden On Oct 14, 6:07 am, Tanzeem [EMAIL PROTECTED] wrote: Hi Can anyone help me with  a sample code for the following i have a HTMLPanel with its contents as HTML including a javascript function onClick() from which i expect to call an RPC. Is this possible

Re: Collections of Serializable

2008-10-10 Thread walden
with a better designed product, from an OO point of view, which means better compile time error removal, etc. Walden On Oct 9, 3:39 pm, huherto [EMAIL PROTECTED] wrote: I have a collection of Serializable objects like this: class A {   /**    * @gwt.typeArgs java.io.Serializable    */     List list

Re: Struts 1.x + GWT

2008-10-10 Thread walden
Suri, How do you know the GWT entry point is loading or not loading? Walden On Oct 9, 5:07 pm, Suri [EMAIL PROTECTED] wrote: hi Walden, the reason I specifically mentioned Struts was because this is what I observed. I currently have a Struts/Tiles based application. So

Re: controlling outbound port range for XMLHttpRequest??

2008-10-10 Thread walden
before it's given out for some other purpose. Walden On Oct 10, 9:41 am, Reinier Zwitserloot [EMAIL PROTECTED] wrote: The browser controls that (obviously). Your network setup is completely, utterly, -BORKED-, if this is causing problems. That means any connection made by the browser, for any

Re: Struts 1.x + GWT

2008-10-09 Thread walden
I don't use Struts, but GWT script in JSP files works fine. Give some more details... On Oct 9, 1:46 pm, Suri [EMAIL PROTECTED] wrote: Hi, Has anyone been able to successfully integrate GWT into an existing Struts 1.x application? I'm trying a real simple case of calling an Action which

Re: Problem import class external path /client/ HELP!

2008-10-08 Thread walden
source tags. If they cannot be isolated under a single path, then you will need source tags, but it will still be true that any location on the source path for the compile must not contain classes unsuitable for the GWT compiler. Walden On Oct 7, 4:19 pm, Shi [EMAIL PROTECTED] wrote: Changing

Re: how to proxy all the methods in my RemoteServiceServlet

2008-10-03 Thread walden
a challenge from way down in the stack (my RPC code never sees it), and the browser puts up a login form. This is pretty much what should happen when your logged in user encounters a session timeout. Walden On Oct 3, 3:42 am, olivier nouguier [EMAIL PROTECTED] wrote: Hi,  If you don't want to give

Re: Newbie question - adding GWT to my existing application

2008-10-02 Thread walden
at a GWT compile the way you can in actual Java. That's because of the limitations inherent in compiling to Javascript. Walden On Oct 1, 4:51 pm, Suri [EMAIL PROTECTED] wrote: Hi Walden, Here's what I did: 1) My current project is set up with the source code as *project   - webroot (all JSP

Re: redirect problem

2008-10-02 Thread walden
have now. And you would still need to educate developers to always extend the adapter when implementing new remote services. Walden On Oct 2, 12:29 am, deanhiller [EMAIL PROTECTED] wrote: I have a Servlet Filter installed, and because of our single sign on between all our apps, this same Servlet

Re: submitting GWT code

2008-10-02 Thread walden
Dean, Are you talking about the exceptions that are generated within the RPC framework code itself? It seems to me what you want is better control over the exceptions thrown on the server, and of course that's up to you. Walden On Oct 2, 2:14 am, deanhiller [EMAIL PROTECTED] wrote: I haven't

Re: Remove all rows from FlexTable

2008-10-02 Thread walden
Yes there is. myFlexTable = new FlexTable(); // code to plug the new instance in where the old instance used to be Walden On Oct 2, 3:55 am, hezjing [EMAIL PROTECTED] wrote: Hi I'm populating a FlexTable using setText(row, column, text). Here is what I did to clear the entire contents

Re: Remove all rows from FlexTable

2008-10-02 Thread walden
That depends on the nature of the parent. For example, with a SimplePanel as parent, you wouldn't. On Oct 2, 10:27 am, olivier nouguier [EMAIL PROTECTED] wrote: Hi,  IMHO it's also necessary to remove the old myFlexTable from is parent ? no ? On Thu, Oct 2, 2008 at 3:20 PM, walden

Re: Info Windows

2008-10-01 Thread walden
to the technology. We need to be sensitive to their needs. Sincerely, Walden On Sep 30, 10:50 am, Sumit Chandel [EMAIL PROTECTED] wrote: Hello Xavier, I think what Pamela means is that anyone can post bug reports, but they post them up naturally as they encounter or discover them while working

Re: Fire TableListener Event from inside a TableListener

2008-10-01 Thread walden
on. Hopefully you get the idea. Walden On Sep 30, 1:27 pm, Bear [EMAIL PROTECTED] wrote: Hi, I'm sure that this is covered in the documentation, but I'm having a hard time finding it.  Basically I'm learning GWT from David Geary's excellent book, GWT Solutions.  I have successfully implemented part

Re: GWT and servlet session

2008-10-01 Thread walden
/security-domain /jboss-web . In the default JBoss configuration, there are digest-users and digest- roles xml files. It's not difficult to switch to a JDBC-based authentication, though, which is what I do. Walden On Oct 1, 2:17 am, sim123 [EMAIL PROTECTED] wrote: If I should not piggyback my

Re: GWT and servlet session

2008-10-01 Thread walden
for GETS, in other words. Walden On Oct 1, 1:03 pm, walden [EMAIL PROTECTED] wrote: Yes, and those cross-site attacks depend on your server (and/or your client) taking user input and blindly embedding it in the DOM, so that the user can create links and buttons and images and the like

Re: GWT and servlet session

2008-09-30 Thread walden
reasonable protection against stolen credentials, the second option above should be fine. Walden On Sep 29, 4:52 pm, sim123 [EMAIL PROTECTED] wrote: Thanks for reply, actually I don't know where exactly the problem is, please bare with me. First thing is : Compile/Browser option is not working when

Re: FocusPanel not allowing focus on nested text fields

2008-09-30 Thread walden
Michael, I suspect you have not built your composite correctly. Please post your composite code here. Walden On Sep 29, 10:41 pm, Michael Neale [EMAIL PROTECTED] wrote: I am just trying to detect that the user has clicked on ANYTHING within the FP. I just capture an event that they clicked

Re: Combobox Display problem

2008-09-30 Thread walden
this gives you a start... Walden On Sep 30, 4:42 am, mark morreny [EMAIL PROTECTED] wrote: Hi, I am getting a strange ComboBox problem where the pulldown is displayed properly but the scroll image is displayed below the pulldown box instead of on the right of the pulldown box. I found

Re: common stuff

2008-09-30 Thread walden
the server. Is this what you had in mind? BTW, Remember that after your code is compiled by the GWT compiler, it's not Java, and so Java class loading is the wrong paradigm. Walden On Sep 29, 4:40 pm, rty [EMAIL PROTECTED] wrote: Hi I want to write one common class which does some startup

Re: linkable resources, caching, xslt xhtml generation with embedded js

2008-09-30 Thread walden
wave, they're going to have to invest something too. It ain't free. Walden On Sep 30, 5:45 am, Lawrence [EMAIL PROTECTED] wrote: Walden, What you say is quite true. Transformation/XSLT is not ideal. However, our system is all written in C++ and generates XML. I can't change that. I can't put

Re: common stuff

2008-09-30 Thread walden
rty, google 'singleton pattern'. if it's not that, then i don't understand what you are missing. walden On Sep 30, 10:06 am, sumanth s [EMAIL PROTECTED] wrote: Hi walden thanks for ur reply. Your are saying  It is the layer into which you make all RPC calls.so what you are saying is every

Re: Newbie question - adding GWT to my existing application

2008-09-29 Thread walden
source tags. Try that, report any errors you get, and we'll sort it out from there. Walden On Sep 27, 3:30 pm, Suri [EMAIL PROTECTED] wrote: Hi All, I'm a GWT newbie and I've just come fresh after reading up the basics from the Google GWT tutorial. Here's my situation: I have an existing Java

Re: Background color for DecoratedTabPanel

2008-09-29 Thread walden
You might try 'background-color' instead of 'background'. But if that doesn't work, then you might as well roll up your sleeves and learn to debug the DOM. Get one of the DOM inspector browser plug- ins and learn how to use it. Walden On Sep 29, 12:42 am, Shri [EMAIL PROTECTED] wrote: Hi, I

Re: GWT with struts

2008-09-29 Thread walden
in GWT without using struts? I am new to GWT. On Mon, Sep 29, 2008 at 8:31 AM, walden [EMAIL PROTECTED] wrote: Please be careful with terminology. When you say GWT to call struts action, do you mean a remote procedure call, or do you just mean a link to a new page that happens

Re: GWT with struts

2008-09-29 Thread walden
on the server due to unauthorized use, but it is safer to have more than one checkpoint. So the answer is Yes. Walden On Sep 29, 11:04 am, Vandana Adusumilli [EMAIL PROTECTED] wrote: Hi in our current project only with struts we do some specific security  checks in one class which extends

Re: FlexTable odd behavior

2008-09-29 Thread walden
the best clues anyone could use to find your problem. Walden On Sep 29, 1:12 pm, Grundle [EMAIL PROTECTED] wrote: After trying the suggestion to use pixels instead of percent in the flexTable.setWidth() method I have determined that the same error as before repeats. flexTable.setText(0, 0, foo

Re: GWT+JEE+jBoss

2008-09-26 Thread walden
is lightning fast, much faster than refreshing the shell. Walden On Sep 26, 9:43 am, rov.ciso [EMAIL PROTECTED] wrote: Thanks. What operation system is better to develop java web project with GWT and JBoss( Windows or Linux)? On 25 сент, 22:42, mbracken [EMAIL PROTECTED] wrote: It's

Re: GWT source code checkout error.

2008-09-25 Thread walden
. In the meantime, try this URL: http://74.125.47.82/svn/trunk/ Walden On Sep 25, 12:18 am, OpenKG [EMAIL PROTECTED] wrote: Hi, when i am trying to checkout source it is giving following error. svn checkouthttp://google-web-toolkit.googlecode.com/svn/trunk/trunk svn: PROPFIND request failed on '/svn

Re: Opening and Loading a GWT Module from another module

2008-09-25 Thread walden
Xavier, That's not a helpful contribution; it's noise. Please stop using this forum like this. Walden On Sep 24, 1:43 pm, Xavier Mathews [EMAIL PROTECTED] wrote: Why not offline mode to be safe? Xavier A. Mathews Student/Developer/Web-Master Google Group Client Based Tech Support Hazel

  1   2   >