Tomcat output question

hi all
i think this is a simple (and quite stupid) question, but i don't know ho to solve my problem
i work on two computer (windows 2k), one where i have tomcat installed not like a service, the other with tomcat installed like a service.
when i write some servlet or jsp page i use to debug it through System.out.println() method to get the output. when i work on the 1st machine i can read the output directly by the prompt, but the problem arrives on the other machine, when no prompt is opened running tomcat.
is there a way (log file and so on) to get my application's output running under tomcat? the version is 4.1.18
thanx a lot
sandro

Hi. the solution is quite simple.
Go to your TomcatHome (where you installed it) and look for a folder called log. To check your System.out.println stuff on your tomcat as windows service just take a look to an archive called stdout.txt or something similar (can't remember the exact name)
DFF

Similar Messages

  • Complier output question

    I've been working on a java assignment that requires me to write a command line program which will read data from a text file, store the data in a vector and then save the vector to another file in a serialized form. I have written this program using the Kawa complier software.
    I have, what I believe to be, a working program; it complies without reporting any errors, but when I try to run the program, I get the following message in the complier output window.
    'Exception in thread "main"'
    Can someone tell me what this means?
    Thanks.

    Thanks for the suggestions, but I found a solution for it after posting the question. Another problem has come up now though.
    As I stated, the program is supposed to read the data from a text file, store it in a vector, and output it to another file in serialized form.
    The input file consists of many records of computers and peripherals. Each record uses four lines of the input file, and is displayed like this:
    Description (String)
    Price (float)
    VAT Price (float)
    Quantity (integer),
    Now I think the output file is supposed to look the same as the input file, but the one my program generates doesn't. My program code is as follows:
    import java.util.*;
    import java.io.*;
    import java.lang.*;
    class TextToVector
         public static void main(String [] args) throws IOException
              try
              Vector v = new Vector(); //creates the vector
              String inFile = new String ("C:/My Documents/V3/Data/stocklist.txt ");     //Informs the program of the name, type & location of the source file
              FileOutputStream outFileStream = new FileOutputStream("C:/My Documents/V3/outfile.dat ");     //Instructs the program where to create the output file, what type of file it should be & what to name it
              //the command paths used in these lines can be modified to read/send a file from/to
              //where ever the user wants, the user must also set these identical paths in
              //the "Interpreter Options" for this to work correctly
              ObjectOutputStream objOutStream = new ObjectOutputStream(outFileStream);
              objOutStream.writeObject(v);     //writes the object to the vector
              objOutStream.flush();                     //purges the objOutStream
              outFileStream.close();                     //closes the objOutStream
              catch (IOException e)
              System.out.println("Exception Writing File ");
              System.exit(1);
    public Vector readRecord(String inFile, Vector v) throws IOException
              String inString = new String(" ");
              String D = " ";
         float P = 0.0f;
         float V = 0.0f;
         int Q = 0;
              int count=0;
              BufferedReader buffReader = null;     //enures the BufferedReader is empty before beginning to read the source file
              buffReader = new BufferedReader(new FileReader (inFile));     //used to read & record each line of the source file
    try
         while((inString = buffReader.readLine()) !=null)
         count++;
         if(count==1)
         inString = buffReader.readLine();
         D = inString;
         if(count==2)
         inString = buffReader.readLine();
         P = (Float.valueOf(inString)).floatValue();
         if(count==3)
         inString = buffReader.readLine();
         V = (Float.valueOf(inString)).floatValue();
              if(count==4)
         inString = buffReader.readLine();
         Q = (Integer.valueOf(inString)).intValue();
         if(count==5)
         //System.out.println("Description " + D + " Price " + P + " VATPrice " + V + " Quantity " + Q);
         StockItem record = new StockItem(D,P,V,Q);
         v.add (record);
         count=0;
    buffReader.close();
    return v;
    catch(IOException e)
    System.out.println(e.toString());
    return v;
    class StockItem implements Serializable
         private String D;
    private float P;
    private float V;
    private int Q;
         StockItem()
         D = " ";
         P = 0.0f;
         V = 0.0f;
         Q = 0;
         StockItem(String Description, float Price, float VATPrice, int Quantity)
         D = Description;
         P = Price;
         V = VATPrice;
         Q = Quantity;
         public String getDescription()
    return D;
    public float getPriceValue()
    return P;
    public float getVATPriceValue()
    return V;
    public int getQuantityValue()
    return Q;
    Can anyone see anything wrong with this? I'd appreciate any suggestions. Thanks.

  • Air Output Question

    I've been playing around with the free trial of RH8 and I
    have some questions regarding the Air output:
    1. If I add a comment, is there a way I can edit it? I tried,
    but so far haven't been able to do so (I would think that I would
    in case there's a typo or something).
    2. Also, is there a way to show which topic a comment applies
    to. Say I decide to set my comments to "Show All," is there a way
    to see what topics each comment applies to?

    Hi Moranis,
    To answer your queries.
    1. Edit is not there. Currently you can add and delete
    comments.
    2. You can sort the comments by topic after you do show all.
    sharona27lily,
    Let me answer your queries.
    Comments by different users are managed on a shared network
    location. End user whoever is giving comments on the AIR output
    doesn't need anything else. In fact RH8 is needed for producing AIR
    output. Commenting will be done without RH8.
    Let me know if you have more queries.
    Vivek.
    Adobe Systems.

  • DOM output question

    Hi all,
    I have the following question about writing a DOM (Document) out to a stream. But first.. a bit of background on the framework...
    I have the following classes:
    Listener.class -> sends InputStream to -> Parser.class
    Parser.class -> sends DOM (Document) to -> Formatter.class
    What I then want is the
    Formatter.class -> send a stream -> Writer.class
    Writer.class to do its funky stuff.
    The problem I am having is trying to work out what input/output stream combination to use and what XML helpers to do it.
    I am using Java 1.4 and Xerxes2 classes only...
    So the question is:
    1. What should the Formatter.class pass to the Writer.class?
    2. What should I use to create the stream?
    Ideally I want an InputStream passed to the Writer.class
    Cheers,
    Alex.

    I don't quite follow your framework, but then I didn't try too hard because if you want to get data from a DOM into a file or some other output, you use a javax.xml.transform.Transformer. Approximately like this:Transformer t = TransformerFactory.newTransformer();
    t.transform(new DOMSource(someNode), new StreamResult(someWriter));

  • HD to SD final output question

    Hello Forum,
    I have just completed Jeff Bellune’s excellent HD to SD tutorial called “hd2sd - High Quality Scaling From HD to SD”. For weeks I have been trying in vain to downscale my 1920 x1080i AVI-8bit YUV HD footage for output to PAL DVD without much luck, resulting in terrible output quality, but for anyone experiencing the same problem I would like to let you know that the quality of the conversion with Jeff's method is absolutely amazing. http://bellunevideo.com/tutlist.php Thanks for the post Jeff you are a star!
    But I have one small problem. In the final process when using VirtualDub to open your AviSynth script file and then saving it out to a Lagarith AVI file.
    The process works as described with great results however the final output file is exported at an output size of 720x576 - 1.250 (5:4) aspect ratio. (Size data extracted from GSpot) The problem is when I import this into Encore the footage does not fill the whole screen.
    My to the forum question is does anyone know how I can change the output file size in VirtualDub to a (16.9) aspect ratio so that when imported into Encore the footage takes up the whole screen in a (16:9) widescreen format.
    Can VirtualDub be used to do this and if so does anyone know the exact settings to be used?
    Any assistance with this will help me greatly.
    Thanks in advance.
    Rex.

    Thank you Jeff
    You are a brilliant person, thank you very much as you solved my long standing and draining problem in one answer!
    The output result is second to none as a matter of fact I can’t even tell the difference from the original footage!
    Everything is fine now but while the Big man himself is about I wonder if you could possibly answer these 3 questions?
    1) I am using Premiere CS5.5, Should I have used the Maximum render quality setting when exporting my MPEG2 file from premiere (this wasn’t mentioned in the CS4 tutorial)
    2).My original source footage used in my test project is 1920 X1080i (1.0) 50Hz Pal - and I have exported 3 versions, one Lower field first, one upper field first and one Progressive no fields. Using the Interpret Footage techniques from your advice I created 3 separate Encore projects in each field setting the thing is I can’t tell the difference between them in my test DVDs. (Q. which field setting do you recommend me use for my final project output to Pal DVD (Note Encore Pal Project settings make reference to Lower field first).
    2) Could I re-import the exported VirtualDub avi file back into premiere. Then edit my project adding effects and titles and when the project is complete export the finished project into Encore either by uncompressed AVI or MPEG2-DVD?. If this is possible will I lose much quality on export? And would you know how I could Interpret the Footage to PAL Widescreen (1.4587).in premiere? (I ask this as it would be much easier to edit with these smaller files as my original files are very resource consuming)
    Again I would be most grateful if you have some advice on these questions as I am a newbie to HD editing but embracing the challenge.
    Thanks again.
    Rex.

  • QUICKTIME OUTPUT QUESTIONS (4 dumb ones but I don't know)

    I need to output my project file as an uncompressed 4.2.2. 10 bit SD quicktime of my 89 minute edit (using that to transfer to digibeta at an outside studio). I'm on fcstudio 2.
    Here is the dumbness...
    As I'm going to take it to a transfer place where I notice the people working go blank if you mention color space, bit rate, up-convert issues...should I in advance include on my quicktime I bring them:
    1. the 1.85 matte output on picture
    this is a 4:3 sd dv sourced picture. Outputting the file is double the memory and I've had issues nesting to output in order to matte with my memory when I output..."out of memory" when memory seems to be there is an issue on the apple boards and seems to come up sometimes, sometimes not ..but I don't want to render my file TWICE in order to have a file with a matte on nor do I want someone else to render the file again with a matte on it.
    2. bars and tones
    How many seconds MINIMUM do I need of them anyway?
    And if I'm going to BOTHER reusing this output to create an mpeg 2 file (or should I not bother and just use a quicktimes settings self contained output for the mpeg 2?) is this ANOTHER reason to NOT put on the bars and tones? Must I should just be making a bunch of different outputs?
    3. a countdown with tones or click
    Does final cut have choices of countdowns? I don't see it in the fcp6 effects choices am I not looking in the right place? (I'll check the manual)
    4. Is there a source for film fbi warning logos without being forced to go somewhere to author a dvd because they have it? anyone have a website to get this off of?
    5. Does it matter if I use the quicktime settings as is and have my settings on my project show the compressor as uncompressed 10 bit or should i just skip exporting it to quicktime settings and instead just go right to compressor?
    6. If I'm going to be using another compression to transfer to mpeg2s down the road, do I need to bother including chapter markers on the output I'm using to transfer because after that goes on digibeta, the digibeta is going to be upresed to hdsr as a widescreen then downconverted back to sd as one of the formats.
    Thanks

    To be honoust: I do not understand all your questions.
    But the main question here is I think:
    How is this outside studio putting the film to Digibeta.
    If they are using Final Cut Pro for that, you could setup (a copy of) your timeline as 10-bit Uncompressed. And give that to them, AS WELL AS ALL YOUR FOOTAGE. So this implies that your project needs to be well organised and all on the removable drive your going to take with you.
    If not, there are other ways.
    Making a 10 bit timeline and export with current settings might also help.
    Or applying the matte can be done different than nesting for instance.
    You can create a matte in Photoshop for instance. Or download my free letterboxer Genterator plugin at http://www.lasserij.nl/fcp or use the one of Andy Mees. It makes it possible to render parts to prevent your macjine running out of memory.
    Your MPEG 2 questions are a little vague to me. As well as "film fbi warning logos". What are those?
    About bars and tones. Depends on where you live and who is going to broadcast your film. Every TV station can provide you with their 'delivery-specs' (specifications). films usually start 01:00:00:00 or at 10:00:00:00 (I always forget which of them is UK and which is USA; Here in Holland we just use a starting TC of 00:02:00:00, which is very unusual in the rest of the world, I think). But you also need to consider the loudness of the Tone. Is it -12 dB, -14dB, -18dB, -20 dB? And at what level does the mix need to be done (Or is it mixed extarnally?)
    In other words: Find out what you need exactly (again: delivery-specs), before starting to think about how to output.
    Rienk

  • Yamaha DTX522 e-drums output question

    Hi all - I am considering buying a Yamaha DTX522 electronic drum kit to record with however i'm confusing myself with actually HOW to do it, given the outputs on the Yamaha module. I am a newbie so please bear me and correct me i'm wrong. I currently have an old Presonus firewire FireBox (they don't even make these anymore) interface, and Logic Express on a Mac Mini. I understand i can either record by using the Audio Outs (1/4") of the yamaha module, into the Firebox. Doing it this way i'd have to be happy with all the settings/sounds on the yamaha module and it would be recorded as one track. However if i wanted more control over each of the drum pads (sounds, volume, etc) and track each drum pad indivudually, i could use MIDI out from the Yamaha module, into the MIDI IN on the Firebox and track through Logic Express using some sort of drum VST. Is this correct?
    My question is regarding the outputs on the Yamaha module. I see it has the regular Audio Outs, however i'm not sure what "USB TO HOST" is. I don't see MIDI OUT. Does anyone know what USB TO HOST does? I've asked suppliers and they don't really give a clear answer. My main goal is to be able to record each drum pad individually (like using MIDI out to the Firebox to Logic). Would i be able to do the same thing using this USB TO HOST output? I don't understand how i would even connect a USB cable to the Firebox if that's what I should do and if that allows individual tracking at all. Thanks!!!!

    Many thanks for the reply.
    Currently all pads work correctly apart from the kick and the snare. The snare for example has no audio assigned to it, if I was to transpose wouldn't the other parts of the drum kit then match up incorrectly? I also want to have the correct setup when recording, rather than just at the playback stage so I can hear exactly what is being recorded.
    I'm basically looking for some step-by-step instructions that I can try in order to fix it, I used to understand logic a lot better but after not using it for years I'm back to trial and error with things.

  • EPub Output Questions

    We recently upgraded to FM 12, and I am playing around with the ePub output function. I have two questions:
    1. We use track text edits to show our audience recent changes to our publications. When I publish to ePub, it essentially accepts all of our edits (we lose the visibility - i.e. different colors/strikethrough). Any thoughts on how to keep our tracked edits showing in the ePub?
    2. We are having issues with anchored frames. One anchored frame contains an image (a jpeg, I believe), and it is not carrying over into the ePub (i.e. it is blank where the anchored frame/image should be). The other anchored frame we have contains a flowchart with hypertext markers linking to various URLs. None of the links are carrying over into the ePub. Thoughts?
    Any help is always greatly appreciated!

    2. Anything different about the JPG that you're using? From what application was it created (or is it a camera image) and what are it's specifics?
    I also don't think that image maps are supported in ePub, especially jumps to URLs or external files (as there's no guarantee that an eReader device can access those). You could try to create simple numbered callouts on a test graphic and then add a list of numbered hyperlinks after the image to see what ePub will support.
    You might want to have a look at some of Scot Prentice's (Leximation) presentations on ePubs and their limitations. You can find the links to his papers and presentations at: Leximation: About Scott Prentice

  • Db_stat output question (last column value?)

    Hi,
    Searched everywhere, can not find this mentioned anywhere. What are the meanings of the columns in the db_stat -C output, for example:
    Locks grouped by lockers:
    Locker Mode Count Status \--------------- Object \------------
    1 dd= 0 locks held 2 write locks 0 pid/thread 20910/1121282384
    1 READ 1 HELD 840055011:840055011 handle 2
    1 READ 1 HELD 840055011:840055011 handle 0
    4 dd= 0 locks held 0 write locks 0 pid/thread 20910/1121282384
    5 dd= 0 locks held 2 write locks 0 pid/thread 20910/1121282384
    5 READ 1 HELD 840055038:840055038 handle 2
    5 READ 1 HELD 840055038:840055038 handle 0
    I take this to indicate:
    Locker 1 has two READ locks on 840055011, which is an open handle
    Locker 4 had been declared, but is now empty, awaiting its call to duty
    Locker 5 has two READ locks on 840055038, again, an open handle
    The pid and thread information are self-describing I believe.
    My questions are, what would the difference be between the two different READ locks in, say, locker 1, one line ends w/ 2, the other w/ 0. Is this a problem in my code, could I possibly have opened the same handle twice?
    Additionally, I know the database handle is being named 840055011 but is listed as "840055011:840055011", is this expected, or again, might I have an issue. I'm fairly sure this is simply naming and probably arbitrary.
    If there is a source for the db_stat output that I have missed, by all means, please let me know, I've tried my best to RTFM, but couldn't find many M's.
    FYI: transactional environment using the Java binding (not JE)
    Thank you

    Hi,
    brianmckenna wrote:
    Searched everywhere, can not find this mentioned anywhere. What are the meanings of the columns in the db_stat -C output...I think this should answer your questions:
    Deadlock debugging - http://www.oracle.com/technology/documentation/berkeley-db/db/programmer_reference/lock_deaddbg.html
    Thanks,
    Bogdan Coman

  • EJB3 + Tomcat + Glassfish Question

    Guys, I'm a new comer of this EJB 3. I just learned how to create a session ejb for the past few weeks.
    My first try was to create a local session ejb deployed on the same container (glassfish), and it was run perfectly.
    My second try was to create a remote session ejb and deployed on different container, and it could not work.
    I already spent about 1 week to find answers for this problem, and I have not found any, and this is frustrating me.
    I use these:
    Eclipse Europe 3.3.1.1
    Glassfish V2
    Tomcat 5.5
    I created 2 projects for this, the first one is the Enterprise Application Project includes the EJB Project.
    The second one is the Dynamic Web Project.
    Inside the EJB project, I created an interface and an implementation class.
    Inside the Web Project, I added a servlet and put all the calling code inside the servlet.
    I tried to running the code within the eclipse, I have already installed the server inside the eclipse.
    I followed all the instructions in the EJB Glassfish FAQ and still not working.
    This is my ejb interface:
    package com.ejb3;
    import javax.ejb.Remote;
    @Remote
    public interface HelloWorldRemote {
         public String sayHello(String name);
    }This is my ejb bean class
    package com.ejb3;
    import javax.ejb.Stateless;
    @Stateless
    public class HelloWorldRemoteBean implements HelloWorldRemote {
         public String sayHello(String name) {
              String output = "Hello " + name;
              return output;
    }This is my servlet code:
    private void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              RequestDispatcher rd = null;
              try {
                   Properties props = new Properties();
                  props.setProperty("java.naming.factory.initial", "com.sun.enterprise.naming.SerialInitContextFactory");
                  props.setProperty("java.naming.factory.url.pkgs", "com.sun.enterprise.naming");
                  props.setProperty("java.naming.factory.state", "com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl");
                  props.setProperty("org.omg.CORBA.ORBInitialHost", "localhost");
                  props.setProperty("org.omg.CORBA.ORBInitialPort", "3700");
                  InitialContext ic = new InitialContext(props);
                  HelloWorldRemote helloWorld = (HelloWorldRemote)ic.lookup("HelloWorldRemoteEJB");
                   String input = request.getParameter("myname");
                   String output = helloWorld.sayHello(input);
                   request.setAttribute("result", output);
                   rd = getServletContext().getRequestDispatcher("/result.jsp");
              catch(NamingException e) {
                   e.printStackTrace();
              if(rd != null)
                   rd.forward(request, response);
         }I had this error:
    javax.naming.NoInitialContextException: Cannot instantiate class: com.sun.enterprise.naming.SerialInitContextFactory [Root exception is java.lang.ClassNotFoundException: com.sun.enterprise.naming.SerialInitContextFactory]
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:657)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at com.controller.HelloWorldController.processRequest(HelloWorldController.java:55)
         at com.controller.HelloWorldController.doPost(HelloWorldController.java:40)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:874)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.ClassNotFoundException: com.sun.enterprise.naming.SerialInitContextFactory
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1363)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1209)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:242)
         at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12.java:42)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:654)
         ... 21 moreI have spent 1 week to find the answers for this problem, but still have not found any answer.
    I also tried to search on google, but I got no answer.
    Can anyone help me please?
    Thanks.

    I have the same problem. Remove the instructions from the EJB3 FAQ until it has you can take a plain tomcat tarball, add the jars and have it work.
    Without javaee and appserv-rt jars:
    java.lang.NoClassDefFoundError: javax/ejb/EJBObject
    With jars in $TOMCAT_HOME/lib
    May 5, 2008 2:33:52 PM org.apache.catalina.mbeans.GlobalResourcesLifecycleListener createMBeans
    SEVERE: Exception processing Global JNDI Resources
    javax.naming.NamingException: Cannot create resource instance
         at org.apache.naming.factory.ResourceFactory.getObjectInstance(ResourceFactory.java:156)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
    May 5, 2008 2:33:52 PM org.apache.catalina.core.StandardService start
    INFO: PWC1377: Starting service Catalina
    javax.naming.NamingException: Cannot create resource instance
         at org.apache.naming.factory.ResourceFactory.getObjectInstance(ResourceFactory.java:156)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)

  • AT-AO 10 current output question

    I have an AT-AO-10 that I am using to control a few things, most of which
    is using the voltage output. I am using a unipolar, external source
    setting. However, I can't get my current output to work. A few
    questions: Do I need to use an external voltage source, hooked up to the
    EXTREF and RGROUND channels, as I have with my voltage source signals? I
    know that I must supply a voltage source wired in series with the signal
    that is between 7-40 Volts. But, is this my external source, or do I need
    two of them. Also, the manual that came with the AT-AO-10 is pretty lousy
    in regards to how to wire it. The diagram shows a 250 Ohm load
    (floating). What is this? Is this something that I have to put in there,
    as well? ANd wh
    at does "floating" mean? If this is something that I have
    to provide, does it vary with the size of my external voltage source?
    I have a 15 Volt source hooked up right now, but I am also using a 24 Volt
    source for some other equipment that I can use. Is there an ideal voltage
    source that I should use instead?
    Sorry for the ignorance. I just can't get this to work, and have very
    little background in EE.
    Thanks,
    Harry
    "That government is best which governs least."
    -Adam Smith

    Hello;
    Unfortunately, that task can only be accomplished on E-series boards.
    Regards
    Filipe A.
    Applications Engineer
    National Instruments

  • Recording output questions

    Hi all!
    I have a few questions around recording sreencasts from Captivate 5. I did find a really old thread from 2006 on this, but thought to start fresh.
    Basically I'm confused as to how to get the actual video file from a screencast. When I am in Captivate and press the record button, it does offer to change the size of the recording window but no matter what I choose the actual output is then the "background" of the slide as an swf. How can I record a screencast and simply have it ON the slide as a separate file, (so that for instance I can record a full screen cast that still fits on the slide).
    Thanks!
    Chantelle

    I think what you may be wanting is to create a Captivate screencast session, publish it as an SWF and then add that SWF to another Captivate project as an animation on a particular slide.
    I don't particularly like this method of doing things because it means when I want to change something in the animation I have to go back to the other screencast project, make changes, publish, reimport/update the second project.  To much double handling. Plus, if I'm using voiceover audio to describe the screencast, there's a chance the audio will be getting compressed twice and not end up being matching quality.

  • Flex 14 - HD graphics output question

    Hello!
    I've one question/problem: Every time I try to use a beamer, my flatscreen TV or monitor, I don't get any picture. I tried to clone the display first, but that didn't work. Then I tried just to use the flatscreen as the first output. Because of that, I don't get any picture any more, because the laptop tries to use the output as my first screen, but there, I don't get any picture. I already tried different HDMI cables.
    I use the latest drivers (Windows says 10.18.10.3621). The Intel download page for new drivers for this chipset isn't working too.
    Thanks a lot for help!

    not sure if this is good or bad news...
    I hope it gets fixed I actually want to buy this computer
    Time Details     07/18/2011 08:13:34PM
    xxxxx: "Hi I am considering purchasing the Pavilion dv6Tqe except that I heard in many forums and reviews that this laptop does not/ will not support opengl. Is this true?"
    07/18/2011 08:14:55PM Agent (Betty): "I am sorry about the negative feedback you received about it. Let me check if it can support opengl."
    07/18/2011 08:16:54PM Agent (Betty): "Whenever I am unresponsive, it means I am researching for an answer to your query."
    07/18/2011 08:20:20PM Agent (Betty): "Have you tried to discuss it with a technician to confirm the rumor?"
    07/18/2011 08:24:20PM xxxx: "No I have not but there is multiple topics in the HP fourms discussing the issue. Some of the programs I will use in college next year will need opengl support and I need to confirm this before I make a purchase."
    07/18/2011 08:25:48PM Agent (Betty): "The rumor is true."
    07/18/2011 08:26:19PM Agent (Betty): "How about a different model instead?"
    07/18/2011 08:27:11PM xxxx: "do you know if a fix will ever be released?"
    07/18/2011 08:28:35PM Agent (Betty): "We do not receive any update regarding that matter. I am sorry. You are free to call our Sales Center for it. Do you have their contact details?"

  • Tomcat 5 question

    I know this question may be better suited to a tomcat forum but there is not too much activity on http://www.jguru.com/forums/Tomcat right now. If you do have a better forum please let me know.
    My question is
    does Tomcat 5 automatically create the servletcontext for your web app when you deploy it first? I assume so since my App works fine and I havn't created one. And is this ServletContext deleted after you stop Tomcat?
    Cheers .... J

    By default, everything onder the root ("/") is mapped. So when you add a new webapp it will immediately be available.

  • Redirecting Tomcat output

    I am using Tomcat 5.0.28.
    My code uses the System.out.println( ) statements.
    However the output is redirected to the stdout file in Logs folder in Tomcat installation directory.
    I intend to see the output on the console.How can I redirect the outtput to the console and not to the stdout file?
    Any suggestion would be appreciated.

    File f = new File(logFile);
    printStream = new PrintStream(new BufferedOutputStream(new FileOutputStream(f)), true);
    System.setErr(printStream);
    System.setOut(printStream);
    System.out.println("Log started: " + new java.util.Date());When the virtual machine starts, System.out, a singleton object of type PrintStream, is hooked up to the console. You can then call print() and println() on this stream and have it show up there. Using System.setOut(), you can change this object and have it point somewhere else, such as a file. In this case, the variable log�File holds this location and becomes the output for the application.

