From owner-freebsd-java@FreeBSD.ORG Wed Aug 30 21:06:50 2006 Return-Path: X-Original-To: java@FreeBSD.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCD2416A4DA for ; Wed, 30 Aug 2006 21:06:50 +0000 (UTC) (envelope-from dames.martin@googlemail.com) Received: from smtp3.netcologne.de (smtp3.netcologne.de [194.8.194.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1257A43D6E for ; Wed, 30 Aug 2006 21:06:50 +0000 (GMT) (envelope-from dames.martin@googlemail.com) Received: from kosh (xdsl-87-78-120-12.netcologne.de [87.78.120.12]) by smtp3.netcologne.de (Postfix) with ESMTP id ABA0867424 for ; Wed, 30 Aug 2006 23:06:48 +0200 (CEST) Received: from [192.168.1.104] (EsrysRouter.esry.local [192.168.1.1]) by kosh (Postfix) with ESMTP id 091EA17402 for ; Wed, 30 Aug 2006 23:06:48 +0200 (CEST) Mime-Version: 1.0 (Apple Message framework v752.2) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: java@FreeBSD.org From: Martin Dames Date: Wed, 30 Aug 2006 23:06:37 +0200 X-Mailer: Apple Mail (2.752.2) Cc: Subject: open xchange install problem X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:06:50 -0000 Hi there, does anybody did a successful install of the open xchange project? If yes, how.... I installed all the libs jsdk.jar (Java Servlet Development Kit) jdbc.jar (Java Database Connectivity, should be provided with your database) jdom.jar (Parsing and generating XML files) mail.jar (JavaMail API) activation.jar (JavaBeans Activation Framework) and I told configure where it can find it: ./configure --with-jdbcjar=/usr/local/share/java/classes/jdbc2_0- stdext.jar --with-mailjar=/usr/local/share/java/classes/mail.jar -- with-jdomjar=/usr/local/share/java/classes/jdom.jar --with- activationjar=/usr/local/share/java/classes/activation.jar --with- jsdkjar=/usr/local/share/java/classes/jsdk.jar and it ran good.... but make sais: ... [javac] location: interface javax.servlet.http.HttpSession [javac] session.setAttribute("cookie", scookieval); [javac] ^ [javac] /usr/home/martin/open-xchange-0.8.2-1/src/webmail.java: 156: cannot find symbol [javac] symbol : method getAttribute(java.lang.String) [javac] location: interface javax.servlet.http.HttpSession [javac] jcookie = (String)session.getAttribute("cookie"); [javac] ^ [javac] /usr/home/martin/open-xchange-0.8.2-1/src/webmail.java: 259: cannot find symbol [javac] symbol : method setAttribute (java.lang.String,java.lang.String) [javac] location: interface javax.servlet.http.HttpSession [javac] session.setAttribute("cookie", scookieval); [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] Note: Some input files use unchecked or unsafe operations. [javac] Note: Recompile with -Xlint:unchecked for details. [javac] 79 errors BUILD FAILED /usr/home/martin/open-xchange-0.8.2-1/build.xml:45: Compile failed; see the compiler error output for details. Total time: 54 seconds *** Error code 1 1 error *** Error code 1 1 error for example... so I really at the end of clues... has anybody an idea? Thank you.