Newbie Use of BaslerA504kCommand.vi

Dear all,
I have a Basler A504k high-speed camera, and I wish to use it to take high-speed images (500 fps) of air bubbles floating through water to impact against a hard metal surface.
I have LabView, and I've downloaded Enrico Segre's BaslerA504kCommand.vi.
I have a very newbie question to ask: how do I go about actually using Segre's code to use my A504k? I don't want anything fancy; I just want to record high-speed videos over a couple of seconds, and be able to replay it at a slower rate at another point in time.
Please try not to use any technical jargon; I would just like some simple instructions for using my equipment, that's all.
As you can see, I also have a Basler CCT+ and NI Measurement and Automation software. Will also appreciate if anyone can show me how to record and playback using these software instead of LabView. 
My advance eternal gratitude to anyone who can help this amateur with this problem. 

I just want some guidance on how to use Segre's code for LabView. I just need a simple, no-frills overview of how to actually use the LabView code for changing framerates, taking recordings, that sort of thing.
Any extra guidance on CCT+ would be helpful, but optional since I recognize that this is a LabView forum.
Many apologies for the screenshots; I was in a bit of a rush to use Print Screen on my lab's computers.

Similar Messages

  • Newbie - use camera for video and external microphone?

    Hi,
    This is a totally newbie question, but I'm a total newbie to the video part of the mac universe.
    I want to use a camcorder to "stream" live video into iMovie (which will record it to the hard drive), and use an EXTERNAL microphone, plugged into the microphone port of the computer, as the audio source (I want to use a good mic).
    Will iMovie support doing this? Is it automatic that the external mic overrides the mic on the camcorder?
    Thanks,
    Dmitri
    P.S. this is part of a bigger question, which is, how to get the best possible audio using a standard (cheap) camcorder. I haven't bought a camcorder yet, and am open to getting one that can take a good mic through a line-in. Any suggestions? - Thanks, D

    I wrote a reply to your earlier post ..but either the system went offline, or some other glitch occurred, and the post didn't appear. So I'll try to answer your earlier message and the one just above.
    Congratulations on getting the camera, by the way!
    "..play video through camera" option in the preferences, which MUTES the sound in iMovie.." ..Yes, this has been standard in iMovie from the earliest versions. There may be a slight delay between the audio you hear straight from the camera and the audio coming out of your Mac. To stop the annoyance of hearing the audio separately and slightly out-of-sync (..you'll find that the video on the Mac lags very slightly, too, during import..) you can turn OFF the Mac's audio with that preference.
    "..I assume this goes away if I unplug the firewire cable.." ..er..? You mean that the preference switches back when you unplug? I can't remember: try it. But don't unplug the FW cable in the middle of an import!
    What I was previously trying to post was:
    "..instructional/promotional videos to display online.." ..You don't say if you'll be walking around to do these demos, or if you're demonstrating computer software. If walking around you might want to use a "gun" mic to point at you, or a tie-clip mic, so that it's always clipped to your clothes ..but that will trail a cable to the camcorder unless you use a radio mic. [..And you've now bought a tie-clip mic; well done..]
    If you're doing demos of computer software, then you probably wouldn't need a camcorder at all, but just a "screen-recorder" application like 'Snapz Pro' or 'iShowU'. In that case, you'd just want a simple mic to stand on your desk, to record your speech as you work your computer, and for adding extra narration afterwards.
    I still don't understand why you want to capture directly to iMovie. If you're using a camcorder, surely you'd want to capture to tape, in case you need to do three or four "takes" of the same material ..and then you only need to import, and fill up your hard disc with, the best of those takes.
    And if you're recording a computer screen, then you wouldn't capture with iMovie at all, but with one of those other programs, above..

  • Newbie using old mac

    Hi
    I have been lent an imac (G4) from my school and thought it would be a great opportunity to learn how to use a mac, as i have always admired them from afar!!!
    However, i want to load itunes and i can't as it says i need 10.1.5 and i have 10.1.4. I downloaded the update file. However when i double click on it i get a disk copy message that says
    Mount Image
    Could not mount "/applications/macOSXUpdate10.1.5.dmg"
    I have tried holding the file in a different place and then trying but i get the same message?
    Sorry if this is a completly stupid question
    many thanks in advance

    Not a stupid question at all, especially since you're a Newbie.
    By the way, you'll find people on these forums to be very friendly, very willing to help.
    From the message, it sounds like the disk image is corrupted. Try downloading it again. But first, check the preferences of your browser to make sure that the the Applications folder is where your downloads are to go-that's a somewhat unusual place, they usually go the Desktop unless someone has changed the location. And move the old file to the trash before starting the new download.
    Let us know here how you make out. If you have further problems, we'll try to help.

  • Newbie : Using "this" in a function

    I have a function in my main class that spawns
    a Dialog for user input. The strange thing is, that I get
    a compiler error anytime i try to use "this" inside my
    function. Please help. Can you see anything wrong
    with the code in this function? I am calling it from
    another class.
    public static void createNewCell() {
    JDialog newDialog = new JDialog();
    newDialog.setTitle("New Cell Site");
    newDialog.setResizable(false);
    newDialog.setModal(true);
    //create txt fields
    CDBTextField txtCellID = new CDBTextField(15,10);
    //create buttons
    JButton btnOK = new JButton("OK");
    btnOK.setActionCommand("ok");
    btnOK.addActionListener(this);
    JButton btnCancel = new JButton("Cancel");
    btnCancel.setActionCommand("cancel");
    btnCancel.addActionListener(this);
    //Layout the labels in a panel
    JPanel labelPane = new JPanel();
    labelPane.setLayout(new GridLayout(0, 1));
    labelPane.add(new JLabel("Cell ID:"));
    //Layout the text fields in a panel
    JPanel fieldPane = new JPanel();
    fieldPane.setLayout(new GridLayout(0, 1));
    fieldPane.add(txtCellID);
    //Layout the buttons in a panel
    JPanel buttonPane = new JPanel();
    buttonPane.setLayout(new GridLayout(0, 2));
    buttonPane.add(btnCancel);
    buttonPane.add(btnOK);
    //Put the panels in another panel, labels on left,
    //text fields on right
    JPanel contentPane = new JPanel();
    contentPane.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
    contentPane.setLayout(new BorderLayout(10,10));
    contentPane.add(labelPane, BorderLayout.CENTER);
    contentPane.add(fieldPane, BorderLayout.EAST);
    contentPane.add(buttonPane, BorderLayout.SOUTH);
    newDialog.setContentPane(contentPane);
    newDialog.pack();
    newDialog.show();
    Here is the compiler message
    CDBTest.java:152: non-static variable this cannot be referenced from a static co
    ntext
    btnOK.addActionListener(this);
    ^
    CDBTest.java:155: non-static variable this cannot be referenced from a static co
    ntext
    btnCancel.addActionListener(this);
    ^
    2 errors
    I guess I don't really understand how to use static and
    when not to use static, and how to use "this"
    But I know I need to use "this" for the actionlisteners
    on my buttons.
    THanks
    Josh

    Thank you , Thank you, Thank you!
    Here is my entire main class, and then below it I'll
    paste the class that is calling my function.
    import java.io.*;
    import java.util.StringTokenizer;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.ArrayList;
    public class CDBTest extends JFrame implements ActionListener {
            public static CellList cellList = new CellList();
            public static Tabs cdbTabs = new Tabs();
            public static ArrayList cellArrayList = new ArrayList();
            public static int internalCellId = 0;    
            public CDBTest() {
                    JMenuBar mainMenuBar = new JMenuBar();
                    JMenu mainMenu;
                    JMenuItem mainMenuItem;
                    JPanel mainPanel = new JPanel();
                    //Attach Menu Bar
                    setJMenuBar(mainMenuBar);
                    //Build the first menu.
                    mainMenu = new JMenu("File");
                    mainMenu.setMnemonic(KeyEvent.VK_F);
                    mainMenuBar.add(mainMenu);
                    //JMenuItems
                    mainMenuItem = new JMenuItem("New",KeyEvent.VK_N);
                    mainMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_N, ActionEvent.CTRL_MASK));
                    mainMenuItem.addActionListener(this);
                    mainMenu.add(mainMenuItem);
                    mainMenuItem = new JMenuItem("Open",KeyEvent.VK_O);
                    mainMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_O, ActionEvent.CTRL_MASK));
                    mainMenuItem.addActionListener(this);
                    mainMenu.add(mainMenuItem);
                    mainMenu.addSeparator();
                    mainMenuItem = new JMenuItem("Save",KeyEvent.VK_S);
                    mainMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S, ActionEvent.CTRL_MASK));
                    mainMenuItem.addActionListener(this);
                    mainMenu.add(mainMenuItem);
                    mainMenuItem = new JMenuItem("Save As",KeyEvent.VK_A);
                    mainMenuItem.addActionListener(this);
                    mainMenu.add(mainMenuItem);
                    mainMenu.addSeparator();
                    mainMenuItem = new JMenuItem("Exit",KeyEvent.VK_E);
                    mainMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_F4, ActionEvent.ALT_MASK));
                    mainMenuItem.addActionListener(this);
                    mainMenu.add(mainMenuItem);
                    //define main content panel
                    mainPanel.setPreferredSize(new Dimension(600, 350));
                    //Turn border off for now 3/19/02
                    //mainPanel.setBorder(BorderFactory.createLineBorder(Color.black));
                    setResizable(false);
                    setTitle("Cell Site Database Editor");
                    //define and add components
                    mainPanel.add(cellList);
                    mainPanel.add(cdbTabs);
                    setContentPane(mainPanel);
            public void actionPerformed(ActionEvent e) {
                    JMenuItem source = (JMenuItem)(e.getSource());
                    if (source.getText() == "Open") {
                            // "." represents current dir, NOT APP-DIR,
                            // AND worse, the "Up" feature in filechooser now broken
                            // DAMNIT!
                            //final JFileChooser fc = new JFileChooser(".");
                            final JFileChooser fc = new JFileChooser();
                            fc.addChoosableFileFilter(new CDBFileFilter());
                            int returnVal = fc.showOpenDialog(this);
                            if (returnVal == JFileChooser.APPROVE_OPTION) {
                                    File file = fc.getSelectedFile();
                                    //this is where a real application would open the file.
                                    //JOptionPane.showMessageDialog(this, "Opening " + file.getName());
                                    try {
                                            // Clear out any existing entries
                                            if (cellList.isFilled()) {
                                                    cellArrayList.clear();
                                                    cellList.removeAllFromJList();
                                                    internalCellId = 0;
                                            FileReader cdbReader = new FileReader(file);
                                            BufferedReader br = new BufferedReader(cdbReader);
                                            //JComboBox cellList = new JComboBox();
                                            //cellList.addActionListener(this);
                                            String line;
                                            while((line = br.readLine()) != null){
                                                    // Looping through each line
                                                    cellArrayList.add(internalCellId, Split(line,",")); //Add array with an index
                                                    String[] arCells = (String[]) cellArrayList.get(internalCellId); //Extract array object and cast as a String Array
                                                    cellList.AddCell(arCells[0] + " " + arCells[1]);
                                                    //cellList.addItem(arCells[0] + " " + arCells[1]);
                                                    internalCellId++;
                                            cellList.list.setSelectedIndex(0);
                                    } catch (FileNotFoundException fnf) {
                                            System.err.println("Unable to open file for reading: " + fnf.getMessage());
                                    } catch (IOException ioe) {
                                            System.err.println("unable to buffer read file: " + ioe.getMessage());
                            } else {
                                    JOptionPane.showMessageDialog(this, "Cancelled ");
                    } else if (source.getText() == "Exit") {
                            System.exit(0);
                    } else {
                            String s = "Action event detected.\n"
                               + "    Event source: " + source.getText()
                               + " (an instance of " + getClassName(source) + ")";
                            JOptionPane.showMessageDialog(this, s);
            public static String[ ] Split(String str2Split, String separator) {
                    StringTokenizer parser = new StringTokenizer(str2Split, separator);
                    int numTokens=parser.countTokens( );
                    String[ ] arString = new String[numTokens];
                    for (int i=0; i < numTokens; i++) {
                            arString[i] = parser.nextToken( );
                    return arString;
            public void createNewCell() {
                    JDialog newDialog = new JDialog();
                    newDialog.setTitle("New Cell Site");
                    newDialog.setResizable(false);
                    newDialog.setModal(true);
                    //create txt fields
                    CDBTextField txtCellID = new CDBTextField(15,10);
                    CDBTextField txtCellName = new CDBTextField(15,20);
                    CDBTextField txtSwitch = new CDBTextField(15,10);
                    CDBTextField txtSectorID = new CDBTextField(1,1);
                    CDBTextField txtSectorName = new CDBTextField(15,12);
                    //create buttons
                    JButton btnOK = new JButton("OK");
                    btnOK.setActionCommand("ok");
                    btnOK.addActionListener(this);
                    JButton btnCancel = new JButton("Cancel");
                    btnCancel.setActionCommand("cancel");
                    btnCancel.addActionListener(this);
                    //Layout the labels in a panel
                    JPanel labelPane = new JPanel();
                    labelPane.setLayout(new GridLayout(0, 1));
                    labelPane.add(new JLabel("Cell ID:"));
                    labelPane.add(new JLabel("Cell Name:"));
                    labelPane.add(new JLabel("Switch:"));
                    labelPane.add(new JLabel("Sector ID:"));
                    labelPane.add(new JLabel("Sector Name:"));
                    //Layout the text fields in a panel
                    JPanel fieldPane = new JPanel();
                    fieldPane.setLayout(new GridLayout(0, 1));
                    fieldPane.add(txtCellID);
                    fieldPane.add(txtCellName);
                    fieldPane.add(txtSwitch);
                    fieldPane.add(txtSectorID);
                    fieldPane.add(txtSectorName);
                    //Layout the buttons in a panel
                    JPanel buttonPane = new JPanel();
                    buttonPane.setLayout(new GridLayout(0, 2));
                    buttonPane.add(btnCancel);
                    buttonPane.add(btnOK);
                    //Put the panels in another panel, labels on left,
                    //text fields on right
                    JPanel contentPane = new JPanel();
                    contentPane.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
                    contentPane.setLayout(new BorderLayout(10,10));
                    contentPane.add(labelPane, BorderLayout.CENTER);
                    contentPane.add(fieldPane, BorderLayout.EAST);
                    contentPane.add(buttonPane, BorderLayout.SOUTH);
                    newDialog.setContentPane(contentPane);
                    newDialog.pack();
                    newDialog.show();      
            // Returns just the class name -- no package info.
            protected String getClassName(Object o) {
                    String classString = o.getClass().getName();
                    int dotIndex = classString.lastIndexOf(".");
                    return classString.substring(dotIndex+1);
            public static void main(String args[]) {
                    final CDBTest CDBApp = new CDBTest();
                    CDBApp.addWindowListener(new WindowAdapter() {
                        public void windowClosing(WindowEvent e) {
                            System.exit(0);
                    CDBApp.pack();
                    CDBApp.show();
    I'm new to Java and trying tio pick it up as I code
    so please give me any recommendations you have
    some things I don't really understand.
    And here is the code of my class that calls the function
    in my main class.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ActionButtons extends JPanel implements ActionListener {
            protected JButton btnNew, btnCopy, btnDelete;
            private int btnWidth = 35;
            private int btnHeight = 34;
            public ActionButtons() {
                    ImageIcon icoBtnNew = new ImageIcon("images/new.gif");
                    ImageIcon icoBtnCopy = new ImageIcon("images/copy.gif");
                    ImageIcon icoBtnDelete = new ImageIcon("images/delete.gif");
                    btnNew = new JButton(icoBtnNew);
                    btnNew.setPreferredSize(new Dimension(btnWidth,btnHeight));
                    btnNew.setToolTipText("Create a new cell site.");
                    btnNew.setActionCommand("new");
                    btnNew.addActionListener(this);
                    add(btnNew);
                    btnCopy = new JButton(icoBtnCopy);
                    btnCopy.setPreferredSize(new Dimension(btnWidth,btnHeight));
                    btnCopy.setToolTipText("Copy selected cell site.");
                    btnCopy.setActionCommand("copy");
                    btnCopy.addActionListener(this);
                    add(btnCopy);
                    btnDelete = new JButton(icoBtnDelete);
                    btnDelete.setPreferredSize(new Dimension(btnWidth,btnHeight));
                    btnDelete.setToolTipText("Delete selected cell site.");
                    btnDelete.setActionCommand("delete");
                    btnDelete.addActionListener(this);
                    add(btnDelete);
           public void actionPerformed(ActionEvent e) {
                    if (e.getActionCommand() == "new") {
                            //switch tabs to general tab
                            CDBTest.createNewCell();
    Thanks
    Josh

  • NEWBIE-Using Mighty Mouse scroll wheel to control Color's SMH wheels

    Hi, new here & new to Color, working thru Ripples iTunes Color tutorials right now. Loving Color so far. I hope to be back with less rudimentary questions one day but here's the 1st:
    Lacking a dedicated hardware interface, I'd hoped the Might Mouse scroll wheel would drive the shadow midtone and hilight wheels. I've tried various permutations in system prefs but no dice. Have I missed something? Thank you.

    nadsta, I've found using a ShuttlePRO2 unit very handy. It's cheap, and I can map whatever shortcut I want, and then I use a Wacom tablet for the color wheel adjustments.
    I've mapped the ShuttlePRO to jump between grade 1-4, and the different rooms I use the most (primary in/out, secondaries, color fx), turning grade on/off, set/delete keyframes and adjust keyframe type, two buttons for ALT/OPT and SHIFT modifiers which comes in very handy for selecting and adding to a color selection (in secondaries for instance) or holding ALT while click-and-drag in the color wheels and different parameters around the interface.
    It's not perfect, but I can at least do some things in less time than I would using the keyboard.

  • Bloody newb: use syntax highlighting in Eclipse 3 for *.jsp?

    Hi all
    I'm developing in Java with Eclipse 3 and now I'm learning JSP on my own. I'd like to use the great Features of Eclipse 3 (like syntax completion etc) also in JSP files, but there's whether syntax highlighting nor completion or stuff.
    Can you help me out how to use Eclipse with all its features as a JSP IDE? Thank you.
    Josh

    You need a plugin which supports JSP.
    MyEclipse does (along with a lot of other stuff)
    Lomboz also provides a jsp editor
    You can find a whole lot of eclipse plugins at
    http://www.eclipseplugincentral.com/
    http://eclipse-plugins.2y.net/eclipse/index.jsp
    Cheers,
    evnafets

  • Newbie: Using Fields with XML and Node.getNodeType()

    How do I know what returned value from the getNodeType method corresponds to the field values? Looking at the documentation for the Node object I can see where the fields are listed, but there are no corresponding values?
    For instance I used "getNodeType" on an Element Node and it returned a short value (1). How do I know that 1 corresponds to Element_Node?
    Hope I explained this well enough... I'd appreciate any help.

    This is a common problem fo beginners. My best programming instructor said that you should never hard code literal numbers into a method. So to be more direct here's how you do it.
    //some node is a reference to an instantiated node
    if (someNode.getNodeType() == Node.ELEMENT_NODE) {
       //this is an element node
    //or
    switch (someNode.getNodeType()) {
       case ELEMENT_NODE:
          //this node is an element node
          break;
       case ATTRIBUTE_NODE:
          //this node is an attibute node
          break;
    }

  • Newbie Using Masks

    Read thru all the topics under "mask" search, and could not
    find one that matched mine, so......
    I have a page banner which features the company logo in an
    oval.
    I want to place a layer below the banner, with relevant
    photos, and provide a view into the photos, using a mask in the
    same shape as the logo.
    I've built the mask, and it works just fine, but I can't
    figure out how to have the mask work thru the banner graphic.
    The result I get is a white work space and the transparent
    mask.
    Appreciate any help.
    Thanks,
    vince_g

    That is exactly what I was looking for!!!
    I've looked at the .fla file, but I don't think I understand
    what's happening.
    I see 2 mask layers, and 2 layers that contain the banner
    graphic (Layers 6 & 8). Layer 7 contains the tween with the
    oval window, but I don't understand how Layers 9 & 8 make it
    work.
    I'm not grasping the notion of the 2nd graphic layer and
    mask.
    If you could hang in there with me just a bit longer, I
    usually do get it.
    Could you also steer me to a book or other doc on how masks
    work? The online Help, to me, is too cryptic. I went thru it for a
    few hours before writing the first post.
    Thanks a lot for this help.
    vince_g

  • Help for a newbie using the SAP tutorial

    Hi All,
    This is the first time i have picked up the SAP SDK and I am following the tutorial that is in the the help document that is installed with the SDK installation. 
    Under the developers guide section > Tutorial: Blanket Agreement Solution
    I have worked down to Part 4 and I am stuck on step 1 (create an installer)
    Towards the end of the page it talks about creating a new project and to opening line is:  "Add the BlanketAgreement.exe file to the project and change its Build Action to Embedded Resource."
    Can somebody give me some help here please because upuntil now there has been no mention of the BlanketAgreement.exe.
    Equally can anybody suggest some more tutorials that will help be get into the SDK.
    Many thanks,
    Mike

    Hi Mike,
    The BlanketAgreement.exe is a reference to the executable that will be created when you compile the solution you created in Part II - Part III. I think there is a mistake in the tutorial because it asks you to name the project 'Blanket' which means that by default the executable will be called Blanket.exe and not BlanketAgreement.exe. The tutorial also misses the step asking you to compile the Blanket project before you go on to create an installer. You should compile your Blanket project in Release mode before creating an installer. By compiling the project you'll get a Blanket.exe file in the bin folder of your Blanket project which you then need to add to the installer per the instructions.
    SAP do offer development courses in some areas and there is training material here on the SDN and on the SAP partner portal (and maybe the customer portal as well). Try searching this forum for 'training' or 'tutorial' and you should get a few links. There's also a development certification.
    Personally I'd recommend you give yourself a little project to work on and just get stuck in
    Kind Regards,
    Owen

  • Newbie - using multiple drop downs

    I have a form that has two drop down boxes. The first drop down contains three selections:
    1. Hispanic or Lation Origin
    2. Not Hispanic or Latino Origin
    3. Not Answered.
    If the user selects:
    1. then no further action required (skip the next drop box)
    2. then go to the next drop down box and select one of them
    3. then do the same as number 2.
    Is there a way to set this up? Can anyone help and let me know how to do this. Thanks!

    Thank you so much! That example is exactly what I'm looking for... Thanks again.

  • [HELP] SIP Conflict... Newbie using weblogic...

    ####<Oct 3, 2011 10:04:01 AM PHT> <Info> <WebLogicServer> <phoenix> <> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1317607441833> <BEA-000000> <WebLogic Server "AdminServer" version:
    WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 Copyright (c) 1995, 2009, Oracle and/or its affiliates. All rights reserved.>
    ####<Oct 3, 2011 10:04:01 AM PHT> <Notice> <Log Management> <phoenix> <> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1317607441901> <BEA-170019> <The server log file /root/Oracle/Middleware/user_projects/domains/test/servers/AdminServer/logs/AdminServer.log is opened. All server side log events will be written to this file.>
    ####<Oct 3, 2011 10:04:01 AM PHT> <Info> <Log Management> <phoenix> <> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1317607441906> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Diagnostics> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442036> <BEA-320001> <The ServerDebug service initialized successfully.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442092> <BEA-002622> <The protocol "t3" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442092> <BEA-002622> <The protocol "t3s" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442092> <BEA-002622> <The protocol "http" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442093> <BEA-002622> <The protocol "https" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442094> <BEA-002622> <The protocol "iiop" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442094> <BEA-002622> <The protocol "iiops" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442095> <BEA-002622> <The protocol "ldap" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442096> <BEA-002622> <The protocol "ldaps" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442098> <BEA-002622> <The protocol "cluster" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442099> <BEA-002622> <The protocol "clusters" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442104> <BEA-002622> <The protocol "snmp" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442104> <BEA-002622> <The protocol "admin" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442105> <BEA-002624> <The administration protocol is "t3s" and is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442110> <BEA-002622> <The protocol "sip" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442111> <BEA-002622> <The protocol "sips" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442112> <BEA-002622> <The protocol "sips-admin" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442119> <BEA-002622> <The protocol "diameter" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442120> <BEA-002622> <The protocol "diameters" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442121> <BEA-002622> <The protocol "diameter-sctp" is now configured.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Emergency> <Server> <phoenix> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1317607442141> <BEA-002633> <A port conflict was detected in the server configuration. The server is configured to listen on two ports that have the same port number and IP address. Channel "sip" address "sip://fe80:0:0:0:fcff:ffff:feff:ffff:5060" conflicts with channel "sip" address "sip://fe80:0:0:0:fcff:ffff:feff:ffff:5060".>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Critical> <WebLogicServer> <phoenix> <AdminServer> <main> <<WLS Kernel>> <> <> <1317607442142> <BEA-000362> <Server failed. Reason: Network configuration error, check log for details.>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Notice> <WebLogicServer> <phoenix> <AdminServer> <main> <<WLS Kernel>> <> <> <1317607442350> <BEA-000365> <Server state changed to FAILED>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Error> <WebLogicServer> <phoenix> <AdminServer> <main> <<WLS Kernel>> <> <> <1317607442350> <BEA-000383> <A critical service failed. The server will shut itself down>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Notice> <WebLogicServer> <phoenix> <AdminServer> <main> <<WLS Kernel>> <> <> <1317607442352> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    ####<Oct 3, 2011 10:04:02 AM PHT> <Info> <WebLogicServer> <phoenix> <AdminServer> <main> <<WLS Kernel>> <> <> <1317607442352> <BEA-000236> <Stopping execute threads.>
    I currently installed Weblogic Server 10.3.5 64-bit on Linux 64-bit RHEL5
    whenever i execute startManagedWebLogic or startWebLogic i always get an error on sip config...
    Please help me ASAP will be needing this for our current project thanks in advance
    Edited by: Beeds on Oct 2, 2011 8:03 PM

    "A port conflict was detected in the server configuration. The server is configured to listen on two ports that have the same port number and IP address.
    Channel "sip" address "sip://fe80:0:0:0:fcff:ffff:feff:ffff:5060" conflicts with channel "sip" address "sip://fe80:0:0:0:fcff:ffff:feff:ffff:5060""
    Check your config.xml file and see how many times the 5060 port is configured.

  • Newbie having difficulty centering images in browser using ActionScript 3.0

    I'm a newbie using flex builder 3. I'm learning
    ActionScript3.0. After running the AS code from the book, my images
    are never in the center of the browser(IE7). After running the
    following code (which is supposed to produce a yellow arrow, in the
    center of the stage, that rotates to the mouse), I get all the
    desired results except the arrow is positioned in the bottom right
    corner of my browser and only part of the arrow is visible. if
    anyone can suggest a solution it would be highly appreciated.
    Please keep in mind that I am a COMPLETE newbie to ActionScript,
    Flex Builder 3, and the Flash environments. Thanks in advance.

    on mouseup or click, if the mouse is down, you can use:
    stage.focus=outputText;
    if the mouse isn't down, you can don't need a listener to trigger the above.

  • Can I use automatically select only first line of a caption to include in List of Figures?

    Is there a setting in the TOC utility in ID CS6 that will allow me to use only the first sentence in a caption to include in a list of Figures?
    Example
    Willard's Wharf, Cocoa, Florida, 1887.   This was Cocoa's first  blah blah blah.  Photo by a dead guy.  courtesy of a nice old lady whose grandmother collected it.
    In the example above, the entire passage is currently formatted using a paragraph style sheet in Arno Pro Caption.  When I'm done, I would like to have that first phrase or sentence in bold, which I planned to do with a character style sheet.  The remainder will be in regular type. 
    Now that I understand more how the TOC utility works, I'm wondering, can I make a paragraph style for the title phrase, and a second paragraph style for the remaining text in the caption that follows  If so, how to I ensure that the second paragraph will follow on the same line where ever the first paragraph style ends?  Nested styles, maybe?  If nested styles are the way to go, comments on or pointers to the simplest strategy to make this work will be appreciated.
    Captions are not consistent.  Some have a name and date; others are a Title phrase or sentence, followed, sometimes, by up to several sentences.  Typically, however, there is only one sentence after the title. I also usually have a "Courtesy of . . ." statement acknowledging the source of the photo.
    I'm a newbie using id cs6, for the first time, to format a book.  I'm enjoying using the program, but a few details sometimes bring me to a stop.
    Thanks
    Roy

    Roy,
    In fact, you only need a char style to control that you correctly mark what you want in the LOF.
    See how I do:
    1/ I create the para style "Caption" [color: Red] and insert a grep style in it.
    2/ I create the char style "Char_Caption" [color: Blue]. It only needs to control what I want in the LOF.
    3/ What I have to do is insert a "N-Joiner" in the "Caption" text. See the grep code of the grep style defined in the "Caption" para style.
    4/ I generate the TOC, only with the "Caption" para style. I select the story where I insert the TOC and launch this simple regex.
    Done! 

  • I use LabWindows/CVI and SCXI modules, how can i check the polarity of a capacitor during an ICT?

    I am a newbie using CVi Lab Windows and SCXI modules, how can i perform ICTs to check the proper polarity of a capacitor?

    Hello,
    That's a big question for a single sentence. Could you give some more details about the hardware you have, and the measurements you want to take?
    By the way, when you say ICT, do you mean In-Circuit Test or something else?
    Thanks,
    John N
    Applications Engineer
    National Instruments

  • Problem using XSLT & HTML Tags

    Hi all,
    I'm newbie using XML and XSL and i'm facing a problem that i would need some help.
    I wrote a XML using servlet that use a XSL and transform it in a HTML output. So everything seems to work fine but when i try to use HTML tags inside my XSL it is not executed. it looks like below viewing by the browser IE6.0.
    - <html>
    - <body>
    <b>Sun Sep 14 12:27:09 BRT 2003</b>
    <i>Hello World</i>
    </body>
    </html>
    The fact is that i want my HTML tags to be executed by the XSl file and do not simple show the tags. Can someone help me? I would appreciate any help since i've been spending long time with that without any answer.
    Thanks and Regards
    Fabio

    following below the code that generate the XML. I still need help.
    I hope someone can help me in this issue
    The servlet that generate the XML.
    response.setContentType("text/xml");
    String Xml = "";
    Xml = Xml + "<?xml version=\"1.0\"?>";
    Xml = Xml + "<?xml-stylesheet href=\"/XslGravaCrit.xsl\" type=\"text/xsl\"?>";
    Xml = Xml + "<!-- Here is a sample XML file -->";
    Xml = Xml + "<page>";
    Xml = Xml + "<title>Test Page</title>";
    Xml = Xml + "<content>";
    Xml = Xml + "<paragraph>What you see is what you get!</paragraph>";
    Xml = Xml + "</content>";
    Xml = Xml + "</page>";
    try{
    TransformerFactory tFactory = TransformerFactory.newInstance();
    byte[] arr=Xml.getBytes();
    ByteArrayInputStream bytes=new ByteArrayInputStream(arr);
    Source xsl=new StreamSource("../XslGravaCrit.xsl");
    Templates template=tFactory.newTemplates(xsl);
    Transformer transformer = template.newTransformer();
    transformer.transform(new StreamSource(bytes), new StreamResult(response.getWriter()));
    }catch(Exception e){
    System.out.println("Excecao 100: " + e.getMessage() + e.getLocalizedMessage());
    The XSL XslGravaCrit.xsl
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:java="http://xml.apache.org/xslt/java" exclude-result-prefixes="java"
    version="1.0">
    <xsl:strip-space elements="*"/>
    <xsl:output method="html" indent="yes" version="4.0"/>
    <xsl:template match="page">
    <html>
    <body><b>
    <xsl:value-of select="java:java.util.Date.new()"/>
         </b>
    <xsl:for-each select="/page">
    <xsl:sort select="paragraph"/>
    <xsl:value-of select="paragraph"/>
    </xsl:for-each>
    <i>Hello World</i>
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>

Maybe you are looking for