Call REST service from GWT App's client side

2013-09-04 Thread SergeZ
Hi everyone! Please, help me figure out how can I manage to call the external REST service from GWT application's client code. I've heard, that GWT has a RequstBuilder class in order to do such things, but suddenly I figured out that this is a quite ancient approach to implement. Hence, the

Re: Project architecture

2012-09-17 Thread SergeZ
Apparently you have a three-layered architecture. But this should not be a case of big concern, because such classification is very high level and does not bring any light to the real architecture of your project when you discuss one. It just the way you make major application separation, but

Re: GWT support for Application Servers

2012-01-19 Thread SergeZ
Thanks a lot, it is my mistake I miss this passage of the official documentation, but if I got the point right, the article says that, yes, you cat debug client-side code as ussual, but I have to find a tool to debug the server-side one. So, fix me if I wrong, but one of the possible scenarious is

GWT support for Application Servers

2012-01-18 Thread SergeZ
Hi everyone ! Is there any other application server, probably a lightweight one, except Jetty, which allows developers to debug GWT code in a hosted mode ? In particular, is it possible to debug it on the WebSphere Application Server and if it is, then, which are the necessary steps to adjust it

[gwt-contrib] GWT support for Application Servers

2012-01-18 Thread SergeZ
Hi everyone ! Is there any other application server, probably a lightweight one, except Jetty, which allows developers to debug GWT code in a hosted mode ? In particular, is it possible to debug it on the WebSphere Application Server and if it is, then, which are the necessary steps to adjust it

Re: Dynamic CSS

