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

0
votes
1answer
15 views

DRW errorHandler always returns “Error” as the error message instead of a real message

FiltersManager.getAllServices({ callback : updateServiceFilter, errorHandler : function(message) { alert(message); } }); ...
0
votes
1answer
40 views

Passing JQuery object to Java method using DWR

I want to pass JQuery object var $this = $(this); to Java method using DWR, I'm doing something like that: Javascript Method function handlePieces($square) { $square.data('jumped').remove(); ...
0
votes
0answers
19 views

spring and DWR mapping problems

I have a problem with spring MVC mapping when integrated with DWR. The problem is that, I can't get them worked together. I want to use dwr service in my jsp, but when dwr mapping works then spring ...
0
votes
1answer
48 views

How can I pass an Object from javascript to java with DWR?

I am able to pass String and int but not Object. Is it possible? var map = new Object(); .. Add to object.... MyManager.setValues(map, { callback:function(message){ ...
0
votes
3answers
84 views

Spring Security | Method level security with @Secured/@PreAuthorize

I've been trying out 'Method Level' security on this application I've been working on. The idea is to secure a method which gets called from the presentation layer using DWR. Now, I've tried adding ...
2
votes
0answers
101 views

DWR call throws “Failed to read input” in IE8, appearing too frequent

This issue occurs in IE8 only, On browser it throws http 502 error ,while in apache it throws http 103 & my application breaks due to this error After adding sysout in dwr jar i got the ...
1
vote
2answers
37 views

How to marshall a javax.xml.datatype.Duration Java <--> JS using Spring/DWR

I've been given a pretty complex stack of generated classes and need to send it between the server and the client using DWR. One of the classes uses a jax.xml.datatype.Duration. Here is the Java ...
0
votes
1answer
60 views

Making a row bold, changing background color - dwr

I have a jqgrid which has been loaded from dwr call. It is a dynamic table. In POJO I set 3 status and generate dynamic checkbox. This is my pojo code. private String cBox; public String ...
0
votes
0answers
34 views

sbbmitting a form after validation with DWR

I need to validate a form and submit the form to a Java web application running on Spring technology. I am using dwr for converting some server side services to javascript functions. One of these ...
0
votes
3answers
104 views

getting the values of array from javascript to java as list

var catids = new Array(); I have a catids array where i store the checked checkbox values like the below one. cat = $("input[name=catChkBox]:checked").map(function () { return ...
0
votes
0answers
68 views

Can we instantiate Java Objects in Javascript?

I know we can do this via DWR library to work with java objects in Javascript. But I would like to know if we can actually instantiate Java Objects in Javascript, using plain Javascript objects? I ...
0
votes
0answers
60 views

DWR example is not working

I copied the example from a website and it is not working, can anyone tell me what is the reason. I am not getting any exceptions or errors in the console log of tomcat. below are my files ...
0
votes
3answers
73 views

How can I make a function wait for the ajax call to return a value before returning true or false?

edit: the two questions linked above are not like what I need. I don't have a URL instead Im using DWR to call the java object directly from javascript so they don't help me. I want to check if a ...
0
votes
0answers
17 views

Is there a way to see running DWR calls?

I have an application set up with DWR. I'm running into an issue that when a user is redirected to another page currently open DWR calls are not sent to the server because the page is unloaded before ...
-1
votes
1answer
45 views

generate dynamic checkboxes based on dwr data [closed]

I have a dwr call where i get a set of data. DataHandler.getList(item.val(),function(data) { //generate checkboxes based on data }); I want to generate checkbox based on the data size. If the size ...
1
vote
6answers
60 views

jquery setting value to dropdown

I have a dropdown with list of values loaded using dwr call. I fetch data from db say I have a location called India. I use $('select[name="cname"]').find( 'option:contains("' + data.loc + '")') ...
0
votes
0answers
33 views

issue with dwr in loading data

I have 20 fields in my jsp page where 5 of them are dropdowns. All are dependent. Based on option selected in the first box, second will be loaded. The code which I use to load dropdown is ...
0
votes
0answers
50 views

Tomcat can't start (directwebremoting)

I am new here so hello to everyone. I was searching for answer why my Tomcat can't start but I cannot find any solution. I have App deployed on Tomcat instance. On Windows everything is ok but on ...
0
votes
0answers
36 views

request data from dwr using http client

i want to fetch some data from a website at the given time everyday. Avoiding to check that everyday, i want to programming to solve this problem. But while i try: HttpClient httpclient = new ...
0
votes
1answer
90 views

Getting HttpServletRequest in DWR and in Spring application

I am wondering what is the correct way of getting HttpServletRequest object in DWR and in Spring Application - I am trying to do as follows: private HttpServletRequest getRequest() { ...
1
vote
1answer
76 views

Spring Bean injection not working Dwr

I have two actions in two different packages <package name="default" extends="struts-default json-default" namespace="/"> <action name="getstarted" class="GetStartedActionBean"> ...
1
vote
1answer
50 views

Managing complex object types on DWR

I read converters section http://directwebremoting.org/dwr/documentation/server/configuration/dwrxml/converters/bean.html but i can not find exact solution. Can i manage my beans like this public ...
0
votes
0answers
23 views

How to use DWR with Sitemesh?

I am using DWR with sitemesh. But the when i call the the javascript function it does not execute the DWR function call.I had tested it using an alert box. ...
0
votes
1answer
75 views

Is there a way to tell DWR to ignore a lazily-initialized field?

I'm using DWR 3.0.0-rc2, Spring 3.1.1.RELEASE,Hibernate 4.1.0.Final. I have this domain object … @GenericGenerator(name = "uuid-strategy", strategy = "uuid.hex") @Entity @Table(name = "sb_product") ...
0
votes
1answer
36 views

how to make consecutive DWR calls within sub process

Hi i want to make nested dwr call. In my java code i have two function public String getNetworks() { // return some networks. } public String getInternalNetwork(network) { // return some ...
0
votes
1answer
40 views

Get I18N String in pure js

I am using Direct Web Remoting on Struts framework to show some I18N values. For Example, >File name = Test.js function test() { DWRutil.getMyAlert("i18n.test.javascript.alert",function(str){ ...
0
votes
2answers
90 views

jquery object does not support property or method

I am getting error "object does not support property or method" on IE 8 with jquery 1.8 on the following jQuery(".errorContents"); I am using DWR along with jQuery in my project and also added ...
0
votes
0answers
35 views

Dwr and server web logic adf 10g

I am developing an application with JavaBean and ADF in JDeveloper 10g. I made a loading message when generating a pdf using the DWR library and the next class asks a variable that changes from false ...
0
votes
1answer
74 views

DWR Servlet Exception: NumberFormatException

I followed the quick steps to configure DWR in my web application (http://directwebremoting.org/dwr/introduction/getting-started.html). When the setup phase ends and I try to access my ...
0
votes
0answers
114 views

Extjs - dwr calls take delay for execution

I am using extjs and java for my web application. But the dwr calla seems too slow. Any solution for this? I will put one sample code below. function changeInterviewFlag(img,imgID,cValue) { ...
0
votes
1answer
80 views

DWR return object from server who to accept it in javascript code

i have a class mymessage in which to feilds of string type whose getter and setter are also present in class.in mymessage class their is a method name getdata in this method i m setting the string by ...
2
votes
0answers
139 views

DWR Incomplete reply from server

I am working on Dwr with Dojo, i am using DWR Version 3.0.RC2 dwr.jar (1.1Mb) jar file. Onpage load time giving alert error "Incomplete reply from server"
0
votes
1answer
123 views

DOM Elements created in JavaScript function disappear after function returned

I have a dropdown list with multiple selections allowed. A user selects from the list and then clicks the submit button with an onclick=test() which calls a JS function. I am using Jsp pages, and ...
0
votes
0answers
45 views

dwr not able to get path to push data

Currently dwr is able to push data to current page below is code. Collection pages = wctx.getScriptSessionsByPage(currentPage); What i want to do is send data to a specific page in same app. So i ...
0
votes
0answers
50 views

DWR Page redirect

I want to redirect from one Html page to another in DWR class WebContext webContext =WebContextFactory.get(); webContext .getHttpServletResponse().sendRedirect("/AccessViolation.html"); ...
0
votes
0answers
65 views

dwr send data to particular client only

I have tried the dwr sample chat app, I think the code below sends data to all connected clients. Collection pages = wctx.getScriptSessionsByPage(currentPage); for (Iterator it = ...
0
votes
0answers
24 views

“an error has occurred when import finished” when importing dwr.war

When I import dwr.war in Eclipse, I get this error message: an error has occurred when import finished Why, and how can I resolve it?
0
votes
1answer
54 views

Dwr issues on latest browser version like firefox 16+

i wrote the java application making use of DWR to filter and populate some filds eg continent to countries, the application works fine with Firefox 14 but when i do upgrade my Firefox version it does ...
0
votes
0answers
104 views

Sending JSON objects to Java methods with DWR

I'm using DWR 3. It works correctly as I tryed it with many Java classes and methods without problems. Now, I'm trying to execute a method addVehicle() that requires two objects as parameters. The ...
0
votes
0answers
55 views

How do I specify a custom date pattern DWR date conversion?

I'm using DWR 3.0.0-rc2. When DWR sends back DWR transfer objects, it seems to have a standard pattern for converting dates to Javascript strings. Does anyone know, through DWR's annotation or ...
0
votes
0answers
57 views

send request perameter To DWR call

I am using dwr.2.0.5 version. i have one js file like below. function getSuspendReasons() { var tval = $(".taskRow.highlight td:eq(1)").text(); alert(tval); ...
0
votes
2answers
124 views

JS target doesn't work ie 8

I have this code, where data is DWR object that contains rows from response servlet. img.onclick works using IE9 but I need that it works on IE8 too. Some idea? Thanks! function functionA(data){ ...
0
votes
2answers
684 views

How do I map DWR 3 properly using Spring MVC?

I'm trying to integrate Spring 3.1.1.RELEASE with DWR 3 (v 3.0.0-rc2). I'm using Spring MVC but am not able to get the setup to work properly. Spring isn't able to map /dwr/engine.js (or anything ...
0
votes
0answers
113 views

DWR and remote Spring beans

I'm developing a multi-modular Maven application. I have, among others, a module Facade and a module Web. I want to use Facade Spring beans in DWR. The applicationContext-web: <?xml ...
0
votes
0answers
39 views

Alternatives to WebContext.forwardToString()

The problem sounds like this : In my application i must get off java DWR technologies.So it will be basically more jquery.:) Now i'm trying to find a way to replace ...
1
vote
0answers
79 views

Is it possible to use treeset in dwr?

my problem is, that i try to put a TreeSet into my Javascript with DWR. Here is my example Code: Javacode: public class myDWRObject { public HashMap<String, Object> getData() { ...
0
votes
0answers
224 views

Manage HttpSession from java(Service layer) to dwr(jsp)

I am trying to call a method at service layer from jsp using dwr. here is my java method: public List<Option> getDsrGroupForDsrSubGroupMaster(Integer dsrMastNo) { HttpSession ...
0
votes
0answers
68 views

how to make sure that the DWR works even if the javascript is disabled?

i am using DWR with my java web application which is struts 1.2.9 based. if the javascript is disabled than than i think all the DWR functionalities will not work since java class is converted to ...
3
votes
3answers
652 views

DWR: dwr is not defined

I'm a starter in DWR. According to tutorial in (http://directwebremoting.org/dwr-demo/simple/text.html), i placed dwr script my html file. But when i run the application it show the following ...
1
vote
0answers
231 views

Issue Implementing the 'Extend an ActiveXObject in JavaScript' Script with DWR in IE8

Environment: Intranet Client: IE8 Server: JBOSS 4.2.3 AJAX Tech: DWR 2.x I have a requirement to creat modular javascript that can be easily added to any of our intranet applications with a ...

1 2 3 4 5