• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Virtual Host/Web Group Not Found

 
Greenhorn
Posts: 26
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm writing a Faces Portlet with a JSF 'dataTable' and an IBM 'deluxe pager'. The JSF dataTable prints a simple List of beans from the session scope on my jsp. However, when I click 'next', to go to the next page, I'm getting this exception:

2/05 13:41:10:079 EDT] 34abcf08 OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /.d/.ibmjsfres/img/1x1.gif has not been defined

PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /.d/.ibmjsfres/img/hinkies.gif has not been defined

PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /.d/.ibmjsfres/img/hinkies_lg.gif has not been defined

PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /.d/.ibmjsfres/img/HinkiesC.gif has not been defined

PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /.d/.ibmjsfres/img/hinkies_vlg.gif has not been defined

I followed the Redbook example very closely. Anyone seen this before?
 
Justin Krettabull
Greenhorn
Posts: 26
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I figured out how to fix the problem and get rid of the exceptions.

I had to add attributes to the pagerDeluxe tag: (the JSF redbook does not mention this fact)

Here's the code:

<hx agerDeluxe id="pagingHandler" srcPrevious="/.d/.ibmjsfres/img/hinkies.gif" srcFirst="/.d/.ibmjsfres/img/hinkies_lg.gif" srcLast="/.d/.ibmjsfres/img/HinkiesC.gif" srcNext="/.d/.ibmjsfres/img/hinkies_vlg.gif" />
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic