Tagged Questions
1
vote
1answer
34 views
How can I get a JSONP from a server that serves only JSON?
I am writing an application in GWT that is supposed to get the JSON from external server. I am using JsonpRequestBuilder but I always get failures (timeouts) since this is a JSON no JSONP.
If I ...
0
votes
2answers
34 views
Iterating over JSONObject in GWT JSNI
I have a native method which should iterate over the JSONObject. Is there a way to achieve this?
public native void foo(JSONObject c)/*-{
var keys = ...
0
votes
1answer
62 views
Wrong UTF-8 string parsing in GWT JSON
my stack is overflow :):):):) I can't find the solution...
I'm developing a server-client application.
My GWT client running in browser. Communicate with my C++ server by:
GWT-JSON -> lighttpd -> ...
0
votes
0answers
42 views
GWT Asynchronouscallback timeout issue: Always going in OnFailure()
I am new to GWT. I have written a piece of code which makes asynchronous calls to the server. The server side code is running fine as seen through the logs. But on the client side I am getting a ...
1
vote
1answer
47 views
java.lang.NoClassDefFoundError: com/google/gwt/json/client/JSONParser at runtime when trying to parse json
I'm working with GWT and I'm getting a java.lang.NoClassDefFoundError: com/google/gwt/json/client/JSONParser Exception at runtime when I try to parse JSON.
I've imported the following:
import ...
0
votes
1answer
52 views
How jsonValue.isObject() works?
Hell i would like to know how value.isObject()enter code here in below code works.
String jsonString = "{\"key\":\"value\"}";
JSONValue value = JSONParser.parseStrict(jsonString);
JSONObject object ...
0
votes
1answer
54 views
How to replace gwt json with my own json implementation
I need to find a method to work json implementation in my gwt-project com.google.gwt.json.client package instead of json in GWT com.google.gwt.json package.
In my GWT project I want to use json ...
0
votes
1answer
98 views
Google Web Toolkit (GWT) rpc to Python server on Google App Engine (GAE)
I am building a web-based carbon foot-printing tool.
I have a mature Google Web Toolkit (GWT) client.
I have a mature Google App Engine (GAE) server in Python.
I'm using Eclipse plugins: PyDev, GWT, ...
1
vote
2answers
161 views
Google end point returns JSON for long data type in quotes
I am using Google cloud end point for my rest service. I am consuming this data in a GWT web client using RestyGWT.
I noticed that cloud end point is automatically enclosing a long datatype in double ...
1
vote
1answer
110 views
Which is the best method to parse json data at client side?
I am using Jackson to write the data and using gwt-json at client side to parse the data. I am
rendering the data through Dictionary at client side which is slow, so i want to make it speed in ...
0
votes
1answer
36 views
GWT for cycle is not cycling
I am developing a GWT application and I have that method:
private static List<Ticket> getTicketsFromJSON(String ticketsJSONString) {
JSONValue ticketsArrayValue = ...
0
votes
1answer
78 views
Using DataSource Without Data URL
I have a legacy situation whereas the software currently transforms the returned response into an internal JSON formatted String. Is it possible for a DataSource to operate on a JSON formatted String ...
0
votes
0answers
29 views
gwt-jsonmaker JsonizerParser nested instance support
I'm trying to figure out how to parse a class that includes a custom type member, that also has a Jsonizer interface.
It doesn't seem to work out of the box.
For example:
public class Person {
...
1
vote
1answer
71 views
How to deserialize BigDecimal by using GWT AutoBean?
I have json coming from server and representing pojos. When i deserialize to json using AutoBean some works some dont! I figure out that those which cant be deserialize has BigDecimal getters/setters.
...
0
votes
2answers
61 views
How do you bind a JSON String into GWT labels?
I'm newbie in GWT world and I wonder if it's possible in JAVA to bind a JSON String into a GWT label like using Editors but without POJO or interface. (For example : using JSON keys after parsing or ...
0
votes
1answer
85 views
which interfaces representations to deserialize from JSON to AutoBean?
I have the following JSON :
{
"bean1": {
"bean12": {
"value1": 4500,
"value2": 1500
},
"bean13": {
"value1": 1550,
"value2": 550
}
}
}
I ...
1
vote
1answer
59 views
How to set default value to a GWT AutoBean?
I have a Class that i wanted to generate his AutoBean.
Example.class :
public static class Example implements Serializable {
public Example2 example2 = new Example2();
public static ...
0
votes
1answer
98 views
GWT Autobean without setter method
I am using Autobean framework to encode/decode JSON in my GWT application. It works in cases with the interfaces having getters and setters. But is there any way to do it some other way to do this ...
1
vote
2answers
148 views
GWT LocalStorage - Storage objects
This document says:
HTML5 local storage saves data in string form as key-value pairs. If the data you wish to save is not string data, you are responsible for conversion to and from string when ...
0
votes
1answer
76 views
jsonencoderdecoder without getter/setter method
I used the RestyGWT's JsonEncoderDecoder interface to encode/decode some objects. Among them there are instances of classes having properties not exposed using getter/setter methods. I tried ...
0
votes
1answer
96 views
Gwt communicates with Spring Rest Api and AutoBean
I have a standalone Spring Rest Api. I have models annotated with JPA.
I want to write a gwt client using this rest api.
But, I don't want to create JavaScript Overlay types for each model object ...
0
votes
1answer
1k views
Jackson: Can not deserialize instance of Number out of START_OBJECT token
My GWT service returns LinkedList<VisualData>. This is how VisualData looks:
import javax.xml.bind.annotation.XmlRootElement;
import com.google.gwt.user.client.rpc.IsSerializable;
...
0
votes
1answer
121 views
Create GWT overlay for a nested JSON object
I just discovered this great site and I allow myself to bother you with the following problem:
How can you access the fields from the inner (nested) JSON object, here named "flightLegs" from the JSON ...
2
votes
2answers
95 views
Which one is good Java or Json in GWT client?
I have a GWT client project and REST is my web service. I have a class Student and I want to save it in data base which is in web service. I am converting student to json and sending to Server. Is it ...
0
votes
1answer
370 views
how to convert JSON to Java object and vice versa in GWT project?
I am using a GWT for client side application and REST web service instead of server(not using RPC or servlets in GWT). I want to convert java object to JSON and pass JSON object from client to server ...
1
vote
2answers
347 views
GWT JSONObject to overlay types (or using JSONObject in shared)
I fill an JSONArray (org.JSON) on my GWT server side, then want to use the object on the client side. When I use a JSONObject (or Array) in my shared package, I get the exception that there was no ...
1
vote
2answers
84 views
Hiding AJAX with JSON communication from user
We are currently working on a web client that communicates with the server using AJAX with JSON. The client is based on gwt, and communication is over https.
The communication can be easily inspected ...
0
votes
1answer
93 views
Loading and saving JSON files in a GWT web application
We are developing an GWT web-application with an Python webapp2 webserver. At this point we want to load and save files within the web-application. We cannot use Flash for this task.
Saving
The ...
0
votes
2answers
339 views
Display \n \r correctly in HTML from JSON
I have a String fetched from a Database and send from a backend using Servlet. The servlet constructs the JSON and send it to the client
I use this function to escape the JSON
public static String ...
2
votes
1answer
204 views
RestyGWT - Does JsonEncoderDecoder work with lists?
I am trying to use RestyGWT's JsonEncoderDecoder to encode/decode JSON objects. From their documentation I was able to do:
public interface PersonCodec extends ...
1
vote
1answer
606 views
GWT Autobean - how to handle lists?
I have been trying to evaluate GWT Autobean feature to decode/encode JSON object to domain objects for REST calls.
Following the example : ...
0
votes
1answer
275 views
How can you use GWT AutoBeans to parse a JSON message when some of the return values could be an object or a collection of objects?
Is it possible to parse a JSON message using GWT AutoBeans when one of the objects returned may be a collection but not always?
For example, if I have a JSON message returning an author and his/her ...
1
vote
1answer
342 views
JSON Message post from GWT to Spring MVC Controller
I am trying to post a JSON message from GWT to a Controller in Spring MVC Framework. The spring controller is receiving request from GWT, but when I print out the request content length and ...
1
vote
1answer
115 views
Sharing GWT class implementation between client and server
Say I have a class implementation in GWT that is more complex than a POJO, but whose methods are still relatively simple i.e. it has some utility methods in addition to its getters and setters such ...
2
votes
1answer
59 views
gwtprojsonserializer 1.0.4 jar - error serializing arraylist
I am using gwtprojsonserializer to convert objects to JSON. I've added the version 1.0.4 jar I downloaded from the website http://code.google.com/p/gwtprojsonserializer/ but although the source code ...
0
votes
1answer
75 views
Why should I use JavaScriptObject overlay classes instead of native Java classes when processing JSON data?
In my GWT project I need to process json data retrieved from a database via PHP. I have seen the Google examples using JavaScriptObject overlay classes. What I don't understand is why this seems to be ...
0
votes
2answers
409 views
GWT - JSNI - passing json object
I have a json like below-
String sdata = "[{ name : "AAPL", data:[[1112832000000,43.56],[1112918400000,43.74],[1113177600000,41.92],[1113264000000,null],[1113350400000,null]], tooltip: ...
1
vote
1answer
141 views
Can you flatten a nested JSON structure into a single autobean?
Assuming the following JSON structure:
{
\"is_something\": false,
\"name\": \"Some Name\",
\"subtype\": {
\"total\": 0.0
}
}
Instead of creating two autobean interfaces (one ...
0
votes
1answer
267 views
Ext GWT - Grid Paging with JSON, set my all records number to paging
I'm working with Ext GWT. I have a grid with paging and JSON.
I don't understand, Where do i can set all records number in the paging config.
My paging grid is wrong, bacause it doesn't know, how ...
0
votes
4answers
116 views
HashMap to JsonSting?
I am working on a GWT application.
I want to convert a hashMap to JSON String and send it to GWT server
My HashMap is like HashMap<String, CustomProperties)
CustomProperties is the class with ...
1
vote
0answers
228 views
Timeout Exception While calling JsonpRequestBuilder.requestObject()
i am having timeout exception while calling JsonpRequestBuilder request.
I am also refer question but i am getting timeout exception every time.
My entry point class is
package ...
1
vote
2answers
197 views
Pushing mysql query results to clients GWT
I am looking for an efficient way to convert a ResultSet into a form I can send via GWT-RPC that can be part of a GWT server-client communication in general.
What are the advantages and disadvantages ...
1
vote
0answers
310 views
GXT 3.0 JsonReader with multiple root objects
I'm starting out with GXT and am a bit confused on how to use the JsonReader to parse a valid json string with multiple root objects. I have a set of selection boxes to build the sql statement to ...
0
votes
2answers
118 views
Sort JavaScriptObject in DataGrid with GWT
I have a list of objects retrieved as JSON String as described here
In the DataGrid I do the sorting like this (I illustrate one colomn for simplicity)
nameColomn.setSortable(true);
final ...
1
vote
1answer
333 views
GWT Autobean Codex reading a Map
I have a JSON map like:
{ "element":"value","element2":"value2",...}
With both key and value strings. I try to read it with an autobean and I get strange exceptions. It should be straightforward, ...
0
votes
1answer
75 views
Cross Site Request
I am trying this tutorial ,it is working fine if server specify the call back object, like if server prints like this,
...
0
votes
1answer
155 views
GWT: Translate JSONValue into tree of Java POJOs
GWT provides a number of overlay types as wrappers to access complex JSON structures in a JavaScript environment, for instance JSONValue, JSONArray, JSONNumber, etc.
However, these wrapper objects ...
0
votes
0answers
116 views
GWT solr facets
I'm trying to get facets, and their count, from solr but it's giving me a bit of trouble. The returned JSON looks like this:
"facet_counts":{
"facet_queries":{},
"facet_fields":{
"colours":[
...
0
votes
0answers
141 views
Escape html chars in json response with GWT form
I have a FormPanel to submit data to my server. The response body is formatted in JSON. Because the actual response has to be html, some characters in the json have to be escaped (eg '<' becomes ...
0
votes
0answers
90 views
GWT dynamic rows from JSON
I'm new to GWT and am currently working on a twitter client in GWT. I've used a listview and layoutinflator in Android to do something similar, but i can't find the equivalent tools to do so in GWT. ...



