Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6374469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:29:32+00:00 2026-05-25T01:29:32+00:00

My project works absolutely fine on the Google Server but I get a VerifyError:

  • 0

My project works absolutely fine on the Google Server but I get a VerifyError:

java.lang.VerifyError: (class: org/restlet/ext/servlet/ServerServlet, 
method: createServer 
signature: (Ljavax/servlet/http/HttpServletRequest;)
Lorg/restlet/engine/http/HttpServerHelper;) 
Incompatible object argument for function call
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T01:29:32+00:00Added an answer on May 25, 2026 at 1:29 am

    Through extensive Trial and Error, I found out, that I used the wrong Scala Version. I downgraded from 2.7.7 to 2.7.6 and everything works fine. As to why, I have no Idea. Maybe the Lift interop.

    The resulting pom.xml (short version):

    <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>
    
        <!-- The Basics -->
        <groupId>com.beecourt</groupId>
        <artifactId>site2</artifactId>
        <version>1.0-SNAPSHOT</version>
        <packaging>war</packaging>
    
        <properties>
            <gae.version>1.3.4</gae.version>
            <gae.alternate>1.3.3.1</gae.alternate>
            <restlet.version>2.0-RC4</restlet.version>
    
            <!-- this was 2.7.6 -->
            <scala.version>2.7.6</scala.version>
    
            <project_charset>UTF-8</project_charset>
        </properties>
    
        <dependencies>
            ...    
            <!-- customized -->
            <dependency>
                <groupId>net.liftweb</groupId>
                <artifactId>lift-util</artifactId>
                <version>1.1-M8</version>
            </dependency>
            <dependency>
                <groupId>org.restlet.gae</groupId>
                <artifactId>org.restlet</artifactId>
                <version>${restlet.version}</version>
            </dependency>
            <dependency>
                <groupId>org.restlet.gae</groupId>
                <artifactId>org.restlet.ext.servlet</artifactId>
                <version>${restlet.version}</version>
            </dependency>
    
            <!-- file upload -->
            <dependency>
                <groupId>org.restlet</groupId>
                <artifactId>org.restlet.ext.fileupload</artifactId>
                <version>2.0-M3</version>
            </dependency>
            <dependency>
                <groupId>com.noelios.restlet</groupId>
                <artifactId>restlet</artifactId>
                <version>1.0.5</version>
            </dependency>
            <dependency>
                <groupId>commons-fileupload</groupId>
                <artifactId>commons-fileupload</artifactId>
                <version>1.2.1</version>
            </dependency>
            <dependency>
                <groupId>commons-io</groupId>
                <artifactId>commons-io</artifactId>
                <version>1.4</version>
            </dependency>
    
            <!-- testing -->
            <dependency>
                <groupId>org.scala-tools.testing</groupId>
                <artifactId>specs</artifactId>
                <version>1.6.2.1</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>log4j</groupId>
                <artifactId>log4j</artifactId>
                <version>1.2.16</version>
            </dependency>
        </dependencies>
    
        <!-- Build Settings -->
        <build>
            <finalName>site2</finalName>
            <resources>
                <resource>
                    <directory>src/main/resources</directory>
                </resource>
                <resource>
                    <directory>src/main/java</directory>
                    <includes>
                        <include>**/*.xml</include>
                    </includes>
                </resource>
            </resources>
            <testResources>
                <testResource>
                    <directory>src/test/resources</directory>
                </testResource>
                <testResource>
                    <directory>src/test/java</directory>
                    <includes>
                        <include>**/*.xml</include>
                    </includes>
                </testResource>
            </testResources>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <configuration>
                        <source>1.5</source>
                        <target>1.5</target>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <configuration>
                        <skip>true</skip>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-site-plugin</artifactId>
                    <configuration>
                        <outputEncoding>${project_charset}</outputEncoding>
                        <inputEncoding>${project_charset}</inputEncoding>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>net.kindleit</groupId>
                    <artifactId>maven-gae-plugin</artifactId>
                    <version>0.5.9</version>
                    <configuration>
                        <port>8080</port>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.scala-tools</groupId>
                    <artifactId>maven-scala-plugin</artifactId>
                    <executions>
                        <execution>
                            <goals>
                                <goal>compile</goal>
                                <goal>testCompile</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <scalaVersion>${scala.version}</scalaVersion>
                        <args>
                            <arg>-target:jvm-1.5</arg>
                        </args>
                    </configuration>
                </plugin>
            </plugins>
        </build>
        <repositories>...
        </repositories>
        <pluginRepositories>...
        </pluginRepositories>
    </project>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Everything works fine when the unit tests class is part of the main project
I'm building a project using a GNU tool chain and everything works fine until
Our flex project, which works fine in its current environment with coldfusion 7 single
I have a web application project that works with a quite large database (over
I have a Django1.1 project that works with a legacy MySQL db. I'm trying
Here is a code excerpt from AspComet project that works with Autofac. public MessageBus(IClientRepository
I have nant set up to build my ASP.NET MVC project and it works
I have problems running a dynamic LIKE statement in my project: this query works
I need a Project management tool that works in Linux, and has Gantt charts.
I have a project which contains different components that everyone works on. We have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.