"Error starting modern compiler" error

Hi,
I am trying to run ANT build of my project in Eclipse 3.4.2 with JDK 1.6.0_18
and getting error: "Error starting modern compiler".
I tried to google it up, found many references, most say to make sure
that JAVA_HOME points to the same JDK [and not JRE] as one used by Eclipse.
I have uninstalled all other JDK/JRE, my JAVA_HOME points to JDK1.6 dir,
java -option, javac -option & PATH point to the same, but nevertheless I get that error.
Please help !
TIA,
Oleg.

As a suggestion I believe you can explicitly provide a path in the xml file itself. You might try that just to see if it changes the error.

Similar Messages

  • How to start a compiled exe with a parameter like -n

    Is there an possibility to start a compiled exe with a paramter like -n ?I searched the forum but only found sth. about dlls and so on.I just want to say, when the programm is started for example as Myprogram.exe -n that the program creates a new file or sth like this in which it writes current data. I never have done that before and do not know how to realize that operation.
    Thanks for help
    kind regards

    Hello
    This link explains how to pass command line parameters to app.exe.
    link
    Hope it helps
    Alipio
    "Qod natura non dat, Salmantica non praestat"

  • Netradiant crash when start to compile a map

    Well all is in the subjet. Netradian is a software used to make maps for quake like games.
    I got this message in the kernel log:
    [  751.364852] radiant.x86[3316]: segfault at 10 ip 081e70b6 sp bf9c5730 error 4 in radiant.x86[8048000+1ee000]
    Some one using slackware has the same probleme and the solution he found was to change his slackware OS to ubuntu.
    2 mounths ago I changed Linux flavor from mandriva which I was on since 2001 to Arch and I realy like much Archlinux. I'd like to stay with Arch.
    I wish someone can help me to resolve this probleme.

    Yes sir, I have a fresh updated git and the latest netradian downloaded yesterday morning. I tried both netradian, one from the git and the other from the xonotic autobuild version. Today I installed a debian OS on a old hard drive and compiling a map was fine, no seg fault. I already post the trouble I have on a forum where Divverent has access and nothing came from him. I will use Debian for mapping 'till something change for good.

  • Invoking javac within an application

    I'm trying to track down a JDK 1.0 technology, and am wondering if Sun still supports it.
    I'm creating an editor in Java2, and would like to provide the users with the ability to write 'scripts' within the editor. The idea would be that the user could use a edit box to write in pure java, as if they were writing the body of a member function. Then, my editor would take the user's 'script' and generate a secondary .java file that splices the 'script' into the body of a member function. The .class file this .java file generates would then be available to a secondary Java2 program that takes as input the various files that were created by my editor.
    I would like to provide some sort of interactive debugging for my user. One way to do this is to have my editor generate the .java file, call javac to compile it, and then report any bugs to the user (after adjusting the line number of the bugs to reflect what the user sees in their script window). One way to do this is to call javac externally and parse it's output, but I'd like a pure java solution.
    In the Sun's JDK 1.0, there was a sun.tools.javac.* library, but these seem to have been removed from subsequent distributions. I understand that they're still available, but throw depreciation messages whenever they are called. There is also no mention of it in the JDK 1.4 documentation.
    My question is: how do I invoke the javac compiler within Java2, and where can I find the supporting documentation?
    A few people on comp.lang.java suggested I use BeanShell, and while it looks like a neat tool, I'm looking for something that will fit into my scheme of dynamically creating new .java files.
    Mark McKay
    http://www.kitfox.com

    I don't have a definitive answer, but a good place to look might be the Ant source code. Ant uses sun.tools.javac.Main extensively.
    I have the source on my desktop and took the liberty of copying a portion of the Ant taskdef for compiling with JDK 1.3. The source I've copied from is the org.apache.tools.ant.taskdefs.compiler.Javac13 class. If you look in that class, you'll see the use of other compilers for other versions of Java as well.
    sun.tools.javac.Main is in the tools.jar file in your Java distribution.
    Hope this helps:
    * The Apache Software License, Version 1.1
    * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
    * reserved.
    * Redistribution and use in source and binary forms, with or without
    * modification, are permitted provided that the following conditions
    * are met:
    * 1. Redistributions of source code must retain the above copyright
    *    notice, this list of conditions and the following disclaimer.
    * 2. Redistributions in binary form must reproduce the above copyright
    *    notice, this list of conditions and the following disclaimer in
    *    the documentation and/or other materials provided with the
    *    distribution.
    * 3. The end-user documentation included with the redistribution, if
    *    any, must include the following acknowlegement:
    *       "This product includes software developed by the
    *        Apache Software Foundation (http://www.apache.org/)."
    *    Alternately, this acknowlegement may appear in the software itself,
    *    if and wherever such third-party acknowlegements normally appear.
    * 4. The names "The Jakarta Project", "Ant", and "Apache Software
    *    Foundation" must not be used to endorse or promote products derived
    *    from this software without prior written permission. For written
    *    permission, please contact [email protected].
    * 5. Products derived from this software may not be called "Apache"
    *    nor may "Apache" appear in their names without prior written
    *    permission of the Apache Group.
    * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
    * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
    * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
    * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
    * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
    * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
    * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    * SUCH DAMAGE.
    * ====================================================================
    * This software consists of voluntary contributions made by many
    * individuals on behalf of the Apache Software Foundation.  For more
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
            // Use reflection to be able to build on all JDKs >= 1.1:
            try {
                Class c = Class.forName ("com.sun.tools.javac.Main");
                Object compiler = c.newInstance ();
                Method compile = c.getMethod ("compile",
                    new Class [] {(new String [] {}).getClass ()});
                int result = ((Integer) compile.invoke
                              (compiler, new Object[] {cmd.getArguments()}))
                    .intValue ();
                return (result == MODERN_COMPILER_SUCCESS);
            } catch (Exception ex) {
                if (ex instanceof BuildException) {
                    throw (BuildException) ex;
                } else {
                    throw new BuildException("Error starting modern compiler",
                                             ex, location);
            }

  • Cannot resolve symbol error when compiling a class that calls another class

    I've read all the other messages that include "cannot resolve symbol", but no luck. I've got a small app - 3 classes all in the same package. BlackjackDAO and Player compile OK, but BlackjackServlet throws the "cannot resolve symbol" (please see pertinent code below)...
    I've tried lots: ant and javac compiling, upgrading my version of tomcat, upgrading my version of jdk/jre, making sure my servlet.jar is being seen by the compiler (at least as far as I can see from the -verbose feedback)...any help would be GREAT! Thanks in advance...
    classes: BlackjackServlet, BlackjackDAO, Player
    package: myblackjackpackage
    tomcat version: 4.1.1.8
    jdk version: j2sdk 1.4.0
    ant version: 1.4.1
    I get the same error message from Ant and Javac...
    C:\Tomcat4118\src\webapps\helloblackjack\src\myblackjackpackage>javac *.java -verbose
    C:\Tomcat4118\src\webapps\helloblackjack>ant all -verbose
    compile error:
    BlackjackServlet.java:55: cannot resolve symbol
    symbol: method addPlayer (javax.servlet.http.HttpServletRequest,javax.servlet.http.Http
    ServletResponse)
    location: class myblackjackpackage.BlackjackServlet
              addPlayer(request, response);
    ^
    My code is:
    package myblackjackpackage;
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.lang.*;
    /** controller servlet in a web based blackjack game application @author Ethan Harlow */
    public class BlackjackServlet extends HttpServlet {
         private BlackjackDAO theBlackjackDAO;
         public void init() throws ServletException {
    String driver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    String dbUrl = "jdbc:microsoft:sqlserver://localhost:1433";
    String userid = "testlogin";
    String passwrd = "testpass";
         try {
         theBlackjackDAO = new BlackjackDAO(driver, dbUrl, userid, passwrd);
         catch (IOException exc) {
              System.err.println(exc.toString());
         catch (ClassNotFoundException cnf) {
              System.err.println(cnf.toString());
         catch (SQLException seq) {
              System.err.println(seq.toString());
    public void doPost(HttpServletRequest request, HttpServletResponse response)
              throws ServletException, IOException {
    doGet(request, response);
    public void doGet(HttpServletRequest request, HttpServletResponse response)
              throws ServletException, IOException {
         String command = request.getParameter("command");
         if (command == null || (command.equals("stats"))) {
         else if (command.equals("add")) {
              try {
    //the following line is caught by compiler
              addPlayer(request, response);
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              out.println("<html>");
              out.println("<body>");
              out.println("<p>Hi, your command was " + request.getParameter("command") + "!!!</p>");
              out.println("</body>");
              out.println("</html>");
              catch (Exception exc) {
                   System.err.println(exc.toString());
         else if (command.equals("play")) {
         else if (command.equals("bet")) {
         else if (command.equals("hit")) {
         else if (command.equals("stand")) {
         else if (command.equals("split")) {
         else if (command.equals("double")) {
         else if (command.equals("dealerdecision")) {
         else if (command.equals("reinvest")) {
         else if (command.equals("changebet")) {
         else if (command.equals("deal")) {
    package myblackjackpackage;
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.lang.*;
    public class BlackjackDAO {
         private Connection myConn;
         public BlackjackDAO(String driver, String dbUrl, String userid, String passwrd)
                   throws IOException, ClassNotFoundException, SQLException {
              System.out.println("Loading driver: " + driver);
              Class.forName(driver);
              System.out.println("Connection to: " + dbUrl);
              myConn = DriverManager.getConnection(dbUrl, userid, passwrd);
              System.out.println("Connection successful!");
         public void addPlayer(HttpServletRequest request, HttpServletResponse response)
                   throws IOException, SQLException {
    //I've commented out all my code while debugging, so I didn't include
    //any here     
    compiler feedback
    C:\Tomcat4118\src\webapps\helloblackjack\src\myblackjackpackage>javac *.java -verbose
    [parsing started BlackjackDAO.java]
    [parsing completed 90ms]
    [parsing started BlackjackServlet.java]
    [parsing completed 10ms]
    [parsing started Player.java]
    [parsing completed 10ms]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/lang/Object.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/sql/Connection.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/lang/String.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/io/IOException.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/lang/ClassNotFoundException.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/sql/SQLException.class)]
    [loading c:\tomcat4118\common\lib\servlet.jar(javax/servlet/http/HttpServletRequ
    est.class)]
    [loading c:\tomcat4118\common\lib\servlet.jar(javax/servlet/http/HttpServletResp
    onse.class)]
    [loading c:\tomcat4118\common\lib\servlet.jar(javax/servlet/http/HttpServlet.cla
    ss)]
    [loading c:\tomcat4118\common\lib\servlet.jar(javax/servlet/GenericServlet.class
    [loading c:\tomcat4118\common\lib\servlet.jar(javax/servlet/Servlet.class)]
    [loading c:\tomcat4118\common\lib\servlet.jar(javax/servlet/ServletConfig.class)
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/io/Serializable.class)]
    [loading c:\tomcat4118\common\lib\servlet.jar(javax/servlet/ServletException.cla
    ss)]
    [checking myblackjackpackage.BlackjackDAO]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/lang/Throwable.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/lang/Exception.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/lang/System.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/io/PrintStream.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/io/FilterOutputStream.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/io/OutputStream.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/lang/Class.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/sql/DriverManager.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/util/Properties.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/lang/Error.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/lang/RuntimeException.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/lang/StringBuffer.class)]
    [wrote BlackjackDAO.class]
    [checking myblackjackpackage.BlackjackServlet]
    [loading c:\tomcat4118\common\lib\servlet.jar(javax/servlet/ServletRequest.class
    BlackjackServlet.java:55: cannot resolve symbol
    symbol : method addPlayer (javax.servlet.http.HttpServletRequest,javax.servlet
    .http.HttpServletResponse)
    location: class myblackjackpackage.BlackjackServlet
    addPlayer(request, response);
    ^
    [loading c:\tomcat4118\common\lib\servlet.jar(javax/servlet/ServletResponse.clas
    s)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/io/PrintWriter.class)]
    [loading c:\j2sdk14003\jre\lib\rt.jar(java/io/Writer.class)]
    [checking myblackjackpackage.Player]
    [total 580ms]
    1 error
    C:\Tomcat4118\src\webapps\helloblackjack\src\myblackjackpackage>
    and here's the ant feedback...
    C:\Tomcat4118\src\webapps\helloblackjack>ant all -verbose
    Ant version 1.4.1 compiled on October 11 2001
    Buildfile: build.xml
    Detected Java version: 1.4 in: c:\j2sdk14003\jre
    Detected OS: Windows 2000
    parsing buildfile C:\Tomcat4118\src\webapps\helloblackjack\build.xml with URI =
    file:C:/Tomcat4118/src/webapps/helloblackjack/build.xml
    Project base dir set to: C:\Tomcat4118\src\webapps\helloblackjack
    Build sequence for target `all' is [clean, prepare, compile, all]
    Complete build sequence is [clean, prepare, compile, all, javadoc, deploy, dist]
    clean:
    [delete] Deleting directory C:\Tomcat4118\src\webapps\helloblackjack\build
    [delete] Deleting C:\Tomcat4118\src\webapps\helloblackjack\build\images\a_s.g
    if
    [delete] Deleting C:\Tomcat4118\src\webapps\helloblackjack\build\images\q_s.g
    if
    [delete] Deleting directory C:\Tomcat4118\src\webapps\helloblackjack\build\im
    ages
    [delete] Deleting C:\Tomcat4118\src\webapps\helloblackjack\build\index.html
    [delete] Deleting C:\Tomcat4118\src\webapps\helloblackjack\build\newplayer.ht
    ml
    [delete] Deleting C:\Tomcat4118\src\webapps\helloblackjack\build\WEB-INF\clas
    ses\myblackjackpackage\BlackjackDAO.class
    [delete] Deleting directory C:\Tomcat4118\src\webapps\helloblackjack\build\WE
    B-INF\classes\myblackjackpackage
    [delete] Deleting directory C:\Tomcat4118\src\webapps\helloblackjack\build\WE
    B-INF\classes
    [delete] Deleting C:\Tomcat4118\src\webapps\helloblackjack\build\WEB-INF\web.
    xml
    [delete] Deleting directory C:\Tomcat4118\src\webapps\helloblackjack\build\WE
    B-INF
    [delete] Deleting directory C:\Tomcat4118\src\webapps\helloblackjack\build
    prepare:
    [mkdir] Created dir: C:\Tomcat4118\src\webapps\helloblackjack\build
    [copy] images\a_s.gif added as C:\Tomcat4118\src\webapps\helloblackjack\bui
    ld\images\a_s.gif doesn't exist.
    [copy] images\q_s.gif added as C:\Tomcat4118\src\webapps\helloblackjack\bui
    ld\images\q_s.gif doesn't exist.
    [copy] index.html added as C:\Tomcat4118\src\webapps\helloblackjack\build\i
    ndex.html doesn't exist.
    [copy] newplayer.html added as C:\Tomcat4118\src\webapps\helloblackjack\bui
    ld\newplayer.html doesn't exist.
    [copy] WEB-INF\web.xml added as C:\Tomcat4118\src\webapps\helloblackjack\bu
    ild\WEB-INF\web.xml doesn't exist.
    [copy] omitted as C:\Tomcat4118\src\webapps\helloblackjack\build is up to
    date.
    [copy] images added as C:\Tomcat4118\src\webapps\helloblackjack\build\image
    s doesn't exist.
    [copy] WEB-INF added as C:\Tomcat4118\src\webapps\helloblackjack\build\WEB-
    INF doesn't exist.
    [copy] Copying 5 files to C:\Tomcat4118\src\webapps\helloblackjack\build
    [copy] Copying C:\Tomcat4118\src\webapps\helloblackjack\web\images\q_s.gif
    to C:\Tomcat4118\src\webapps\helloblackjack\build\images\q_s.gif
    [copy] Copying C:\Tomcat4118\src\webapps\helloblackjack\web\images\a_s.gif
    to C:\Tomcat4118\src\webapps\helloblackjack\build\images\a_s.gif
    [copy] Copying C:\Tomcat4118\src\webapps\helloblackjack\web\index.html to C
    :\Tomcat4118\src\webapps\helloblackjack\build\index.html
    [copy] Copying C:\Tomcat4118\src\webapps\helloblackjack\web\newplayer.html
    to C:\Tomcat4118\src\webapps\helloblackjack\build\newplayer.html
    [copy] Copying C:\Tomcat4118\src\webapps\helloblackjack\web\WEB-INF\web.xml
    to C:\Tomcat4118\src\webapps\helloblackjack\build\WEB-INF\web.xml
    compile:
    [mkdir] Created dir: C:\Tomcat4118\src\webapps\helloblackjack\build\WEB-INF\
    classes
    [javac] myblackjackpackage\BlackjackDAO.class skipped - don't know how to ha
    ndle it
    [javac] myblackjackpackage\BlackjackDAO.java added as C:\Tomcat4118\src\weba
    pps\helloblackjack\build\WEB-INF\classes\myblackjackpackage\BlackjackDAO.class d
    oesn't exist.
    [javac] myblackjackpackage\BlackjackServlet.java added as C:\Tomcat4118\src\
    webapps\helloblackjack\build\WEB-INF\classes\myblackjackpackage\BlackjackServlet
    .class doesn't exist.
    [javac] myblackjackpackage\Player.java added as C:\Tomcat4118\src\webapps\he
    lloblackjack\build\WEB-INF\classes\myblackjackpackage\Player.class doesn't exist
    [javac] Compiling 3 source files to C:\Tomcat4118\src\webapps\helloblackjack
    \build\WEB-INF\classes
    [javac] Using modern compiler
    [javac] Compilation args: -d C:\Tomcat4118\src\webapps\helloblackjack\build\
    WEB-INF\classes -classpath
    "C:\Tomcat4118\src\webapps\helloblackjack\build\WEB-I
    NF\classes;
    C:\tomcat4118\common\classes;
    C:\tomcat4118\common\lib\activation.jar;
    C:\tomcat4118\common\lib\ant.jar;
    C:\tomcat4118\common\lib\commons-collections.jar;
    C:\tomcat4118\common\lib\commons-dbcp.jar;
    C:\tomcat4118\common\lib\commons-logging-api.jar;
    C:\tomcat4118\common\lib\commons-pool.jar;
    C:\tomcat4118\common\lib\jasper-compiler.jar;
    C:\tomcat4118\common\lib\jasper-runtime.jar;
    C:\tomcat4118\common\lib\jdbc2_0-stdext.jar;
    C:\tomcat4118\common\lib\jndi.jar;
    C:\tomcat4118\common\lib\jta.jar;
    C:\tomcat4118\common\lib\mail.jar;
    C:\tomcat4118\common\lib\mysql_uncomp.jar;
    C:\tomcat4118\common\lib\naming-common.jar;
    C:\tomcat4118\common\lib\naming-factory.jar;
    C:\tomcat4118\common\lib\naming-resources.jar;
    C:\tomcat4118\common\lib\servlet.jar;
    C:\tomcat4118\common\lib\tools.jar;
    C:\j2sdk14003\lib\tools.jar;
    C:\tomcat4118\ant141\lib\servlet.jar;
    C:\tomcat4118\ant141\lib\jaxp.jar;
    C:\tomcat4118\ant141\lib\crimson.jar;
    C:\tomcat4118\ant141\lib\ant.jar;
    C:\Tomcat4118\src\webapps\helloblackjack;
    C:\mysql\jdbc_dvr\mm.mysql.jdbc-1.2c;
    C:\Program Files\SQLserverjdbcdriver\lib\msbase.jar;
    C:\Program Files\SQLserverjdbcdriver\lib\msutil.jar;
    C:\Program Files\SQLserverjdbcdriver\lib\mssqlserver.jar"
    -sourcepath C:\Tomcat4118\src\webapps\helloblackjack\src -g -O
    [javac] Files to be compiled:
    C:\Tomcat4118\src\webapps\helloblackjack\src\myblackjackpackage\BlackjackDAO
    .java
    C:\Tomcat4118\src\webapps\helloblackjack\src\myblackjackpackage\BlackjackSer
    vlet.java
    C:\Tomcat4118\src\webapps\helloblackjack\src\myblackjackpackage\Player.java
    [javac] C:\Tomcat4118\src\webapps\helloblackjack\src\myblackjackpackage\Blac
    kjackServlet.java:55: cannot resolve symbol
    [javac] symbol : method addPlayer (javax.servlet.http.HttpServletRequest,j
    avax.servlet.http.HttpServletResponse)
    [javac] location: class myblackjackpackage.BlackjackServlet
    [javac] addPlayer(request, response);
    [javac] ^
    [javac] 1 error
    BUILD FAILED
    C:\Tomcat4118\src\webapps\helloblackjack\build.xml:212: Compile failed, messages
    should have been provided.
    at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:559)
    at org.apache.tools.ant.Task.perform(Task.java:217)
    at org.apache.tools.ant.Target.execute(Target.java:184)
    at org.apache.tools.ant.Target.performTasks(Target.java:202)
    at org.apache.tools.ant.Project.executeTarget(Project.java:601)
    at org.apache.tools.ant.Project.executeTargets(Project.java:560)
    at org.apache.tools.ant.Main.runBuild(Main.java:454)
    at org.apache.tools.ant.Main.start(Main.java:153)
    at org.apache.tools.ant.Main.main(Main.java:176)
    Total time: 1 second
    C:\Tomcat4118\src\webapps\helloblackjack>

    yes!
    early on i tried: BlackjackDAO.addPlayer(request, response);
    instead of: theBlackjackDAO.addPlayer(request, response);
    you rock - thanks a ton

  • [ SOLVED ] Compile Error with Java Fonts & IntelliJ

    Hi All
    I have now got a new problem when i compile a flex project.  Yesterday inorder to get the IJ Interface font smoothing sorted, i had to add this line to my ~/.bashrc file
    _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=on
    But now when i go to run a flex project, i get the following error message
    Information:Using built-in compiler shell, up to 4 parallel threads
    See compiler settings at File | Settings | Compiler | Flex Compiler page
    Information:Starting Flex compiler:
    /opt/java/jre/bin/java -Dapplication.home=/home/julian/SDK/flex_sdk_4.5.0.17855 -Xmx384m -Dsun.io.useCanonCaches=false -Duser.language=en -Duser.region=en -Xmx1024m -classpath /opt/idea-IU-98.311/plugins/flex/lib/flex-compiler.jar:/home/julian/SDK/flex_sdk_4.5.0.17855/lib/flex-compiler-oem.jar com.intellij.flex.compiler.FlexCompiler 48936
    Information:Compilation completed with 2 errors and 0 warnings
    Information:2 errors
    Information:0 warnings
    Error:Picked up _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=on
    Error:java.net.SocketException: Socket closed
    Error:java.net.ConnectException: Connection refused
    Error:     at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
         at java.net.Socket.connect(Socket.java:529)
         at java.net.Socket.connect(Socket.java:478)
         at java.net.Socket.<init>(Socket.java:375)
         at java.net.Socket.<init>(Socket.java:218)
         at com.intellij.flex.compiler.FlexCompiler.openSocket(FlexCompiler.java:35)
         at com.intellij.flex.compiler.FlexCompiler.main(FlexCompiler.java:70)
    Any suggestions, besides disabling the _JAVA_OPTION again ?
    Many Thanks
    Last edited by whitetimer (2010-11-14 17:24:11)

    -Dawt.useSystemAAFontSettings=on needs to be added to the end of file
    idea.vmoptions

  • Fpga compile worker error (file not found)

    Hi
    I try to get started with the FPGA functionality of cRIO and got stuck. This seems to be no issue of the cRIO(9014) but of the Xilinx software together with NI.
    I am running an English LV 2011 ( many previuos versions installed as well) on  a German Windows XP prof. 32 bit.
    I was setting up a little project and when it came to compiling ran into errors. First I asked a colleague than I checked the NI support web site. Next time I'll contact the NI local support, but maybe some of you guys hast a faster answer before.
    1. I want to run a local compile server. I can start it from start> programs>NI> FPGA. Up pops a  question whether I want to allow others to connect remotly. The answer seems to make no difference.
        I do not see any icon in the task bar or elsewhere. SHOULD I see a process running in the task manager ? 
    2. The NI Service locator seems to be running http:/localhost:3580/dump shows a table  like attached. SHOULD I see the server running here ?
    3. If I start the Compile Worker after some seconds I get a message saying something like file not found. I think, compile server error is only a followup.
    I have already re-installed the Xilinx-Tools from the down loaded iso. (that having started yesterday night ......) .
    I attach as well the log file. (would have liked, but three is the max)
    That whole system of compilation seems to be not very stable when I see all the posts, but I have not found these specific errors.
    So I still hope someone has an idea.
    Thanks in advance
    Gabi 
    7.1 -- 2013
    CLA
    Attachments:
    ServiceLocator.jpg ‏47 KB
    XilinkNotFound.jpg ‏101 KB
    FPGA Fehler.jpg ‏44 KB

    Gabi Tillmann wrote:
    Second thoughts:
    Is it really worth using that so highly promoted FPGA  on cRIO  ???? We'll see.
    This Question is technically wrong!
    Whenever you are using the C-Series IO-Modules of the cRIO you are using the FPGA, even in ScanMode where NI RIO loads pre-defined bitfiles onto the FPGA.
    The FPGA provides you ns Timing, it gives you nativly true parallelism, you are directly programming the bahaviour of FlipFlops, LUTs, Registers and so on.
    It gives you the ability to programm hardware without the need to understand complex HDL languages.
    The cRIO is besides PXI the most flexible and powerful (908x) platform NI offers. The decision to use an FPGA or to use a cRIO should not be "because it's there".
    The decision to use an FPGA-based Platform depends on the complexity of the application, just think about custome beahviour of IOs or custom triggering.
    Christian
    P.s.: Great that you solved your compiler issue.

  • Mass Compile "Bad VI" & "Bad SubVI" errors, but with no apparent errors.

    I am using LabView 8.5, FIRST Robotics Competition Edition, targeting the Compact RIO.
    I am getting Mass Compile "Bad VI" & "Bad SubVi" Errors, in my own code, but with no apparent errors in the vi's themselves.
     #### Starting Mass Compile: Mon, Jan 19, 2009 11:59:34 PM
      Directory: "C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Robot.lvproj"
      ### Bad VI:    "Autonomous Independent.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Autonomous Independent.vi"
      ### Bad VI:    "AcceleratingArcadeDrive.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\AcceleratingArcadeDrive.vi"
      ### Bad subVI: "CrazyIvan.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\CrazyIvan.vi"
      ### Bad subVI: "Teleop.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Teleop.vi"
      ### Bad VI:    "Autonomous Independent.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Autonomous Independent.vi"
      ### Bad VI:    "AcceleratingArcadeDrive.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\AcceleratingArcadeDrive.vi"
      ### Bad subVI: "CrazyIvan.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\CrazyIvan.vi"
      ### Bad VI:    "AcceleratingArcadeDrive.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\AcceleratingArcadeDrive.vi"
      ### Bad VI:    "Autonomous Independent.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Autonomous Independent.vi"
      ### Bad VI:    "AcceleratingArcadeDrive.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\AcceleratingArcadeDrive.vi"aa
      ### Bad subVI: "CrazyIvan.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\CrazyIvan.vi"
      ### Bad subVI: "Teleop.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Teleop.vi"
      ### Bad subVI: "Robot Main.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Robot Main.vi"
    #### Finished Mass Compile: Mon, Jan 19, 2009 11:59:46 PM
    Since some of these reference each other, this is the block diagram of one that doesn't reference any other erroring vi's.
    What can I do to fix this?
    Attachments:
    BlockDiagram.png ‏29 KB

    Interesting... It must have timed out before the temporary image did, and so I did not noticed a problem until I returned.
    Regardlessly, I have found the error.
    Errors did exist in my VI's, In particular, one of the subVi's I called in the VI shown happened to be private only, and so couldn't be used -- now I've just made a public version for my personal use. But LabView would not show me the actual errors unless I force-ran the the program, I really don't know why I had to do this, but when I did, it showed me a nice little dialog with my errors in it.
    I am confused, as when I did normal runs, it would simply complain that the VI's were invalid and would not permit the run.
    Very odd. 

  • There is an error when compile a FPGA example vi

    I just run a simple example vi such as Digital.vi and then found an error "Unable to spawn compiler" in the compile server dialog box. It seems that the FPGA vi can not be compiled.
    Could you give me some help?
    I am a FPGA freshmen and feel really puzzled.
    Thank you!!

    Thanks Mike,
    I checked the directory according to the steps. Both the path and the configure are correct. Let me express the problem more specifically:
    1.Start to compile, the client displays�Successfully started compile�
    2.Several seconds later, the server displays�Unable to spawn compiler�
    3.Then the client displays"Board clock of 40MHz Met:No(0MHz)"
    we checked the xflow.log file and it shows CompileServer got an error when calling Xilinx compile tools.
    It seems that the error is caused by inexsitence of file toplevel_gen.prj.
    Could you give me more help?Thank you
    Best reguards,
    Yang Xin

  • BUG. 10.1.3.EA: Internal Compilation error. Large project.

    I tried to compile large project (~4,000 classes) using extenal "javac" compiler and 1.4.2 JDK. When I "clean the project" and then run "make" the follwoing error frequently ocures. Once it fails it's true both for entire project and if I try to compile a single class not depending on anything else. This makes me to beleive that the problem is not related to any particular class (also see notes below, looks like "javac" process doesn't even start).
    Compiling...
    Internal compilation error, terminated with a fatal exception
    It doesn't happen if I use "rebuild" function instead of "make". It doesn't happen always but most of the times. I tried different versions of 1.4.2 (02,03,04) and don't see any specific pattern.
    Also looks like once I "rebuild" the project, "make" runs ok.
    I run Task Monitor and here is what I found out:
    - CPU maxs out at 100% for about 10 - 15 % and then the error is reported;
    - Error is reported before "javac" process is started;
    - There is plenty of memory available. I have 1 G with 640 set as max for JDeveloper, but it doesn't exceed 400 MB.
    I compiled a smaller project (~1,000 files) and didn't have this problem.
    I wont' be able to send the sorce code but I can send project files if it helps.
    Is there any logging I could enable to get more information? Did anybody reported anything similar? Is there any configuration parameters I can play with?
    Thanks in advance,
    Noel.

    I run JDev using jdev.exe and here is a stack I got in console window. Any ideas?
    java.lang.IndexOutOfBoundsException
    at oracle.jdeveloper.compiler.InputReadTextBuffer.getString(InputReadTex
    tBuffer.java:109)
    at oracle.javatools.parser.java.v2.internal.parser.ParserLayer1b.set_com
    ment_value(ParserLayer1b.java:324)
    at oracle.javatools.parser.java.v2.internal.parser.ParserLayer1b.handleO
    neComment(ParserLayer1b.java:422)
    at oracle.javatools.parser.java.v2.internal.parser.ParserLayer1b.skipTok
    en(ParserLayer1b.java:486)
    at oracle.javatools.parser.java.v2.internal.parser.ParserLayer1a.nextTok
    en(ParserLayer1a.java:241)
    at oracle.javatools.parser.java.v2.internal.parser.ParserLayer5.ty_body_
    rhs(ParserLayer5.java:825)
    at oracle.javatools.parser.java.v2.internal.parser.ParserLayer5.ty_body(
    ParserLayer5.java:774)
    at oracle.javatools.parser.java.v2.internal.parser.ParserLayer5.ty_d(Par
    serLayer5.java:998)
    at oracle.javatools.parser.java.v2.internal.parser.ParserLayer5.compilat
    ion_unit(ParserLayer5.java:1097)
    at oracle.javatools.parser.java.v2.internal.parser.ParserDriver.parse(Pa
    rserDriver.java:37)
    at oracle.javatools.parser.java.v2.JavaParser.parse(JavaParser.java:85)
    at oracle.javatools.parser.java.v2.JavaParser.parse(JavaParser.java:71)
    at oracle.jdeveloper.compiler.DependencyProvider.updateData(DependencyPr
    ovider.java:440)
    at oracle.jdeveloper.compiler.Ojc.checkDependencies(Ojc.java:1147)
    at oracle.jdeveloper.compiler.Ojc.translate(Ojc.java:1197)
    at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.buildGrap
    h(UnifiedBuildSystem.java:299)
    at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.buildProj
    ectFiles(UnifiedBuildSystem.java:514)
    at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.buildAll(
    UnifiedBuildSystem.java:714)
    at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.run(Unifi
    edBuildSystem.java:884)

  • Mass Compiler Error 13

    Hello,
    We are mass compiling a solution on client machines. To do this we just select the current base directory and hit mass compiler. There are dll's, vi's and vit's in various subfolders that we need processed. This all seems to work fine, but we are getting the following error:
    #### Starting Mass Compile: Fri, Apr 07, 2006 5:28:42 PM
      Directory: "C:\TOMVIEW"
    CompileFolder: error 13 at C:\TOMVIEW\dll\gateway.dll
    CompileFolder: error 13 at C:\TOMVIEW\dll\gatewayfc.dll
    CompileFolder: error 13 at C:\TOMVIEW\dll\gatewaygJ.dll
    #### Finished Mass Compile: Fri, Apr 07, 2006 5:30:06 PM  
    The folder dll contains 28 different dll's (that are all referenced from various VI's).
    Question 1: Why is it doing anything at all with these dll's?
    Question 2: How can we prevent this error from occuring (it does not seem to have an effect anyway)?
    Question 3: Do we have a problem at all?
    Best wishes, Marcus
    Tomlab Optimization Inc.
    http://tomlab.biz
    [email protected]
    Marcus M. Edvall
    Tomlab Optimization Inc.
    855 Beech St #121
    San Diego, CA 92101-2886
    USA
    web: http://tomopt.com
    e-mail: [email protected]
    Office1: (619) 203-2037
    Office2: (619) 595-0472
    Fax: (619) 245-2476

    Hi Marcus
    The easiest solution is to move these dll's to another directory, next to the math compile path.
    The second best option is the filtering of the messages.
    The best solution is that someone within NI fixes this e.g. by giving you the opportunity to accept mass compile errors of a certain kind.
    At last somebody can write a new mass compile for you.
    In fact it is nothing more than traversing the directory tree and trying to compile each vi.
    I hope somebody that has the time and knowledge to help you will pick this up.
    greetings from the Netherlands

  • Error code 1127 when using teststand deployment utility

    I'm have installed on my pc Teststand 3.0 and labview 7.0 -this error occurs during build
    Error Code:1127
    Could not process LabVIEW VIs. Fix any broken VIs before rebuilding. LabVIEW error:
    Open VI Reference in TestStand - Dist Chg and Save VIs.vi->TestStand - Dist Build LLB Image.vi->TestStand - Build VI Distribution.vi->TestStand - Build VI Distribution AX Wrapper.vi->TestStand - Build VI Distribution AX Wrapper.vi.ProxyCaller

    >>>>>>>ok, I'm getting a different error code: error code 7 instead of a error code 1127 with the error:
    Error Code:7 Could not process LabVIEW VIs. Fix any broken VIs before rebuilding. LabVIEW
    error: Invoke Node in TestStand - Dist Cmp Settings to Disk Hier.vi->TestStand - Build VI
    Distribution.vi->TestStand - Build VI Distribution AX Wrapper.vi->TestStand - Build VI
    Distribution AX Wrapper.vi.ProxyCaller
    >>>>>>>>And I did a mass compile of the directory mentioned above and I got this error:
    #### Starting Mass Compile: Thu, Jul 15, 2004 9:44:04 PM
    Directory: "C:\Program Files\National Instruments\TestStand
    3.0\Components\NI\Tools\Deployment Utility"
    CompileFolder: error 13 at C:\Program Files\National Instruments\TestStand 3.0\Compon
    ents\NI\Tools\Deployment Utility\DeploymentUtility.exe
    #### Finished Mass Compile: Thu, Jul 15, 2004 9:44:17 PM

  • Ejbmodule error while building the external service app using web service

    Hi,
    I am new to SOA. I have developed an external service application using web service. While buiding the project i am getting the ejb module error which is mentioned below and the remaining five internal projects are getting deployed successfully. Can anyone help me out in resolving this issue.
    Apr 17, 2008 3:51:45 PM /userOut/Development Component (com.sap.ide.eclipse.component.provider.listener.DevConfListener) [Thread[ModalContext,5,main]] ERROR: user_example/ejbmodule: Build failed for sap.com/user_example/ejbmodule(MyComponents) in variant "default": Compile failed; see the compiler error output for details.
    Build log -
    Development Component Build (2008-04-17 15:51:39)
      Component name: user_example/ejbmodule
      Component vendor: sap.com
      SC compartment: MyComponents
      Configuration: LocalDevelopment
      Location: local
      Source code location: mzwrxw@w2mzwrxw01
      DC root folder: D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\
      DC type: J2EE
      DC subtype: EJBModule
      Host: w2mzwrxw01
    DC Model check:
       All used DCs are available locally
       validating dependency to build plugin "sap.com/tc/bi/bp/ejbmodule"
       validating dependency to  public part "default" of DC "sap.com/ejb20"
       validating dependency to  public part "default" of DC "sap.com/jdbc20"
       validating dependency to  public part "default" of DC "sap.com/jms"
       validating dependency to  public part "default" of DC "sap.com/tc/ddic/metamodel/content"
       validating dependency to  public part "CAFRuntimeAPI" of DC "sap.com/caf/runtime/impl"
       validating dependency to  public part "compilation" of DC "sap.com/caf/runtime/api"
       validating dependency to  public part "default" of DC "sap.com/bi/mmr/core"
       validating dependency to  public part "compilation" of DC "sap.com/caf/metamodel"
       validating dependency to  public part "default" of DC "sap.com/com.sap.security.api.sda"
       validating dependency to  public part "default" of DC "sap.com/tc/logging"
       validating dependency to  public part "default" of DC "sap.com/com.sap.exception"
       validating dependency to  public part "default" of DC "sap.com/com.sap.jdo"
       validating dependency to  public part "compilation" of DC "sap.com/bi/mmr/cwm_1.0_source"
       validating dependency to  public part "jmi" of DC "sap.com/bi/mmr/jmi"
       validating dependency to  public part "ClientApi" of DC "sap.com/caf/km.proxyjava"
       validating dependency to  public part "default" of DC "sap.com/bi/mmr/db"
       validating dependency to  public part "ClientAPI" of DC "sap.com/caf/runtime/security"
       validating dependency to  public part "ClientAPI" of DC "sap.com/caf/core/services"
       validating dependency to used DC "sap.com/caf/runtime/connectivity/base"
       validating dependency to used DC "sap.com/caf/runtime/connectivity"
       validating dependency to used DC "sap.com/applocking"
       validating dependency to  public part "default" of DC "sap.com/com.sap.engine.client.lib"
       validating dependency to  public part "default" of DC "sap.com/jta"
       DC model check OK
    Start build plugin:
       using build plugin: sap.com/tc/bi/bp/ejbmodule
       starting build plugin from : C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP_BUILDT\DCs\sap.com\tc\bi\bp\ejbmodule\_comp\gen\default\public\ejb\
    Build Plugin 'EJBModulePlugin', Version 7.00 SP 9 (NW04S_09_REL, built on 2006-10-25 22:26:50 CEST)
       development component:  user_example/ejbmodule (sap.com)
          software component:  MyComponents (demo.sap.com)
                    location:  local
                        type:  J2EE, subtype EJBModule
               build variant:  default
             source location:  mzwrxw@w2mzwrxw01
           plugin start time:  2008-04-17 15:51:39 GMT+05:30 (IST)
                     Java VM:  Java HotSpot(TM) Client VM, 1.4.2_09-b05 (Sun Microsystems Inc.)
    General options:
      convert *.xlf to *.properties: yes
      include sources for debugging: yes
    Source folder src exists but is empty.
    Plugin initialized in 0.187 seconds
    Preparing data context..
    No 'default' JDK defined, will use running VM.
    Data context prepared in 0.078 seconds
    Executing macro file..
      Using macro file:     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP_BUILDT\DCs\sap.com\tc\bi\bp\ejbmodule\_comp\gen\default\public\ejb\macros\build.vm
      Creating output file: D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\gen\default\logs\build.xml
    Macro file executed in 0.141 seconds
    Starting Ant..
      Using build file:     D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\gen\default\logs\build.xml
      Using build target:   build
      Generation folder:    D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\t\0C4E7D6DF04F4534176A82AEB939F6DA
      Using Ant version:    1.6.2
    compile:
          [echo] Starting Java compiler
          [echo] Settings:
          [echo]   debug:       on
          [echo]   optimize:    off
          [echo]   deprecation: off
          [echo]   verbose:     default
          [echo]   encoding:    UTF8
          [echo]   source:      default
          [echo]   target:      default
          [echo]   source path: D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule
          [echo]   class path:
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\tc\logging\_comp\gen\default\public\default\lib\java\logging.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\tc\logging\_comp\gen\default\public\default\lib\java\logging.perf.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP_JTECHS\DCs\sap.com\tc\ddic\metamodel\content\_comp\gen\default\public\default\lib\java\SapMetamodelDictionaryContent.zip
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP_JTECHS\DCs\sap.com\com.sap.jdo\_comp\gen\default\public\default\lib\java\jdo.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP_JTECHS\DCs\sap.com\com.sap.jdo\_comp\gen\default\public\default\lib\java\sapjdoapi.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\BI_UDI\DCs\sap.com\bi\mmr\jmi\_comp\gen\default\public\jmi\lib\java\sap.combimmrjmijmi.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\BI_UDI\DCs\sap.com\bi\mmr\core\_comp\gen\default\public\default\lib\java\sap.combimmrcoredefault.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\km.proxyjava\_comp\gen\default\public\ClientApi\lib\java\sap.comcafkm.proxyjava~ClientApi.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\applocking\_comp\gen\default\public\default\lib\java\applocking.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\applocking\_comp\gen\default\public\default\lib\java\frame.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\applocking\_comp\gen\default\public\default\lib\java\jdbc.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\metamodel\_comp\gen\default\public\compilation\lib\java\sap.comcafmetamodel.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\metamodel\_comp\gen\default\public\compilation\lib\java\sap.comcafmetamodel_JMI.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\metamodel\_comp\gen\default\public\compilation\lib\java\sap.comcafmetamodel_JMI_src.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\com.sap.engine.client.lib\_comp\gen\default\public\default\lib\java\sapj2eeclient.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\runtime\connectivity\base\_comp\gen\default\public\com.sap.caf.mp.base\lib\java\sap.comcafruntimeconnectivitybase~com.sap.caf.mp.base.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\runtime\security\_comp\gen\default\public\ClientAPI\lib\java\sap.comcafruntimesecurityClientAPI.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\runtime\api\_comp\gen\default\public\compilation\lib\java\sap.comcafruntimeapicompilation.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\jdbc20\_comp\gen\default\public\default\lib\java\jdbc.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\BI_UDI\DCs\sap.com\bi\mmr\cwm_1.0_source\_comp\gen\default\public\compilation\lib\java\sap.combimmr~cwm_1.0_source.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\BI_UDI\DCs\sap.com\bi\mmr\cwm_1.0_source\_comp\gen\default\public\compilation\lib\java\sap.combimmr~cwm_1.0_source_JMI.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\BI_UDI\DCs\sap.com\bi\mmr\cwm_1.0_source\_comp\gen\default\public\compilation\lib\java\sap.combimmr~cwm_1.0_source_JMI_src.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\runtime\impl\_comp\gen\default\public\CAFRuntimeAPI\lib\java\sap.comcafruntimeimplCAFRuntimeAPI.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\ejb20\_comp\gen\default\public\default\lib\java\ejb20.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\jms\_comp\gen\default\public\default\lib\java\jms.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\com.sap.security.api.sda\_comp\gen\default\public\default\lib\java\com.sap.security.api.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\com.sap.security.api.sda\_comp\gen\default\public\default\lib\java\com.sap.security.api.perm.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\jta\_comp\gen\default\public\default\lib\java\jta.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\core\services\_comp\gen\default\public\ClientAPI\lib\java\sap.comcafcoreservicesClientAPI.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\SAP-JEE\DCs\sap.com\com.sap.exception\_comp\gen\default\public\default\lib\java\exception.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\runtime\connectivity\_comp\gen\default\public\com.sap.caf.mp.core.api\lib\java\sap.comcafruntimeconnectivitycom.sap.caf.mp.core.api.jar
          [echo]     C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\BI_UDI\DCs\sap.com\bi\mmr\db\_comp\gen\default\public\default\lib\java\sap.combimmrdbdefault.jar
          [echo]   output dir:  D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\t\0C4E7D6DF04F4534176A82AEB939F6DA\classes
         [javac] Compiling 23 source files to D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\t\0C4E7D6DF04F4534176A82AEB939F6DA\classes
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:51: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]         com.sap.caf.rt.util.CAFPublicLogger.entering(user, user.JARM_REQUEST, method, userServiceBean.location, new java.lang.Object[] , com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:81: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]             com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                   ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:92: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]             com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                   ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:96: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]         com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, new java.lang.Object[] , com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                               ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:105: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.entering(user, user.JARM_REQUEST, method, userServiceBean.location, new java.lang.Object[] , com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                        ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:115: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]                com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                               ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:126: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]                com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                               ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:131: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, new java.lang.Object[] , com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                       ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:139: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.entering(user, user.JARM_REQUEST, method, userServiceBean.location, new java.lang.Object[] , com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                        ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:154: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]                com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                               ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:159: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                       ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:165: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.entering(user, user.JARM_REQUEST, method, userServiceBean.location, new java.lang.Object[] , com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                        ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:186: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]                    com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                                ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:200: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]                    com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                                ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:206: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                       ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:213: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.entering(user, user.JARM_REQUEST, method, userServiceBean.location, new java.lang.Object[] , com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                        ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:233: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]             com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                   ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:244: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]             com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                   ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:254: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]         com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                               ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:261: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]         com.sap.caf.rt.util.CAFPublicLogger.entering(user, user.JARM_REQUEST, method, userServiceBean.location, new java.lang.Object[] , com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:270: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]                com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                       ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:281: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]                  com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                               ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:288: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]          com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, new java.lang.Object[] , com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                               ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:295: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]         com.sap.caf.rt.util.CAFPublicLogger.entering(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:300: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                       ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:308: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.entering(user, user.JARM_REQUEST, method, userServiceBean.location, new java.lang.Object[] , com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                        ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:370: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]                com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                               ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:462: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.entering(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                        ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:477: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]                com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                               ^
         [javac] D:\Documents and Settings\mzwrxw\.dtc\LocalDevelopment\DCs\sap.com\user_example\ejbmodule\_comp\ejbModule\com\sap\user_example\besrv\user\userServiceBean.java:482: cannot resolve symbol
         [javac] symbol  : variable JARM_REQUEST
         [javac] location: class java.lang.String
         [javac]           com.sap.caf.rt.util.CAFPublicLogger.exiting(user, user.JARM_REQUEST, method, userServiceBean.location, com.sap.caf.rt.util.CAFPublicLogger.LEVEL_MEDIUM);
         [javac]                                                                       ^
         [javac] 30 errors
    Ant runtime 4.984 seconds
    Ant build finished with ERRORS
    Compile failed; see the compiler error output for details.
    Error: Build stopped due to an error: Compile failed; see the compiler error output for details.
    Build plugin finished at 2008-04-17 15:51:45 GMT+05:30 (IST)
    Total build plugin runtime: 5.515 seconds
    Build finished with ERROR
    Thanks,
    Madhavi

    HI
    i used the below line of code to log the info
    com.sap.caf.rt.util.CAFPublicLogger.entering(CAF_user, WTCServiceBean.JARM_REQUEST, CAF_methodHeader, WTCServiceBean.location, CAF_parameters);
    But , can anyone suggest ,where can i seee this log msg.
    Any pointers would be highly appreciated.
    Thanks

  • Error while migrating PAR 7.0 to 7.4

    Hi Experts,
    As we are migrating form EP 7.0 to EP 7.4 .
    I got ear file from Par migration tool.
    Importing ear in nwds 7.3 and resolving error , I deploy the ear in portal it is working fine.
    But when i migrate the web Project to Web dc in Track . It is showing errors at build time but in Java files there is no  Red mark .
    To resolve errors i have created External Library and ear for External and add the htmlb_api.jar as public part . and Define dependecy in Web dc but it is still showing errors.
    Build File is below
    Development Component Build (2014-05-31 12:00:27 GMT+05:30 (IST))
      Component name: appls/usefullink_d0_newnwdidc_web
      Component vendor: adani.com
      SC compartment: com.adani_ADANI_PAR_1
      Configuration: EP1_ESS_D
      Location: EP1_ESS_D
      Source code location: http://aimdmp:50100/dtr/ws/ESS/com.adani_ADANI_PAR/dev/inactive/DCs/adani.com/appls/usefullink_d0_newnwdidc_web/_comp/
      DC root folder: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\
      DC type: Java
      Host: ADMINIB-9G29PH6
    DC Model check:
       DC is available locally
       validating dependency to build plugin "sap.com/tc/bi/bp/javaLib"
       validating dependency to  public part "api" of DC "adani.com/appls/externallib"
       validating dependency to  public part "archives" of DC "adani.com/appls/externallib"
       validating dependency to  public part "extlib_assembly" of DC "adani.com/appls/externallib"
       validating dependency to  public part "extlib_compilation" of DC "adani.com/appls/externallib"
       validating dependency to used DC "adani.com/appls/extlibear"
       validating dependency to  public part "extlibear_assembly" of DC "adani.com/appls/extlibear"
       DC model check OK
    Start build plugin:
       using build plugin: sap.com/tc/bi/bp/javaLib
       starting build plugin from : C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\sap.com\tc\bi\bp\javaLib\_comp\gen\default\public\saplib\
    Build Plugin 'JavaPlugin', Version 7.30 SP 5 (NW731CORE_10_REL, built on 2013-11-30 00:01:40 +0100, CL166627)
       development component:  appls/usefullink_d0_newnwdidc_web (adani.com)
          software component:  ADANI_PAR (com.adani)
                    location:  EP1_ESS_D
                        type:  Java
               build variant:  default
             source location:  http://aimdmp:50100/dtr/ws/ESS/com.adani_ADANI_PAR/dev/inactive/
             output location:  C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\t2\467E48D66F1396B5F9AE0955FA811780\default
           generation folder:  C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\t\467E48D66F1396B5F9AE0955FA811780
           plugin start time:  2014-05-31 12:00:28 GMT+05:30 (IST)
                     Java VM:  SAP Java Server VM, 6.1.066 24.55-b13 (1.6, SAP AG)
    General options:
      convert *.xlf to *.properties: yes
      include sources for debugging: yes
    Package folder ".apt_generated" exists but is empty and will be ignored.
    Checking path lengths for sources
    Path length checks finished in 0 seconds
    Preparing data context..
    Data context preparation finished in 0.015 seconds
    Creating Ant build file..
      Creating output file: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\t2\467E48D66F1396B5F9AE0955FA811780\default\logs\build.xml
      Using Java class:     com.sap.tc.buildplugin.BuildJavaLib
    Build file creation finished in 0.063 seconds
    Starting Ant..
      Using build file:     C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\t2\467E48D66F1396B5F9AE0955FA811780\default\logs\build.xml
      Using build target:   build
      Using Ant version:    1.7.1
    compile:
          [echo] Starting Java compiler using the current JVM
          [echo] Settings:
          [echo]         debug: on
          [echo]      optimize: off
          [echo]   deprecation: default
          [echo]       verbose: default
          [echo]      encoding: UTF-8
          [echo]        source: 1.6
          [echo]        target: 1.6
          [echo]   source path: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src
          [echo]    class path: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\externallib\_comp\gen\default\public\extlib_compilation\lib\java\com.sap.portal.htmlb_api.jar
          [echo]    output dir: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\t\467E48D66F1396B5F9AE0955FA811780\classes
         [javac] Compiling 7 source files to C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\t\467E48D66F1396B5F9AE0955FA811780\classes
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Alert.java:3: package com.sapportals.portal.prt.component does not exist
         [javac] ERROR: import com.sapportals.portal.prt.component.*;
         [javac] ERROR: ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Alert.java:4: package com.sapportals.portal.prt.resource does not exist
         [javac] ERROR: import com.sapportals.portal.prt.resource.IResource;
         [javac] ERROR:                                          ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Alert.java:6: cannot find symbol
         [javac] ERROR: symbol: class AbstractPortalComponent
         [javac] ERROR: public class Alert extends AbstractPortalComponent
         [javac] ERROR:                            ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Alert.java:8: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentRequest
         [javac] ERROR: location: class com.adani.usefullink.Alert
         [javac] ERROR:     public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
         [javac] ERROR:                           ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Alert.java:8: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentResponse
         [javac] ERROR: location: class com.adani.usefullink.Alert
         [javac] ERROR:     public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
         [javac] ERROR:                                                            ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:3: package javax.servlet.http does not exist
         [javac] ERROR: import javax.servlet.http.HttpSession;
         [javac] ERROR:                          ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:9: package com.sapportals.portal.prt.component does not exist
         [javac] ERROR: import com.sapportals.portal.prt.component.IPortalComponentContext;
         [javac] ERROR:                                           ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:10: package com.sapportals.portal.prt.component does not exist
         [javac] ERROR: import com.sapportals.portal.prt.component.IPortalComponentRequest;
         [javac] ERROR:                                           ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:11: package com.sapportals.portal.prt.component does not exist
         [javac] ERROR: import com.sapportals.portal.prt.component.IPortalComponentResponse;
         [javac] ERROR:                                           ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:13: cannot access com.sapportals.portal.prt.component.AbstractPortalComponent
         [javac] ERROR: class file for com.sapportals.portal.prt.component.AbstractPortalComponent not found
         [javac] ERROR: public class Userful extends PageProcessorComponent {
         [javac] ERROR:        ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:18: cannot find symbol
         [javac] ERROR: symbol  : class HttpSession
         [javac] ERROR: location: class com.adani.usefullink.Userful
         [javac] ERROR:     static HttpSession session;
         [javac] ERROR:            ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userlinkformail.java:15: package com.sap.security.api does not exist
         [javac] ERROR: import com.sap.security.api.IUser;
         [javac] ERROR:                            ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userlinkformail.java:20: package com.sapportals.portal.prt.component does not exist
         [javac] ERROR: import com.sapportals.portal.prt.component.IPortalComponentContext;
         [javac] ERROR:                                           ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userlinkformail.java:23: package com.sapportals.portal.prt.runtime does not exist
         [javac] ERROR: import com.sapportals.portal.prt.runtime.PortalRuntime;
         [javac] ERROR:                                         ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\usefullinknew.java:4: package javax.servlet.http does not exist
         [javac] ERROR: import javax.servlet.http.HttpSession;
         [javac] ERROR:                          ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\usefullinknew.java:7: package com.sapportals.connector.connection does not exist
         [javac] ERROR: import com.sapportals.connector.connection.IConnection;
         [javac] ERROR:                                           ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\usefullinknew.java:12: package com.sapportals.portal.prt.component does not exist
         [javac] ERROR: import com.sapportals.portal.prt.component.IPortalComponentContext;
         [javac] ERROR:                                           ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\usefullinknew.java:20: cannot find symbol
         [javac] ERROR: symbol  : class HttpSession
         [javac] ERROR: location: class com.adani.usefullink.usefullinknew
         [javac] ERROR:       static HttpSession session;
         [javac] ERROR:              ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Alert.java:11: cannot find symbol
         [javac] ERROR: symbol  : class IResource
         [javac] ERROR: location: class com.adani.usefullink.Alert
         [javac] ERROR:         IResource jspResource  = request.getResource(IResource.JSP,"jsp/"+request.getParameter("page"));
         [javac] ERROR:         ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Alert.java:11: cannot find symbol
         [javac] ERROR: symbol  : variable IResource
         [javac] ERROR: location: class com.adani.usefullink.Alert
         [javac] ERROR:         IResource jspResource  = request.getResource(IResource.JSP,"jsp/"+request.getParameter("page"));
         [javac] ERROR:                                                      ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:29: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentRequest
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:         IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
         [javac] ERROR:         ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:29: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentRequest
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:         IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
         [javac] ERROR:                                            ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:30: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentResponse
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:         IPortalComponentResponse response = (IPortalComponentResponse) this.getResponse();
         [javac] ERROR:         ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:30: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentResponse
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:         IPortalComponentResponse response = (IPortalComponentResponse) this.getResponse();
         [javac] ERROR:                                              ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:35: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentRequest
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:         IPortalComponentRequest req = (IPortalComponentRequest) this.getRequest();
         [javac] ERROR:         ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:35: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentRequest
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:         IPortalComponentRequest req = (IPortalComponentRequest) this.getRequest();
         [javac] ERROR:                                        ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:65: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentContext
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:       IPortalComponentContext ctxt = ((IPortalComponentRequest)getRequest()).getComponentContext();
         [javac] ERROR:       ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:65: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentRequest
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:       IPortalComponentContext ctxt = ((IPortalComponentRequest)getRequest()).getComponentContext();
         [javac] ERROR:                                        ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:155: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentRequest
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:     IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
         [javac] ERROR:     ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:155: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentRequest
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:     IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
         [javac] ERROR:                                        ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:156: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentResponse
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:     IPortalComponentResponse response = (IPortalComponentResponse) this.getResponse();
         [javac] ERROR:     ^
         [javac] ERROR: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\src\com\adani\usefullink\Userful.java:156: cannot find symbol
         [javac] ERROR: symbol  : class IPortalComponentResponse
         [javac] ERROR: location: class com.adani.usefullink.Userful.UserfulDynPage
         [javac] ERROR:     IPortalComponentResponse response = (IPortalComponentResponse) this.getResponse();
         [javac] ERROR:                                          ^
    Ant runtime 0.421 seconds
    Ant build finished with ERRORS
    Compile failed; see the compiler error output for details.
    Build stopped due to an error: Compile failed; see the compiler error output for details.
    Build plugin finished at 2014-05-31 12:00:29 GMT+05:30 (IST)
    Total build plugin runtime: 1.732 seconds
    Build finished with ERROR
    ==== Post-Processing ====   started at 2014-05-31 12:00:29.905 IST
    Copy the build logs
      from: C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\t2\467E48D66F1396B5F9AE0955FA811780\default\logs\
      to:   C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\gen\default\logs\
    Build results in folder C:\Users\IBM_ADMIN\Desktop\Jayesh\nwds-extsoa-7.3-EHP1-SP11-PAT0002-win32\eclipse\workspace.jdi\0\DCs\adani.com\appls\usefullink_d0_newnwdidc_web\_comp\gen\default\ remain unchanged.

    What was the issue? Is your SAP now up?
    >in Management console disp+exe is not turning to gree, its in yellow color from long time
    for this if you search on marketplace you will get notes, and this issues already discussed many times. Hence request you to search.
    Check https://service.sap.com/sap/support/notes/72248

  • Error when Building Simple Project

    Hello Community!
    I am developing a new project in the NWDS / NWDI by [this tutorial.[http://help.sap.com/saphelp_nw70/helpdata/en/44/0d18d725301a78e10000000a1553f6/frameset.htm].
    When I am in the Java Perspective and in the Java DC Explorer and want to build my DC (Right Click -> Development Component -> Build...), II always get this error prompt:
    - I have tried out many different versions of the JDK, but nothing works.
    - I have also done [this step|http://www.drftpd.org/forums/viewtopic.php?f=5&t=2978]
    Can you help me?
    10.10.2011 11:31:22 /userOut/Development Component (com.sap.ide.eclipse.component.provider.listener.DevConfListener) [Thread[ModalContext,5,main]] ERROR: test/tax/calc: Build failed for vwg.audi.in/test/tax/calc(vwg.audi.in_APPLICATION_1) in variant "default": The Build terminated with errors
    ------------------------------------- Build log ------------------------------------------------------
    Development Component Build (2011-10-10 11:31:22)
      Component name: test/tax/calc
      Component vendor: vwg.audi.in
      SC compartment: vwg.audi.in_APPLICATION_1
      Configuration: AZB_APPLFIN_D
      Location: AZB_APPLFIN_D
      Source code location: http://isazbdbz:54400/dtr/ws/APPLFIN/vwg.audi.in_APPLICATION/dev/inactive/DCs/vwg.audi.in/test/tax/calc/_comp/
      DC root folder: C:\Dokumente und Einstellungen\UO94F87\.dtc\0\DCs\vwg.audi.in\test\tax\calc\_comp\
      DC type: Java
      Host: audiinc07394527
    DC Model check:
       All used DCs are available locally
       validating dependency to build plugin "sap.com/tc/bi/bp/javaLib"
       DC model check OK
    Start build plugin:
       using build plugin: sap.com/tc/bi/bp/javaLib
       starting build plugin from : C:\Dokumente und Einstellungen\UO94F87\.dtc\0\DCs\sap.com\tc\bi\bp\javaLib\_comp\gen\default\public\saplib\
    Build Plugin 'JavaPlugin', Version 7.00 SP 15 (645_VAL_REL, built on 2008-02-16 00:52:15 CET, CL79160)
       development component:  test/tax/calc (vwg.audi.in)
          software component:  APPLICATION (vwg.audi.in)
                    location:  AZB_APPLFIN_D
                        type:  Java
               build variant:  default
             output location:  C:\Dokumente und Einstellungen\UO94F87\.dtc\0\DCs\vwg.audi.in\test\tax\calc\_comp\gen\default
           generation folder:  C:\Dokumente und Einstellungen\UO94F87\.dtc\0\t\38AAC310BC92CAB879CB0B2FFFDE0EF0
           plugin start time:  2011-10-10 11:31:22 GMT+01:00 (CEST)
                     Java VM:  Java HotSpot(TM) Client VM, 10.0-b22 (Sun Microsystems Inc.)
    General options:
      convert *.xlf to *.properties: yes
      include sources for debugging: yes
    Checking path lengths for sources
    Path length checks finished in 0 seconds
    Preparing data context..
    No 'default' JDK defined, will use running VM.
    Warning: Did not find any tools.jar in C:\Programme\Java\jre1.6.0_06
    Data context preparation finished in 0.031 seconds
    Creating Ant build file..
      Creating output file: C:\Dokumente und Einstellungen\UO94F87\.dtc\0\DCs\vwg.audi.in\test\tax\calc\_comp\gen\default\logs\build.xml
      Using macro file:     C:\Dokumente und Einstellungen\UO94F87\.dtc\0\DCs\sap.com\tc\bi\bp\javaLib\_comp\gen\default\public\saplib\macros\build.vm
    Build file creation finished in 0.078 seconds
    Starting Ant..
      Using build file:     C:\Dokumente und Einstellungen\UO94F87\.dtc\0\DCs\vwg.audi.in\test\tax\calc\_comp\gen\default\logs\build.xml
      Using build target:   build
      Using Ant version:    1.6.2
    compile:
          [echo] Starting Java compiler
          [echo] Settings:
          [echo]         debug: on
          [echo]      optimize: off
          [echo]   deprecation: default
          [echo]       verbose: default
          [echo]      encoding: UTF8
          [echo]        source: default
          [echo]        target: default
          [echo]   source path: C:\Dokumente und Einstellungen\UO94F87\.dtc\0\DCs\vwg.audi.in\test\tax\calc\_comp\src\packages
          [echo]    class path: none
          [echo]    output dir: C:\Dokumente und Einstellungen\UO94F87\.dtc\0\t\38AAC310BC92CAB879CB0B2FFFDE0EF0\classes
         [javac] Compiling 3 source files to C:\Dokumente und Einstellungen\UO94F87\.dtc\0\t\38AAC310BC92CAB879CB0B2FFFDE0EF0\classes
    Error: C:\Dokumente und Einstellungen\UO94F87\.dtc\0\DCs\vwg.audi.in\test\tax\calc\_comp\gen\default\logs\build.xml:74: Unable to find a javac compiler;
    com.sun.tools.javac.Main is not on the classpath.
    Perhaps JAVA_HOME does not point to the JDK
         at org.apache.tools.ant.taskdefs.compilers.CompilerAdapterFactory.getCompiler(CompilerAdapterFactory.java:105)
         at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:929)
         at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:758)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1214)
         at com.sap.tc.buildplugin.techdev.ant.util.AntRunner.run(AntRunner.java:116)
         at com.sap.tc.buildplugin.DefaultAntBuildAction.execute(DefaultAntBuildAction.java:58)
         at com.sap.tc.buildplugin.DefaultPlugin.handleBuildStepSequence(DefaultPlugin.java:196)
         at com.sap.tc.buildplugin.DefaultPlugin.performBuild(DefaultPlugin.java:168)
         at com.sap.tc.buildplugin.DefaultPluginV3Delegate$BuildRequestHandler.handle(DefaultPluginV3Delegate.java:66)
         at com.sap.tc.buildplugin.DefaultPluginV3Delegate.requestV3(DefaultPluginV3Delegate.java:48)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.sap.tc.buildtool.v2.impl.PluginHandler2.maybeInvoke(PluginHandler2.java:350)
         at com.sap.tc.buildtool.v2.impl.PluginHandler2.request(PluginHandler2.java:99)
         at com.sap.tc.buildtool.v2.impl.PluginHandler2.build(PluginHandler2.java:73)
         at com.sap.tc.buildtool.PluginHandler2Wrapper.execute(PluginHandler2Wrapper.java:59)
         at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1750)
         at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:6004)
         at com.sap.ide.eclipse.component.provider.actions.dcproject.BuildAction.buildDCsForDevConfig(BuildAction.java:307)
         at com.sap.ide.eclipse.component.provider.actions.dcproject.BuildAction.access$200(BuildAction.java:58)
         at com.sap.ide.eclipse.component.provider.actions.dcproject.BuildAction$1.run(BuildAction.java:212)
         at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:101)
    Ant runtime 0.172 seconds
    Ant build finished with ERRORS
    Unable to find a javac compiler;
    com.sun.tools.javac.Main is not on the classpath.
    Perhaps JAVA_HOME does not point to the JDK
    Error: Build stopped due to an error: Unable to find a javac compiler;
    com.sun.tools.javac.Main is not on the classpath.
    Perhaps JAVA_HOME does not point to the JDK
    Build plugin finished at 2011-10-10 11:31:22 GMT+01:00 (CEST)
    Total build plugin runtime: 0.485 seconds
    Build finished with ERROR

    @ John Wu!
    You are right!
    I have solved my problem.
    Thank yoo for your helpful answer.
    I use NWDI 7.01 SP7 and JDK 1.5 / 5.
    So I replaced only:
    C:\Programme\SAP\IDE\IDE70\eclipse\SapIde.exe -vm "C:\Programme\Java\JDK1.5\jdk\bin\javaw.exe"
    And now it works fine

Maybe you are looking for

  • Criaçao de pedidos de compra MM mediates SKUs.

    Olá Pessoal, Estou em um projeto de implementação e estou com um problema na parte de Materiais MM. Quando se cria uma ordem de compra em  SAP, criamos mediantes SKU, e quando fazemos a entrada de mercadorias com MIGO,  é feita em base a (Nota fiscal

  • Running multiple batch actions on the same folder?

    We run Actions on a group of images using CS4 with the File->Automate->Batch function. We use this to take, for example, 200 images from a set folder, run an action to change them into a different colour and save in a different folder, we need to do

  • Photoshop Elements don't start

    When I connect my camera or  cardreader with my notebook, Windows 8 asks me what i want. I want to open with PSE 12. But then nothngs happens... Even when I start photodownloader manually (map PSE program files) nothing happens. When I start PSE orga

  • When creating po, pop up error message 'address doesn't exist'.

    when creating po via me21n, when click delivery tab screen, pop up error message dialog box 'address doesn't exist T001 wsu20 00010'. message no is 'am010'. then i was forced to  exit transaction. ps: 'su20' is my plant, but in me21n, when selecting

  • How to play Google in background with screen off

    TTrying to play radio shows off Google with screen off it was working yesterday now it has stopped ... Hoe to get it working again