Apache Roller Weblogger software- Can anybody have the information! - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:59:44Z http://stackoverflow.com/feeds/question/450183 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/450183/apache-roller-weblogger-software-can-anybody-have-the-information 1 Apache Roller Weblogger software- Can anybody have the information! Vinayak.B 2009-01-16T11:50:30Z 2009-09-03T12:00:13Z <p>Hi,</p> <p>I am creating a blog using Apache Roller Weblogger software, am very new to this.. I am deploying it on the Tomcat, and m using the PostgreSQL database.. I did all the configuration in the roller-custom.properties.. If i give the url <a href="http://localhost:8080/roller/" rel="nofollow">http://localhost:8080/roller/</a> in the browser I am getting the resource not available error, And in the roller.log file if i check, the database is loading fine..</p> <p>Please if anybody have relevant suggestion please do share..</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/450183/apache-roller-weblogger-software-can-anybody-have-the-information/617226#617226 0 Answer by Gary Kephart for Apache Roller Weblogger software- Can anybody have the information! Gary Kephart 2009-03-05T23:58:01Z 2009-03-05T23:58:01Z <p>I had to add this to my web.xml:</p> <pre><code>&lt;resource-ref&gt; &lt;res-ref-name&gt;jdbc/rollerdb&lt;/res-ref-name&gt; &lt;res-type&gt;javax.sql.DataSource&lt;/res-type&gt; &lt;res-auth&gt;Container&lt;/res-auth&gt; &lt;/resource-ref&gt; </code></pre> <p>and this to my jboss-web.xml:</p> <pre><code> &lt;resource-ref&gt; &lt;res-ref-name&gt;jdbc/rollerdb&lt;/res-ref-name&gt; &lt;jndi-name&gt;java:/jdbc/rollerdb-31&lt;/jndi-name&gt; &lt;/resource-ref&gt; </code></pre>