Is it possible to run a normal java program in a servlet

Well anyone knoe and if so how is it done? Cheers

.> On my current project, a reporting component, we
do
in fact call a standalone program asychronouslyfrom
our Servlet. The one scaling requirement that is
dictating this is memory footprint. By using a
standalone application, I can set the amount ofheap
space the reporting component will be allowed touse.
Thusfar, it uses swap/virtual memory when that
t amount is exceeded, which is the intendedeffect:
increase processing time to save memory. Saish, if you're breaking the rule it's because you
have a good understanding and a good reason to do
so.
You said the magic word here: "asynchronous". I
totally agree that having your app send a message to
a MDB for asynch processing is appropriate. In this
case, it sounds like it's the only way to do it due
to the excessive memory requirement.
We have an app running in production that does
exactly that: send a message to an MDB to process
something off-line. The user is sent to a page to
continue their session while processing proceeds on
another thread, another machine.
It's the first time I've run into a memory scaling requirement like that. Our co-located facility only allows us '10% of CPU and no more then 128 mB'. So, to avoid crowding out other requests, we decided to calve the report process into an asynchronous, standalone application. I was kind of hoping we could do something slick with java.lang.ref to help with memory management, but the more I looked into it, the scarier it became!
When I read the OP's post it made me think that s/he
wanted to invoke Runtime.exec() to kick off a
synchronous process. If s/he comes back and says
that's the case, I'll stand by my answer. If they
say asynch is what they need, they should follow the
wisdom of Saish.
I agree. The OP probably does not have this type of requirement. In the vast majority of cases, Duffy is correct. You probably should re-think your design if another standalone process is being invoked.
PS - How's with you? I hope you and your family are
all well.
Doing great and had an awesome 4th o July weekend. Spent Saturday on a boat for seven hours. Though I look par-boiled today, it was a full-on treat.
How's by you? Any Independence Day ribaldry or chicanery? :^)
I've gotten through the AOP and JDBC chapters in "Pro
Spring". Now I'm off to read about Hibernate again.
Gotta be writing more code to truly master this,
, especially on the UI side.This weekend, I did not get much time to continue my trek through the vast landscape of Spring. However, this week, I am moving towards knowledge sharing and documentation tasks, so I should have some time after work to keep learning.
UI side? You mean Servlets/JSP/XSL? Or something more traditional like Swing?
BTW, now I remember why I hate coming into work on off days (aside from the obvious): they don't turn on the @#$! A/C. I'm dying here today!
- Saish

