JRun and classpath

All,
I am going to run my applicaiton on JRun server and I need to use apache xml parser. Right now when I run my code, it got following error:
javax.servlet.ServletException: org.w3c.dom.Node: method
getNamespaceURI()Ljava/lang/String; not found java.lang.NoSuchMethodError:
org.w3c.dom.Node: method getNamespaceURI()Ljava/lang/String; not found
I know that it is due to JRun server is using its own xml parser and I should spcify the classpath to import my package first. But for some reason, I could NOT touch classpath for JRun server, so I need to figure out how I could specify the path of the package to point to my own parser instead of JRun's parser.
Anyone can give me some suggestion?
Thanks!

1. Search this Forum and the 'Java Programming' forum
2. try http://www.tomcat.apache.org
3. and the JRun website - specific support there

Similar Messages

  • Kodo, JRun, and logging

    Hi,
    I'm trying to run my Kodo JDO application in a JRun4 J2EE server. I'm
    having a problem getting logging to work, and I've discovered what's
    happening.
    As it happens, JRun is using the commons logging facility itself, and
    initializes an older version of Log4j before my classes are even loaded.
    Thus, any log4j.properties file I specify (or even if I change the name to
    something else and specify it via the log4j.configuration system property)
    is ignored because by the time the web app is loaded, the system
    log4j.properties have already been initialized and mine are ignored.
    The solution offered on the JRun support site is to rewrite your
    log4j-enabled app to use custom logging (in a JRun-proprietary format),
    but that's obviously not an option for me here because the logging is
    internal to Kodo's classes.
    What I'm wondering is this: is there a setting I can specify something in
    my kodo.properties file or in some other location that will tell Kodo to
    instantiate its own private log4j instance instead of using the system's?
    Or is there some other way to force Kodo to ignore the existing JRun
    logging facility?
    Any thoughts would be much appreciated.
    Thanks,
    Bill

    Oops! The my posting didn't get put up exactly as I typed it. Instances of
    "$/servers/lib" should instead be "JRUN_HOME/servers/lib" where
    "JRUN_HOME" is the directory that JRun is installed in.
    Bill
    William Korb wrote:
    Marc,
    Thanks for the feedback. I experimented a bit (quite a bit, actually) and
    found a configuration that works without having to implement a custom
    logging mechanism.
    First off, in order to use the version of Log4j that came with Kodo
    instead of the old version that is bundled with JRun (and embedded in one
    of JRun's own JAR files, BTW - ick!), I had to make a couple of JRun
    configuration changes.
    1. Install log4j-1.2.6.jar in $/servers/lib
    2. Install log4j.properties in $/servers/lib
    3. Create a .../WEB-INF/jrun-web.xml file with the following contents:
    <?xml version ="1.0"?>
    <!DOCTYPE jrun-web-app SYSTEM "jrun-web.dtd">
    <jrun-web-app>
    <load-system-classes-first>false</load-system-classes-first>
    </jrun-web-app>
    This last step is the critical one - it tells JRun to put
    $/servers/lib in the CLASSPATH ahead of the JRun system jars
    (which include the old version of Log4j, etc.).
    The down-side of this configuration is that every JRun server instance
    will use the same Log4j setup, but I can live with that.
    Lastly, I tweaked the log4j.properties file to send my Kodo log entries
    into a separate file (otherwise they ended up intermingled with the
    standard JRun log entries):
    # Normal Kodo logging configuration
    log4j.rootCategory=INFO, console
    # Custom verbosity levels on a per-category basis
    log4j.category.com.solarmetric.kodo.impl.jdbc.SQL=DEBUG, kodolog
    log4j.category.com.solarmetric.kodo.impl.jdbc.JDBC=INFO, kodolog
    log4j.category.com.solarmetric.kodo.impl.jdbc.Schema=INFO, kodolog
    log4j.category.com.solarmetric.kodo.Performance=INFO, kodolog
    log4j.category.com.solarmetric.kodo.MetaData=INFO, kodolog
    log4j.category.com.solarmetric.kodo.Enhance=INFO, kodolog
    log4j.category.com.solarmetric.kodo.Query=DEBUG, kodolog
    log4j.category.com.solarmetric.kodo.Runtime=DEBUG, kodolog
    # Set appender specific options.
    log4j.appender.kodolog=org.apache.log4j.RollingFileAppender
    log4j.appender.kodolog.File=/tmp/javatest-kodo.log
    log4j.appender.kodolog.Append=true
    log4j.appender.kodolog.MaxFileSize=10mb
    log4j.appender.kodolog.MaxBackupIndex=9
    log4j.appender.kodolog.layout=org.apache.log4j.PatternLayout
    log4j.appender.kodolog.layout.ConversionPattern=%-5r %-5p [%t] %c - %m%n
    log4j.appender.console=org.apache.log4j.ConsoleAppender
    log4j.appender.console.layout=org.apache.log4j.PatternLayout
    log4j.appender.console.layout.ConversionPattern=%-5r %-5p [%t] %c - %m%n
    If Macromedia ever gets around to putting out another release of JRun,
    hopefully they'll address these poor design decisions.
    Bill
    Marc Prud'hommeaux wrote:
    Bill-
    I assume that you don't have access to JRun's log4j properties file so
    you can use it to set the Kodo logging parameters.
    You might be able to coerce JRun into using some logger of your own
    devising with the "org.apache.commons.logging.LogFactory" system
    property. E.g., see:>>
    >
    http://www.solarmetric.com/Software/Documentation/3.0.0RC4/docs/manual.html#ref_guide_logging_custom
    There is currently no way to tell Kodo to use a separate logger on it's
    own: you will need to do it via the commons logging framework.
    Let us know if we can offer some more suggestions, if this one doesn't
    work.
    In article <[email protected]>, William Korb wrote:
    Hi,
    I'm trying to run my Kodo JDO application in a JRun4 J2EE server. I'm
    having a problem getting logging to work, and I've discovered what's
    happening.
    As it happens, JRun is using the commons logging facility itself, and
    initializes an older version of Log4j before my classes are even loaded.
    Thus, any log4j.properties file I specify (or even if I change the name
    to
    something else and specify it via the log4j.configuration systemproperty)
    is ignored because by the time the web app is loaded, the system
    log4j.properties have already been initialized and mine are ignored.
    The solution offered on the JRun support site is to rewrite your
    log4j-enabled app to use custom logging (in a JRun-proprietary format),
    but that's obviously not an option for me here because the logging is
    internal to Kodo's classes.
    What I'm wondering is this: is there a setting I can specify something in
    my kodo.properties file or in some other location that will tell Kodo to
    instantiate its own private log4j instance instead of using the system's?
    Or is there some other way to force Kodo to ignore the existing JRun
    logging facility?
    Any thoughts would be much appreciated.
    Thanks,
    Bill
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Difference between path and classpath

    Difference between path and classpath?

    PATH - set of paths there executables will be found.
    CLASSPATH - set of paths and archives there class files will be found.

  • Problem with Class and Classpath

    Hello ME Windows Users, now before you place a wry smile on your face, I have a problem with path and classpath. Stop it, I can see you smiling!
    By visiting the the last 10 pages of the forum and reading Sun installation notes, some tooldocs and by given some answers by some nice people, I have become an expert in turning off my computer, about 10 times/hr. I still am trying to make my first cup of java.
    With the ME computer,
    I'm unable to right click on the desktop and go to properties, advanced,
    I'm unable to go go start, run, sysedit,
    I'm unable to change the ms-dos window of autoexec.bat, it just shuts down.
    Now before you tell me, I should of bought a different computer, the only place I can find to modify the path and classpath is in the environment which is in system configuration under tools. Here I have placed numerous configurations, like
    C:\java>set path=%path%;c:\j2sdk1.4.2\bin
    C:\java>set classpath=%classpath%;.;
    ;java_dir\bin where ;java_bin is c:\j2sdk1.4.2
    .; java_dir\bin; %path% where ;java_bin is c:\j2sdk1.4.2 and the list goes on.
    But, I know you are still smiling, the % signs comes up in a dialog box, saying too many, and will not convert the text to the environment to be saved when I close down for the tenth time in the last hour.
    Can someone help me before I make a real cup of coffee and accidentally drop it on the ME box.
    Have a laugh on me Mik.

    C:\java>set path=%path%;c:\j2sdk1.4.2\binGood
    But it is no good because it has to many % and a dialog box appears, saying you have too many parameters.
    Are you saying I have to shutdown again to answer your ?
    From the HELP menu-
    To confirm startup commands line by line
    Click Start, and then click Shut down.
    Click Restart, click OK, and then press and hold the CTRL key until the Windows Startup Menu appears.
    Enter the number for Step-by-step confirmation, and then press ENTER.
    For each command you want to run, press Y.
    If the command runs successfully, you are prompted with the next command.
    If the command does not run successfully, you receive an error message.
    To skip a command, press N.
    Mik

  • Set path and classpath in ANT

    by using ANT, how can set the JDK path and classpath..
    jdk version exists in the : C:\Program Files\Java\jdk1.6.0
    This is the build.xml that i need to modify!
    -Do i need to have a serperate JAVA_HOME variable?
    <?xml version="1.0"?>
    <!--
    Build file for 'Chat Client'
    Version: $Revision: 4.10 $ $Date: 2003/05/28 $
    Author:  Rajat Gupta
    -->
    <project name="Chat" default="jar" basedir=".">
       <!-- ================================================================== -->
       <!-- Initialization of all property settings                            -->
       <!-- ================================================================== -->
       <target name="init">
          <property name="appname"        value="chat"   />
          <property name="src.dir"        value="src"               />
          <property name="lib.dir"        value="lib"              />
          <property name="build.dir"      value="Chat"            />
          <property name="build.compiler" value="classic"          />
       </target>
       <!-- ================================================================== -->
       <!-- Makes sure the needed directory structure is in place              -->
       <!-- ================================================================== -->
       <target name="prepare" depends="init">
          <mkdir dir="${lib.dir}" />
          <mkdir dir="${lib.dir}/META-INF" />
          <mkdir dir="${build.dir}" />
       </target>
       <!-- ================================================================== -->
       <!-- Compilation of the web part of the application                     -->
       <!-- ================================================================== -->
       <target name="classes" depends="prepare">
          <javac srcdir="${src.dir}/oracle/otnsamples/oc4jjms"
                 destdir="${lib.dir}"
                 includes="**" />
       </target>
       <!-- ================================================================== -->
       <!-- Compilation of the complete J2EE application (both web and EJB)    -->
       <!-- ================================================================== -->
       <target name="j2ee-meta-inf" depends="classes, prepare">
          <copy file="${src.dir}/META-INF/application-client.xml"
                tofile="${lib.dir}/META-INF/application-client.xml" />
          <copy file="${src.dir}/images/oralogo.gif"
                tofile="${lib.dir}/oralogo.gif" />
       </target>
       <target name="jar" depends="j2ee-meta-inf">
       <jar jarfile="${build.dir}/${appname}.jar"
           basedir="${lib.dir}" manifest="${src.dir}/META-INF/MANIFEST.MF"/>
          <delete dir="${lib.dir}" />
       </target>
    </project>Message was edited by:
    jugp

    [url ='http://www.jguru.com/forums/home.jsp?topic=Ant']answer here

  • Path and classpath

    How do i set path and classpath in java? why it is needed

    ramyabaskar wrote:
    How do i set path and classpath in java? why it is neededTypically you do not set these in java.
    You set the path in the operating system shell.
    You set path so you can launch java by just typing java
    instead of having to type the full path to "C:\Program Files\Java\jre6\bin\java.exe".
    You pass the desired classpath to java when you launch java with the classpath option or set it in the operating system shell using the CLASSPATH env.var.

  • How to go about Setting PATH and CLASSPATH?

    I have problems compling the helloworldwww in the core programming.the error was:
    Exception in thread "main"java.lang.NoSuchMethodError:main
    my java programs are in c:\program files\java\bin
    My path :
    PATH=C:\WINNT\system32;C:\WINNT;c:\program files\java\bin
    My classpath
    set CLASSPATH=C:\WINNT\system32;C:\WINNT;c:\program files\java\bin.jar;.
    is there any error in my paths, if yes how to i go about setting the path and classpath??Im running on winXP.j2sdk1.4.1_02.

    set CLASSPATH=.;c:\program files\java\bin.jar;c:\program files\java\bin

  • How to set packages and classpath

    Hi,
    I want to know about packages and classpath. I have these questions
    1, If I put a class in a package(work.util) is it necessary to put the java file in the same directory/directory hierarchy as mentioned in the package declaration. I have to compile this class, run it from main method and must be able for other classes to import.
    2. If a package have subpackages(work.util.db) do I have to set the classpath to subdirectory also to run that class.
    3. If a class is in package is it possible to run the class without prefixing the package name. I need to do this in the text editor so that I can run any program by pressing a hot key.
    rgds
    Antony Paul

    1, If I put a class in a package(work.util) is it
    necessary to put the java file in the same
    directory/directory hierarchy as mentioned in the
    package declaration.Strictly speaking, this isn't covered by the spec - it depends on what compiler and ClassLoader you are using. If you're using Sun's JDK, then yes.
    2. If a package have subpackages(work.util.db) do I
    have to set the classpath to subdirectory also to run
    that class. No. You should add the directory above work/util/db to your classpath. You should not add work, or work/util or work/util/db.
    E.g., if your Java files are in C:/MyProject/JavaSrc/work/util/db, and the package name is work.util.db, then you should have C:/MyProject/JavaSrc on your classpath (or have "." (dot) on your classpath, and compile and run from that same directory).
    3. If a class is in package is it possible to run the
    class without prefixing the package name. I need to do
    this in the text editor so that I can run any program
    by pressing a hot key.If you mean "in order to run work.util.db.Main do I need to type java work.util.db.Main, or just java Main", then you do indeed need the fully qualified class name (otherwise, how would the runtime environment know which class you mean? - there could be any number of classes called Main in any class, and it would have to search every directory and subdirectory on your classpath to find them.

  • Problem in setting path and classpath for java in RedHat linux 9

    Hi ,
    i am not able to set the PATH and CLASSPATH for j2sdk1.4.2_06
    I have tried with export PATH=$PATH:/usr/j2sdk1.4.2_06/bin
    and export CLASSPATH=$CLASSPATH:/usr/j2sdk1.4.2_06/lib
    in terminal
    but i want to configure it as permenant way for the jre and jdk
    and we should only type java or javac according to the requirement
    regards mihir...

    type those in .bashrc ... save and exit
    then at prompt, type 'source .bashrc'
    this is the permanent solution ...
    bhalo thakun

  • Ears, wars, support jars, and CLASSPATH

    I am trying to migrate an application from WLS 5.1 to 6.1. There are 25
    EJB jars with an equal number of support jars, most of which are referenced
    by multiple EJBs. There are also a large number of jsps, and html pages.
    I have tried packaging an ear that contains the 25 ejb jars, a war file
    containing the web pages. I have attempted to include the support jars in
    the ear as well.
    In all attempts, the only way I get class references sastisfied is to
    include all the jars on the system CLASSPATH. But this defeats the purpose
    of packaging, since none of the components referenced in the system
    CLASSPATH will be re-deployable.
    The online documents refer to separate class loaders and classpaths for the
    war and ejbs, but no detail as to how classes are found by the loaders.
    Unless I put all the jars into the CLASSPATH, jsp pages cannot reference the
    EJBs, and EJBs are unable to reference other EJBs.

    Thanks,
    Now if I could just get Webgain Visual Cafe to allow me to include the
    Classpath entries in the generated manifests for the EJB jars.
    "Gregory Gerard" <[email protected]> wrote in message
    news:3ba24da1$[email protected]..
    You need to mangle all the Manifest files within the EAR and EJB-JARs and
    WAR to get the right thing to happen. Check out this PDF on Sun's site:
    http://java.sun.com/j2ee/j2ee-1_3-pfd4-spec.pdf
    section 8.1.1.2
    I don't entirely understand all the restrictions and formatting -- Ihaven't
    found an example ear file out there that implements a non-trivial case.
    greg
    "Carl Lawstuen" <[email protected]> wrote in message
    news:3ba21d8e$[email protected]..
    I am trying to migrate an application from WLS 5.1 to 6.1. There are
    25
    EJB jars with an equal number of support jars, most of which arereferenced
    by multiple EJBs. There are also a large number of jsps, and htmlpages.
    I have tried packaging an ear that contains the 25 ejb jars, a war file
    containing the web pages. I have attempted to include the support jarsin
    the ear as well.
    In all attempts, the only way I get class references sastisfied is to
    include all the jars on the system CLASSPATH. But this defeats thepurpose
    of packaging, since none of the components referenced in the system
    CLASSPATH will be re-deployable.
    The online documents refer to separate class loaders and classpaths forthe
    war and ejbs, but no detail as to how classes are found by the loaders.
    Unless I put all the jars into the CLASSPATH, jsp pages cannot referencethe
    EJBs, and EJBs are unable to reference other EJBs.

  • Package and CLASSPATH

    Hi,
    I have a hard time understanding the package and CLASSPATH. I want to have a solid understanding of it. I read some tutorials online but didn't make me fully understand. How does declaring a package effect the CLASSPATH? Say I have following:
    (This is from one of the tutorial- http://home.cogeco.ca/~ve3ll/jatutor4.htm)
    C:\myclasses\world\moon\HelloMoon.java
    C:\myclasses\world\HelloWorld.java
    HelloMoon.java is defined as
    package world.moon;
    public class HelloMoon {
    private String holeName = "rabbit hole";
    public String getHoleName() {
    return holeName;
    public void setHole(String holeName) {
    this.holeName = holeName;
    public static void main(String[] args){
         HelloMoon moon = new HelloMoon();
         System.out.println(moon.getHoleName());
    HelloWorld is defined as
    package world;
    public class HelloWorld {
    public static void main(String[] args) {
    System.out.println("Hello World");
    if the CLASSPATH is set : set CLASSPATH=.;C:\myclasses;
    Once the CLASSPATH has been set (and compiled .java file); it can be called using the following from any path of directory:
    java world.HelloWorld
    java world.moon.HelloMoon
    But it does not explain the details why it works this way. Also, if I want to run it without using "world" prefix to run HelloWorld, what do I need to set up?
    also for the HelloMoon?
    When I tried running those classes by going to an appropriate directory, I got the noClassDefFound (using command like "java HelloWorld" or java "HelloMoon").
    Thanks in advance...

    [Javapedia: Classpath|http://wiki.java.net/bin/view/Javapedia/ClassPath]
    [How Classes are Found|http://java.sun.com/j2se/1.5.0/docs/tooldocs/findingclasses.html]
    [Setting the class path (Windows)|http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/classpath.html]
    [Setting the class path (Solaris/Linux)|http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/classpath.html]
    [Understanding the Java ClassLoader|http://www-106.ibm.com/developerworks/edu/j-dw-javaclass-i.html]
    java -cp .;<any other directories or jars> YourClassNameYou get a NoClassDefFoundError message because the JVM (Java Virtual Machine) can't find your class. The way to remedy this is to ensure that your class is included in the classpath. The example assumes that you are in the same directory as the class you're trying to run.
    javac -classpath .;<any additional jar files or directories> YourClassName.javaYou get a "cannot resolve symbol" message because the compiler can't find your class. The way to remedy this is to ensure that your class is included in the classpath. The example assumes that you are in the same directory as the class you're trying to run.

  • Setting System properties and classpath at boot

    Hi all,
    I'm pretty new to weblogic and I'd need to set some system properties and classpath definitions for my servers at boot. Can I set them via the Administration console or just adding them to the startWeblogic/startManagedWeblogic using the standard -cp and -D flags ?
    I've found in the Console, there's the Server Boot properties. However adding them there didn't work. Correct me if I'm wrong, this option can be used ONLY when starting the servers from the Node Manager ?
    Thanks
    Frank

    Hi Frank,
    You are right!!!!
    But you can set them with in setDomainEnv file under java_option.
    Please set under
    Unix
    JAVA_OPTION = "${JAVA_OPTION} -DXXXXX"
    In Windows
    set JAVA_OPTION = %JAVA_OPTION% -DXXXXX
    Hope this will help you.
    Regards,
    Kal

  • Manifest and classpath frustration

    I have a very simple standalone application. It is not an applet - it's a simple command line program that parses an XML stream and stores the results in a database. This app depends on a ton of external jar files. I would like to be able to build and run this thing - on different platforms - without having to mess with a bat or sh script. From perusing the web, it seems like I should be able to do this with a custom manifest file ... but I can't seem to get it to work. I keep getting a class not found error. In a nutshell, my jar looks like this
    lib
    com
    META-INF
    Insid the lib directory are around a dozen jar files
    Inside the com directory are all my class files
    Inside META-INF is the manifest file.
    My manifest file looks like this:
    Main-Class: com.mainClass.RunMe
    Class-Path: lib/jarOne.jar
    **lib/jarTwo.jar
    **lib/jarThree.jar
    Note that the *'s indicate spaces and I do have a blank line at the end of file.
    When I try to execute using:
    java -jar myJar.jar
    I continually get class not found errors. If I run in verbose mode, I can see that my classes aren't getting loaded.
    Can I do what I'm trying to do? Any pointers would be greatly appreciated as I'm running out of ideas and patience.
    THanks

    This isn't always legal. You can't "legally" assume you can extract any commercial jar file and bundle it with your app. If everything is open-source then there should be no problem. But for commercial apps, this wont work, at least legally.
    There are two solutions that work best. One is to use an installer that provides an executable launcher (.exe on windows, .sit on mac, etc). This will provide a setup.exe (or setup.sit or setup.sh or something for each platform), that will then install your app like a commercial application. This will take care of unzipping everything you want in the right directories. There are a couple of free/open-source installers, VAInstall is one that I can think of that aren't too shabby. At work we use Install4J which is pretty good.
    The other way is to use a custom classloader. First, your initial "main" class is nothing but a stub loader. It simply creates an instance of this URLClassloader subclass. You use it to find and run your "real" main() method within the classpath. URLClassLoader has a protected addURL(), but the constructor allows you to pass an array of URL objects, each that can be a directory of .class files or specific .jar/.zip files that become the classpath for the classloader instance. With this info, you can use a custom loader to add each of your .jar files located on disk as part of the classpath. The problem is, if they are on-disk, this isn't helping. What your custom loader needs to do is override loadClass(), getResource() and so forth, and provide a way to find classes from embeded jar/zip libraries inside the main jar file. This way, each time any class uses a class in an embeded jar/zip, your custom classloader looks inside the embeded jar/zip files for it as well. It's not prettty, but it works well.
    One final thought, a plugin engine based application framework is a way to go. My own project, www.platonos.org (sorry, as of this posting the site is not up yet, but the project at sourceforge is available and CVS contains the code) can solve these issues. In our plugin engine, which is about 70K, each plugin has it's own classloader and classpath, and our PluginClassLoader not only handles embeded jar/zip files, but resources as well within them. Also, a plugin first searches its classpath before going to the parent to find classes, with the exception of java classes which are delegated to the bootstrap loader which is what loads rt.jar.

  • Libraries and Classpath option panel is empty

    Hi All,
    Just installed Jdeveloper 11g 11.1.1.1.0 on Vista 64b.
    Added my jar file into "Manage Libraries" whent to the project properties, "Libraries and Classpath", but this pannel is empty, blank, does not have any options....
    Any ideas what is wrong?
    Jar file itself already copied in to the project, so I do not have issue of using it
    Thank you.

    Hi,
    the same environment but when I go to project properties, "Libraries and Classpath" I can see all my project libraries and also Add library... button shows my jar to add to Project
    regards,
    Branislav

  • Enhancement Request in Project Libraries and Classpath dialog

    Hello,
    in the Libraries and Classpath section of the Project Properties we can move up/down single classpath entries only. Adding some libraries and ordering them is pretty much work.
    Please allow moving multiple selected entries (this was possible in 904).
    From our point of view libraries should be added at the beginning of the list. Most times we add user defined libraries that we want in the beginning of the classpath.

    Hi,
    I filed an ER
    Frank

Maybe you are looking for

  • Photos color shift when placed in Pages document

    I'm used to working with a color managed workflow in Aperture; my monitor and printer are both calibrated. I'm having trouble getting accurate color when those photos are placed in a Pages document - whether they're imported directly from Aperture us

  • TDS Not deducted at the time of Vendor out going payment (F-53)

    Dear All, First we did prepayment through F-47, iam tryin to clearing the vendor payment amount through F-53 , at this  TDS amount not deducted for that payment. can any one solve this issue as soon as possible.... Thanks & Regards Vijay Kumar

  • Help with a question about making/running .jar files.

    First i have a question, can i make a .jar file that can run on a computer without JRE installed. And if i can, how do i make it. I have tried to make it on my computer, that has JRE but i keep getting the error when i run it: Exception in thread "ma

  • LR3 Tethered Shooting setting issue (image preview/loading)

    Hello everyone, I've got a LR3 Tether issue I hope can be resolved with your help. I recently completed an on-location event portrait session with great turnout. The only issue was the resulting lines that had formed, at times 10+ clients. My setup i

  • Where is the dictionary?

    I have a misspelled word I want to delete from my dictionary but there is no link to the dictionary. ***GRJ***