2011-07-27 Thread SergeZ
Firstly, you have to decide which way you want to use for it, I mean the way you are going to solve the problem. If you are an OO-guy, then the better solution is to use styling interfaces and just appropriate method (http://code.google.com/intl/ru-RU/webtoolkit/doc/latest/

Re: RPC Problem with HashMap containing ArrayList Value

2011-03-30 Thread SergeZ
There are always some ways to solve a problem. But, from the OOP point of view, I think, that your solution is better. I definetely have to make a note))) On 29 мар, 23:12, ciosbel andrew...@gmail.com wrote: I mean that instead using ListSerializable as base type (that will create a

Re: RPC Problem with HashMap containing ArrayList Value

2011-03-29 Thread SergeZ
it. Having a method that can take something of type Serializable would, I believe, make the GWT compiler generate code for all possible types, since you can't get any more generic than that. -Ben On Mar 28, 3:58 pm, SergeZ comp1...@gmail.com wrote: What it means ? Is it bad or not ? I see

Re: RPC Problem with HashMap containing ArrayList Value

2011-03-28 Thread SergeZ
What it means ? Is it bad or not ? I see nothing bad or just nothing that takes my attention to that ! Can you explain your point about serialization policy in more details ? What did you mean ? On 28 мар, 22:56, ciosbel andrew...@gmail.com wrote: Remember that gwt will create a serialization

Re: RPC Problem with HashMap containing ArrayList Value

2011-03-26 Thread SergeZ
Based on my own experience of working with collections in GWTs RPC mechanism, I can suggest you to create a POJO (Plain Old Java Object) file in the *.shared package of your application, where you have to declare all possible combinations of types (arrays of them) that you are going to send to the

GWT Activities, Places with Event Bus ??????

2011-01-19 Thread SergeZ
Hello everybody! Can someone help me to sort things out ? The question is: is it possible to use EventBus (or just HandlerManager ) with Activities and Places ? How can I notify a set of my places ( for example, 5 widgets ) about an event which happened in a particular place (a widget, not

Re: GWT Activities, Places with Event Bus ??????

2011-01-19 Thread SergeZ
I really appreciate your answers, thanks a lot ! If i got you right, the approach of using the same eventBus instance for whole the app declines the idea of Places/Activities, isn't it ? If so, than how can I keep those ( Places/Activities ) functionality and making multiple notification at the

Re: RootPanel from a Node?

2010-06-02 Thread SergeZ
The most easy way to get element by it's id - is to use RootPanel.get(id) method. But if you want to get the value of tag's id attribute, you have to use a getAttribute(String id) method, which returns a value of specified attribute! On 1 июн, 23:31, markww mar...@gmail.com wrote: Hi, Is

Re: How to achieve traditional website behavior with layout panels?

2010-05-26 Thread SergeZ
To achieve an old-school HTML behavior of GWT App, I use Vertical/ Horizontal Panels and of course HTMLPanel (which contains the UiBinder's widgets code). On 26 май, 12:33, googelybear googelyb...@gmail.com wrote: Hi, I am developing a webapp that should behave like a traditional web page,

SmartGWT 2.1 doesn't work

2010-05-13 Thread SergeZ
Hello everybody, I met a problem and I still do not know how I can solve it. It seems that my App is not enter to the onModuleLoad() method. I decided so, because of I have a standart gwt code ( use of HTML and Button classes ) and also I have there code which use a smartGwt library. I have

Including HTML Pages to GWT Project

2010-04-26 Thread SergeZ
Hi, everybody!!! Please, can anyone help me with my problem: I have an amount of HTML Pages ( just old HTML text inside it ). And I want to use GWT to program the app's logic - I mean, not to use gwt's stuff to draw web-pages, but using the already prepared html-pages. I heard about GWTDesigner,

Need help with Table!!!!

2010-02-11 Thread SergeZ
Please, help I searching for a very simple solution for how to build a Table!!! I need a simple table with Titles in columns and selectable rows( for possibility to get field from selected string ) and with the possibility to scroll table . I had searched a lot of sites and libraries but

Re: Problem with Thread in GWT2.0

2010-02-10 Thread SergeZ
Thanks a lot for you all I currently stopped at timer's solution - just for quickly gett the working app, and further I planned to use GWTeventservice library - it's a very useful feature. On 10 фев, 22:49, KeremTiryaki keremtiry...@gmail.com wrote:                       final Timer t=new

Re: Problem with Thread in GWT2.0

2010-02-08 Thread SergeZ
, otherwise the RPC call will time out--but not too short either, otherwise you will be creating unnecessary network traffic). On Sun, Feb 7, 2010 at 12:46 PM, SergeZ comp1...@gmail.com wrote: Thanks to your all for answers on my question! I'll try to call the run() method ( how can I

Re: Problem with Thread in GWT2.0

2010-02-08 Thread SergeZ
is ready. (You don't want to block for too long, otherwise the RPC call will time out--but not too short either, otherwise you will be creating unnecessary network traffic). On Sun, Feb 7, 2010 at 12:46 PM, SergeZ comp1...@gmail.com wrote: Thanks to your all for answers on my question! I'll

Re: Problem with Thread in GWT2.0

2010-02-07 Thread SergeZ
Thanks to your all for answers on my question! I'll try to call the run() method ( how can I\ forgot to call it)) ). But I thinking that it will not helps me... Actually, I have the one concrete task - create some similarity to monitoring system. My software must receive data from DataBase and

Re: Problem with Thread in GWT2.0

2010-02-05 Thread SergeZ
at 2:18 AM, SergeZ comp1...@gmail.com wrote: Hi everybody! I meat the following problem.  When my GWT app is started it is very necessary to make an asynchronous call - to gether some data.   If i make this call directly from OnModuleLoad() method - then i getting the result, but when I

Problem with Thread in GWT2.0

2010-02-03 Thread SergeZ
Hi everybody! I meat the following problem. When my GWT app is started it is very necessary to make an asynchronous call - to gether some data. If i make this call directly from OnModuleLoad() method - then i getting the result, but when I putting the call of my method in a thread:

Real-Time data recieving from DataBase

2010-01-27 Thread SergeZ
Hi, everybody! Can any body help me with advice about the following problem. I have to write an application which must update the browser's content , when new data appears in DB. Or it updates. DataBase is Oracle 10g. I hoped that I can make real-time updating just with trigger which runs on

Re: GWT MAPS: how to change marker's color ?

2010-01-23 Thread SergeZ
to go with it.  Search around and you can find many different markers premade for you, including those that look like the standard ones but different colors. On Jan 20, 9:53 am, SergeZ comp1...@gmail.com wrote: Hi everybody! I have a trouble in changing marker's color. I thought that I can

GWT MAPS: how to change marker's color ?

2010-01-20 Thread SergeZ
Hi everybody! I have a trouble in changing marker's color. I thought that I can do it through changing style of marker but I can't - I didn't found the appropriate method. So, how can i change color of the existing makrer ? For example from default red to , say, green. Thanks a lot for your

Re: GWT RPC error

2009-12-24 Thread SergeZ
. --Sri 2009/12/23 SergeZ comp1...@gmail.com Hi everybody!!! Please, help me in solving my problem!!! I have the standard simple project. The only customization which is had been done by me is DB connection (actually Oracle 10g DataBase). Of course I use the RPC mechanism. Data

Re: GWT RPC error

2009-12-24 Thread SergeZ
is a restricted class as well, check the JRE emulation reference for supported client-side java packages. http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html On Dec 23, 7:00 am, SergeZ comp1...@gmail.com wrote: Hi everybody!!! Please, help me in solving my problem!!! I have

Re: GWT RPC error

2009-12-24 Thread SergeZ
disable this feature and do not lost any functionality, except hosting ? Right. --Sri 2009/12/24 SergeZ comp1...@gmail.com Thank you for your reply ! The desabling of GAE is helped me ! But what consequences i'll get from this disabling ? Will my application be translated

GWT RPC error

2009-12-23 Thread SergeZ
Hi everybody!!! Please, help me in solving my problem!!! I have the standard simple project. The only customization which is had been done by me is DB connection (actually Oracle 10g DataBase). Of course I use the RPC mechanism. Data, retrieved from DB returning from method with String type. When