Redirect with information

2009-12-10 Thread Parmeet Kohli
This is not exactly GWT related .. but is there a way to send some information along when you redirect to a new location. I know I could specify the information in the url as a query string.. but I'm wondering if there is a better way .. because the information i mean to pass is a real big

Confirmation link using GWT

2009-11-05 Thread Parmeet Kohli
Hi, The web application i'm developing using GWT needs to have a registration form. Once the form is filled by the user i need to send a LINK to the email ID entered in the registration form. The user can only activate his/her account by clicking on this link. How would i implement this ??

Re: Need to get around Async calls

2009-10-31 Thread Parmeet Kohli
Wow Jason !! That seems like quite a solution .. Can you please help me make certain that i totally understand it. The onSuccessImpl is my core test step method right ? Something like simulating a queue is this ? A queue of 2 test steps to be precise. The one executing currently and the next one

Need to get around Async calls

2009-10-30 Thread Parmeet Kohli
Hi All, I'm developing a web based testing tool using GWT as the front end. This tool allows the user to add several test steps to a test case. The user has the option to run these test steps individually or the whole test case together. The latter option seems to be an issue though.

XML Parsing Issue with FireFox

2009-10-15 Thread Parmeet Kohli
Hi, Has anyone faced an issue with parsing XML in FF ?? I hope i can explain the problem accurately. My XML starts with ?xml version=1.0 encoding=ISO-8859-1? TestCase URLhttp://192.168.0.153:8080/axis2/services/Calculator?wsdl/ URL TestStep ... Now in IE

Re: DOM over RPC

2009-10-07 Thread Parmeet Kohli
Makes sense .. Appreciate the help !! --~--~-~--~~~---~--~~ 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: DOM over RPC

2009-10-06 Thread Parmeet Kohli
I did think of that .. But the Java Transformer class needs the Document. No point sending the string :( --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

DOM over RPC

2009-10-05 Thread Parmeet Kohli
Hi, I'm using the XMLParser class provided by GWT to create modify an XML document on the client side. I need to use the JAVA TransformerFactory and Transformer classes so that i can indent the XML. Is it possible to send the document (class Document) to the server via RPC ? (so that i can

StackPanel

2009-09-08 Thread Parmeet Kohli
Hi All, I need help with adding an image to the header of a StackPanel's child. add(Widget w, java.lang.String stackText) does not work for me as it only adds text to the header. Please help !!! Thanks, Parmeet --~--~-~--~~~---~--~~ You received

Re: How to getAttribute and setAttribute on GWT + GAE like HttpSession ?

2009-08-13 Thread Parmeet Kohli
Hi, You can use the following: HttpServletRequest request = this.getThreadLocalRequest(); HttpSession session = request.getSession(); session.setAttribute(key, value); int temp = session.getAttribute(key); This ofcourse is on the server side. Hope it helps !! Parmeet On Aug 12, 12:46 pm,

Re: Query: Multi-user environment and GWT RPC

2009-08-06 Thread Parmeet Kohli
I seem to be facing a similar problem. The class i have created at the server end ( extends RemoteServiceServlet and implements the interface at the client end ) does have state and methods which depend on each other. IS A NEW OBJECT NOT INSTANTIATED FROM THIS CLASS EVERY TIME A NEW USER CALLS IT

EXTERNAL JAR FILES ON SERVER SIDE

2009-07-31 Thread Parmeet Kohli
I'm hoping you someone can help me with this. I'm basically trying to make a web application using GWT. The code on the server end though uses classes from external JAR files. I've added these JAR files to the project (I'm using Eclipse). Still gives me a NoClassDefFound exception. What else do