Tagged Questions

9
votes
3answers
456 views

Sending persisted JDO instances over GWT-RPC

I've just started learning Google Web Toolkit and finished writing the Stock Watcher tutorial app. Is my thinking correct that if one wants to persist a business object (like a Stock) using JDO and …
4
votes
5answers
1k views

Problems passing class objects through GWT RPC

I've run through the Google Web Toolkit StockWatcher Tutorial using Eclipse and the Google Plugin, and I'm attempting to make some basic changes to it so I can better understand the RPC framework. …
4
votes
4answers
186 views

Is there a Flex equivalent of GWT-RPC?

Right now a lot of my applications use GWT-RPC for retrieving POJO's from a GWT RemoteService which in turn calls a Web Service (SOAP) to get the data. I am evaluating Flex and didn't really see …
3
votes
4answers
240 views

GWT + GAE/J, sending JDO objects through the wire, but how?

Hi I'm having a problem. I would like to create Document object, and I would like to have a user property with com.google.appengine.api.users.User type (on GAE's docs site, they said we should use …
3
votes
3answers
509 views

How to group gwt-rpc calls ?

With DWR it is possible to group together several service calls into one single HTTP request : dwr batch feature This feature is very useful to reduce the latency of an ajax application. Is there a …
2
votes
2answers
144 views

Invoke a GWT RPC service from Java directly

Is there an easy way to invoke a GWT RPC service endpoint directly from Java code? I mean real Java code, not Java code compiled down into javascript. I ask because we want to run performance …
1
vote
2answers
27 views

GWT RPC or Request Builder using Javascript Overlay?

GWT RPC is a mechanism provided by gwt to communicate between client and server. Also there's a Request Builder, through which you can connect to the server. Which mechanism would you recommend for a …
1
vote
2answers
153 views

Cancelling a server-side GWT call

I'm using RequestBuilder to time out GWT requests which take too long: RequestBuilder requestBuilder = _service.getStatistics(callback); requestBuilder.setTimeoutMillis(5000); try { …
1
vote
1answer
214 views

Combining TimeItem and DateItem values

I have to combine the time value for TimeItem and date value from DateItem in smartgwt.In output I want the date object for java.util.Date.I tried to combine these two.I couldnot do that. Sample code …
1
vote
1answer
312 views

GWT integration in existing J2EE application

Hi , I am new to GWT.I have developed a GWT application in version-1.6.4 and it is working fine.Now I want to integrate with that project in existing J2EE application.I dont know how to go ahead? …
1
vote
1answer
968 views

Paging a GWT-EXT datagrid with GWT-RPC ?

I need to display data coming from a GWT-RPC service in a paginated datagrid. The gwt-ext showcase does not provide an example combining gwt-rpc calls and datagrids. That is too bad because the …
1
vote
2answers
1k views

GWT - GXT - How to get Radio Button Value ?

Hi I am using GWT (Google Web Toolkit) 1.5.3 et GXT (ExtJS) 1.2 I just want to create a simple form with some radio buttons generated after a RPC call, to get some values Code: final FormPanel …
1
vote
1answer
267 views

Apache Commons HTTPClient 3.x leaving connections open

I'm using HttpClient to execute a PostMethod against a remote servlet and for some reason a lot of my connections are hanging open and hogging up all of my server's connections. Here's more info about …
0
votes
2answers
61 views

BigDecimal serialization in GWT

What is your preferred approach to serializing BigDecimal in GWT? Are there any clever workarounds, or do you simply use Double or String? Of all of the GWT pains this is so far the biggest; I'd …
0
votes
4answers
62 views

Number of GWT RemoteServiceServlets

When designing an application with a large number of remote services, is it better to have one RemoteServiceServlet end point with many methods or a large number of RemoteServiceServlet endpoints with …

1 2 next
15 30 50 per page