Similar Messages

  • Is it possible to automate the running of a java program multiple times?

    For example, i have a java program which constantly writes the word "hello world" to a text file and ends the program.
    Instead of compiling & running this multiple times is there a way to automate it and it will run it many times as you want?

    Theresonly1 wrote:
    For example, i have a java program which constantly writes the word "hello world" to a text file and ends the program.
    Instead of compiling & running this multiple times is there a way to automate it and it will run it many times as you want?What do you mean by "constantly" and "many times as you want"? Do you mean literally constantly -- as soon as it runs, it runs immediately again?
    Or do you mean something like running it once every half hour indefinitely?
    What i was looking for is something along the lines of a script file or Ant. Like an automation tool. How is this not answering your own question? You can use a script, or Ant.

  • Run EXE from JAVA program

    Does somebody know whether it is possible to run some program with extension EXE from JAVA program?

    Yes sombody knows. Yes it's possible. Have a look at Runtime#exec.

  • Running Fop from JAVA program

    Hi all,
    this may be a rookie question....hope you can help.
    I can run Fop (0.18.0) perfectly from the command line. I created a style
    sheet (xsl file), which converts the xml file. On the command line, I input
    the xsl file, the xml file, and state the name for the pdf file.
    Now I'm trying to run Fop from within method in my JAVA program. This
    doesn't seem to work. Here's the code. Can someone tell me what I'm doing
    wrong? Is it okay to run Fop this way? My classpath is set up properly
    (it runs on the command line).
    Here's the code..............Thanks in advance for any help.
    String [] pdfParams = new String[6];
    pdfParams[0] = "-xsl";
    pdfParams[1] = xslFile;
    pdfParams[2] = "-xml";
    pdfParams[3] = xmlFile;
    pdfParams[4] = "-pdf";
    pdfParams[5] = pdfFile;
    org.apache.fop.apps.Fop.main(pdfParams);
    Regards,
    Suryakant.

    When you post code, please use[code] and [/code] tags as described in Formatting tips on the message entry page. It makes it much easier to read.
    One thing that jumps out at me is that you're calling waitFor() and then trying to read the process' stdout. But waitFor waits for the process to die, so the stream is no longer there when you try to read it.
    See this:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • Creating and running JARs from Java programs

    OK, I have been googling and searching, but this is something I cannot work out, so I raelly need some help.
    Basically, I am building a GUI app that would generate, compile and run java programs. And I also want to enable the users to create JARs they can later double-click if they want to run the program.
    I am using Runtime to compile programs and it works just fine. When I click on a button to create a JAR, my application creates one, but when I double-click on it, it can't find main and it exits. Now that is not so much unusual, but I am positive that my manifest file is OK, because when I run the same command from the command line, then I can click on the JAR file to run it.
    So what is the deal here? I mean, why would a JAR file created from the command line run and the one created through a GUI app using the very same command could not find main?
    Any help would be graetly appreciated.

    again, another unanswered question.
    BTW I'l keep bumping these until I get an answer that works. I have been up 3 hours now trying to get this sorted and it's something that netbeans is supposed to do on its own!?!?!?!?!
    Hello, SUN, is there anyone there???
    No, didn't think so.

  • How to run a standalone java program with JRC to display/run a report

    Hi All,
    I am new to this forum.
    I am trying to run a java program developed using JRC to run a report created using Crystal Report XI. I stucked because not knowing how to run that java program.
    Can anyone help me? or
    can give a simple java code to do the same.
    Thanks in advance.
    Saravanakumar.

    Hi Saravana
    For the steps to run a standalone application java program with JRC to display/run a report ,please refer the following link.
    http://support.businessobjects.com/communityCS/TechnicalPapers/cr_xi_r2_jrc_deployment.pdf.asp
    You can get the sample code for standalone/desktop applications from the following link.
    http://support.businessobjects.com/communityCS/FilesAndUpdates/crxi_r2_jrc_desktop_samples.zip.asp
    Please do revert in case of any queries.
    Thanks
    Soni

  • Running mSync from java program

    hi all,
    I need to control synchronization from inside my java
    program.
    There is “msync.jar” available with Lite installation,
    I tried to use it but didn't worked.
    Any solution will be appreciated.
    Thanks in advance.
    avinash

    When you post code, please use[code] and [/code] tags as described in Formatting tips on the message entry page. It makes it much easier to read.
    One thing that jumps out at me is that you're calling waitFor() and then trying to read the process' stdout. But waitFor waits for the process to die, so the stream is no longer there when you try to read it.
    See this:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • How to send a file from a java program to a servlet and get a response

    Hi,
    How can I call a servlet from a standalone java program and send a file to a servlet using POST method and in return gets the status back from the servlet. Any help is appreciated any small sample will help.
    Thanks.

    Hi,
    I am trying the following sample I got from net and am getting the following error. Any help what I am doing wrongs:
    06/12/24 02:15:58 org.apache.commons.fileupload.FileUploadBase$InvalidContentTypeException: the request doesn't contain a multipart/form-data or multipart/mixed stream, content type header is null
    06/12/24 02:15:58      at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:294)
    06/12/24 02:15:58      at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:268)
    06/12/24 02:15:58      at mypackage9.Servlet1.doPost(Servlet1.java:38)
    06/12/24 02:15:58      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    06/12/24 02:15:58      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    06/12/24 02:15:58      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    06/12/24 02:15:58      at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    06/12/24 02:15:58      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    06/12/24 02:15:58      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    06/12/24 02:15:58      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    06/12/24 02:15:58      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
    06/12/24 02:15:58      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
    06/12/24 02:15:58      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    06/12/24 02:15:58      at java.lang.Thread.run(Thread.java:534)Here is the sample client code:
    import org.apache.commons.httpclient.HttpClient;
    import org.apache.commons.httpclient.methods.PostMethod;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    public class PostAFile {
        private static String url =
             "http://192.168.0.17:8988/Vulcan_Materials-ServletPost2-context-root/servlet/Servlet1";
        public static void main(String[] args) throws IOException {
            HttpClient client = new HttpClient();
            PostMethod postMethod = new PostMethod(url);
            client.setConnectionTimeout(8000);
            File f = new File("C:\\load.txt");
            System.out.println("File Length = " + f.length());
            postMethod.setRequestBody(new FileInputStream(f));
            int statusCode1 = client.executeMethod(postMethod);
            System.out.println("statusLine>>>" + postMethod.getStatusLine());
            postMethod.releaseConnection();
    }Here is the sample servlet code:
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.PrintWriter;
    import java.io.IOException;
    import org.apache.commons.fileupload.DiskFileUpload;
    import org.apache.commons.fileupload.FileItem;
    import java.util.List;
    import java.util.Iterator;
    import java.io.File;
    public class Servlet1 extends HttpServlet
      private static final String CONTENT_TYPE = "text/html; charset=windows-1252";
      public void init(ServletConfig config) throws ServletException
        super.init(config);
      public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
        try
          response.setContentType(CONTENT_TYPE);
          PrintWriter out = response.getWriter();
          java.util.Enumeration e= request.getHeaderNames();
            while (e.hasMoreElements()) {
              String headerName=(String)e.nextElement();
              System.out.println(headerName +" = "+request.getHeader(headerName));
           //System.out.println("Content Type ="+request.getContentType());
            DiskFileUpload fu = new DiskFileUpload();
            // If file size exceeds, a FileUploadException will be thrown
            fu.setSizeMax(1000000);
            List fileItems = fu.parseRequest(request);
            Iterator itr = fileItems.iterator();
    System.out.println("***************************");
            while(itr.hasNext()) {
              FileItem fi = (FileItem)itr.next();
              //Check if not form field so as to only handle the file inputs
              //else condition handles the submit button input
              if(!fi.isFormField())
                System.out.println("\nNAME: "+fi.getName());
                System.out.println("SIZE: "+fi.getSize());
                //System.out.println(fi.getOutputStream().toString());
                File fNew= new File("C:\\", fi.getName());
                System.out.println(fNew.getAbsolutePath());
                fi.write(fNew);
              else
                System.out.println("Field ="+fi.getFieldName());
            out.println("SUCCESS123456: ");
          out.close();
        catch(Exception e)
          e.printStackTrace();
    }Any help on what is wrong.
    Thanks

  • How can I execute a java program from a Servlet?

    Thank You
    [email protected]

    You could call it via Runtime.exec(), just as you would from any Java program. Or better, you could redesign it as a proper Java class. Then your servlet could create an instance of the class and call its methods as necessary.

  • Is it possible to have one java GUI program run  from another Java program

    If it is possible let me know and if you could write some code that would be greatly appreciated.
    Frank

    hm ... what will happen, if one of these applications
    invoke System.exit(...)?- The JVM starts its shut down
    sequence and both applications will shut down this
    way.You're right. If you don't want that - or you can't rely on the behaviour of the second app - you have to start another VM in a separate process calling Runtime.exec().
    If you only want to "use" the second app from the first one (and you have the sources) you can write a method like main() which do not call System.exit() at the end.
    Alex

  • Exception when running a compiled java program in DOS

    I'm new to programming in general and java in specific. I am using the jGrasp programming software, and successfully compile my program, but when I try to run it out of DOS (which I undesrtand is the purpose of java to begin with, unless I'm mistaken), I get an exception that looks exactly like this.....
    Exception in thread "main" java.lang.NoClassDefFoundError: keyboard/java
    Caused by: java.lang.ClassNotFoundException: keyboard.java
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    I realize I may just be missing something simple, as I've not been in the class for very long, but the book doesn't seem to have the answer. It is "Starting out with Java: Early Objects, Third Edition, by Tony Gaddis. Any help will be apprecieated. The program is below, it's really short.
    The program is a simple one to teach myself scanner input and an 'if' statement:
    *     basic input program
    import java.util.Scanner;
    public class keyboard
         public static void main(String[] args)
              String Class;
              int age;
              String race;
              char sex;
              String gender;
              Scanner keyboard = new Scanner(System.in);
              System.out.print("What class do you wish to be? ");
              Class = keyboard.nextLine();
              System.out.print("How old is your character? ");
              age = keyboard.nextInt();
              keyboard.nextLine();
              System.out.print("What sex is your character? M/F? ");
              gender = keyboard.nextLine();
              sex = gender.charAt(0);
              System.out.print("What race is your character? ");
              race = keyboard.nextLine();
              if (sex == 'M')
                   System.out.println("Today you will be playing a " + race + " " + Class +
                                                           " who is " + age + " years old at the start " +
                                                           "of his adventuring career!");
              if (sex == 'F')
                   System.out.println("Today you will be playing a " + race + " " + Class +
                                                           " who is " + age + " years old at the start " +
                                                           "of her adventuring career!");                                   
    }

    Childofheinlein wrote:
    I'm new to programming in general and java in specific. I am using the jGrasp programming software, and successfully compile my program, but when I try to run it out of DOS (which I undesrtand is the purpose of java to begin with, unless I'm mistaken), I get an exception that looks exactly like this.....
    So summerizing some of what was said before and some of that wasn't.
    jGrasp is a simplistic IDE. When you pop a dos window from it it sets up the windows correctly to run your program. When you open a regular command window you must do the same yourself.
    >
    Exception in thread "main" java.lang.NoClassDefFoundError: keyboard/javaJava runs "classes". The command that you typed above meant that you were trying to run a "file". Specifically the file "keyboard.java". The two are not the same. There is however a relationship. When the source code, in this case inside of "keyboard.java" is compiled it produces a file called "keyboard.class". Insided of the file there is a "class" called "keyboard". Notice that the name of the class does not have either .java nor .class on the end of it.
    The VM (the 'java' command) finds a "class" using the class path to search files of various types for the class (again keep in mind that files contain classes but they are not themselves classes.)
    You can add to the classpath using the Sun VM using either command line options or environment variables. As noted in some of the previous messages those are "-cp" and "CLASSPATH". It is important to note that that does NOT fully specify the class path. But for your purposes it is sufficient to think of it as doing so.
    The 'default' setting for the part of the class path that you normally set (like via '-cp') is the current directory which is specified by the ".". So normally the following are equivalent.
    java -cp . keyboard
    java keyboard
    The reason the VM could not find your class when you opened the dos window yourself is because you were in the wrong directory. If you had been in the directory with the file "keyboard.class" then it would have worked (if you have not messed with the environment variable "CLASSPATH".)
    So if your class file has the following location: c:\myapps\java\keyboard.class then you can do the following.
    1. Open a console window
    2. Type "cd c:\myapps\java"
    3. Type "java keyboard"
    If the above does not work then you are in the wrong directory or the env variable CLASSPATH has been set to something.

  • Running a Simple Java Program in Windows 7

    Hello:
    Learning Java.
    I have Windows 7 64 bit. I have following Java installed:
    C:\Program Files\Java\jdk1.6.0_21\demo>java -version
    java version "1.6.0_21"
    Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
    Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)
    My path is as follows:
    C:\Program Files\Java\jdk1.6.0_21\demo>path
    PATH= C:\Program Files\Java\jdk1.6.0_21\bin;C:\Windows\system32;C:\Windows;C:\Wi
    ndows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files
    (x86)\QuickTime\QTSystem\
    When I try to run a program called Exampleprogram.java as follows, I see below error:
    C:\Program Files\Java\jdk1.6.0_21\demo>java exampleprogram.java
    Exception in thread "main" java.lang.NoClassDefFoundError: exampleprogram/java
    Caused by: java.lang.ClassNotFoundException: exampleprogram.java
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    Could not find the main class: exampleprogram.java. Program will exit.
    C:\Program Files\Java\jdk1.6.0_21\demo>
    Will appreciate your early help. Thanks.
    Victor

    Recomplied and still no luck. I gave a different name to the program and still getting the same error as follows:
    C:\Program Files\Java\jdk1.6.0_21\bin>dir hel*
    Volume in drive C is WINDOWS7PRO
    Volume Serial Number is EB0E-8900
    Directory of C:\Program Files\Java\jdk1.6.0_21\bin
    10/03/2010 11:29 AM 269 helloworld.java
    10/03/2010 11:33 AM 429 HelloWorldApp.class
    2 File(s) 698 bytes
    0 Dir(s) 123,998,978,048 bytes free
    C:\Program Files\Java\jdk1.6.0_21\bin>java helloworld.java
    Exception in thread "main" java.lang.NoClassDefFoundError: helloworld/java
    Caused by: java.lang.ClassNotFoundException: helloworld.java
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Could not find the main class: helloworld.java. Program will exit.
    C:\Program Files\Java\jdk1.6.0_21\bin>
    Thoughts please.

  • Help on (Possibly) false sharing on Multithreaded Java Programs

    I encountered performance degrade going from 1 thread to 2 thread for embarrassing parallel programs.
    Each thread heavily accesses (read/write) some object fields, but one object is not accessed by both threads.
    However, because the hotspot JVM does not necessarily align the object according to cache line, it is possible to
    have two objects share the same cache line. For example, o1 and o2 are two objects of class Foo:
    class Foo {
    Object A;
    Object B;
    Foo o1 = new Foo();
    Foo o2 = new Foo();
    The JVM may layout part of o1 (o1.B) and part of o2 (o2.A) in the same cache line ( --cach line  2 as shown below).
    1111AAAA11111111111111111 -- cache line 1
    1111BBBB11112222AAAA2222 -- cache line 2
    22222222222222222BBBB2222 -- cache line 3
    1: o1 2: o2
    This cause a significant performance degradation due to false sharing between o1.A and o2.B.
    Due to the indeterministic nature of the layout, I am not hit by the impact of false sharing for every run.
    For some runs, I get 2x speedup as where were no false sharing. But occasionally, I get very bad performance.
    The penalty of false sharing can be reduce by binding the two threads to cores that share the same L2 cache.
    But this is not an acceptable solution because I want scalability beyond 2 threads and want to remove the
    false sharing at all.
    Traditional solution to avoid false sharing is either to align each object at the cache line boundary, or to pad the object
    to have extra space at the beginning and the rear of each object.
    I don't know how to do the alignment on the HotSpot JVM, if it is not impossible at all. Does anyone know to do achieve this?
    For padding, I don't know the exact correct way to do this: I want to ensure that the padding fields inserted are
    at the VERY beginning and the VERY rear of the object memory layout, instead of in the middle. I know JVM is free to
    reorder the fields. Does anyone know how to pad a object correctly?
    It would also be very helpful if anyone have any other opinions to avoid this kind of false sharing or whatever reason the bad performance might be.
    Thanks,
    Edited by: Grant@FDU on May 5, 2009 9:14 PM
    Edited by: Grant@FDU on May 5, 2009 9:15 PM
    Edited by: Grant@FDU on May 5, 2009 9:16 PM
    Edited by: Grant@FDU on May 5, 2009 9:17 PM
    Edited by: Grant@FDU on May 5, 2009 9:17 PM

    You cannot guarantee that two objects will be consecutive in memory or that they will stay consecutive (as the object can be moved around to compact memory usage)
    This sort of optimisation could be very premature. You are likely to find other factors are much more important. I suggest you write a realistic program and use a profiler to see where time is being consumed.

  • Is it possible to run all OS and programs on Mountain Lion?

    Greetings!
    I have set myself the following challenge and wondered if it was technically possible to do the following:-
    On a single mid-2012 MacBook Pro (with optical drive built in) running OS 10.8.5 as the main OS and obviously totally within the law of my country I would like the ability to run:
    § Power PC applications;
    § All Mountain Lion programs;
    § Any Linux program;
    § Windows 7 or later;
    Note 1: I have already purchased Mac OS Snow Leopard Server and await it's delivery…
    Note 2: I am happy to buy an OEM copy of Microsoft Windows…
    Note 3: Microsoft Windows is sadly a necessity due to my University not supporting anything else for it's specialist software which I require for my studies.
    Note 4: I would use Ubuntu Linux
    Note 5: I have absolutely no desire to ever run Mavericks at all…
    Thus, I would like my MacBook Pro to simply run any program I care to use, is this realistically possible?
    Please accept my apologies if this is posted in the wrong section, I was a little unsure in which community to post this.
    Thank you in advance,
    CK

    Thank you,
    I shall do just that, as soon as I've purchased an OEM of Microsoft Windows…
    Is there anything I should be aware of, other than to keep a back up of everything before I start, please?

  • Possible to run a 32 bit program in 64 bit Windows 7 Pro?

    Hi
    I've ordered a Thinkpad X220 which here in UK only comes with 64 bit version of windows 7 pro. Problem is that there a couple of programs which i use which only run in 32 bit windows (no 64 bit version available) and they run fine in my existing Win 7 32 bit version...i've tried them on a friend's pc running 64 bit Win 7 Ultimate and they do not work. Is there any way to make these programs work in Win 7 Pro 64 bit on my soon-to-arrive X220? If i downloaded and installed 'Windows XP Mode with Virtual PC" on my X220, would this help in making the 32 bit programs work on my 64 bit Win 7?
    Cheers
    ThinkPad X220
    i7-2620M
    Corsair Neutron GTX SSD 480gb
    8gb Crucial RAM
    IPS 12.5 3x3 display
    Intel Ultimate N6300 wifi
    9 cell battery
    bluetooth
    Fingerprint reader
    Win 7 Pro 64 bit

    Phychopomp1,
    Windows 7 64 bit is able to run 32 bit programs. However, some programs will have issues.
    Have you checked your programs against the Windows 7 compatibility list: http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=2394
    This should tell you if they are compatible or not with Windows 7 64-bit.
    There are compatibility settings that you can try once you have installed the software also. Right click on the shortcut and choose properties, then go to the compatibility tab and try the various OS settings.
    If those things fail, then you should try Windows XP Mode (convenience link: http://www.microsoft.com/windows/virtual-pc/download.aspx). This will allow you to install your programs in a virtual copy of Windows XP SP3 using Windows Virtual PC. Once XP Mode is installed, when you install your software into it, you will get a shortcut to use the program from your Windows 7 start menu without even seeing the XP Mode window.
    Hope this helps,
    David
    Windows Outreach Team – IT Pro
    http://www.microsoft.com/springboard

Maybe you are looking for

  • SQL Loader and foreign characters in the data file problem

    Hello, I have run into an issue which I can't find an answer for. When I run SQL Loader, one of my control files is used to get file content (LOBFILE) and one of the fields in the data file has a path to that file. The control file looks like: LOAD D

  • Deploying EAR file in weblogic

    I am new to weblogic and the situation needs deep knowledge. I have to deploy an EAR file in weblogic . This deployment should not be from console, every work should be done from backend. Please help me. I need step by step guidance. Thanks

  • Package oracle.jdbc does not exist

    I am trying to connect oracle 8.1.7 from jdk1.4 using jdbc. but when i am trying to compile the java file an error with message"package oracle.jdbc does not exist" is experienced. error generation code: DriverManager.registerDriver (new oracle.jdbc.O

  • Local Class Transaction Code Problem

    Hi friends,         I have created report program using local class. I have also used selection screen to get input from user. I have created oops transaction code (using se93) for that program. Problem is selection screen is not displayed when progr

  • Delete Customer order confirmation

    Hi, I have a problem with the availability of a material. When I go to Trx CO09 it shows 6 units of the material “Confirmed” for a Customer Order. But I can’t find this order, instead of showing the sales document as usually do (e.x. 3300008886/00001