Re: Calling of business method from Client

2009-02-08 Thread Arul
Thanks Gregor, let me explore the options you mentioned. On Feb 6, 10:52 pm, gregor wrote: > Hi Arul, > > Check out: > > http://code.google.com/p/google-web-toolkit-incubator/wiki/TreeTable > > Personally I find tree tables sometimes look confusing, especially if > there are significant differe

Re: Calling of business method from Client

2009-02-06 Thread gregor
Hi Arul, Check out: http://code.google.com/p/google-web-toolkit-incubator/wiki/TreeTable Personally I find tree tables sometimes look confusing, especially if there are significant differences in the structure and/or size of the nodes, but a lot of people like them. They are also complicated wi

Re: Calling of business method from Client

2009-02-06 Thread Arul
Hi Gregor, I some how managed GWT component as replacement of my presentation layer. currenlty my application will be displaying like tree structure as menu in the left hand and selecting each link its content is diplayed in right side in grid with rows and columns. This kind of requirement su

Re: Calling of business method from Client

2009-01-02 Thread gregor
> > Here in the existing application it is easy for getting session values > (JSP) and assigned as part of query string. > > Would you please tell me how the same can be acheived in GWT client > code(JAVA)? > How I can get those session values so that I can assign in Window.open > method?. > Well

Re: Calling of business method from Client

2009-01-02 Thread Arul
Thanks Greogor for your reply. Sorry for keep asking quetion to you. One important clarification I want from you. The on-fly displaying PDF functionality I am poninting to my existing servlet class not GWT RPC servlet by String strURL = "http://localhost:9080/demo/ReportsControllerServlet? comma

Re: Calling of business method from Client

2009-01-01 Thread Arul
Thanks Gregor. On Dec 31 2008, 7:06 pm, gregor wrote: > > My clarification is > > > >   1)  Is this a way to work GWT  in existing project in Eclipse or > > RAD? > > Well I would probably put the GWT module code within the existing > project structure and include a GWT c

Re: Calling of business method from Client

2008-12-31 Thread gregor
> > My clarification is > >   1)  Is this a way to work GWT  in existing project in Eclipse or > RAD? Well I would probably put the GWT module code within the existing project structure and include a GWT compile task in my Ant build for deploying to websphere. So long as

Re: Calling of business method from Client

2008-12-31 Thread Arul
Hi Grrgor, Thanks for your reply. Yes, adding of source path stuff works. But I am still facing one issue. I am having my existing application setup in RAD for compiling,generating war file for WepSphere Application server. Here in RAD the project has various packages like bean,dao,delegate,se

Re: Calling of business method from Client

2008-12-29 Thread gregor
Sorry Arul, this is ambiguous: path statement to the source packages (and their child packages) what I mean is that all sub-packages of a package specified in a path statement are automatically included. On Dec 29, 5:00 pm, gregor wrote: > Hi Arul, > > Yes, the reason your client side GWT code

Re: Calling of business method from Client

2008-12-29 Thread gregor
Hi Arul, Yes, the reason your client side GWT code cannot see your shared bean class is because it does not live within the compilation scope (i.e. underneath) your GWT module *.gwt.xm file. The solution is as follows: 1) leave your bean class where it is in your server side code 2) create a n

Re: Calling of business method from Client

2008-12-29 Thread Arul
Hi, Would you please clarify below questions. 1) Is the package struct client must be followed using applicationCreator? if no, will you please tell me how can use applicationCreator without package client be created. 2)I understant applicationCreator is tool for helping to develop project qui

Re: Calling of business method from Client

2008-12-29 Thread Arul
Hi, I am trying to replace my existing presenation layer using GWT. In GWT Servlet class (which extents RemoteServiceServlet) , I am calling existing delegate which is doing PDF file conversion. This delegate class uses one bean class for setting values the same bean used in client side code of G

Re: Calling of business method from Client

2008-12-19 Thread Arul
Hi, Yes, it worked as the post by using Frame. Thanks Arul On Dec 18, 10:00 am, gregor wrote: > I've never done that, Arul, but I believe displaying a PDF in GWT is > straight forward using a Frame widget  (that could be the contents of > a pop-up) *providing* the user has a PDF viewer plug-i

Re: Calling of business method from Client

2008-12-18 Thread gregor
I've never done that, Arul, but I believe displaying a PDF in GWT is straight forward using a Frame widget (that could be the contents of a pop-up) *providing* the user has a PDF viewer plug-in installed in their browser. I would read what Martin and Reinier have to say about it in this post: ht

Re: Calling of business method from Client

2008-12-18 Thread Arul
Hi Gregor, I am happy to see your reply and wish to thank for it. 1)Yes , as you mentined the same warning only I am getting, so I am ignoring it. 2) Thanks for your suggestion for not modifying existing DAO. One Important Clarification I would like to know from you

Re: Calling of business method from Client

2008-12-18 Thread gregor
Hi Arul, Firstly, if the warning you refer to is: [WARN] Field 'private final com.google.gwt.i18n.client.impl.ConstantMap.OrderedConstantSet keys' will not be serialized because it is final I think this has just crept into 1.5.3 somehow, there have been other posts about this. It is AFAIK a min

Re: Calling of business method from Client

2008-12-17 Thread Arul
Hi Gregor, I would like to thank you for replying to my query. I am trying my level best not to change DAO pattern which is already exists in my application. There were lot of methods returns ArrayList and Vectors for different purpose. According to your reply now I need to change my DO as well.

Re: Calling of business method from Client

2008-12-17 Thread gregor
Hi Arul, Yes and no. Yes. this is the way you set up RPC services client side, but no, you do not necessarily have to have dozens of separate callbacks, one for every single use case. For example, here you have two methods that both return vectors of accounts. You can merge them into a single RP

Calling of business method from Client

2008-12-17 Thread Arul
Hi, I written two business method inside service class. When I call these two methods inside client class, I have to write two seperate block containing onSuccess, onFailure methods for each of the business method in service class. For Example see my service class below ---