Saturday, October 4, 2008

Calling All Web Masters and Affiliate Marketers

Get Paid for Every Impression - No Clicks Required: Pay-per-Play

Does ad sense work, the answer to that is yes it does, but just before you login into your adsense account to get your code, Think about how much sense it makes to share your revenue, from your website,

As you read this sentence 2 more website owners have joined us...


NetAudioAds™ Pay Per Play (PPP) is a new advertising channel that is set to take the web by storm. Because of the size and scope of this deal (which is backed by one of the BIG 5 search engines), Pay Per Play (PPP) advertising will become a world wide business media event.


PPP works on a bid management system similar to Google AdWords and will compensate publishers (website owners) just like Google AdSense but with one critical difference…

Publishers will earn revenue on 100% of their traffic with no clicks necessary!

Thursday, October 2, 2008

ClassNotFoundException on Tomcat startup: ConfigureListener missing ?

Error Message:

SEVERE: Error configuring application listener of class com.sun.faces.config.ConfigureListener java.lang.ClassNotFoundException: com.sun.faces.config.ConfigureListener.
The ConfigureListener is part of the jsf implementation you must include the jsf jars in to your webapp. It is not sufficient if the jars are in the classpath of your environment.

Checklist:
* Put jsf-api.jar and jsf-impl.jar in WEB-INF/lib of your webapp.
* Give read permissions to the jsf-api.jar and the jsf-impl.jar file.

javax.servlet.jsp.JspException: Argument Error: One or more parameters are null ?

This is not a very descriptive exception. A parameter in your page is null. You should verify the attributes of the JavaServer Faces components of your page. If you are not sure which component is concerned open the generated java source of your jsp and jump to the lines indicated in the exception.

After you narrowed the trouble down to component level, verify if the are any attributes that could possibly be null, or if there are any attributes missing that should be there.


Checklist:
* Verify if there are any attributes that could possibly be null.
* Verify if there are any attributes missing.
* Verify if you have missed to specify an "itemLabel" attribute for a .
* If you use resource bundles for an attribute double-check its spelling, because this exception can *hide* a bundle spelling problem.
* Restart your web application in order to see if the problem persists.