Apache Roller Weblogger software- Can anybody have the information! - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T19:59:44Zhttp://stackoverflow.com/feeds/question/450183http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/450183/apache-roller-weblogger-software-can-anybody-have-the-information1Apache Roller Weblogger software- Can anybody have the information!Vinayak.B2009-01-16T11:50:30Z2009-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#6172260Answer by Gary Kephart for Apache Roller Weblogger software- Can anybody have the information!Gary Kephart2009-03-05T23:58:01Z2009-03-05T23:58:01Z<p>I had to add this to my web.xml:</p>
<pre><code><resource-ref>
<res-ref-name>jdbc/rollerdb</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</code></pre>
<p>and this to my jboss-web.xml:</p>
<pre><code> <resource-ref>
<res-ref-name>jdbc/rollerdb</res-ref-name>
<jndi-name>java:/jdbc/rollerdb-31</jndi-name>
</resource-ref>
</code></pre>