Autoexec.bat help

I've recently purchased a book called "Object-Oriented Programming With JAVA Second Edition" by Barry J. Holmes and Daniel T. Joyce. I've downloaded and installed version 1.2.2 of java because that is what the book refers to. That's no problem. I've also installed the avi package that came on cd with the book, that went well except for one thing, it asked me to edit my autoexec.bat file to tell the PC how to interact the two programs. I have no idea how to do this, although I do know where my autoexec.bat file is. This is what I have now:
SET PATH=%PATH%;C:\PROGRA~1\COMMON~1\AUTODE~1
This is what it says I need to have:
@C:\PROGRA~1\NORTON~1\NAVDX.EXE /Startup
set CLASSPATH=.;c:\
path=c:\jdk1.2.2\bin
Here's the instructions given to me:
Now that the SDK and the AVI package has been installed on your computer, you must set up your computer so that these programs can be located when needed. Use the NotePad utility to open the autoexec.bat file that is stored on your C drive. Amend the file to include the jdk1.1.2 directory in the path entry. Also include a CLASSPATH entry. The following listing of an autoexec.bat file illustrates how the path and CLASSPATH entries have been modified to include jdk1.2.2 and the avi package.
@C:\PROGRA~1\NORTON~1\NAVDX.EXE /Startup
set CLASSPATH=.;c:\
path=c:\jdk1.2.2\bin
The interpretation of the CLASSPATH entry follows. The pathways are separated by the semicolon, hence there are two pathways the computer should use when searching for the named packages. The first pathway is signified by the use of a period . which implies the current directory. The computer will search all subdirectories of the current subdirectory to find the subdirectory of the avi package.
The second pathway is signified by c:\ which is the root directory of the C drive. The computer will search all the subdirectories of the root directory to find the subdirectory of the avi package. If you use software that also requires a CLASSPATH entry, append the entry to the one shown here. Separate the entries with a semicolon, and only set the CLASSPATH once.
The path entry signifies where on the C drive the computer can find the Java development environment. Once again, if you use software that requires a path entry, append the entry to the one shown here, separating different pathnames by a semicolon.
Save the modified autoexec.bat file, and finally restart your computer.
Please help me.
Also, I'm new to this site, if there was a better place to post this, please let me know. Thanks.

thanks guys, it now works but I'm getting a strange error for the test code, here's the test code I was using:
// program to write the text literal "HELLO WORLD" centrally on the screen
import avi.*;
class Example_1
     public static void main(string[] args)
     // create a window object screen
     Window screen = new Window("Example_1.java","bold","red",72);
     screen.showWindow();
     screen.write("\\n\\n\\n\tab\tab\tab HELLO WORLD!");
The error it was giving me was:
class string not found on line 7 and it had a pointer looking at the 'm' in the "public static void main(string[] args) line. I did this in the command console using 'javac Example_1.java' command. Am I missing something?, or should I just start using something else? I've done C++ but this has me boggled.