Maybe you are looking for

  • Phone line cancelled

    I set up a BT landline in my flat along with broadband about 3 months ago - after taking a month or so to finally start working we were quite pleased with the service until a couple of weeks ago when we recieved a letter saying that somebody had requ

  • ITunes crashes when importing video (only)

    I'm running 6.0.1, and have a new iPod. I wanted to use my g4 powerbook (1.33 MHz, 512 MB RAM, OS X Tiger 10.4.3) as my video library, and use my PC for my existing 350 GB music library. However, iTunes hangs with the beachball when I add any video (

  • Home screen is completely frozen on my Apple TV.  I tried to reset and the light blinks but nothing happens after that.  Any suggestions?

    I tried to reset and the light blinks but nothing happens after that.  It won't allow me to move the cursor on the home screen.  Any suggestions?

  • Can't active a datasource

    Hi,supers, I want to activate a DS 0CO_OM_XXXX,but the "Active" botton is gray,and I can't change it(only display on the right mouse menu),the version of this DS is "modified",I want it "Active",what can I do? thanks!

  • Update MRP Exception Messages...in Oracle Database

    Hi All, I am working on MRP Exception Messages. I am using the BAPI_MATERIAL_MRP_LIST for my MRP Messages. For the above BAPI The Inputs are 1.Material Number 2. Plant. I have the Plant and Material numbers (57,000 i inserted using BAPI_MATERIAL_GETL