Tagged Questions

DWR is a Java library that enables Java on the server and JavaScript in a browser to interact and call each other as simply as possible.

learn more… | top users | synonyms

18
votes
2answers
2k views

How do I use Comet with Spring MVC?

I'd like to add some Comet/server push capabilities to a simple web application. I'm having trouble finding up to date information on how to do this. Can anyone point me to some examples, tutorials, ...
10
votes
3answers
3k views

Reverse AJAX (Comet) and Spring MVC vs. Scala/LIFT?

There is a demo by IBM that shows how easy Reverse AJAX can be used with DWR 2. On the other hand, Scala/LIFT comes with built-in Reverse AJAX capability. Question: Any experience if this works ...
8
votes
8answers
2k views

Alternatives to DWR (www.directwebremoting.org)

I've been a big of DWR (www.directwebremoting.org) in the past and have used it on a few projects. It makes AJAX easy by creating javascript proxy / stubs to java classes on the server. While DWR has ...
6
votes
4answers
769 views

Is there a JavaScript API for XML binding - analog to JAXB for Java?

In Java, we work a lot with JAXB2. Object<->XML mappings are defined as annotations in Java classes: @XmlRootElement(name="usertask", namespace="urn:test") public class UserTask { ...
6
votes
3answers
2k views

Can you reliably set or delete a cookie during the server side processing of an Ajax (XHR) call?

I have done a bit of testing on this myself (During the server side processing of a DWR Framework Ajax request handler to be exact) and it seems you CAN successfully manipulate cookies, but this goes ...
5
votes
3answers
6k views

Why can't Eclipse resolve the spring-dwr schema?

Eclipse is showing the following errors in my Spring's applicationContext.xml: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element ...
5
votes
4answers
2k 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 ...
4
votes
2answers
733 views

comet vs pubsub..?

may i know what is the different between these 2 approach ? can explain in lay man terms?
3
votes
0answers
70 views

How are batched DWR requests handled differently from non-batched on the server side?

I've written a DWR client in Python, which I use for automating tests run against a DWR-based website. Up until now, all the calls I make are single, non-batched requests, and I make several ...
3
votes
1answer
101 views

How does Direct Web Remoting (DWR) work?

How exactly or what exactly does Direct Web Remoting (DWR) do? While I have already gone through the official site http://directwebremoting.org/ I wanted to understand in simple language.. ...
3
votes
2answers
5k views

Maximum call stack size exceeded error

I am using a Direct Web Remoting (DWR) Javascript library file and am getting an error only in Safari (desktop and iPad) It says "Maximum call stack size exceeded." What exactly does this error mean ...
3
votes
2answers
3k views

Using session scoped Spring bean with DWR

Spring: 2.5.6.SEC01 DWR: 2.0.5 I would like to use a session scoped bean from DWR. It works fine, when I configure the bean to be a singleton. I read this tutor: ...
3
votes
5answers
2k views

What is the disadvantage of DWR?

While using DWR in a intranet, will disadvantages like perfomance or security issues occur? Direct web remoting is a tool which uses Ajax request to contact a server from a js file.
2
votes
3answers
111 views

How to get thread debug information from running production Tomcat web application?

We have a production web application that appears to be having a thread stuck doing a bunch of work, and running up the CPU and load average. I know pretty much what the issue is - our DWR service is ...
2
votes
1answer
292 views

Direct Web Remoting (DWR) Javascript

How exactly is Javascript code generated in Direct Web Remoting (DWR)? I have gone through the official site http://directwebremoting.org as well as other sources ...
2
votes
1answer
360 views

Spring Form Controller with DWR

I am using spring and DWR combination,When i do ajax request from DWR.I want to access entire form values bind to the bean in my DAO layer. I didn't find any examples for Spring form controller with ...
2
votes
2answers
1k views

DWR 3.0.rc2 and Maven

can someone please show me how to integrate dwr 3.0 rc1 or rc2 in a maven build? I'm not finding a repository with the jar, just the pom ...
2
votes
1answer
187 views

not able to get a proper hashmap for a DWR call

I am trying to pass a string of data which is a hashmap from a javascript to a java function by making an Ajax DWR call as below: var str11 = { "78965":{"age":"34yrs","height":"4"}, ...
2
votes
2answers
490 views

DWR Spring Integration: Is it possible to forward a DWR request to a Spring Controller?

I have a web application that integrates DWR 3 and Spring 3. All requests are handled by the Spring's DispatcherServlet. Everything works. When I request an AJAX request, it's handled correctly by the ...
2
votes
1answer
838 views

How to upload a zip file using Java?

I trying to upload a zip file. In my project i am using DWR in the client side and Java in server side. As i have seen in DWR tutorials for uploading data(Its not in their website. They are providing ...
2
votes
3answers
625 views

Using Java server-side with PHP-generated front-end

 Does anyone have a real-world experience in building such a project? I'd like to move away questions about "is it good idea or not", but focus on possible solutions. I see one simple way - HTTP ...
2
votes
2answers
3k views

Javascript: wait until ajax request finishes to close page

I would like the browser to keep the page open until the ajax requests are sent. This is what I imagine it would look like var requestsPending = 0; window.onbeforeunload = function() { ...
2
votes
1answer
2k views

DWR util.js not working in internet explorer

I have been using DWR for couple of months in my project. i tried using dwr's util.js in one of my jsp but strangely when i include util.js(version 2.0.1) none other javascript is working in internet ...
2
votes
1answer
289 views

Is DWR a MVC?

I started reading about DWR few days back. Its strikingly different from the usual web-app technologies I have worked on till date (read as huge amount of Struts). One question that invariably comes ...
2
votes
1answer
368 views

dwr comet approach

from http://directwebremoting.org/dwr/reverse-ajax/index.html , it stated it supports polling, comet,piggyback. does that mean when we implement this approach, we can change to this 3 options in ...
2
votes
7answers
6k views

Which serverside Java technology to use with ExtJS

We are plannnig to upgrade the UI framework for our 6-8 year old application written using Struts/JSP/EJB to ExtJS. Just curious as to what is the most popular Java technology on the server people ...
2
votes
1answer
630 views

Javascript classes and DWR

I've been playing with DWR and converters for a while and I really wanted to map my Java classes to JavaScript classes. Using DWR converters, I have the option to point out what is the name of my JS ...
2
votes
0answers
389 views

Please share your experiences of DWR 3.0 M1 RC2? [closed]

I am planning to use DWR 3.0 M1 RC2 release candidate for my application. The primary reason of using this version is that it nicely integrates with Spring 2.5 framework and requires least possible ...
1
vote
1answer
19 views

Deliver javascripts from jar

I have a java web application. Here I have some javascript files which I want to be inside a jar file. I want there will be a servlet which will deliver the javascript files from the jar. The feature ...
1
vote
1answer
107 views

Implement HTML5 localStorage

I am aware of the basics of using the HTML5 localStorage using the localStorage.getItem/setItem. But I am trying to understand how to implement the same on my dynamic page. So here is the scenario: ...
1
vote
0answers
134 views

Spring mvc & DWR - Need help to implement progress bar while upload file

I got a classic multipart form with spring mvc 3 which works fine : I can upload a file to a controller with 2 parameters ( name and description). My controller get the MultipartFile file and ...
1
vote
1answer
147 views

Sending and receiving JSON object through DWR

I am using DWR in my project for AJAX calls. DWR converts javascript objects to java objects by reading the java class. I want to send and receive JSON like structure through DWR. Eg: JS Object: { ...
1
vote
5answers
305 views

Use AJAX response in JSP

I have a JSP page which has nothing but a normal html table with 5 rows and 5 cols. Now I am making an AJAX call and get a response back. Now once I have the response back, I need the data to be ...
1
vote
1answer
30 views

DWR sometimes die on the GAE server

I'm creating web app on the Google App Engine. For the AJAX calling I use DWR. Latest DWR version doesn't work fine with gae, because of that I work with 2.0.6 version of the DWR. On the local ...
1
vote
3answers
94 views

Question on getting data from AJAX

I have a pagination table which has controls like left arrow/right arrow and a text box to directly enter any page number. Below that there is a table with 5 cols and 5 rows Now I want to update the ...
1
vote
1answer
66 views

is there any way to integrate dwr 3.0 with play?

DWR is a very good java ajax framework. and it has bean integrate with many frameworks like struts2, spring, hibernate... and many other client ajax frameworks, like dojo, tibco gi, yui.... is there ...
1
vote
1answer
95 views

DWR enabling logging in grails?

I'm using DWR3, but I have no idea how to get logging working. No matter what I do, I can't seem to see any DWR3 output as I attempt to debug a marshalling issue. How do I enable logging? web.xml ...
1
vote
4answers
679 views

Logging user activity in web app

I'd like to be able to log user activities in a web app. I'm currently using log4j which works well for logging errors etc, but I'm unsure what the best approach is to log the user, executed servlet ...
1
vote
2answers
822 views

ExtJS - DWR proxy with json store?

I'm trying to make a JsonStore use a function that takes arguments and executes asynchronously, but I'm not sure how to do this. myMethod takes a callback, but how do I tie the callback data to the ...
1
vote
1answer
308 views

How to update users list using DWR

I am developing chat client which can connect to Gtalk and Facebook.I am using DWR for the purpose. Once I log into I have to populate the user s lists. On client side I have function ...
1
vote
2answers
193 views

How to exit from Javascript processing after DWR-based validation

I'm relatively new to Javascript and new to Ajax and DWR - I suspect this is a Javascript question rather than Ajax/DWR, but here goes: I'm writing Javascript that uses DWR to call a remote Java ...
1
vote
1answer
65 views

.Net interop to Direct Web Remoting (DWR), possible?

We have an existing code base which is using DWR. I'm wondering what options exist to have .Net clients communicate with the DWR endpoints? And by .Net I really mean CLR clients, not javascript ...
1
vote
0answers
179 views

DWR not working in IE

I am using Spring and DWR. I am able to get data and display it in Firefox using dwr.util.setValue, but it fails in IE. I am not using jquery. Any help appreciated. Thanks, Chaitu
1
vote
1answer
114 views

Spring Form binding with DWR

How can i bind spring form object with DWR request.? Regards, Chaitu
1
vote
1answer
202 views

In dwr.xml how to exclude some class or classes from global filter?

There is possibility to make global filter in DWR (direct web remoting). For example if you need to check if user is logged in, you write it in one place - in filter, that is indicated it in dwr.xml ...
1
vote
1answer
341 views

DWR File Upload Size Limit

I did plenty of research on DWR (www.directwebremoting.org) to understand how the 'fileUploadMaxBytes' initialization parameter can be used to limit file upload sizes without success. Here is what I ...
1
vote
2answers
156 views

Difference between setInterval & Polling?

I want to know the difference between setInterval() (or) setTimeout() in DOM and polling in ajax. What is the main difference? If both are same, why the identified by two different names? What is ...
1
vote
1answer
72 views

DirectWebRemoting errors

I am supporting an application that has some DWR components. Whenever there is a server error i get a javascript alert that simply says 'error'. Does anyone know where this might be configured and if ...
1
vote
1answer
80 views

Web debug: tracking GET source

I'm trying to fix a long standing bug in our rich GUI web app. It is a GET being executed out of place without query string parameters, causing uncaught exception on the business layer on the server ...
1
vote
1answer
231 views

Interacting with objects managed by DWR from JSP

I'm working with Direct Web Remoting (DWR) as part of a 'plain' dynamic Java project (hosted on a Tomcat 6.0 server with Java 6). I have a simple JSP page which interacts with session-level variables ...

1 2 3 4