Clients can't start my JWS application - strange exception

My clients are having a problem - some of them can't launch my JWS application. The error is a "class not found" exception, even though the class is in one of the jar files. It only happens for some users.
Can someone from the JWS team look at this? Do you know what the problem might be?
The discussion about the problem is at http://rpischeduler.com/forums/viewtopic.php?t=18
Thanks!

Hi eww!
Yes, that is of course not a big issue. I just found this behaviour a bit unstable for being a Mac. I turned to Mac quite recently. I love it, but I am struggling a bit with some of the differences...
Thanks for your reply! At least I know I'm not alone experiencing this.

Similar Messages

  • Can not start remote X11 application by SSH

    Hi All,
    I'm now encountering  a problem of starting remote X11 application from my iMac to an IBM server by SSH.
    I login into the IBM server by this command: ssh -X -Y username@ibmserver, then I start an xterm, but I get an error message like this:
    xterm Xt error: Can't open display: 10.32.12.149:0
    However, I can start an 'xterm' using the same command to login into a Linux server (OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5).
    The SSH version of IBM SSH server is:
    OpenSSH_3.7.1p2-pwexp26_krb5, SSH protocols 1.5/2.0, OpenSSL 0.9.6m
    and the SSH version in iMac is:
    OpenSSH_5.2p1, OpenSSL 0.9.8l.
    Is this the problem of the SSH version?
    Can anybody give me some hints?
    Thank you very much!
    Rongur

    Do you have your own DISPLAY environment variable defined in as part of your IBM server login?
    When using ssh -X (or ssh -Y; you only need one or the other), your DISPLAY on the remote system (IBM) should look like:
    localhost:10
    localhost:11
    localhost:12
    etc...
    It should NOT have an IP address.
    The above is my best guess.
    The other less likely possibility is that you have created your own DISPLAY environment variable on your Mac, however, while that could screw up X11 usage with your Mac, it should NOT cause the error you specified to have anything other than "localhost:nnn".   Anyway, your Mac's DISPLAY environment variable should look like
    /tmp/launch-5cbXzq/org.x:0
    And is created by Mac OS X when you login.  You do not need to do anything.

  • Can't start the J2EE applications

    Hello,
    I recently installed Oracle 10g on RHEL. After the installation was complete, I got the following links to access the various J2EE applications.
    iSQL*Plus URL:
    http://nmcerp:5560/isqlplus
    iSQL*Plus DBA URL:
    http://nmcerp:5560/isqlplus/dba
    Enterprise Manager 10g Database Control URL:
    http://nmcerp:1158/em
    I restarted the machine. And then suddenly it stopped working. It's failing to connect. What may be the issue and hoe can I solve it?
    Thanks.

    user9946251 wrote:
    Hello,
    I recently installed Oracle 10g on RHEL. After the installation was complete, I got the following links to access the various J2EE applications.
    iSQL*Plus URL:
    http://nmcerp:5560/isqlplus
    iSQL*Plus DBA URL:
    http://nmcerp:5560/isqlplus/dba
    Enterprise Manager 10g Database Control URL:
    http://nmcerp:1158/em
    I restarted the machine. And then suddenly it stopped working. It's failing to connect. What may be the issue and hoe can I solve it?
    Thanks.
    >Hello,
    I recently installed Oracle 10g on RHEL. After the installation was complete, I got the following links to access the various J2EE applications.
    iSQL*Plus URL:
    http://nmcerp:5560/isqlplus
    iSQL*Plus DBA URL:
    http://nmcerp:5560/isqlplus/dba
    Enterprise Manager 10g Database Control URL:
    http://nmcerp:1158/em
    I restarted the machine. And then suddenly it stopped working. It's failing to connect. What may be the issue and hoe can I solve it?
    Thanks.
    You have to start isqlplus and dbcontrol as
    $ORACLE_HOME/bin/./isqlplusctl start
    export ORACLE_SID=<YOUR_DB>
    $ORACLE_HOME/bin/./emctl start dbconsole

  • How  can I start my Java Application using double-click  in Windows XP?

    I hava developed an editor in java. The file made by this editor is saved as the .cte format. so, I need to associate this file with the editor, which means that when you double click the .cte file ,this file will be opened in the editor just like the notepad.
    I know that Jbuider has used the JNI to achieve this way to open a project. So, will you kindly tell me the details about this technique or give me some document? My E_Mail is [email protected]
    Best Regards,
    Maria

    I think this can be done from a batch file which you can execute when you install your application.
    There are two commands which you are interested in, and they are:
    assoc - Displays or modifies file extension associations.
    ftype - Displays or modifies file types used in file extension associations.
    You should use assoc to associate an extension with a file type, and ftype to associate the file type with an application.
    E.g. jar is associated with this on my machine:
    .jar=jarfile (from assoc)
    jarfile="C:\Program Files\Java\jre1.5.0_06\bin\javaw.exe" -jar "%1" %* (from ftype)
    Kaj

  • Can't start my Adobe Applications - returning Error 150:30 after updated Mac OS to 10.9

    I have just updated my mac to OS X 10.9 and my Adobe CS4 applications won't open, returning error 150:30. I understand this is licensing related. I have been browsing various forums to get a fix for this, and I haven't found anything that works to date. Can somebody offer any advice on this, and is it something that has been seen before. I should mention that I updated straight from 10.5 to 10.9.
    Should I go about reinstalling CS4 from the disks? Is there a simpler fix? I would appreciate any help or specific knowledge that anyone can tender in this topic.
    Thanks!

    Yes, reinstal lthe programs.
    Mylenium

  • Can't start rmiregistry from application

    Hi!
    This is my code, which works, when I start rmiregistry from command-line:
    public class RemoteDBStarter extends RMIStarter {
      private final static int PORT = 2359;
      private final static String NAME = "DB";
      public RemoteDBStarter() {
        super(RemoteDBInterface.class);
      public void serverOrClientContinue() {
        try {
          RemoteDBInterface db = new RemoteDB();
          RemoteDBInterface stub = (RemoteDBInterface)UnicastRemoteObject
              .exportObject(db, PORT);
          Registry registry = LocateRegistry.getRegistry();
          registry.rebind(NAME, stub);
        catch(Exception e) {
          //TODO
          e.printStackTrace();
      public static void main(String[] args) {
        new RemoteDBStarter();
    }But when I try to add createRegistry
    LocateRegistry.createRegistry(PORT);
    RemoteDBInterface db = new RemoteDB();
    RemoteDBInterface stub = (RemoteDBInterface)UnicastRemoteObject
        .exportObject(db, PORT);I get exception
    java.rmi.ConnectException: Connection refused to host: 10.x.x.x; nested exception is:
         java.net.ConnectException: Connection refused: connect
         at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
         at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185)
         at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
         at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
         at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
         at server.RemoteDBStarter.serverOrClientContinue(RemoteDBStarter.java:32)
         at common.RMIStarter.<init>(RMIStarter.java:15)
         at server.RemoteDBStarter.<init>(RemoteDBStarter.java:16)
         at server.RemoteDBStarter.main(RemoteDBStarter.java:41)
    Caused by: java.net.ConnectException: Connection refused: connect
         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:520)
         at java.net.Socket.connect(Socket.java:470)
         at java.net.Socket.<init>(Socket.java:367)
         at java.net.Socket.<init>(Socket.java:180)
         at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:22)
         at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:128)
         at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
         ... 8 moreI tried to set hostname
    System.setProperty("java.rmi.server.hostname", "localhost");but it gives me same exception, as if it didn't even look for this property. Any suggestions?

    I'm getting lost here, so I'll put whole code once more:
    Server
    public class RemoteDBStarter {
      private final static int PORT = 1099;
      private final static String NAME = "DB";
      private static Registry registry;
      public static void main(String[] args) throws ClassNotFoundException,
                                                    SQLException {
        System.setProperty("java.security.policy",
            "D:/work/data/allow_all.policy");
        if(System.getSecurityManager() == null) {
          System.setSecurityManager(new SecurityManager());
        try {
          registry = LocateRegistry.createRegistry(PORT);
          RemoteDBInterface db = new RemoteDB();
          RemoteDBInterface stub = (RemoteDBInterface)UnicastRemoteObject
              .exportObject(db, PORT);
          registry.rebind(NAME, stub);
        catch(Exception e) {
          e.printStackTrace();
    }Client
    public class Client {
      private final static int PORT = 1099;
      private final static String NAME = "DB";
      private static Registry registry;
      public void callForData() {
        try {
          registry = LocateRegistry.getRegistry(PORT);
          System.out.println(registry);
          RemoteDBInterface stub = (RemoteDBInterface)registry.lookup(NAME);
          stub.retrieveDBTable();
        catch (Exception e) {
          e.printStackTrace();
    }Console after calling callForData() method
    RegistryImpl_Stub[UnicastRef [liveRef: [endpoint:[x.x.x.x:1099](remote),objID:[0:0:0, 0]]]]
    java.rmi.ConnectException: Connection refused to host: x.x.x.x; nested exception is:
         java.net.ConnectException: Connection refused: connect
         at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
         at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185)
         at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:94)
         at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:179)
         at java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:132)
         at $Proxy0.retrieveDBTable(Unknown Source)
         at com.gk_software.es.pklasna.client.Client.callForData(Client.java:36)
         at com.gk_software.es.pklasna.gui.GUI.actionPerformed(GUI.java:85)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:5517)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3135)
         at java.awt.Component.processEvent(Component.java:5282)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3984)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3819)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1791)
         at java.awt.Component.dispatchEvent(Component.java:3819)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: java.net.ConnectException: Connection refused: connect
         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:520)
         at java.net.Socket.connect(Socket.java:470)
         at java.net.Socket.<init>(Socket.java:367)
         at java.net.Socket.<init>(Socket.java:180)
         at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:22)
         at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:128)
         at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
         ... 32 moreIPs form println and exception are same.

  • How can i start my java application using double-click in WindowsXP?

    i hava developed an editor in java. The file made by this editor is saved as the .cte format. so, I need to associate this file with the editor, which means that when you double click the .cte file ,this file will be opened in the editor just like the notepad.
    I know that Jbuider has used the JNI to achieve this way to open a project. So, will you kindly tell me the details about this technique or give me some document? My E_Mail is [email protected]
    Best Regards,
    Maria

    Must you use native code? Can't you do what I said in your other thread?
    http://forum.java.sun.com/thread.jspa?threadID=699476
    Kaj

  • Problem starting Sun One Application - JMS Exception

    Hello,
    I'm having some trouble trying to start SunONE JMS sever via the Sun ONE application server v7 running on RedHat Linux 7.3.
    When I start the app server via the asadmin tool I receive the following exception,
    [root@sc-test1 config]# asadmin start-appserv
    Instance domain1:admin-server started
    Could not start the instance: domain1:server1
    server failed to start: abnormal subprocess termination
    Could not start one or more instances in the domain : domain1
    Could not start one or more domains
    The following exception is outputted to the server log,
    19/Sep/2003:15:47:14] INFO ( 2135): CORE1116: Sun ONE Application Server 7.0.0_00
    [19/Sep/2003:15:47:15] INFO ( 2137): CORE3016: daemon is running as super-user
    [19/Sep/2003:15:47:17] INFO ( 2137): CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.4.1] from [Sun Microsystems Inc.]
    [19/Sep/2003:15:47:54] INFO ( 2137): JMS5035: Timed out after 30000 milliseconds while trying to verify if the JMS service startup succeeded.
    [19/Sep/2003:15:47:54] INFO ( 2137): JMS5036: More details may be available in the log file for the JMS service broker instance domain1_server1. Please refer to the JMS provider documentation for the exact location of this log file.
    [19/Sep/2003:15:47:54] SEVERE ( 2137): JMS5024: JMS service startup failed.
    [19/Sep/2003:15:47:54] SEVERE ( 2137): CORE5071: An error occurred during initialization
    com.sun.appserv.server.ServerLifecycleException: [C4003]: Error occurred on connection creation. - caught java.net.ConnectException
    at com.iplanet.ias.jms.JmsProviderLifecycle.onInitialization(JmsProviderLifecycle.java:247)
    at com.iplanet.ias.server.ApplicationServer.onInitialization(ApplicationServer.java:206)
    at com.iplanet.ias.server.J2EERunner.confPreInit(J2EERunner.java:114)
    Caused by: com.sun.appserv.server.ServerLifecycleException: [C4003]: Error occurred on connection creation. - caught java.net.ConnectException
    at com.iplanet.ias.jms.JmsProviderLifecycle.onInitialization(JmsProviderLifecycle.java:231)
    ... 2 more
    Caused by: javax.jms.JMSException: [C4003]: Error occurred on connection creation. - caught java.net.ConnectException
    at com.sun.messaging.jmq.jmsclient.ExceptionHandler.getJMSException(ExceptionHandler.java:183)
    at com.sun.messaging.jmq.jmsclient.ExceptionHandler.handleException(ExceptionHandler.java:136)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(PortMapperClient.java:145)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.init(PortMapperClient.java:86)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.<init>(PortMapperClient.java:47)
    at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPConnectionHandler.<init>(TCPConnectionHandler.java:46)
    at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPStreamHandler.openConnection(TCPStreamHandler.java:101)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.init(ProtocolHandler.java:501)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.<init>(ProtocolHandler.java:930)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.openConnection(ConnectionImpl.java:1482)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.init(ConnectionImpl.java:403)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.<init>(ConnectionImpl.java:234)
    at com.sun.messaging.jmq.jmsclient.UnifiedConnectionImpl.<init>(UnifiedConnectionImpl.java:33)
    at com.sun.messaging.jmq.jmsclient.QueueConnectionImpl.<init>(QueueConnectionImpl.java:32)
    at com.sun.messaging.ConnectionFactory.createQueueConnection(ConnectionFactory.java:72)
    at com.sun.messaging.jmq.admin.jmsspi.JMSAdminImpl.pingProvider(JMSAdminImpl.java:733)
    at com.iplanet.ias.jms.JmsProviderLifecycle.waitForJmsProvider(JmsProviderLifecycle.java:284)
    at com.iplanet.ias.jms.JmsProviderLifecycle.onInitialization(JmsProviderLifecycle.java:224)
    ... 2 more
    [19/Sep/2003:15:47:54] SEVERE ( 2137): CORE3186: Failed to set configuration
    I can confirm that the default JMS port (7676) is not be used elsewhere / by another process on the server and that netfilter/iptables are not active/running.
    I have also tried different/alternative ports for the JMS server however it still fails to startup.
    Any help much appreciated.
    Thanks and Regards,
    Rachel Gilmer

    I have encountered similar problem when running Sun Application server 7 in Fedora Core 2.
    It seems that problem was due to improper shutdown of my system.
    Following was what I did to resolve the problem:
    Look for the JMS installation directory (installed & created together with the application server). Mine is in /var/opt/imq. In the dir,
    look for directory instances/domain1_server1 (if your server is running in domain1 server1). Look for a file called lock. Remove the lock file (rename if you are not sure).
    After that I was able to successfully start the server.

  • Can I use APEX Packaged applications for commercial purposes

    Hi,
    When you download and Install APEX, it comes with pre build packaged applications. Can I use it to make money?
    I understand that I will not be able to get any support for Oracle and all that.  But  using  Database XE with APEX, can I start shipping these applications and make money lawfully without violating Oracle's terms?
    Please advise.
    Darsh

    Hi Darsh,
    I can't say that this was a good answer, but I addressed a similar question in this forum posting:  https://forums.oracle.com/thread/2600958
    Joel

  • An error occured when starting interaction layer application

    Hi all,
    when starting the IC WebClient and choosing a profile, i get the following error:
    An error occured when starting interaction layer application
    An exception has occurredException Class CX_CRM_GENIL_GENERAL_ERROR
    Text: Component set CRMIC_DEFAULT contains multiple object definitions
    Program: CL_CRM_GENIL_INTERNAL_MODEL===CP
    Include: CL_CRM_GENIL_INTERNAL_MODEL===CM005
    Source Text Row: 39
    An error occurred during the initialization of the view manager
    An exception has occurredException Class CX_BSP_EINTERNAL
    Text: BSP Exception: Internal Error in Business Server Page Runtime.
    Program: CL_BSP_WD_APPLICATION=========CP
    Include: CL_BSP_WD_APPLICATION=========CM004
    Source Text Row: 32
    can someone help me solve this plz?
    thx alot!
    greets,
    Martin

    Hello Martin.
    What a weird error you have.
    Can you tell me if that this profile was developments, our customer customization?
    If you select a 100% standard profile (like DEFAULT one), you still have the error?
    Kind regards,
    Bruno

  • Can Web Start call earlier installed versions on client machine?

    Can Web Start invoke earlier installed versions of the
    JRE on a client machine, without invoking a download?
    I ask because I have tried to so, unsuccessfully,
    using the versions attribute of the j2se element.
    In the usenet thread 'Jar test, with 1.4 VM?',
    Usenet Message ID:
    [email protected]
    http://groups.google.com/groups?selm=1170640609.025666.236030@s48g2000cws.googlegroups.com
    (follow the Google link at the top, to the thread)
    I was attempting to confirm that a Jar file I
    was deploying, was 1.4 compatible.
    The test failed, because despite that the (1)
    user who attempted it had a working 1.4.2 install,
    the JNLP file (which declared version='1.4'),
    was prompting for a download. The user was
    not prepared to do that, understandably -
    that was exactly what I was trying to avoid
    doing, myself.
    Since then, I did further testing locally -
    trying to get a 1.5 launch when my current
    Java is 1.6 - I have a number of 1.5 versions.
    No request for '1.5', '1.5.0_08' or '1.5*' worked
    (OK - that last one was just a WAG*), every time
    I was prompted for download (which also failed,
    as an aside!).
    What am I getting wrong?
    Do I misunderstand the intent of the j2se element
    finding earlier verions? Is it only versions that
    were installed by web start?
    Is my understanding of how to use the version
    attribute, incorrect?
    * Where are the detailed instructions on the
    allowable forms of the version attribute?
    Neither the spec. nor developers guide seem
    to go into it in any detail. Some of the forms
    I have seen around the forum were (AFAIR)..
    <!-- Suggests 1.4 preferred? -->
    version="1.4 1.5+"
    <!-- Suggests 1.4 only? -->
    version="1.4"
    <!-- Suggests 1.4.2 preferred, if microversion
    13+ is found, else 1.5+? -->
    version="1.4.2_13+ 1.5+"FWIW - here is the JNLP I am currently using
    for the test, it is 'live and public'..
    <?xml version='1.0' encoding='UTF-8' ?>
    <!--
    If you see this message in your browser, it means the
    browser is not correctly set up to handle the JNLP file
    type, that launches Java applications within a secure
    environment, that cannot access your computer, or data.
    To get the browser (and PC) correctly set up to handle
    this type of file, visit ..
      http://www.java.com/
    ..to install the free, secure, Java Plug-In made
    by Sun Microsystems.
    -->
    <jnlp spec='1.0'
        codebase='http://www.athompson.info/family/'
        href='thompson-1.4.jnlp'>
      <information>
        <title>Thompson Family Genealogy</title>
        <vendor>Andrew Thompson</vendor>
        <description kind='one-line'>
          The ancestors of William Robert Ramshaw Thompson
        </description>
        <offline-allowed />
        <shortcut online='false'>
          <desktop/>
        </shortcut>
      </information>
      <resources>
        <j2se
          version="1.4"
          href="http://java.sun.com/products/autodl/j2se" />
        <jar href='genj-applet.jar' main='true' />
      </resources>
      <applet-desc
        main-class='genj.applet.Applet'
        name='genealogy'
        codebase='./index.html'
        width='300'
        height='170'
        >
          <param name='GEDCOM' value='thompson.ged' />
          <param name='ZIP' value='thompson.zip' />
      </applet-desc>
    </jnlp>

    Using your tips, I was able to find the 1.5
    JRE's listed in the Java control panel
    (of an XP Pro box) and see they had no
    checkmark for 'enabled'.
    After enabling 1.5.0_08, I was successfully
    able to launch the application (OK - applet
    really) using the 1.5.0_08 JRE.
    Thanks.
    As an aside, I had to specify '1.5.0_08'
    exactly to get that JRE. This is fine for
    local testing, but sometimes it is handy
    to ask others to help test via the web,
    and it would be nice if I could make it less
    specific (e.g. '1.5', to get any installed
    and enabled JRE that is a 1.5 variant)
    Do I understand wrong? Should that work,
    to specify '1.5' and get a '1.5.0_08' JRE that
    is installed and enabled?

  • Can Photoshop Starter Editor 3.0 run as a server application

    Can Photoshop Starter Editor 3.0 run as a server application and be accessed by more then one computer simultaniously? If this is in breach of the license agreement, where can I find more information on this ?
    If this program cant perform as a server app. is Adobe Photoshop Album 2.0 able to operate as a server app. ?

    Okay Tom...
    Now these may be things that people have already discussed in the forum, so
    you'll have to pardon me if you already know this.
    You CAN use the database on the server and put the application on the client
    computer. PSE prevents multiple accesses to the same database so that will
    avoid any conflict issues, however you would still need to contact Adobe
    about licencing. Further with PSE 4.0 out now... you are looking at another
    application.
    I'll see what Picassa can do, but I would NOT hold my breath... and while it
    is a handy little app, for me it is FAR too limited for anything more than a
    quick search and some very basic tools.
    I'll see what I can do in the next 20 minutes or so and get back to you.
    Cheers

  • New install of SJS Ent 8 on Solaris, can't start Application Server 8.1

    Hello,
    Appreciate in advance your help.
    Just downloaded and installed SJS 8.1 on a new Sun Solaris 10 box. I'm able to run the IDE and have started the Tomcat server, but when attempting to start the SJS 8.1 application server, I get:
    The Sun Java System Application Server 8.1 could not start.
    More information about the cause is in the Server log file.
    Possible reasons include:
    - Port conflicts. (use netstat -a to detect possible port numbers already used)
    - Incorrect server configuration
    - Corrupted Deployed Applications
    The problems are:
    - There is no server.log file in the expected directory at /opt/sun/jstudio_ent8/AppServ8.1UR2/domains/myDomain1/logs
    - I ran netstat -a, but could glean no useful information
    - I have not modified the server configuration since the new install
    - I have not deployed my application (since I can't start the server).
    Forgive my ignorance since I'm not a Solaris expert. I would greatly appreciate your assistance.

    No difference in server.log after setting level="FINEST".
    Don't know if it would help, but the contents of my server.log file follow:
    [#|2006-09-25T15:39:46.485-0400|INFO|sun-appserver-pe8.1_02|javax.enterprise.tools.launcher|_ThreadID=10;|
    /opt/sun/jstudio_ent8/jdk1.5.0_04/bin/java
    -client
    -Xmx512m
    -XX:NewRatio=2
    -Dcom.sun.aas.defaultLogFile=/opt/sun/jstudio_ent8/AppServ8.1UR2/domains/myDomain1/logs/server.log
    -Djava.endorsed.dirs=/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/endorsed
    -Djava.security.policy=/opt/sun/jstudio_ent8/AppServ8.1UR2/domains/myDomain1/config/server.policy
    -Djava.security.auth.login.config=/opt/sun/jstudio_ent8/AppServ8.1UR2/domains/myDomain1/config/login.conf
    -Dsun.rmi.dgc.server.gcInterval=3600000
    -Dsun.rmi.dgc.client.gcInterval=3600000
    -Djavax.net.ssl.keyStore=/opt/sun/jstudio_ent8/AppServ8.1UR2/domains/myDomain1/config/keystore.jks
    -Djavax.net.ssl.trustStore=/opt/sun/jstudio_ent8/AppServ8.1UR2/domains/myDomain1/config/cacerts.jks
    -Djava.ext.dirs=/opt/sun/jstudio_ent8/jdk1.5.0_04/jre/lib/ext:/opt/sun/jstudio_ent8/AppServ8.1UR2/domains/myDomain1/lib/ext
    -Djdbc.drivers=com.pointbase.jdbc.jdbcUniversalDriver
    -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
    -Dcom.sun.enterprise.taglisteners=jsf-impl.jar
    -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl
    -Dcom.sun.aas.configName=server-config
    -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter
    -Ddomain.name=myDomain1
    -Djmx.invoke.getters=true
    -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
    -Dcom.sun.aas.promptForIdentity=true
    -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser
    -Dcom.sun.aas.instanceRoot=/opt/sun/jstudio_ent8/AppServ8.1UR2/domains/myDomain1
    -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl
    -Dcom.sun.aas.domainName=myDomain1
    -Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
    -Dproduct.name=Sun-Java-System/Application-Server
    -Dcom.sun.enterprise.overrideablejavaxpackages=javax.faces,javax.servlet.jsp.jstl,javax.xml.bind,javax.help
    -Dcom.sun.aas.configRoot=/opt/sun/jstudio_ent8/AppServ8.1UR2/config
    -Djava.library.path=/opt/sun/jstudio_ent8/jdk1.5.0_04/jre/lib/i386/client:/opt/sun/jstudio_ent8/jdk1.5.0_04/jre/lib/i386:/opt/sun/jstudio_ent8/jdk1.5.0_04/jre/../lib/i386:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib:/usr/lib/lwp::/usr/lib
    -Dcom.sun.aas.instanceName=server
    -Dcom.sun.aas.processLauncher=SE
    -cp
    /opt/sun/jstudio_ent8/jdk1.5.0_04/lib/tools.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-rt.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/j2ee.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/activation.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/mail.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-cmp.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/admin-cli.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-admin.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-jstl.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/commons-launcher.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/commons-logging.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/j2ee-svc.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/jax-qname.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/jaxr-api.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/dom.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/jaxr-impl.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/jaxrpc-api.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/jaxrpc-impl.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/relaxngDatatype.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/saaj-api.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/saaj-impl.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/xsdlib.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/jmxremote.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/jsf-api.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/jmxremote_optional.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/jsf-impl.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/rmissl.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/xalan.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/xercesImpl.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-assemblytool_ja.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-cmp_ja.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-rt_ja.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/commons-launcher_ja.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/deployhelp_ja.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/j2ee_ja.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-assemblytool_zh.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-assemblytool_zh_CN.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-cmp_zh.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-cmp_zh_CN.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-rt_zh.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-rt_zh_CN.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/commons-launcher_zh.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/commons-launcher_zh_CN.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/deployhelp_zh.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/deployhelp_zh_CN.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/j2ee_zh.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/j2ee_zh_CN.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-assemblytool_ko.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-cmp_ko.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-rt_ko.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/commons-launcher_ko.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/deployhelp_ko.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/j2ee_ko.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-assemblytool_fr.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-cmp_fr.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-rt_fr.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/commons-launcher_fr.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/deployhelp_fr.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/j2ee_fr.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-assemblytool_es.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-cmp_es.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-rt_es.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/commons-launcher_es.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/deployhelp_es.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/j2ee_es.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-upgrade.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/appserv-ext.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/install/applications/jmsra/imqjmsra.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/imq/lib/jaxm-api.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/imq/lib/fscontext.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/lib/ant/lib/ant.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/pointbase/lib/pbclient.jar:/opt/sun/jstudio_ent8/AppServ8.1UR2/pointbase/lib/pbembedded.jar
    com.sun.enterprise.server.PEMain
    start|#]
    I do notice that the class path references jdk1.5.0_04. When installing SJS I selected the separately installed jdk1.5.0_07. Could that be causing the problem?
    You have great patience.

  • App-V Client 5 Service can not start Error 575

    Good Morning
    I have a Problem with the App-V 5.0 Client. When i starting the Service come following Error: Microsoft App-V Client on local Computer can not start. For more Informationen read the Events. Error 575.
    Event-ID 7024
    The Service"Microsoft App-V Client"
    terminated with service-specific error: {Error in Application}
    The application failed to
    start properly (0x%lx). Click the "OK" button to
    exit the application ..
    You have a solution?

    http://blogs.msdn.com/b/sgern/archive/2013/03/21/10404146.aspx reports a simialr issue (in German), but on an RDS server.
    The issue described there is that App-V tries to resolve/access a folder GUID int the registry that isn't there.
    In the above scenario, it was the Music Library.
    Activating the Music Library (causeng the key to be written) and deactivating it right away solved the issue. Of course *your* GUID/feature might be another one.
    (and no, Sebastian does not explain _why_ App-V tries to access your favorite music)
    Falko
    Twitter
    @kirk_tn   |  Blog
    kirxblog   |  Web
    kirx.org

  • How to start an OO4O application only with XE client installed ?

    Hi,
    I have an Oracle OLE application that works find with the normal 10g client.
    But I can't start the application on a system with only the XE client installed.
    There are no oip10.dll, oip10.tlb, oraansi10.dll and oraclm32.dll.
    After copying them from the normal 10g Client bin directory to the xe client bin. The registration of the oip10.dll failed.
    Is there any way to get a normal application which uses the "Oracle object for OLE class" to work?
    Thanks
    Message was edited by:
    user525619

    1. what is the resources of the machine you are using?
    2. What is the error message you are getting?
    Cheers

Maybe you are looking for

  • Reschedule Excel Format Report - An error has occurred: $Proxy5

    It seems on the RESCHEDULE function, that if the report was published in the format CRYSTAL REPORTS, you can click the parameters and change them.  However, if it is formatted in EXCEL (97-2003 Data Only) and you click the parameters on a reschedule,

  • External Drive not recognized anymore????

    Just hoping I can find an answer about this from the community since I'm so inexperienced with the technical stuff pertaining to my iMac.  For some odd reason, and I suppose it could just be that hard drives don't last forever, not sure, a My Book Es

  • Having trouble with simple tasks in pages 09

    I am trying to put a single horizontal line above the page footer in a pages document that I am trying to create as a template I've spent quite a long time with it and cannot figure it out As much as a pain Word is, doing something like this is very

  • BDC Step by Step Process

    Hi Experts, I'm new to BDC. If you have any material which shows step by step process of BDC with screen shots please forwards to the following mail id... [email protected] Kindly help me!!!! I would be very grateful for your help.. thanks & regards,

  • Problem with subform set

    Hi all , I am facing a problem with subform set. When i use two subform sets with same set of conditions in a form, only the first subform set works while the second one does nothing. Did any of you faced the same problem ? If so Please let me know t