• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Ajax tags problem

 
Ranch Hand
Posts: 170
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i've been having this problem for 3 days now and i hope someone can help me with this coz i'm really stuck.

anyway, i've been trying to have 3 combo boxes, the values of which are dynamically generated from the database and the values that should be generated in combo 2 is dependent on the value selected in combo 1, and the same goes for combo 3.

since i didn't want to use 3 forms in the same page and keep submitting and passing variables and refreshing the page over and over again, i tried ajax tags.

i don't know how to use it so i tried downloading the demo war file from
http://sourceforge.net/project/showfiles.php?group_id=140499&package_id=158321, and deployed it

when i try running the index.jsp though, nothing on the page displays. as in it's totally blank. so i tried running one of the other jsps it has, dropdown.jsp, because that's what i need, and i get this error:
org.apache.jasper.JasperException: This absolute uri (http://ajaxtags.org/tags/ajax) cannot be resolved in either web.xml or the jar files deployed with this application

can someone please tell me what this means and how do i solve it?
i did a google on that but my search returned nothing

any help would be really really appreciated
thanks in advance
 
Sheriff
Posts: 67752
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

This absolute uri (http://ajaxtags.org/tags/ajax) cannot be resolved in either web.xml or the jar files deployed with this application



This means exactly what it says. You are referencing a taglib URI that the container cannot find. The most likely cause is that you have not deployed the taglib correctly.
 
Bernard Sigmund Gustav
Ranch Hand
Posts: 170
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
the whole thing was packaged in a war file
all i did was deploy the war file.
isn't everything supposedly in there already?
would i need to deploy something else?
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
look into DWR

Eric
 
Bernard Sigmund Gustav
Ranch Hand
Posts: 170
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what's DWR?

and where can i download the ajaxtag.tld?
it's looking for it and it's not in the war files i downloaded
 
Bear Bibeault
Sheriff
Posts: 67752
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there no documentation for this tag lib?
 
Bernard Sigmund Gustav
Ranch Hand
Posts: 170
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
this is the documentation page
http://sourceforge.net/docman/?group_id=140499

and it really doesn't show anything useful
 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We have no clue where the files are for that thing on soundforge. None of us use it or deal with it. Find a contact with them...

DWR: http://getahead.ltd.uk/dwr/

Eric
 
Bear Bibeault
Sheriff
Posts: 67752
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
To be somewhat blunt: why are you wasting time trying to get this tab libary up and running? With the time you've used up so far, you could have been using Ajax yourself long ago. In another thread I pointed you to a great tutorial on using the XmlHttpRequest object. It's not hard, and you don't need a tag lib to do it for you,

If, after you understand how Ajax works, you decide you want to use a library, then is the time to try and get one up and running.
[ March 01, 2006: Message edited by: Bear Bibeault ]
 
I claim this furniture in the name of The Ottoman Empire! You can keep this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic