Last active
December 14, 2015 19:29
-
-
Save d1rtym0nk3y/5136895 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Railo 4.1.0.003 Error (application) | |
Message method not supported | |
Java Stacktrace method not supported | |
at railo.runtime.db.ApplicationDataSource.exp(ApplicationDataSource.java:100):100 | |
at railo.runtime.db.ApplicationDataSource.getDatabase(ApplicationDataSource.java:58):58 | |
at railo.runtime.orm.hibernate.HibernateORMEngine.checkTable(HibernateORMEngine.java:502):502 | |
at railo.runtime.orm.hibernate.HibernateORMEngine.getTableInfo(HibernateORMEngine.java:496):496 | |
at railo.runtime.orm.hibernate.HBMCreator.createXMLMapping(HBMCreator.java:164):164 | |
at railo.runtime.orm.hibernate.HibernateORMEngine.createMapping(HibernateORMEngine.java:421):421 | |
at railo.runtime.orm.hibernate.HibernateORMEngine.getSessionFactory(HibernateORMEngine.java:222):222 | |
at railo.runtime.orm.hibernate.HibernateORMEngine.init(HibernateORMEngine.java:118):118 | |
at railo.runtime.config.ConfigImpl.getORMEngine(ConfigImpl.java:3057):3057 | |
at railo.runtime.config.ConfigImpl.resetORMEngine(ConfigImpl.java:3043):3043 | |
at railo.runtime.orm.ORMUtil.resetEngine(ORMUtil.java:46):46 | |
at railo.runtime.listener.ModernAppListener.initApplicationContext(ModernAppListener.java:369):369 | |
at railo.runtime.listener.ModernAppListener._onRequest(ModernAppListener.java:90):90 | |
at railo.runtime.listener.MixedAppListener.onRequest(MixedAppListener.java:18):18 | |
at railo.runtime.PageContextImpl.execute(PageContextImpl.java:2116):2116 | |
at railo.runtime.PageContextImpl.execute(PageContextImpl.java:2083):2083 | |
at railo.runtime.engine.CFMLEngineImpl.serviceCFML(CFMLEngineImpl.java:309):309 | |
at railo.loader.servlet.CFMLServlet.service(CFMLServlet.java:29):29 | |
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820):820 | |
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:565):565 | |
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:479):479 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
component { | |
env = createObject("java", "java.lang.System").getenv(); | |
this.name = "heroku-demo-app"; | |
this.sessionManagement = true; | |
this.datasources.default = { | |
class: env.get("DB_DRIVER") | |
,connectionString: env.get("DB_URL") | |
,username: env.get("DB_USERNAME") | |
,password: env.get("DB_PASSWORD") | |
}; | |
// ORM Settings | |
this.datasource = "default"; | |
this.ormenabled = true; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.example</groupId> | |
<version>1.0-SNAPSHOT</version> | |
<name>heroku-railo4</name> | |
<artifactId>heroku-railo4</artifactId> | |
<packaging>jar</packaging> | |
<properties> | |
<java.version>1.6</java.version> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
</properties> | |
<dependencies> | |
<!-- Servlet API --> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>servlet-api</artifactId> | |
<version>2.5</version> | |
</dependency> | |
<!-- Jetty --> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-servlet</artifactId> | |
<version>7.6.0.v20120127</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-webapp</artifactId> | |
<version>7.6.0.v20120127</version> | |
</dependency> | |
<dependency> | |
<groupId>org.mortbay.jetty</groupId> | |
<artifactId>jsp-2.1-glassfish</artifactId> | |
<version>2.1.v20100127</version> | |
</dependency> | |
<dependency> | |
<groupId>org.getrailo</groupId> | |
<artifactId>railo</artifactId> | |
<version>4.1.0.003</version> | |
</dependency> | |
<dependency> | |
<groupId>postgresql</groupId> | |
<artifactId>postgresql</artifactId> | |
<version>8.3-606.jdbc3</version> | |
</dependency> | |
<dependency> | |
<groupId>org.tuckey</groupId> | |
<artifactId>urlrewritefilter</artifactId> | |
<version>4.0.3</version> | |
</dependency> | |
</dependencies> | |
<repositories> | |
<repository> | |
<id>cfmlprojects</id> | |
<url>http://cfmlprojects.org/artifacts/</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
</repositories> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-dependency-plugin</artifactId> | |
<version>2.4</version> | |
<executions> | |
<execution> | |
<id>copy-dependencies</id> | |
<phase>package</phase> | |
<goals> | |
<goal>copy-dependencies</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-clean-plugin</artifactId> | |
<version>2.5</version> | |
<configuration> | |
<filesets> | |
<fileset> | |
<directory>lib</directory> | |
<includes> | |
<include>**/*</include> | |
</includes> | |
<excludes> | |
<exclude>**/railo-server.xml</exclude> | |
</excludes> | |
<followSymlinks>false</followSymlinks> | |
</fileset> | |
<fileset> | |
<directory>src/main/webapp/WEB-INF/flex</directory> | |
<includes> | |
<include>**/*</include> | |
</includes> | |
<followSymlinks>false</followSymlinks> | |
</fileset> | |
<fileset> | |
<directory>src/main/webapp/WEB-INF/railo</directory> | |
<includes> | |
<include>**/*</include> | |
</includes> | |
<excludes> | |
<exclude>**/railo-web.xml.cfm</exclude> | |
</excludes> | |
<followSymlinks>false</followSymlinks> | |
</fileset> | |
</filesets> | |
</configuration> | |
</plugin> | |
<plugin> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.3.2</version> | |
<configuration> | |
<source>1.7</source> | |
<target>1.7</target> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Railo 4.1.0.003 Error (expression) | |
Message key [REQUEST] doesn't exist (existing keys:application,scope,error,cache,regional,charset,compiler,label,output) | |
Stacktrace The Error Occurred in | |
Java Stacktrace key [REQUEST] doesn't exist (existing keys:application,scope,error,cache,regional,charset,compiler,label,output) | |
at railo.runtime.type.util.StructSupport.invalidKey(StructSupport.java:45):45 | |
at railo.runtime.type.StructImpl.get(StructImpl.java:76):76 | |
at railo.runtime.type.util.StructSupport.get(StructSupport.java:216):216 | |
at railo.runtime.util.VariableUtilImpl.get(VariableUtilImpl.java:231):231 | |
at railo.runtime.PageContextImpl.get(PageContextImpl.java:1297):1297 | |
at admin.resources.menu_cfm$cf.udfCall(/home/cfml/railo-build/src/railo-cfml/railo-admin/admin/resources/menu.cfm:15):15 | |
at railo.runtime.type.UDFImpl.implementation(UDFImpl.java:102):102 | |
at railo.runtime.type.UDFImpl._call(UDFImpl.java:373):373 | |
at railo.runtime.type.UDFImpl.call(UDFImpl.java:279):279 | |
at railo.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:699):699 | |
at railo.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:709):709 | |
at railo.runtime.PageContextImpl.getFunction(PageContextImpl.java:1443):1443 | |
at admin.resources.text_cfm$cf.call(/home/cfml/railo-build/src/railo-cfml/railo-admin/admin/resources/text.cfm:36):36 | |
at railo.runtime.PageContextImpl.doInclude(PageContextImpl.java:805):805 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Railo 4.1.0.003 Error (expression) | |
Message key [web] doesn't exist (existing keys:) | |
Stacktrace The Error Occurred in | |
Java Stacktrace key [web] doesn't exist (existing keys:) | |
at railo.runtime.type.util.StructSupport.invalidKey(StructSupport.java:45):45 | |
at railo.runtime.type.StructImpl.get(StructImpl.java:76):76 | |
at railo.runtime.type.util.StructSupport.get(StructSupport.java:216):216 | |
at railo.runtime.util.VariableUtilImpl.get(VariableUtilImpl.java:299):299 | |
at railo.runtime.PageContextImpl.get(PageContextImpl.java:1292):1292 | |
at admin.web_cfm$cf.call(/home/cfml/railo-build/src/railo-cfml/railo-admin/admin/web.cfm:175):175 | |
at railo.runtime.PageContextImpl.doInclude(PageContextImpl.java:805):805 | |
at railo.runtime.PageContextImpl.doInclude(PageContextImpl.java:757):757 | |
at railo.runtime.listener.ModernAppListener._onRequest(ModernAppListener.java:183):183 | |
at railo.runtime.listener.ModernAppListener.onRequest(ModernAppListener.java:78):78 | |
at railo.runtime.PageContextImpl.execute(PageContextImpl.java:2116):2116 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment