Skip to content Skip to sidebar Skip to footer

No Issue Is Shown But Does Not Work - Dwr

Hi all i am using dwr to handle ajax calls in java-servlet, this is what is my dwr.xml,

Solution 1:

1.check the dwr path

if you are going to have the view files inside WEB-INF than

<script src='dwr/engine.js'></script>         
<script src='dwr/util.js'></script>         
<script src='dwr/interface/TempCardServlet.js'></script> 

Refering this way will work.if not you have to give proper path like the below

<script src='../dwr/engine.js'></script> 
<script src='../dwr/util.js'></script> 
<script src='../dwr/interface/TempCardServlet.js'></script> 

Post a Comment for "No Issue Is Shown But Does Not Work - Dwr"