Similar Messages

  • Editing autoexec.bat when setting up j2sdk

    I have grown tired of entering the full location of the Java executables, so I attempted to edit my autoexec.bat as documented on the j2sdk instructions. When I entered my sysedit, the autoexec.bat file had a message stating that that particular file was "created as a placeholder and the actual autoexec.bat file was stored under a file named autoexec.tsh." Does anyone know how to edit the path for this kind of file? Where do I find this file?
    Thanks in advance for the help.
    Frank

    Now, can I do the same for the classpath, since it is not declared? If so, what should my statement look like for the >classpath?The following is from an old response of mine re classpath.
    CLASSPATH contents depend totally on what you establish as your Java environment.
    A classpath value tells Java to look "here" for the files that you create and for the files that your files need during compiling and running. (Java knows where it's "own" files and jars are, we don't any longer have to tell it where to find them.)
    If no classpath variable is set. Java uses a default CLASSPATH of the current directory. Many people can run this way.
    If you set a classpath it cancels the default setting. Therefore, it's necessary to start it with a period, which represents the current directory. Use a semicolon to separate this and subsequent entries.
    Follow that with directory paths that point to directories that you want Java to search to find files and jars that you create or that applications need to use. Do NOT quote directory paths that include spaces, the quotes cause a problem.
    If Java needs a file or jar and it can't find it in one of the classpath entries, it will complain with a "classpath not found" error.
    Here's my SET CLASSPATH statement:
    SET CLASSPATH=.;C:\NetRexx\lib\NetRexxC.jar;C:\j2sdk1.4.0_01lib\tools.jar;C:\mnrx;C:\NetRexx\NrxRedBk
    The subject has quite a bit more meat to it. If you're interested, here's reading:
    http://java.sun.com/j2se/1.4/docs/tooldocs/windows/classpath.html
    http://java.sun.com/j2se/1.4/docs/tooldocs/findingclasses.html

  • AUTOEXEC.BAT PERMANENT PATH

    I downloaded J2SDK1.4.0 for windows 98 and it says to set the path permanently to AUTOEXEC.BAT file.I found the file ,opened it and this is what it reads : SETCLASSPATH=C:\ProgramFiles\PhotoDeluxe2.0\AdobeConnectables, in this path where do i insert \J2SDK1.4.0_<version number >\bin? <----is this typed right or do i leave out version number,do i need to add something else?please help if you can,im still new at this and i really want to learn all i can .Thank You

    The CLASSPATH is where the Java executable looks for the classes it needs. It already knows how to find the built-in classes, so you don't need to mess with that for now. The PATH is where Windows looks for the Java executable, and that's what you need to set. Just add this line to the end of your AUTOEXEC.BAT file:
    set PATH=C:\j2sdk1.4.0\bin;%PATH%...or wherever you installed it.

  • Autoexec.bat Not Being Executed

    I am able to invoke autoexec.bat from JAVA with
    Runtime rt = Runtime.getRuntime();
    Process p = rt.exec("c:\\autoexec.bat");
    where autoexec.bat is coded to compile a .java file, as in
    C:
    CD JDK1.4\BIN
    javac JavaClass.java
    This batch code runs fine if I manually run it from the command prompt. However, the trouble is that when I run it from Java, the command prompt shows up very briefly, then closes without executing the batch code. What is up?!

    So you don't have a JavaClass.class file when it's done? It seems to me that there are errors in the comiple, so no class file is generated. Have you tried to compile the file normally, and does it work? Also, make sure the CLASSPATH is correct for this batch file. For debugging, you should print the output like this:
    Runtime rt = Runtime.getRuntime();
    Process p = rt.exec("c:\\autoexec.bat");
    BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
    while((str = in.readLine()) != null)
        System.out.println(line);
    }

  • Running  .class file from autoexec.bat (in Windows Xp environment)

    How to run a .class file from autoexec.bat file. I have WinXP installed on my PC. I tried the solution given by Forum memebers but they didn't work.
    after setting the classpath
    i wrote
    java -cp simple in autoexec.bat , but results were not satisfactory.

    What does "not satisfactory" mean? If the commans works from any .bat file, it'll work from autoexec.bat, too.
    May I ask what you're trying to accomplish? I'm not sure whether XP dtill uses autoexec.bat for console initialization after all.

  • AUTOEXEC.BAT

    This is not properly Java question is something about the PC System.
    I have an eviroment variable in AUTOEXEC.BAT named BLASTER
    are we talking about BLaster Worm?? dont think its a enviroment var.

    Much more likely to be information about a Sound Blaster sound card. (And probably way obsolete).

  • Autoexec.bat problem

    I added the following line to my Autoexec.bat file. It still would not let me compile, and now it won't let me edit autoexec.bat. I keep getting Bad Command or Filename. When I rebooted, I had to cd\Windows, then key in Win to boot up. I think I really messed up my Autoexec.bat file.
    set path=c:\jdk1.3.1\bin;

    you needed to type this as
    set path=%PATH%;c:\jdk1.3\bin
    so that you suffix the existing PATH, not replace its valuable set of individual path entries. This is stated in the install docs, please read them carefully

  • Autoexec.bat, Environment settings and XP

    I'm running XP Home, and sdk1.4.1_02. Initially I modified autoexec.bat to include SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\j2sdk1.4.1_02\bin, but to understand the symbol javac, I'd have to c:/autoexec.bat. I read a few ealier postings of people having the same problem, and went to the control panel -> system -> environmental settings and added new definitions for PATH, CLASSPATH, J2EE_HOME and JAVA_HOME, and still the only way I get javac to be recognized it to execute autoexec.bat each time from the DOS prompt. What am I doing wrong? Thanks.

    winxp ignores autoexec on bootup (if it exists) as it merely a legacy thing and is looked upon by the system as just another batch file... u need to put the paths for the java bin and j2ee bin directories (as you have in the autoexec inside the PATH variable in your environment variables dialog...

  • JDBC MySQL connector & autoexec.bat

    This what I entered into my autoexec file but when I run my java program it gives me a 'no suitable driver' error. I do not know what I should be entering for the
    'CLASSPATH' in the autoexec. Below is what I entered. The file jar file is located in my C:\unzipped\mysql-connector-java-3.1.7/ folder.
    C:\unzipped\mysql-connector-java-3.1.7\mysql-connector-java-3.1.7-bin.jar%CLASSPATH%
    Can somebody with knowledge in installing the JDBC driver for MySQL give me some help please.

    This works perfectly in the Eclipse IDE area that I have but when I run the same program on the Net Beans 3.6 IDE area it gives me a 'not suitable driver' error. To note these are both on the same computer. I would really like to get the Net Beans 3.6 IDE working because that is what I am most familiar with using. If you know of the problem why one IDE area recognizes the driver where the next does not I would sure like to know. Somebody passed the idea that when the 3.6 area is executed there are multiple instances running and it resets the ClassPath(I think they where shooting in the dark but it is a lead none the less). Anyway if anybody has had this problem please enlighten me, Thank-You.
    The ClassPath is set to the following:
    ClassPath = C:\Program Files\Java\jdk1.5.0_02\lib;C:\unzipped\mysql-connector- java-3.1.7\mysql-connector-java-3.1.7;C:\Program Files
    \Java\jdk1.5.0_02\jre\lib\ext;
    This is the code:
    import java.sql.*;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    public class Connect2 {
         public static void main(String[] args) {
              try {
                   // The newInstance() call is a work around for some
                   // broken Java implementations
                   Class.forName("com.mysql.jdbc.Driver");
              } catch (Exception ex) {
                   System.out.println("HERE");
              try {
                   String url = "jdbc:mysql://localhost/test";
                   String username = "root";
                   String password = "password";
                   Connection conn = DriverManager.getConnection(
                             "jdbc:mysql://localhost/test", "root", "password");
                   Statement c = conn.createStatement();
                   c.execute("insert into green values('richmond')");
                   c.execute("select * from green");
                   ResultSet rs = c.getResultSet();
                   while (rs.next()) {
                        System.out.println(rs.getString(1));
                   // Do something with the Connection
              } catch (SQLException ex) {
                   // handle any errors
                   System.out.println("SQLException: " + ex.getMessage());
                   System.out.println("SQLState: " + ex.getSQLState());
                   System.out.println("VendorError: " + ex.getErrorCode());
    }

  • CssExport.bat help

    Hi,
    setting help for cssexport.bat
    importexport.properties File
    # export operations
    export.fileformat=xml
    export.file=C:/exportNew.xml
    export.internal.identities=true
    export.native.user.passwords=true
    export.provisioning.all=true
    export.delegated.lists=false
    export.user.filter=*@Native Directory
    export.group.filter=*@Native Directory
    export.role.filter=*
    export.producttype=HUB-9.2.0
    #export.provisioning.apps=(HUB=Global Roles)
    I want to export all user/group from MSAD and Native both.
    Should i use this:
    # export operations
    export.fileformat=xml
    export.file=C:/exportNew.xml
    export.internal.identities=true
    export.native.user.passwords=true
    export.provisioning.all=true
    export.delegated.lists=false
    export.user.filter=*
    export.group.filter=*
    export.role.filter=*
    export.producttype=HUB-9.2.0
    #export.provisioning.apps=(HUB=Global Roles)

    Hi John,
    For exporting all users/groups from MSAD and Native both should i use this settings in importexport.properties:
    export.user.filter=*
    export.group.filter=*

  • Simple java question, help please

    please help
    -i am just starting out in java and im havin an early problem. Im trying to run a small java script from a commant prompt but im getting the following error after i enter this command at my prompt
    c:\javatest>javac HelloARP.java
    javac is not as an internal or external command, operable program or batch file.
    when i enter
    c:\java -version
    i get the following message: registry key software\javasoft\java runtime enviornment\current version has value of 1.1 but 1.4 is requiured
    error: could not find java.dll
    error: could not find java 2 runtime enviornment
    -im sure this is a simple error on my part. all im trying to do is run my first lil program that i saved in notepad, its only 5 lines long. here is the lil test program im trying to execute
    class HelloARP {
    public static void main (String[] arguments) {
    System.out.println("What's good ARP?");
    - all responses and help are welcomed. Thank you ahead of time for anyone that can help me get started.

    Hi
    First of all uninstall your current JDK installation, if you can get to the registry delete the registry entries for the old version of java which was there on your machine.
    Now do a fresh install of your j2sdk1.4.1, make sure that you will install the JRE with the J2SDK1.4.1.
    Once you are done, set your classpath in autoexec.bat if you are using Windows 95/98
    or set your environment variables if you are using Win NT/2000/XP.
    If using solaris or other unix flavors see the included installation instructions provided.
    Let me if you face the same problem.
    Thanks
    Swaraj

  • How to set a class path in atuoexec.bat

    hello friends,
    How to set a classpath in autoexec.bat file. pls sent a path setting techniques to me.
    my JDK1.2 in "c dirve" so what can i do
    help me
    davipet

    What is your OS?
    If it is 95 or 98,
    add SET CLASSPATH=C:\Jdk1.2\lib\tools.jar;.; to your autoexec.bat file.

  • Any instance of time being displayed through Firefox is 5 hours off (+) (IE Comcast call time logs, every page print out, etc). IE and all other browers display correctly as is all of the time settings on my computer. Please help.

    Any instance of time being displayed when using Firefox show the time off by +5 hours. I am in Phila so use EST. Every other setting is correct in computer. For example time call log displayed from Comcast and every page footer shows time +5 hours. I have not found anything helpful in searching the web. I always check after each upgrade to Firefox but problem persists.

    Cor-el... The issue was in the autoexec.bat file. I did have the TZ set there. Removed and all is well.
    Thanks Much.
    -Bill

  • Urgent help: ERROR: STARTING J2EE 1.3.1

    Here is the message:
    Dear Sir or Madam:
    There is no way I get it run J2E1.3.1. I need it so desperately.
    THE OS is Windows XP Professional.
    Message is:
    C:\j2sdkee1.3.1\bin> j2ee -verbose
    Exception in thread "main" java.lang.NoClassDefFoundError: C:\j2sdkee1/3/1\lib\system\;;C:\j2sdk1/4/0_01\\lib\tools/jar;C:\j2sdkee1/3/1\\lib\jhall/jar
    C:\j2sdkee1.3.1\bin>
    May I say that the files lib\tools.jar and hall.jar do exist in their directories.
    I think the / are the actual .
    My autoexec.bat is as follows:
    SET SHELL=C:\MYPROG~1\RATIONAL\RATION~1\NUTCROOT\mksnt\sh.exe
    SET COMSPEC=C:\WINDOWS\COMMAND.COM
    SET windir=C:\WINDOWS
    SET winbootdir=C:\WINDOWS
    SET TMP=C:\WINDOWS\TEMP
    SET
    CLASSPATH=C:\j2sdkee1.3.1\bin;C:\j2sdk1.4.0_01\bin;C:\j2sdkee1.3.1\lib\j2ee.jar;C:\j2sdk1.4.0_01\lib\tools.jar;C:\Cloudscape3.6\lib\cloudscape.jar;C:\Cloudscape3.6\lib\tools.jar;C:\Cloudscape3.6\demo\programs\tours;.;C:\j2sdkee1.3.1\;C:\j2sdkee1.3.1\Iib\cloudscape\cloudclient.jar;C:\j2sdkee1.3.1\lib\cloudscape\cloudscape.jar;C:\j2sdkee1.3.1\lib\cloudscape\RmiJdbc.jar
    SET PROMPT=$p$g
    SET TEMP=C:\WINDOWS\TEMP
    SET HOME=C:\MYPROG~1\RATIONAL\RATION~1\NUTCROOT
    SET
    PATH=C:\J2SDKEE1.3.1\BIN;C:\J2SDK1.4.0_01\BIN;C:\PROGRA~1\COMMON~1\MICROS~1\MSINFO\;C:\MYPRO
    G~1\RATIONAL\CLEARQ~1;C:\ORAWIN95\BIN
    SET TMPDIR=C:\WINDOWS\TEMP
    SET ROOTDIR=C:\MYPROG~1\RATIONAL\RATION~1\NUTCROOT
    SET DISPLAY=:0.0
    My environment in xp using gui from my computer properties is :
    Environment Variables:
    User variables for ansar:
    Variable: J2EE_HOME
    Value: C:\j2sdkee1.3.1\
    Variable: JAVA_HOME
    Value: C\j2sdk1.4.0_01
    Variable: PATH
    Value: C:\j2sdk1.4.0_01\bin\
    System variables
    Variable: CLASSPATH
    Value: C:\j2sdkee1.3.1\bin;C:\j2sdk1.4.0_01\bin;C:\j2sdkee1.3.1\lib\j2ee.jar;C:\j2sdk1.4.0_01\lib\tools.jar;C:\Cloudscape3.6\lib\cloudscape.jar;C:\Cloudscape3.6\lib\tools.jar;C:\Cloudscape3.6\demo\programs\tours;.;C:\j2sdkee1.3.1;C:\j2sdkee1.3.1\Iib\cloudscape\client.jar;C:\j2sdkee1.3.1\lib\cloudscape\tools.jar;C:\j2sdkee1.3.1\lib\cloudscape\cloudscape.jar;C:\j2sdkee1.3.1\lib\cloudscape\RmiJdbc.jar;C:\j2sdkee1.3.1\lib\cloudscape\licence.jar
    Variable: Path
    Value: %SYSTEMROOT%\system32;C:\j2sdkee1.3.1\bin;C:\j2sdk1.4.0_01\bin;C:\PROGRA~1\COMMON~1\MICROS~1\MSINFO\;C:\MYPROG~1\RATIONAL\CLEARQ~1;C:\ORAWIN95\BIN;%SYSTEMROOT%;%SYSTEMROOT%\system32\WBEM
    Where system root is C:
    Also most of the files in J2EE1.3.1 BIN files hold the following J2EE_HOME AND JAVA_HOME configuration
    For instance: This is j2ee.bat file     
    @echo off
    SET JAVA_HOME=C:\j2sdk1.4.0_01\
    SET J2EE_HOME=C:\j2sdkee1.3.1\
    if not "%J2EE_HOME%" == "" goto CONT0
    echo ERROR: Set J2EE_HOME before running this script.
    goto END
    :CONT0
    if EXIST "%J2EE_HOME%\bin\setenv.bat" goto CONT1
    echo ERROR: Set J2EE_HOME to the path of a valid j2sdkee.
    goto END
    :CONT1
    call %J2EE_HOME%\bin\setenv.bat
    if not "%JAVA_HOME%" == "" goto CONT2
    echo ERROR: Set JAVA_HOME before running this script.
    goto END
    :CONT2
    if EXIST "%JAVA_HOME%\bin\java.exe" goto CONT3
    echo ERROR: Set JAVA_HOME to the path of a valid jdk.
    goto END
    :CONT3
    rem @echo on
    %JAVA_COMMAND% %LISTEN_OPTIONS% -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter -Dorg.xml.sax.driver=org.apache.crimson.parser.XMLReaderImpl -Djms.home=%JMS_HOME% -Dcom.sun.jms.service.jdbc.dbpath=%JMS_DB_PATH% -Djms.properties=%J2EE_HOME%\config\jms_service.properties -Djava.security.policy==%J2EE_HOME%\lib\security\server.policy -Djava.security.auth.login.config=%J2EE_HOME%\lib\security\serverlogin.config -Dcom.sun.enterprise.home=%J2EE_HOME% -classpath %CPATH% com.sun.enterprise.server.J2EEServer %*
    :END
    Help me please, because I want to use Sun�s Reference Implementation to do J2EE Development work. Without the server I cannot do anything.

    SET SHELL=C:\MYPROG~1\RATIONAL\RATION~1\NUTCROOT\mksnt\sh.exe
    SET COMSPEC=C:\WINDOWS\COMMAND.COM
    SET windir=C:\WINDOWS
    SET winbootdir=C:\WINDOWS
    SET TMP=C:\WINDOWS\TEMP
    ================================
    SET PROMPT=$p$g
    SET TEMP=C:\WINDOWS\TEMP
    SET HOME=C:\MYPROG~1\RATIONAL\RATION~1\NUTCROOT
    SET CLASSPATH=C:\j2sdkee1.3.1\bin;C:\j2sdk1.4.0_01\bin;C:\j2sdkee1.3.1\lib\j2ee.jar;C:\j2sdk1.4.0_01\lib\tools.jar;C:\Cloudscape3.6\lib\cloudscape.jar;C:\Cloudscape3.6\lib\tools.jar;C:\Cloudscape3.6\demo\programs\tours;.;C:\j2sdkee1.3.1\;C:\j2sdkee1.3.1\Iib\cloudscape\cloudclient.jar;C:\j2sdkee1.3.1\lib\cloudscape\cloudscape.jar;C:\j2sdkee1.3.1\lib\cloudscape\RmiJdbc.jar
    SET PATH=C:\j2sdk1.4.0_01\bin;.;C:\j2sdkee1.3.1\bin
    SET TMPDIR=C:\WINDOWS\TEMP
    SET ROOTDIR=C:\MYPROG~1\RATIONAL\RATION~1\NUTCROOT
    SET DISPLAY=:0.0
    ===================================
    Dear friends
    Even though I have this file details in autoexec.bat and under advanced section of my Properties (right click)in my Computer the exact info...the message appears to be the same..Is it th classpath or something else that I cannot figure it out...
    Your help would be appreciated...addressed to all of you wanting to help

  • Help for getting connection with oracle database

    Hello,
    i have a problem to connect my java program with oracle databse.
    i have oracle 8 release. i tried all my best to connect but i
    can't. please help me. whenever i compile JdbcCheckup.java file
    which is distributed with oracle 8 release, it compile successfully.
    but whenever i run JdbcCheckup class file then it will generate an
    exception and that is -
    Exception in thread "main" java.lang.ClassNotFoundException:
    oracle.jdbc.driver.OracleDriver
         at java.lang.class.forname0(native method)
         at java.lang.class.forname(unknown source)
    and some other error message.
    But, by following yours given instruction, first, i unzip CLASSES111.zip
    in file which is distributed with oracle 8 realease in jdbc subdirectory
    into c:\temp directory and then run oracle installer(setup.exe) and point
    the installer to c:\temp and then i install the oracle JDBC drivers(beta)
    7.3.3.1.3 from the jdbc subfolder into oracle installer by selecting
    win95.prd for jdbc subfolder.
    After that i write into my autoexec.bat file,
    path d:\jdk\lib;d:\jdk\bin;c:\windows\command;C:\temp\BIN;c:\temp\jdbc\lib\classes111.zip
    and then i restart the machine and the i complile and run JdbcCheckup file
    But, i can't recognize my error to define class path or installing the
    driver. please help me in details so that i overcome this problem.
    because i am student of B.sc. in CIS of final year. i need to submit
    my project within some days. please reply me as early as possible.
    thanks
    hemonto
    email - [email protected]

    path d:\jdk\lib;d:\jdk\bin;c:\windows\command;C:\temp\BIN;c:\temp\jdbc\lib\classes111.zipYou've added classes111.zip to your PATH, not your CLASSPATH.
    Add it to your CLASSPATH using:
    set CLASSPATH=%CLASSPATH%;c:\temp\jdbc\lib\classes111.zip
    then try to compile/run again.

Maybe you are looking for

  • Importing P2 .mxf files with audio into AE CS4

    I hope this isn't the ultimate newbie question but, I have been working with After Effects for a few months but haven't need audio until now. Is there a different process for importing/exporting with audio? I have brought in the P2 video file but I d

  • ORA-00972: identifier is too long

    Hi All, I get the error ORA-00972: identifier is too long during installation of NW2004s SR2 Java system with DI. This error is seen on the step Perform post load activites. i have made the changes as suggested by SAP note: 314671. But the error stil

  • Cann't launch the ADF Swing Project

    Hello, I have created java-application(swing,adf bc) in Jdev10.1.3, and created the Java Web Start(JNLP) files for the application ,run ant target: sign. it created all files ,build ok. but when I run the local.html in the Jdev1013, it open IE window

  • Restrict Repeating frame header to print once per page

    is there any way I can restrict the repeating group header to print only once per page, inspite of the fact that the group has now changed ??

  • Execution Error NW SP11.

    Hi, I have the following strange error after an upgrade to SP11. I have  a Constant.java file which contains all the constants of my application. The constants are refered in the my JSP file, I'm using a lot of constants in the same page, some of the