Starting bundled Tomcat without Netbeans

Hi,
I need to start the bundled Tomcat with Netbeans without actually starting Netbeans and rightcliking in Servers->Start Server eventually even put it at the startup of my computer. Anybody can help me do that?

Bundled tomcat is usually installed within the ide installation directory structure. For instance, if you are using Java Studio Enterprise 8.1, it is installed under <ide_install>/ide/enterprise2/jakarta-tomcat-5.5.9. For other ide versions, you can search the install dir for 'catalina.sh' to find out the directory.
To start the server outside the ide, move to the <tomcat_in_ide_install_dir>/bin. You should see the startup scripts/executables there.

Similar Messages

  • Log File in Bundled tomcat of netbeans ide 5.5

    I am not able to create log file in tomcat's log folder.
    The version i am using is 5.5.

    very vague. "I am not able" says absolutely nothing to me. Could you be a little more specific about what you are trying to do and how you are doing it?

  • Whenever I start the tomcat server, Im getting an error in netbeans?

    Whenever I start the tomcat server, Im getting an error in netbeans?
    Starting of Tomcat failed. '127.0.0.1' is not recognized as an internal or external command, operable program or batch file.
    Even I set the path & catalina_home in Environment variables. I start the startup.bat file and catalina.bat file also.
    I'm waiting for your quick response.

    Hi Ershad,
    I think this issue is more related to Apache Tomacat, I would suggest you ask in Apache Tomcat forum for a better support, it is appropriate and more experts will assist you.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Errors when using tomcat and netbeans combo.[Solved]

    Hi I'm trying to set up a netbeans/tomcat7 development environment for servlet development.
    I have tried this on 2 machines without any success.
    The steps I have followed are as follows.
    First I installed tomcat7 and netbeans from using pacman, then to be able to configure tomcat from netbeans I made the config files write permission 777, as it's just a development server security is not an issue.
    From there I started up netbeans started a new project and set the server to tomcat and pointed the Catalina home dir to /usr/share/tomcat7.
    When I try to run the example jsp project I get the following error:
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: java.lang.IllegalStateException: No Java compiler available
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:584)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:392)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:389)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:333)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
    root cause
    java.lang.IllegalStateException: No Java compiler available
    org.apache.jasper.JspCompilationContext.createCompiler(JspCompilationContext.java:226)
    org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:636)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:358)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:389)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:333)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
    I've spent the last couple of days trying to find any information on this but I cant find anything, so any advice would be much appreciated.
    Last edited by darkclown (2011-12-01 05:15:23)

    From the error, it appears that there is no JDK installed - only a JRE, could that be the case? If you do have a JDK installed, then Tomcat is not finding it.
    I would also not run this on the openJDK, in case you are doing that. I would use the proprietary Oracle/Sun JDK. It's in the AUR, or simply download it from Oracle.
    I was not even aware that netbeans and tomcat are available from pacman. I always "install" those myself manually (i.e. unpack them into a folder). They are simply Java apps that can be installed anywhere, as long as you point them to a valid JDK.

  • Starting of Tomcat failed

    I use NetBean 5.5, bundled Tomcat ( Tomcat buid in NetBean) and jdk 1.6
    Pleas help me to find the error.
    I created the following servlet:
    import java.io.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class FormServlet extends HttpServlet {
      public void doGet(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 " +
                                            "Transitional//EN\">\n" +
                    "<HTML>\n" +
                    "<HEAD><TITLE> FORM </TITLE></HEAD>\n" +
                    "<BODY>\n" +
                    "<H1> FORM </H1>\n" +
                    "<UL>\n" +
                    " <LI><B>param1</B>: "
                    + request.getParameter("param1") + "\n" +
                    " <LI><B>param2</B>: "
                    + request.getParameter("param2") + "\n" +
                    " <LI><B>param3</B>: "
                    + request.getParameter("param3") + "\n" +
                    "</UL>\n" +
                   "</BODY></HTML>");
    } The Servlet code should be correct because I copied it from tutorial
    the error is:
    init:
    deps-module-jar:
    deps-ear-jar:
    deps-jar:
    library-inclusion-in-archive:
    library-inclusion-in-manifest:
    compile:
    compile-jsps:
    do-dist:
    dist:
    Starting server Bundled Tomcat (5.5.17)
    Starting Tomcat process...
    Waiting for Tomcat...
    Starting of Tomcat failed.
    C:\Documents and Settings\Domenico\FormServlet\nbproject\build-impl.xml:440: Deployment error:
    Starting of Tomcat failed.
    See the server log for details.
    BUILD FAILED (total time: 9 seconds)

    sing CATALINA_BASE: C:\Documents and Settings\Domenico\.netbeans\5.5\apache-tomcat-5.5.17_base
    Using CATALINA_HOME: C:\Programmi\netbeans-5.5\enterprise3\apache-tomcat-5.5.17
    Using CATALINA_TMPDIR: C:\Documents and Settings\Domenico\.netbeans\5.5\apache-tomcat-5.5.17_base\temp
    Using JRE_HOME: C:\Programmi\Java\jdk1.6.0
    2-mag-2007 9.38.49 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
    INFO: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Programmi\Java\jdk1.6.0\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programmi\ATI Technologies\ATI Control Panel;C:\Programmi\QuickTime\QTSystem\
    2-mag-2007 9.38.49 org.apache.coyote.http11.Http11BaseProtocol init
    GRAVE: Error initializing endpoint
    java.net.SocketException: Invalid argument: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
    at java.net.ServerSocket.bind(ServerSocket.java:319)
    at java.net.ServerSocket.<init>(ServerSocket.java:185)
    at java.net.ServerSocket.<init>(ServerSocket.java:141)
    at org.apache.tomcat.util.net.DefaultServerSocketFactory.createSocket(DefaultServerSocketFactory.java:49)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.initEndpoint(PoolTcpEndpoint.java:292)
    at org.apache.coyote.http11.Http11BaseProtocol.init(Http11BaseProtocol.java:138)
    at org.apache.catalina.connector.Connector.initialize(Connector.java:1016)
    at org.apache.catalina.core.StandardService.initialize(StandardService.java:580)
    at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:791)
    at org.apache.catalina.startup.Catalina.load(Catalina.java:503)
    at org.apache.catalina.startup.Catalina.load(Catalina.java:523)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:266)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:431)
    2-mag-2007 9.38.49 org.apache.catalina.startup.Catalina load
    GRAVE: Catalina.start
    LifecycleException: Protocol handler initialization failed: java.net.SocketException: Invalid argument: JVM_Bind
    at org.apache.catalina.connector.Connector.initialize(Connector.java:1018)
    at org.apache.catalina.core.StandardService.initialize(StandardService.java:580)
    at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:791)
    at org.apache.catalina.startup.Catalina.load(Catalina.java:503)
    at org.apache.catalina.startup.Catalina.load(Catalina.java:523)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:266)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:431)
    2-mag-2007 9.38.49 org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 1110 ms
    2-mag-2007 9.38.50 org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    2-mag-2007 9.38.50 org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/5.5.17
    2-mag-2007 9.38.50 org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    2-mag-2007 9.38.51 org.apache.coyote.http11.Http11BaseProtocol start
    GRAVE: Error starting endpoint
    java.net.SocketException: Invalid argument: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
    at java.net.ServerSocket.bind(ServerSocket.java:319)
    at java.net.ServerSocket.<init>(ServerSocket.java:185)
    at java.net.ServerSocket.<init>(ServerSocket.java:141)
    at org.apache.tomcat.util.net.DefaultServerSocketFactory.createSocket(DefaultServerSocketFactory.java:49)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.initEndpoint(PoolTcpEndpoint.java:292)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.startEndpoint(PoolTcpEndpoint.java:312)
    at org.apache.coyote.http11.Http11BaseProtocol.start(Http11BaseProtocol.java:150)
    at org.apache.coyote.http11.Http11Protocol.start(Http11Protocol.java:75)
    at org.apache.catalina.connector.Connector.start(Connector.java:1089)
    at org.apache.catalina.core.StandardService.start(StandardService.java:459)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
    2-mag-2007 9.38.51 org.apache.catalina.startup.Catalina start
    GRAVE: Catalina.start:
    LifecycleException: service.getName(): "Catalina"; Protocol handler start failed: java.net.SocketException: Invalid argument: JVM_Bind
    at org.apache.catalina.connector.Connector.start(Connector.java:1096)
    at org.apache.catalina.core.StandardService.start(StandardService.java:459)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
    2-mag-2007 9.38.51 org.apache.catalina.startup.Catalina start
    INFO: Server startup in 1656 ms
    2-mag-2007 9.38.51 org.apache.catalina.core.StandardServer await
    GRAVE: StandardServer.await: create[8025]:
    java.net.SocketException: Invalid argument: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
    at java.net.ServerSocket.bind(ServerSocket.java:319)
    at java.net.ServerSocket.<init>(ServerSocket.java:185)
    at org.apache.catalina.core.StandardServer.await(StandardServer.java:372)
    at org.apache.catalina.startup.Catalina.await(Catalina.java:615)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:575)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)

  • "I just updated the software on my iphone 4 and prior to updating I could double click and start the camera without logging in, now I can't.  How do I fix?

    I just updated the software on my iphone 4 and prior to updating I could double click and start the camera without logging in, now I can't.  How do I fix?

    Nothing to fix...things have changed...slide the camera icon up now..no more double tap.

  • How do I start my MacBook without the Battery Installed

    My battery has started to Bulge and I am having the usual problems I have read about with this issue, the trackpad isn't working, premature shutdown, etc. I am living thousands of miles away from an Apple Store so I have given the battery to a friend to either get replaced or buy a new one. In the mean time I want to use the MBP without the battery. How do you start the MBP without the battery being installed?
    I know there will be a reduction in performance but I am not worried about that at the moment as I need some of the info of my hard disk. It can't run any slower than it is at the moment, it's dead.

    Kappy Thanks I have started it again. I actually found this thread and tried it yesterday before my question but nothing worked. I left the computer uplugged over night and thought I had nothing to lose so I tried it agian this morning and it actually worked this time. I only had to use the Restart (Control-Command-Power) option not the SMC reset. Leaving the power disconnected must have cleared something somewhere.
    Thanks again.

  • Bundled Tomcat File Structure and Sun Studio Enterprise 8

    I am having trouble using form authorization with Enterprise 8,
    the bundled Tomcat and MySql.
    Request clarification on what tomcat-users.xml is used by Ent 8.
    I see the following in my configuration:
    1) apache-tomcat-5.5.15-embed/conf/tomcat-users.xml
    2) apache-tomcat-5.5.15/conf/tomcat-users.xml
    3) C:\Program Files\Sun\jstudio_ent8\ide\enterprise1\jakarta-tomcat-5.5.7\conf\tomcat-users.xml
    4) C:\Document and Settings\motel\.jstudio\Ent8\jakarta-tomcat-5.5.7_base\conf\tomcat-users.xml
    I assume the first two are some type of windows cached.
    Further, #3 I assume is initial or default tomcat-user file.
    So is #4 the file that I want to edit so that my IDE can work with Tomcat?
    Thank you for any help and guidance,
    Craig

    I assume the first two are some type of windows cached.
    Further, #3 I assume is initial or default tomcat-user file.I would agree with you; regarding the first two files, it is not clear how they came about since they don't seem to be in either the ide directory or ide-user directory; and also because the directories seem to point to a different version of tomcat, namely 5.15 instead of the ide-bundled 5.7... It is even possible that the first two are not related to JSE ide at all...
    Regarding 3 and 4, your guess is right; 3 is the initial installation directory. This directory is not used by the ide at all for actually working with the tomcat server; this is because the ide-userdir is customizable via the command-line. You can have several user directories at the same time and switch between them by running './runide.exe -userdir <this-sessions-user-dir>'. Naturally the different sessions cannot use the same tomcat server since that would lead to conflicts. So the ide first copies the server installation to the current user directory and then runs the tomcat from there.

  • How can I start windows 8 without useing my password

    how can I start windows 8 without useing my password

    Hi,
    Review the information posted in this thread.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • How to start / stop nodes without domain-controller / automatically on Win?

    Hi,
    we have a distributed installation of CMSDK 9.0.4.
    We have installed a 9.2.0.4 Database on Solaris and we are using the 10g(9.0.4) Infrastructure on Solaris with it.
    The first installation of CMSDK uses a J2EE-MidTier installation on the Solaris server and contains the CMSDK domain controller and a normal node with nfs protocol server running.
    The other installations are done on Win2003 Blades. Currently we are using two Blades. On each there is a J2EE-MidTier installation and within these we have installed CMSDK with HTTP-Node and normal node. We are using NTFS-Server within the normal nodes.
    The Blades are within one Domain and we have NLB-Cluster activated for both.
    The whole thing sounds complex, but it works fine. We only have some trouble regarding start/stop of the nodes:
    1. If the solaris backend fails, our cluster-configuration tries to stop and start cmsdk. While stopping cmsdk, all nodes - even those on the Win-Servers - are stopped. But starting does not bring em up again automatically.
    2. If a Windows Server is booted, the normal node does not start automatically.
    3. If one Windows Server is not available, the ifsctl check takes a very long time because it's trying to get information from the missing one.
    Is there a way to restart the domain controller and node on solaris without stopping the nodes on Windows?
    How can we start the windows nodes automatically after reboot?
    Is there a way to probably start the nodes without being managed / guarded by the domain controller?
    Thanks for help,
    Alex

    Try adding this script to your /etc/init.d directory:
    #!/bin/sh
    ifsctl start << EOF
    <ifsctl password>
    EOF
    Replace <ifsctl password> with the password that you would give at the prompt.
    It will complain about Inappropriate ioctl for device, but it works.

  • STARTING UP TOMCAT ON REMOTE WIN2000 SERVER

    Hi all,
    i have the following problem and i was wondering if any of you has ever come across the same problem as me. I am trying to setup a server/client network. As you can imagine i need to startup tomcat by accessing the actual server machine from my own pc. however, as the startup is a batch file it cannot start up tomcat when you click on it from a different machine that does not have tomcat installed on it. Therefore it is unable to start tomcat remotely. Since, i also need to restart tomcat anytime i do any alterations on any of my files there is no way i can be physically going to the server room and restarting Tomcat manually.This is out of the question.
    Has anyone got any ideas as to how there is a way (if any) to start tomcat remotely on a win 2000 server machine?? By the way the version of tomcat i m using is Tomcat 4.1.29
    Please help

    Do i need to download a specific software for this
    application or does it come built in with tomcat?I am suggesting that you use Secure Shell to execute remote OS commands.
    This has nothing to do with java or tomcat.
    I have used the OpenSSH server (sshd) that comes with cygwin.
    You can get it from here http://www.cygwin.com just click there setup.exe install the default installation. You'll have some extra work to do to get the sshd to run as a service on your windows 2000 box, but it isn't as difficult as it use to be. Here's a good link http://tech.erdelynet.com/cygwin-sshd.html
    On your local system you can install cygwin and use its ssh clients (ssh/scp/sftp) or you can install something called PuTTy. Just do a google for PuTTy and you'll be able to figure it out.
    I have used both PuTTy and cygwin's clients.
    Can you be more specific on that .bat file i need to
    create???Well a batch file as you know is just a file containing a series of command-line commands.
    Once you got all your secure shell stuff installed and configured just work out what commands you wish to issue and store them in a .bat file.

  • Programmatically start/stop applications without admin server connection

    I know I can programmatically start/stop an application through WebLogic's deployment API, but the call needs to go through admin server. I was wondering if there's a way for an application to start/stop another application on the same managed server when the admin server is down. I remember a managed server could be started without an admin server (unless it's started for the first time). So I suppose there must be some way to programmatically start/stop local applications without an admin server as well.
    Thank you for your help in advance.

    Hai,
    I read the Oracle weblogic wlst script document without Admin server you cannot connect the managed server through the WLST script. see the below lines
    "The start command starts Managed Servers or clusters in a domain using Node Manager.
    To use the start command, WLST must be connected to a running Administration Server.
    To start Managed Servers without requiring a running Administration Server, use the
    nmStart command with WLST connected to Node Manager."
    "You shut down a server to which WLST is connected by entering the shutdown command
    without any arguments.
    When connected to a Managed Server instance, you only use the shutdown command to shut
    down the Managed Server instance to which WLST is connected; you cannot shut down another
    server while connected to a Managed Server instance.
    WLST uses Node Manager to shut down a Managed Server. When shutting down a Managed
    Server, Node Manager must be running.
    In the event of an error, the command returns"
    They are two option if you are using adminserver then we can stop the any Managed server.
    The option is if you are using the nodemanager without admin server we can stop the any Managed server.
    The last final solution to kill the particular Managed server pid.
    Regards,
    S.vinoth babu

  • Problem while starting Apache/Tomcat as a NT Service

    We are having a virtual folder which is mapped to a network physical folder.In this case while starting Apache/Tomcat as NT service it fails to map that folder.If we start the Tomcat as a Standalone service(using start menu) it works fine.I don't know which one is best whether starting tomcat as standalone or NT service.Provide a better solution

    You want to run it as an NT Service if you want Tomcat running when you are logged off. Otherwise, you can just run it manually.

  • I get a error when starting Apache Tomcat 6.0 service

    Hi Friends,
    I get a error when starting Apache Tomcat 6.0 service. Do you help me?
    Kind regards.
    Fatih Temiz
    First Step:
    Second Step:
    Thanks for helps...

    It seems like the JVM is pointing to incorrect .dll file.
    Goto Apache bin directory, and from there open Apache[version]W.exe
    Click the "Java" tab and ensure the first textbox "Java Virtual Machine" is pointed to the correct jvm.dll
    If it was pointed to the JDK then it is wrong. Repoint it to the jre jvm located at \jre6\bin\client\jvm.dll
    Let me know if it resolves the issue.

  • Start X11.app without xinerama

    Hi All,
    Does anybody know how to start X11.app without the xinerama option in Xquartz?
    Do I need to change the .xinitrc and how?
    Thank you in advance for the help.
    G5 Biproc 2GHz   Mac OS X (10.4.8)  

    Java applications will only work if the classpath is set properly. Thus if you double-click on a JAR (or something else associated with Java) you might find that nothing seems to happen. Usually it'll open a DOS windows, start Java, chuck an Error and close the window quickly.
    This doesn't mean that you should go round setting the system classpath to get all your applications to run - that's a recipe for disaster!
    Sometimes it's best just to create a new shortcut for your application, specifying the full Java command for running your application and click on that:
    javaw.exe -cp [your classpath here] MyMainClass
    or
    javaw.exe -cp [your classpath here] -jar MyMainJar.jar
    If the classpath gets long, though, this won't work 'cos Windows will only allow a certain length for the shortcut. You'll have to use an external file to list the classpath contents then. I doubt this will affect you yet, however.
    Hope this helps.

Maybe you are looking for

  • ACS SE 4.2, 802.1x and certificates for machine authentication

    I'm trying to figure out how to put this lot together, but dont know enough about ACS when used with an external CA. What I want to get working is: A PC with a machine cert gets connected to a switch running 802.1x. The switch uses EAP with .1x to qu

  • Class vs. interface casting

    This is a long read. But since I wrote test code and think its a ligit question: After compiling, if I move a *.class file to a different directory, casting with a class (but not an interface) fails. Please look at my test code to understand what I a

  • How do I change/upload my custom avatar?

    How do I change my avatar to the custom one? Not the one from these that are listed by default.

  • Other wireless devices couldn't not detect my iPhone as a hotspot

    Please help me how to get this working. Everything is working fine in my iPhone except the hotspot and I have tried all kinds of resets that I know of.

  • Where did the startup disk for Time Machine go?????

    The icon is not under devices or on desktop. When I clicked the circle with exclamation mark in the center on menu bar it indicated TM is turned on. I get the message that startup disk cannot be found. If you can help, please explain in a way that so