On 19.02.2009, at 19:34, wfaler wrote:

Hi,
Wicket RAD is actually not officially part of Wicket, so the right forum is
here: http://www.nabble.com/Wicket-RAD-f35257.html

Sorry! I will post a next topic to that forum.

However, looking at your code, what version of Wicket are you using, and is
it really on the classpath?

Wicket (1.4-SNAPSHOT) is running fine and I am using Panel.add() at several other places. Only when I navigate to a page containing a Wicket-RAD form, this message appears.

the add call on the line referred to in the stacktrace is actually the add()
method on Component, which should be there.

Yes, I looked this up in your code, but here I got stuck.

I attach my pom.xml; maybe it helps?

Thanks, Kaspar

--

<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>org.myorg.myproject.ui.web</groupId>
        <artifactId>myproject-web</artifactId>
        <packaging>war</packaging>
        <version>1.0-SNAPSHOT</version>
        <name>myproject</name>
        <description></description>
        <repositories>
                <repository>
                        <id>wicketrad</id>
                        <url>http://wicket-rad.sourceforge.net/repo</url>
                        <releases>
                                <enabled>true</enabled>
                        </releases>
                        <snapshots>
                                <enabled>true</enabled>
                        </snapshots>
                </repository>
        </repositories>

        <organization>
                <name>...</name>
                <url>...
                </url>
        </organization>

        <dependencies>

                <!--  WICKET DEPENDENCIES -->
                <dependency>
                        <groupId>org.apache.wicket</groupId>
                        <artifactId>wicket</artifactId>
                        <version>${wicket.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.apache.wicket</groupId>
                        <artifactId>wicket-extensions</artifactId>
                        <version>${wicket.version}</version>
                        <!-- <scope>compile</scope> -->
                </dependency>
                <dependency>
                        <groupId>org.apache.wicket</groupId>
                        <artifactId>wicket-datetime</artifactId>
                        <version>${wicket.version}</version>
                        <!-- <scope>compile</scope> -->
                </dependency>
                <dependency>
                        <groupId>org.wicketstuff</groupId>
                        <artifactId>wicket-contrib-tinymce</artifactId>
                        <version>1.3-SNAPSHOT</version>
                </dependency>
                <dependency>
                        <groupId>org.wicketstuff</groupId>
                        <artifactId>wicketstuff-scriptaculous
                        </artifactId>
                        <version>${wicket.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.wicketstuff</groupId>
                        <artifactId>wicketstuff-prototype</artifactId>
                        <version>${wicket.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.wicketstuff.jquery</groupId>
                        <artifactId>wicketstuff-jquery</artifactId>
                        <version>1.3-SNAPSHOT</version>
                </dependency>
                <dependency>
                        <groupId>org.wicketstuff</groupId>
                        <artifactId>wicketstuff-rome</artifactId>
                        <version>1.3-SNAPSHOT</version>
                </dependency>
                <!--
                        OPTIONAL <dependency> 
<groupId>org.apache.wicket</groupId>
                        <artifactId>wicket-extensions</artifactId>
                        <version>${wicket.version}</version> </dependency>
                -->

                <!-- LOGGING DEPENDENCIES - LOG4J -->

                <dependency>
                        <groupId>org.slf4j</groupId>
                        <artifactId>slf4j-log4j12</artifactId>
                        <version>1.4.2</version>
                </dependency>
                <dependency>
                        <groupId>log4j</groupId>
                        <artifactId>log4j</artifactId>
                        <version>1.2.14</version>
                </dependency>

                <!--  JUNIT DEPENDENCY FOR TESTING -->
                <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>
                        <version>3.8.2</version>
                        <scope>test</scope>
                </dependency>

                <!-- Persistence -->
                <dependency>
                        <groupId>org.wicketrad.jpa</groupId>
                        <artifactId>wicket-rad-jpa</artifactId>
                        <version>0.6</version>
                </dependency>
                <dependency>
                        <groupId>org.wicketrad</groupId>
                        <artifactId>wicket-rad-core</artifactId>
                        <version>0.6</version>
                </dependency>
                <dependency>
                        <groupId>hsqldb</groupId>
                        <artifactId>hsqldb</artifactId>
                        <scope>runtime</scope>
                        <version>1.8.0.7</version>
                </dependency>

                <!--  JETTY DEPENDENCIES FOR TESTING  -->

                <dependency>
                        <groupId>org.mortbay.jetty</groupId>
                        <artifactId>jetty</artifactId>
                        <version>${jetty.version}</version>
                        <scope>provided</scope>
                </dependency>
                <dependency>
                        <groupId>org.mortbay.jetty</groupId>
                        <artifactId>jetty-util</artifactId>
                        <version>${jetty.version}</version>
                        <scope>provided</scope>
                </dependency>
                <dependency>
                        <groupId>org.mortbay.jetty</groupId>
                        <artifactId>jetty-management</artifactId>
                        <version>${jetty.version}</version>
                        <scope>provided</scope>
                </dependency>

                <!--
                        Spring dependencies, see 
http://cwiki.apache.org/WICKET/spring.html
                -->
                <dependency>
                        <groupId>org.apache.wicket</groupId>
                        <artifactId>wicket-spring</artifactId>
                        <version>1.4-SNAPSHOT</version>
                </dependency>

                <!-- Dependencies for KIM -->
                <dependency>
                        <groupId>org.openrdf</groupId>
                        <artifactId>openrdf-model</artifactId>
                        <version>1.2.7</version>
                </dependency>

                <dependency>
                        <groupId>org.openrdf</groupId>
                        <artifactId>openrdf-util</artifactId>
                        <version>1.2.7</version>
                </dependency>
                <dependency>
                        <groupId>org.json</groupId>
                        <artifactId>json</artifactId>
                        <version>20080701</version>
                </dependency>
                <dependency>
                        <groupId>xalan</groupId>
                        <artifactId>xalan</artifactId>
                        <version>2.7.1</version>
                </dependency>
                <dependency>
                        <groupId>xerces</groupId>
                        <artifactId>xercesImpl</artifactId>
                        <version>2.8.1</version>
                </dependency>
                <dependency>
                        <groupId>org.w3c.css</groupId>
                        <artifactId>sac</artifactId>
                        <version>1.3</version>
                </dependency>
                <dependency>
                        <groupId>net.sourceforge.nekohtml</groupId>
                        <artifactId>nekohtml</artifactId>
                        <version>1.9.11</version>
                </dependency>

        </dependencies>

        <build>
                <resources>
                        <resource>
                                <filtering>false</filtering>
                                <directory>src/main/resources</directory>
                        </resource>
                        <resource>
                                <filtering>false</filtering>
                                <directory>src/main/java</directory>
                                <includes>
                                        <include>**</include>
                                </includes>
                                <excludes>
                                        <exclude>**/*.java</exclude>
                                </excludes>
                        </resource>
                </resources>
                <testResources>
                        <testResource>
                                <filtering>false</filtering>
                                <directory>src/test/java</directory>
                                <includes>
                                        <include>**</include>
                                </includes>
                                <excludes>
                                        <exclude>**/*.java</exclude>
                                </excludes>
                        </testResource>
                </testResources>
                <plugins>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-eclipse-plugin</artifactId>
                                <configuration>
                                        <downloadSources>true</downloadSources>
                                        
<downloadJavadocs>true</downloadJavadocs>
                                </configuration>
                        </plugin>
                        <plugin>
                                <groupId>org.mortbay.jetty</groupId>
                                <artifactId>maven-jetty-plugin</artifactId>
                                <configuration>
                                        
<scanIntervalSeconds>5</scanIntervalSeconds>
                                </configuration>
                        </plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-eclipse-plugin</artifactId>
                                <configuration>
                                        <downloadSources>true</downloadSources>
                                </configuration>
                        </plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-compiler-plugin</artifactId>
                                <!-- best lock down version of the plugin too 
-->
                                <configuration>
                                        <source>1.5</source>
                                        <target>1.5</target>
                                </configuration>
                        </plugin>
                </plugins>
        </build>

        <properties>
                <wicket.version>1.4-SNAPSHOT</wicket.version>
                <jetty.version>6.1.4</jetty.version>
        </properties>

</project>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to